How to use Read More in Custom Type pages

The same rule applies for Custom Types as regular pages:

[php]< ?php global $more; $more = 0; ?>
//The code must be inserted ahead of the call to the content

< ?php the_content('Continue Reading'); ?>[/php]

From the WordPress docs:

Please remember that the “Read More” tag is used only on the Home page which shows the latest posts. It does not work in “Pages”. If you want to turn it on in Pages too for showing a set of partial posts, use the following code inside the loop for the dynamic content:

More info in the documentation

← Back to home