Is there a way to position the 'Continue Reading ..' on the blog excerpt directly after the blog excerpt where the [...] is located? Lind regards, Tommy
Go to blog.php present in your theme directory and remove the code given below Code: <a href="<?php the_permalink() ?>">Continue Reading...</a> Sending image for reference Now, Go to Functions > Theme function.php present in your theme directory and add the code given below Code: function new_excerpt_more($more) { global $post; return '<a class="moretag" href="'. get_permalink($post->ID) . '"> Continue reading...</a>'; } add_filter('excerpt_more', 'new_excerpt_more'); Sending image for reference This will solve your issue.