• im using the ‘read more’ link functionality on my custom built index page and it’s all good. i’m using the same exact code on my page.php template and it’s not working. can someone explain why? and if this is the way wordpress works, is there a work-around??

    thanks!

Viewing 1 replies (of 1 total)
  • Was searching for the same exact problem and suddenly it popped up in my mind while reading your post.

    On custom template pages using query_post to customise the query you have to reset the $more variable before the loop.

    It should looks like this:

    global $more;
    $more = 0;
    while ( have_posts() ) : the_post() ?>
    	....
    endwhile;

    Hope this will help.

Viewing 1 replies (of 1 total)
  • The topic ‘read more link not working on default pages’ is closed to new replies.