Tagged: 

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #482015

    Hello,

    I have been trying to change the excerpt length for blog grid posts by using the functions code adding to the functions.php.

    function custom_excerpt_length( $length ) {
    	return 200;
    }
    add_filter( 'excerpt_length', 'custom_excerpt_length', 999 );

    However, the length of the excerpt is not changing.
    Am I doing this correctly?

    #482032

    Hi alvinhy!

    Please use the code as following

    add_filter('avf_postgrid_excerpt_length','avia_change_postgrid_excerpt_length', 10, 1);
    function avia_change_postgrid_excerpt_length($length)
    {
       $length = 200;
       return $length;
    }

    Cheers!
    Yigit

    #483345

    Works perfectly thanks

Viewing 3 posts - 1 through 3 (of 3 total)
  • The topic ‘Change Excerpt length for blog grid posts’ is closed to new replies.