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

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

<div id="mainwrapper" class="clearfix">
	<div id="maincontent">
		<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
			<div class="postpage">
				<h2 id="post-<?php the_ID(); ?>" class="pagetitle"><?php the_title(); ?></h2>
				<div class="entrytext">
					<?php the_content('<p class="serif">Читать полностью &raquo;</p>'); ?>
					<?php link_pages('<p><strong>Страницы:</strong> ', '</p>', 'number'); ?>
				</div>
			</div>
		<?php endwhile; endif; ?>
	</div>
</div>

<?php get_footer(); ?>