Show title at wordpress more tag

If we use the default wordpress more tag, then all posts will show a link with the word “more”, it is not so good for seo, because all the link words are the same: More, but they link to different pages with different content.

We can modify certain code to inforce wordpress “more” tag, we can add post title with more tag. There are two methods:

first one:

<?php the_content(“…continue reading the story  called ” . get_the_title(”, ”, false)); ?>

second one:

<?php the_content(the_title(‘Continue reading &ldquo;’,’&rdquo;’,false)); ?>