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?
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?
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!
That looks correct.
Is it working?
It seems to be working perfectly. Thanks again for the awesome plugin – I’m going to look like a hero today.