Просмотр файла WP-wap/single.php

Размер файла: 1.17Kb
<?php get_header(); ?>
<div id="mainwrapper" class="clearfix">
    <div id="maincontent">
        <?php if (have_posts()) : ?>
            <?php while (have_posts()) : the_post(); ?>
                <div class="post">
                    <div class="postnohit">
                        <h2 id="post-<?php the_ID(); ?>" class="thetitle"><?php the_title(); ?></h2>
                        <div class="postinfo">
							<?php the_time('F jS, Y') ?> by <?php the_author() ?><br />
							<strong>Категория:</strong> <?php the_category(' | ') ?><br />
						</div>                    
                    <div class="entry">
                        <?php the_content(); ?>
                    </div>
<div class="divmenu"></div>
                     <div class="divtext">
                    <?php comments_template(); ?>
                    </div>
                </div>
            <?php endwhile; ?>
        <?php else : ?>
        	<div class="post">
                <div class="postnohit">
                    <h2 class="pagetitle">Не найдено</h2>
                </div>
            </div>
        <?php endif; ?>
    </div>
</div>

<?php get_footer(); ?>