Return to Snippet

Revision: 65250
at November 11, 2013 20:10 by santamartastudio


Initial Code
// Custom excerpt length
function custom_excerpt_length( $length ) {
    return 50;
}
add_filter( 'excerpt_length', 'custom_excerpt_length', 999 );

Initial URL


Initial Description


Initial Title
Custom excerpt length

Initial Tags
wordpress

Initial Language
PHP