You know those “more” tags in WordPress which allow you to post some kind of intro of your blog post in the homepage of your WordPress-powered blog? The only thing is, when your readers click on the “Continue Reading…” link at the bottom of your introductory post, they are brought to the point where your blog post continues.
In other words, they will not readily see your blog’s headers or blog post title.
Here’s how to bring those “read more | continue reading…” readers to the top of your page…
You will need to edit your WordPress template, specifically the Main Index Template (index.php) file of your site’s theme.
The part where the_content is displayed should be replaced with this:
<?php the_content('','1',''); ?>
Please note that in some WordPress themes, the line that you have to replace looks something like any of the following:
<?php the_content(''Continue Reading »''; ?>
<?php the_content(__('Read more'));?>
Learned this technique from WordPress FAQ: How can I customize the “more” tag?