Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PHP

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 );
Source by technumero.com #
 
PREVIOUS NEXT
Tagged: #How #Limit #Excerpt #Length #WordPress
ADD COMMENT
Topic
Name
6+7 =