Remove 'Read-More' Link
-
Hi, could anyone tell me how to remove the read more link from my post excerpts?
//EXCERPT function excerpt_length( $length ) { return 10; } add_filter( 'excerpt_length', 'excerpt_length' ); function continue_reading_link() { return ' <a href="'. get_permalink() . '">' . __( 'Read more <span class="meta-nav">→</span>', 'twentyten' ) . '</a>'; } function auto_excerpt_more( $more ) { return ' …' . continue_reading_link(); } add_filter( 'excerpt_more', 'auto_excerpt_more' ); function custom_excerpt_more( $output ) { if ( has_excerpt() && ! is_attachment() ) { $output .= continue_reading_link(); } return $output; } add_filter( 'get_the_excerpt', 'custom_excerpt_more' ); //EXCERPT
Thanks.
Viewing 5 replies - 1 through 5 (of 5 total)
Viewing 5 replies - 1 through 5 (of 5 total)
- The topic ‘Remove 'Read-More' Link’ is closed to new replies.