Code-Snippets-Functions/Execute a function on a child site/Restrict Content Pro/change-excerpt-lenght.txt

4 lines
168 B
Text

function pw_rcp_custom_excerpt_length( $length ) {
return 100; // Set length to 100 words
}
add_filter( 'rcp_filter_excerpt_length', 'pw_rcp_custom_excerpt_length' );