/ Published in: PHP
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
// Custom excerpt length function custom_excerpt_length( $length ) { return 50; } add_filter( 'excerpt_length', 'custom_excerpt_length', 999 );