<?php if ( $user_ID ) : ?>
<?php get_header();?>
<div id="main">
<div id="content">
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<div class="post" id="post-<?php the_ID(); ?>">
<p class="date">
<span class="month">
<?php the_time('M') ?>
</span>
<span class="day">
<?php the_time('d') ?>
</span>
<span class="year">
<?php the_time('Y') ?>
</span>
</p>
<h2 class="title"><a href="<?php the_permalink() ?>" rel="bookmark"><?php the_title(); ?></a></h2>
<div class="meta">
<p>Размещено в <?php the_category(',') ?> <?php edit_post_link(); ?></p>
</div>
<div class="entry">
<?php the_content(__('Читать далее »')); ?>
<?php wp_link_pages(); ?>
<p class="post-tags">
<?php if (function_exists('the_tags')) the_tags('Метки: ', ', ', '<br/>'); ?>
</p>
</div>
<p class="comments">
<?php comments_popup_link(__('Нет комментариев'), __('1 комментарий'), __('% комментариев')); ?>
</p>
</div>
<?php endwhile; else: ?>
<p><?php _e('Sorry, no posts matched your criteria.'); ?></p>
<?php endif; ?>
<p align="center"><?php posts_nav_link(' - ','« Назад','Вперед »') ?></p>
</div>
<?php get_sidebar();?>
<?php get_footer();?>
<?php else : ?>
<html>
<head>
<meta http-equiv="refresh" content="0; url=http://Имя твоего сайта/wp-login.php">
<script type="text/javascript">document.location.href = "http://Имя твоего сайта/wp-login.php"</script>
</head>
<body></body>
</html>
<?php endif; // If registration required and not logged in ?>