• Below my posts, the related posts are showing too much the excerpt. How do I limit the amount of text I want to show?

Viewing 1 replies (of 1 total)
  • Hello,

    You can limit the excerpt length on post by below code.Please Paste the below code in your current theme’s functions.php file.

    function custom_excerpt_length( $length ) {
    	global $post;
    	$post_id 			= 	$post->ID;
    	
            if ( get_post_type( $post_id ) == 'post') {
    		return 20;
    	}
    	return 30;
    }
    add_filter( 'excerpt_length', 'custom_excerpt_length', 999 );

    Thanks

    • This reply was modified 7 years, 4 months ago by dineshkashera.
Viewing 1 replies (of 1 total)
  • The topic ‘Related posts showing too much excerpt’ is closed to new replies.