Tagged: excerpt
-
AuthorPosts
-
January 28, 2015 at 10:43 am #386864
Hello,
First of all, thank you for this amazing WordPress template :)
I have inserted 4 post sliders on my front page, and i want the excerpt to be longer. Right now it looks like this: http://d.pr/i/1dYqv and i have chosen this setting on all post sliders: http://d.pr/i/1ibEs
I want the excerpt to be like 3 sentences,
how do i do this?I’m looking forward to your answer :)
Kind regards,
Jonas- This topic was modified 9 years, 9 months ago by donbaek.
January 28, 2015 at 1:03 pm #386938Hey donbaek!
Thank you for using our theme.
In functions.php put something like the following code:
add_filter( 'excerpt_length', 'new_excerpt_length' ); function new_excerpt_length( $more ) { if(is_front_page()) { return 150; } else { return 50; } }
Also see the following post:
http://wordpress.stackexchange.com/questions/6310/how-to-control-manual-excerpt-length
Cheers!
GünterJanuary 28, 2015 at 3:57 pm #387036Thank you Günter!
It doesn’t seem to work. I have inserted the snippet you’ve sent here: http://d.pr/i/15swS (Bottom of the functions.php file.
Can you check the URL I’ve already sent you?
Thank you in advance :)
January 28, 2015 at 6:25 pm #387253Hi!
Thank you for coming back.
Try to replace the code above with the following:
add_filter( 'excerpt_length', 'new_excerpt_length' ); function new_excerpt_length( $more ) { if(is_home()) { return 550; } else { return 50; } }
If it does not work, can you give us an admin access to your site pls?
Cheers!
GünterFebruary 9, 2015 at 11:11 am #392935This reply has been marked as private.February 9, 2015 at 12:37 pm #392977Hey!
I have changed the code slightly, please go to Functions.php file and find following code
add_filter( 'avf_postgrid_excerpt_length', 'new_excerpt_length' ); function new_excerpt_length( $more ) { return 200; }
and adjust as needed
Regards,
YigitFebruary 10, 2015 at 11:48 am #393617Hello Yigit,
Is it possible that you can do this for me?
I tried but i turned out as a php white screen failure..Thanks in advance
February 10, 2015 at 12:28 pm #393633Hey!
Thank you for coming backl.
Yigit code is working. I adjusted the value to 600.
Come back, if we shall alter the value for you.
Best regards,
Günter- This reply was modified 9 years, 9 months ago by Günter.
February 10, 2015 at 1:27 pm #393660Thank you Günter!
Really great support….
February 10, 2015 at 1:36 pm #393667 -
AuthorPosts
- The topic ‘How do i make the excerpt longer?’ is closed to new replies.