Support » Fixing WordPress » Having a Posts Page when Front page displays Your latest post?

  • I have Reading Settings -> Front page displays = Your latest posts. So, my front page displays my 3 latest posts as excerpts with links off to the full content.

    I want to use the “Posts page” feature – have another Page which displays all my Posts with forward and back navigation to display the next 10 posts or whatever – but I can’t access this feature because it’s a disabled radio button on the Reading Settings page.

    How do I do this?

Viewing 1 replies (of 1 total)
  • You could create a page of posts using something like:

    $paged = (get_query_var('paged')) ? get_query_var('paged') : 1;
    $args= array(
    	'posts_per_page' => 10,
    	'paged' => $paged
    );
    query_posts($args);
    if( have_posts() ) :?>
Viewing 1 replies (of 1 total)
  • The topic ‘Having a Posts Page when Front page displays Your latest post?’ is closed to new replies.