Continue Reading Option in WordPress
Lately I’ve been seeing a lot of requests from individuals regarding how to display a “Keep Reading” or “Continue Reading” option on their WordPress blog when the home page displays all the latest posts. Now there are a variety of different ways of accomplishing this task and each are valid in their own way. Depending on what kind of person you are will determine which way you’ll want to go.
1. Manual Excerpts – There is a section when creating a post in which you can craft manual excerpts. This is what will appear on your home page when you post your content. If you are writing all the content for your blog yourself this is most likely the easiest option to run with.
2. The MORE button – There is a button that says “more” when you are creating a new post. When you click it, it will display some code that looks like this <)!--more--> minus the ) which I threw in there to display it on the page. Everything before the more tag will appear on your home page while the rest is only displayed after someone clicks on your “continue reading” button.
3. Plugins – I’ve run across a few plugins that will supposedly accomplish this task for you, HOWEVER, I stopped using them due to reasons that I can’t even remember.
4. Themeing – This is the route that I typically take and will work with MOST themes. Themes such as Atahulapa more than likely have the option to turn this function on somewhere deep within all their options. Under “Appearance” click on “Editor.” Now look for the line of code that reads < ?php the_content('Continue Reading »'); ?> and replace it with < ?php the_excerpt(); ?> as well as < a href="< ?php the_permalink(); ?>“>CONTINUE READING< /a> and you’re good to go. Feel free to replace continue reading with whatever text you want.
.gif)

