Definition:
function twentyten_excerpt_length( $length ) {}
Sets the post excerpt length to 40 characters.
To override this length in a child theme, remove the filter and add your own function tied to the excerpt_length filter hook.
Parameters
- $length
Source code
function twentyten_excerpt_length( $length ) {
return 40;
}
3103

February 12, 2011 


No comments yet... Be the first to leave a reply!