How to increase the excerpt of the posts on the Blog Page

Discussion in 'BlackBird WordPress Theme' started by gzettas, Dec 31, 2012.

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

    gzettas New Member

    Joined:
    Sep 8, 2012
    Messages:
    17
    Likes Received:
    0
    Hello,how to increase the excerpt of the posts on the Blog Page.Thanks
     
  2. Gourav

    Gourav Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    7,728
    Likes Received:
    207
    Go to functions.php present in your theme directory and add the code given below

    Code:
    function custom_excerpt_length( $length ) {
        return 200;
    }
    add_filter( 'excerpt_length', 'custom_excerpt_length', 999 );
    Sending image for reference

    [​IMG]

    This will solve your issue.
     
  3. gzettas

    gzettas New Member

    Joined:
    Sep 8, 2012
    Messages:
    17
    Likes Received:
    0
    Thank you much.Subject closed
     
Thread Status:
Not open for further replies.

Share This Page