Definition:
function twentyten_auto_excerpt_more( $more ) {}
Replaces "[…]" (appended to automatically generated excerpts) with an ellipsis and twentyten_continue_reading_link().
To override this in a child theme, remove the filter and add your own function tied to the excerpt_more filter hook.
Parameters
- $more
Return values
returns:An ellipsis
Source code
function twentyten_auto_excerpt_more( $more ) { return ' …' . twentyten_continue_reading_link(); }
3095
No comments yet... Be the first to leave a reply!