[Resolved] Remove Entry Content From Category Pages

Home Forums Support [Resolved] Remove Entry Content From Category Pages

Home Forums Support Remove Entry Content From Category Pages

Viewing 3 posts - 16 through 18 (of 18 total)
  • Author
    Posts
  • #927478
    Leo
    Staff
    Customer Support

    Try this:

    add_filter( 'wp_trim_excerpt', 'db_excerpt_metabox_remove' );
    function db_excerpt_metabox_remove( $excerpt ) {
    	$output = $excerpt;
    	
    	if ( is_archive() || is_home() && has_excerpt() ) {
    		$output = '';
    	}
    	
    	return $output;
    }
    
    add_filter( 'generate_show_excerpt', function( $show ) {
        if ( is_archive() || is_home() ) {
            $show = true;
        }
    
        return $show;
    } );
    #928640
    Carson

    Amazing, thanks a lot!

    #928649
    Leo
    Staff
    Customer Support

    No problem 🙂

Viewing 3 posts - 16 through 18 (of 18 total)
  • You must be logged in to reply to this topic.