• Hello,
    I am making a wordpress theme and I want to have a home page (home.php) which displays a couple things as well as recent blog posts and then a blog page that displays just the blog posts (not the extra things). How would I accomplish this? It seems like an easy way, but I cannot figure it out. Thank you very much!

Viewing 2 replies - 1 through 2 (of 2 total)
  • write following code in your home.php file

    <?php
      query("showpost=1");
      while(have_posts()): the_post();
    ?>
     <h2><?php the_title() ?></h2>
     <div class="entry"><php the_content() ?></div>
    <?php
       endwhile;
    ?>
    Thread Starter Connor Crosby

    (@ccmovies)

    Okay, but how would I make it so I can have a page with all the blog posts?

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Home page and Blog Page’ is closed to new replies.