Viewing 3 replies - 1 through 3 (of 3 total)
  • Thread Starter lutionevo

    (@lutionevo)

    <?php get_header(); ?>

    <div id=”posts”>

    <?php if(have_posts()) : ?><?php while(have_posts()) : the_post(); ?>

    <div class=”post” id=”post-<?php the_ID(); ?>”>

    <h2>” title=”<?php the_title(); ?>”><?php the_title(); ?></h2>

    <div class=”date”>

    <?php the_time(‘F j, Y’); ?>
    <?php edit_post_link(‘Edit’, ‘ | ‘, ”); ?>

    </div>

    <div class=”tags”>
    <?php the_tags(‘Tags: ‘, ‘, ‘, ”); ?>
    </div>

    <div class=”entry”>

    <?php the_content(); ?>

    <div class=”commentbubble”>
    <?php comments_popup_link(‘0′,’1′,’%’) ?>
    </div>

    <div class=”postmetadata”>
    <?php _e(‘Filed under:’); ?>
    <?php the_category(‘, ‘) ?> <?php _e(‘by’); ?> <?php the_author(); ?>
    </div>

    </div>

    </div>

    <?php endwhile; ?>

    <div class=”navigation”>
    <?php posts_nav_link(‘ | ‘,’« Previous Page’,’Next Page »’); ?>
    </div>

    <?php else : ?>

    <div class=”post” id=”post-<?php the_ID(); ?>”>
    <h2><?php _e(‘Not Found’); ?></h2>
    </div>

    <?php endif; ?>

    </div>

    <?php get_sidebar(); ?>

    <?php get_footer(); ?>

    <?php wp_footer(); ?>

    </div>

    </body>
    </html>

    Thread Starter lutionevo

    (@lutionevo)

    Perhaps I just need an alternate method of creating a Home button?

    Thread Starter lutionevo

    (@lutionevo)

    fixt

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Redirect stopped working’ is closed to new replies.