类别模板-将最后一个条目显示为特色

时间:2012-05-07 作者:Martin

我正在处理我的类别模板。以下是我希望页面显示的方式:

类别名称-this is done(then styled which I can do). this is doneI can list all the posts, but I want to skip the latest

2 个回复
最合适的回答,由SO网友:Milo 整理而成

使用WP\\U查询的内置current_post 循环中的计数器:

while( have_posts() ):
    the_post();
    if( $wp_query->current_post == 0 ):
        // this is the first post in the loop
    else:
        // this is > first post
    endif;
endwhile;
使用html编辑:

<?php
while( have_posts() ):
    the_post();
    if( $wp_query->current_post == 0 ):
        ?>
        featured post

        category description

        <ul>
        <?php
    else:
        ?>
        <li>post</li>
        <?php
    endif;
endwhile;
?>
</ul>

SO网友:Mateusz Hajdziony

在posts循环外部创建一个$计数器变量(开始时等于0)。在循环中,将变量增加1。再次,在循环内部检查计数器是否为0,如果是-什么也不做,如果大于0-显示帖子。:)

结束

相关推荐

Google Maps with categories

我正在寻找可以帮助我在谷歌地图和多个类别上创建多个标记的插件。这个插件将是伟大的,但我需要更好的类别管理器。例如餐厅——素食主义者——素食主义者——酒店——五星级——四星级——我还需要能够选择要显示的类别地图。谢谢你的回答。