Definition:
function twentyten_custom_excerpt_more( $output ) {}
Adds a pretty "Continue Reading" link to custom post excerpts.
To override this link in a child theme, remove the filter and add your own function tied to the get_the_excerpt filter hook.
Parameters
- $output
Return values
returns:Excerpt with a pretty "Continue Reading" link
Source code
function twentyten_custom_excerpt_more( $output ) {
if ( has_excerpt() && ! is_attachment() ) {
$output .= twentyten_continue_reading_link();
}
return $output;
}
3101

February 12, 2011 


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