Viewing 2 replies - 1 through 2 (of 2 total)
  • Try:

    function custom_excerpt_length($length) {
        if (is_home || is_front_page()) {  //For the home page
            return 20;
        } else {
            return 60; //for all others pages
        }
    }
    add_filter('excerpt_length', 'custom_excerpt_length');
    Thread Starter KelseyCurran

    (@kelseycurran)

    That doesn’t work … ?? But thanks for the comment.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Two Different Excerpt Lengths’ is closed to new replies.