Forums

Different excerpt lengths for different categories (3 posts)

  1. daveredfern
    Member
    Posted 3 months ago #

    Hello,

    I would like different categories to have different excerpt lengths. I have set in the functions a default one by doing

    add_filter('excerpt_length', 'my_excerpt_length');
    	function my_excerpt_length($length) {
    		return 10;
    	}

    but unfortunately this is global. I would like category id 1 to be 10 and category 2 to be 100.

    Is this possible?

    Many thanks in advance.

    Dave.

  2. kichu
    Member
    Posted 3 months ago #

    Try using a conditional tag

    if ( is_category(1) ) {
    	return 10;
    }

    ... etc.

    S.K

  3. daveredfern
    Member
    Posted 3 months ago #

    ah good thinking. don't know why i didn't think of that. thanks!

Reply

You must log in to post.

About this Topic