custom_excerpt_length not working
-
Hi,
I am trying to customize my excerpts by using the following code in my Child theme’s function.php
function custom_excerpt_length( $length ) {
return 10;
}
add_filter( ‘excerpt_length’, ‘custom_excerpt_length’);function new_excerpt_more( $more ) {
return ‘ Read More‘;
}
add_filter( ‘excerpt_more’, ‘new_excerpt_more’ );But this is not working. Is the theme’s custom_excerpt functionality interfering with this?
Thanks
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘custom_excerpt_length not working’ is closed to new replies.