Forum Replies Created

Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter azyzl

    (@azyzl)

    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!

    Thread Starter azyzl

    (@azyzl)

    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 opposed to the one right now?

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