Title: azyzl's Replies | WordPress.org

---

# azyzl

  [  ](https://wordpress.org/support/users/azyzl/)

 *   [Profile](https://wordpress.org/support/users/azyzl/)
 *   [Topics Started](https://wordpress.org/support/users/azyzl/topics/)
 *   [Replies Created](https://wordpress.org/support/users/azyzl/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/azyzl/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/azyzl/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/azyzl/engagements/)
 *   [Favorites](https://wordpress.org/support/users/azyzl/favorites/)

 Search replies:

## Forum Replies Created

Viewing 2 replies - 1 through 2 (of 2 total)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Comic Easel] Home Page View vs. Single Page](https://wordpress.org/support/topic/home-page-view-vs-single-page/)
 *  Thread Starter [azyzl](https://wordpress.org/support/users/azyzl/)
 * (@azyzl)
 * [11 years, 7 months ago](https://wordpress.org/support/topic/home-page-view-vs-single-page/#post-5275410)
 * And you saved me again! This is exactly what I wanted. I also edited the single.
   php, as recommended. Thank you so, so much for the help. I have no idea how long
   it would have taken me to figure this out on my own (if I ever did). Keep on 
   being awesome!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Comic Easel] Home Page View vs. Single Page](https://wordpress.org/support/topic/home-page-view-vs-single-page/)
 *  Thread Starter [azyzl](https://wordpress.org/support/users/azyzl/)
 * (@azyzl)
 * [11 years, 8 months ago](https://wordpress.org/support/topic/home-page-view-vs-single-page/#post-5275337)
 * Ah! you have saved me. You know what my silly mistake was? I didn’t have a single.
   php. Embarrasing, really. So on my index.php I have
 *     ```
       <?php get_header(); ?>
   
       <div id="primary">
       <?php do_action('comic-blog-area'); ?>
       </div>
   
       <?php get_footer(); ?>
       ```
   
 * And on my single.php I have
 *     ```
       <?php get_header(); ?>
   
       <div id="primary">
       <?php do_action('comic-area'); ?>
       <?php do_action('comic-blog-area'); ?>
       </div>
   
       <?php get_header(); ?>
   
       <div id="primary">
       <?php do_action('comic-area'); ?>
       <?php do_action('comic-blog-area'); ?>
       </div>
   
       <div id="content" class="clearfix">
       <?php if (have_posts()) : ?>
           <?php while (have_posts()) : the_post(); ?>
           <div class="post" id="post-<?php the_ID(); ?>">
               <h2><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to
               <?php the_title(); ?>"><?php the_title(); ?></a></h2>
               <small><?php the_time('F jS, Y') ?> <!-- by <?php the_author() ?> --></small>
   
               <div class="entry">
                   <?php the_content('Read the rest of this entry »'); ?>
               </div>
           </div>
           <?php endwhile; ?>
           <div class="navigation">
               <div class="alignleft"><?php next_posts_link('Previous Entries') ?></div>
               <div class="alignright"><?php previous_posts_link('Next Entries') ?></div>
           </div>
       <?php else : ?>
           <h2 class="center">Not Found</h2>
           <p class="center">Sorry, but you are looking for something that isn't here.</p>
       <?php endif; ?>
       </div>
   
       <?php comments_template(); ?>
       <?php get_footer(); ?>
   
       <?php comments_template(); ?>
       <?php get_footer(); ?>
       ```
   
 * My final question is this: Is there any way to have the last, say 5 comic blogs
   [show up on the homepage](http://www.crystalballcomic.com/comics/) opposed to
   the one right now?

Viewing 2 replies - 1 through 2 (of 2 total)