Hello, I'm fairly new to wordpress, but I have a site up and running at:
http://www.ios-source.com
The problem is that instead of showing a certain amount of characters or words in the post excerpt, it just shows the entire post.
I've tried adding this code to my theme's functions.php file, but it does nothing:
function custom_excerpt_length( $length ) {
return 20;
}
add_filter( 'excerpt_length', 'custom_excerpt_length', 999 );
I've also tried out a few plugins like Excerpt Length and Advanced Excerpt, but nothing works.
I've tried using the Twenty Eleven theme and the Twenty Ten theme, but neither of those work with the two plugins I wrote about above.
Could someone please help me with this? I need to change the amount of words in the post excerpt. Thank you.