Definition:
function twentyeleven_excerpt_length( $length ) {}
Sets the post excerpt length to 40 words.
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 twentyeleven_excerpt_length( $length ) { return 40; }
14729
No comments yet... Be the first to leave a reply!