Tagged: excerpt
Hello,
I have been trying to change the excerpt length for blog grid posts by using the functions code adding to the functions.php.
function custom_excerpt_length( $length ) {
return 200;
}
add_filter( 'excerpt_length', 'custom_excerpt_length', 999 );
However, the length of the excerpt is not changing.
Am I doing this correctly?
Hi alvinhy!
Please use the code as following
add_filter('avf_postgrid_excerpt_length','avia_change_postgrid_excerpt_length', 10, 1);
function avia_change_postgrid_excerpt_length($length)
{
$length = 200;
return $length;
}
Cheers!
Yigit
Works perfectly thanks