Recently Added posts

Discussion in 'GeoCraft WordPress Theme' started by aciocan, Jun 6, 2014.

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

    aciocan New Member

    Joined:
    Jan 12, 2014
    Messages:
    23
    Likes Received:
    0
    Is it possible to increase the Excerpt length for the Recently Added posts on the main page?
     
  2. Nitesh

    Nitesh Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    5,165
    Likes Received:
    160
    Hello,

    For this go to the Appearance > editor open functions.php and add code given below just at the bottom of the functions file..

    Code:
    function custom_excerpt_length( $length ) {
    return 150;
    }
    add_filter( 'excerpt_length', 'custom_excerpt_length', 999 );
    You can increase or decrease return value. Currently it is 150.

    Thanks & Regards
    Nitesh Raghuwanshi
     
  3. aciocan

    aciocan New Member

    Joined:
    Jan 12, 2014
    Messages:
    23
    Likes Received:
    0
    Thanks Nitesh.
     
Thread Status:
Not open for further replies.

Share This Page