Change [...] to Read More

Discussion in 'Figero WordPress Theme' started by rostin, Jan 6, 2013.

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

    rostin Member

    Joined:
    Nov 20, 2012
    Messages:
    88
    Likes Received:
    2
    Hi
    I would like to to change [...] that appears after post excerp to Read More.
    I coudn't find the target file. I appreciate your help in advance.

    Cheers,
    Rostin
     
  2. Gourav

    Gourav Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    7,728
    Likes Received:
    207
    Please provide the following information listed below.

    Thread Link:
    Your Website URL:
    WordPress Username:
    WordPress Password:

    Send this information on our email at [email protected]
     
  3. rostin

    rostin Member

    Joined:
    Nov 20, 2012
    Messages:
    88
    Likes Received:
    2
    Hi Gourav,
    I found the solution by myslef.
    I added the following to the "functions.php"
    function new_excerpt_more($more) {
    global $post;
    return ' <a href="'. get_permalink($post->ID) . '">[Read More]</a>';
    }
    add_filter('excerpt_more', 'new_excerpt_more');
    It will replace ... with Read More and also gives the link to the post.
    Thanks anyway
     
Thread Status:
Not open for further replies.

Share This Page