mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-05-02 12:02:25 +08:00
4 lines
168 B
Text
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' );
|