Problem with excerpt length
-
I am trying to customize the child theme’s functions.php file to expand the excerpt length of posts to 75 words rather than the default 55.
Below is what I entered:
<?php //Opening PHP tag
// Custom Function to Include
add_filter(‘excerpt_length’, ‘my_excerpt_length’);
function my_excerpt_length($len) { return 75; }
?> //Closing PHP tagBut it doesn’t work. What do I need to change?
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘Problem with excerpt length’ is closed to new replies.