Hello!
I have made an static homepage with a welcome page and under i have latest posts with featured images..
My question is, how do I change the words in the excerp?
I want it to be like 40 words in the excerp
Fetching latest tweet ...
Hello!
I have made an static homepage with a welcome page and under i have latest posts with featured images..
My question is, how do I change the words in the excerp?
I want it to be like 40 words in the excerp
Add this to child-theme's functions.php file. If your child-theme's functions.php file is empty, add the below code after <?php
function custom_homepage_panes_excerpt_length(){
graphene_set_excerpt_length( 40 );
}
add_action('graphene_before_homepage_panes', 'custom_homepage_panes_excerpt_length');
Thank you so much, you are so good!
I wish I could learn everything u can, you make it so simply..
You are welcome!
Marking thread as resolved. You can do this yourself as well.
This topic has been closed to new replies.