On Line 194 of content.php, this is where the post excerpt is called for the search results page. I want to change the excerpt length as the product excerpts are far too long (see screenshot). I’ve tried hardcoding it into that line and I’ve tried using a function in the functions.php file, but nothing allows me to change the excerpt length.
function my_excerpt_length( $length ) {
$length = 20;
return $length;
}
add_filter( ‘excerpt_length’, ‘my_excerpt_length’, PHP_INT_MAX );
Please assist.
Attachments:
You must be
logged in to view attached files.