Reduce Snippet Text on Blog Page

Discussion in 'ButterBelly WordPress Theme' started by bpmarketing11, Nov 23, 2013.

Thread Status:
Not open for further replies.
  1. bpmarketing11

    bpmarketing11 Member

    Joined:
    Dec 28, 2011
    Messages:
    49
    Likes Received:
    3
  2. Gourav

    Gourav Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    7,728
    Likes Received:
    207
    Hello,

    Go to functions.php present in your theme directory and add the code given below

    Code:
    function custom_excerpt_length( $length ) {
        return 15;
    }
    add_filter( 'excerpt_length', 'custom_excerpt_length', 999 );
    Sending image for reference
    2013-11-26_1216.png


    This will solve your issue.
     
  3. bpmarketing11

    bpmarketing11 Member

    Joined:
    Dec 28, 2011
    Messages:
    49
    Likes Received:
    3
    That worked perfectly, thanks.
     
Thread Status:
Not open for further replies.

Share This Page