Вопрдпресс, категории

sema_87
На сайте с 28.08.2009
Offline
249
396

Подскажите пожалуйста, как сделать так, чтобы при открытии категории показывался последний пост (кратко) и дальше не анонсы ко всем постам в категории, а только список постов гиперссылками?

Uh-Oh We're In Trouble, Something's Come Along And It's Burst Our Bubble!
K2
На сайте с 15.07.2011
Offline
5
K-2
#1

Вот как-то так, примерно, там где в шаблоне выводятся посты по категориям

<!-- loop start-->
<?php
if (have_posts()) :
$i=1;
while (have_posts()) : the_post();
?>
<?php if ($i==1) : ?>
<div <?php post_class() ?> id="post-<?php the_ID(); ?>">
<div class="post_info">
<h1><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></h1>
<p class="metabox">Written by <?php the_author_posts_link() ?> on <?php the_time()?> <?php edit_post_link('Edit', ' | ', ''); ?></p>
<div class="clear"></div>
</div>
<div class="postdetail">
<?php the_content("Read the rest of this entry");?>
</div>
<div class="clear"></div>
</div>
<?php else : ?>
<div <?php post_class() ?> id="post-<?php the_ID(); ?>">
<div class="post_info">
<h1><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></h1>
</div>
</div>
<?php endif; ?>
<?php
$i++;
endwhile;
?>
<?php else : ?>
<?php endif; ?>
<!-- loop end-->

Авторизуйтесь или зарегистрируйтесь, чтобы оставить комментарий