Excerpt problems for posts with latests-posts plugin
-
Hi!
I’m currently using rookie theme and the plugin wp-latests-posts to display my news with featured image on the startpage.
The issue I have is that the title of the news gets limited to around 25 characters, I want it to display the full title text.
I did solve this on another theme by adding this to functions.php:
function custom_excerpt_length( $length ) {
return 20;
}
add_filter( ‘excerpt_length’, ‘custom_excerpt_length’, 999 );
?>This does not work in rookie theme ??
Anyone who has a clue how to solve it?
Best regards
/mwd123
Viewing 10 replies - 1 through 10 (of 10 total)
Viewing 10 replies - 1 through 10 (of 10 total)
- The topic ‘Excerpt problems for posts with latests-posts plugin’ is closed to new replies.