• I am trying to make when the <?php the_excerpt(); ?> is displayed and the […] appears to have that say Read More and link to the topic title. I was able to change the […] to [Read More] with this little piece of code.
    <?php function new_excerpt_more($more) {
    return ‘[Read More]’;
    }
    add_filter(‘excerpt_more’, ‘new_excerpt_more’);
    ?>
    But I am unable to link it to the post. I can only assume it uses this code <?php the_permalink() ?> but I cant seem to get it to link correctly.

    I also tried a plugin I saw someone else posted cy-custom-morelink but did not work either.

Viewing 6 replies - 1 through 6 (of 6 total)
Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Read More link to Post?’ is closed to new replies.