Forums

[resolved] How to change the (more..) in archive for excerpt (2 posts)

  1. buhle78
    Member
    Posted 1 year ago #

    Hi Everyone

    I have managed to change the excerpt text on the posts but seems to work on some posts excepts and not all of them.

    Today i discovered that on the archives page i still get (more..) even thought i changed the text to full story.

    I added the code below to my functions.php

    // chaning the .... to full story as per google
    function excerpt_ellipsis($text) {
    return str_replace('[...]','<a href="'. get_permalink() . '">Full Story</a>', $text);
    }
    add_filter('the_excerpt', 'excerpt_ellipsis');

    Can someone help PLEASE. Is there a way of hacking this?

  2. buhle78
    Member
    Posted 1 year ago #

    Found. i just changed the

    <?php the_content(''); ?>

    to

    <?php the_content('<span class="more-link">Full story</span>'); ?>

Topic Closed

This topic has been closed to new replies.

About this Topic