Viewing 6 replies - 1 through 6 (of 6 total)
  • Plugin Author Darren Cooney

    (@dcooney)

    Hi Andrea,
    Not sure why that would be… Is the initial round of posts loaded with Ajax Load More?

    What does your repeater template look like?

    Thread Starter AndreaPark

    (@andreapark)

    I’m sorry I wasn’t clearer. The first round of posts are loaded as the home page. It’s when I click the Load More button that the new posts show up and are missing the link. But …

    You’ve got me headed in the right direction.

    I added <a href="<?php the_permalink() ?>">[Read More...]</a> after the <?php the_excerpt(); ?> in the Repeater Template.

    The link is there, but now I have at the end of the excerpt ‘[…][Read More …]’

    What do you think?

    Thread Starter AndreaPark

    (@andreapark)

    Hey there,

    You did such a great job pointing me into the right direction.

    I added:

    `function custom_excerpt_more( $more ) {
    return ‘…’;
    }
    add_filter( ‘excerpt_more’, ‘custom_excerpt_more’ );’

    to my functions.php file and now it is all looking like it should. I get the ‘… [ Read More … ]

    Are there any pitfalls I’m not seeing?

    Thank you so much!

    Plugin Author Darren Cooney

    (@dcooney)

    That looks correct.
    Is it working?

    Thread Starter AndreaPark

    (@andreapark)

    It seems to be working perfectly. Thanks again for the awesome plugin – I’m going to look like a hero today.

    Plugin Author Darren Cooney

    (@dcooney)

    I’m going to look like a hero today.

    I hope this happened!

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘[Read More … ] link disappears’ is closed to new replies.