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

Размер файла: 1.83Kb
<?php get_header(); ?>

<div class="divtext">
    <div id="maincontent">
<?php wp_list_categories('show_count=1&title_li=<h2 class="thetitle">Категории</h2>'); ?></div>
<div id="maincontent">
        <?php if (have_posts()) : ?>
            <?php while (have_posts()) : the_post(); ?>
                <div class="post">
                    <div>
                        <h2 id="post-<?php the_ID(); ?>" class="thetitle"><a href="<?php the_permalink() ?>"><?php the_title(); ?></a></h2>
                        <div class="postinfo">
							<?php the_time('F jS, Y') ?> by <?php the_author() ?><br />
                        	<strong>Категория:</strong> <?php the_category(' | ') ?>
						</div>
                        <div class="entry">
                            <?php the_excerpt(); ?>                            
                        </div>
						<div class="postinfo">
							<a href="<?php the_permalink() ?>" class="readmore">подробней...</a>                 	
                            <?php comments_popup_link('', '<br />Комментарии(1)', '<br />Комментарии(%)'); ?><br />
                        </div>    
                    </div>
                </div>
            <?php endwhile; ?>
            
            <?php 
			$max_num_pages = $wp_query->max_num_pages;
			if($max_num_pages > 1) { 
			?>
			<div>
                <div><?php posts_nav_link('','','&laquo; назад') ?> &nbsp; <?php posts_nav_link('','вперёд &raquo;','') ?></div>
            </div>
			<?php }else{ } ?>
		
        <?php else : ?>
            <div class="post">
                <div class="postnohit">
                    <h2 class="pagetitle">Не найден</h2>
                </div>
            </div>
        <?php endif; ?>
    </div>
</div>

<?php get_footer(); ?>