• Resolved snowme

    (@snowme)


    Hi,

    The excerpts in the Tag Archive pages no longer work. I’m not sure what changed, but can you help?

Viewing 2 replies - 1 through 2 (of 2 total)
  • Theme Author nobita

    (@nobita)

    Hi @snowme

    You can get a excerpt by adding the following code to functions.php.

    
    <?php
    add_filter( 'the_content', 'my_tag_archives_custom_excerpt' );
    
    function my_tag_archives_custom_excerpt( $content ) {
    
    	if ( is_tag() ) {
    
    		$count	 = 50;
    		$more	 = '...';
    		
    		return wp_html_excerpt( $content, $count, $more );
    	}
    	return $content;
    }
    ?>

    Thank you.

    Thread Starter snowme

    (@snowme)

    Thanks for the quick reply. I used your function as well as is_post_type_archive to get excerpts working on my various archive pages.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Tag Archive Excerpts’ is closed to new replies.