Answers for "How to Limit Excerpt Length in WordPress"

PHP
0

How to Limit Excerpt Length in WordPress

// Filter except length to 35 words.
// tn custom excerpt length
function tn_custom_excerpt_length( $length ) {
return 35;
}
add_filter( 'excerpt_length', 'tn_custom_excerpt_length', 999 );
Posted by: Guest on October-27-2021

Browse Popular Code Answers by Language