PHP循环中的第一个和最后一个类

时间:2011-05-03 10:49:06

标签: php wordpress while-loop css

我正在尝试研究如何在while循环输出的第一个和最后一个项目上添加第一个和最后一个类。我通过搜索找到的唯一的东西与直接使用mysql有关,而我在Wordpress循环中使用它(我已经放入了一个我想创建类osu_first_last()的函数):

<div id="news-loop">
    <h2 class="widget-title">News</h2>
    <?php
        // Build query for 
        $wp_news_query_temp = clone $wp_query;
        $wp_news_query = new WP_Query();
        $wp_news_query->query('category_name=News&showposts=3&orderby=date&order=DESC');
        $news_counter = 0;
        // Create posts loop
        if ($wp_news_query->have_posts()) : while ($wp_news_query->have_posts()) : $wp_news_query->the_post(); ?>
        <div class="news-entry news-entry-<?php echo $news_counter; ?><?php osu_first_last(); ?>">
            <h3 class="entry-title">
            <?php the_title(); ?>
            </h3>
            <?php twentyten_posted_dateonly(); ?>
            <?php echo osu_short_excerpt(); ?>
        </div> <!-- End div.news-entry -->
        <?php
        $news_counter++;
        endwhile; ?>
        <?php endif; $wp_query = clone $wp_news_query_temp; ?>
        <a href="<?php bloginfo('url'); ?>/category/news/" class="sidebar-more">View all news</a>   
</div>

有人可以建议最好的方法吗?

谢谢,

OSU

2 个答案:

答案 0 :(得分:0)

您可以使用current_postpost_count并通过将其与查询一起传递给osu_first_last()

来确定第一篇和最后一篇文章

然后像这样实现osu_first_last()

function osu_first_last($query)
{
    $extraClass = "";
    if($query->current_post == 1)
    {
        $extraClass .= "first";
    }
    if($query->post_count == $query->current_post)
    {
        if($extraClass != "")
        {
            // post is first and last
            $extraClass .= " ";
        }
        $extraClass .= "last";
    }
    return $extraClass;
}

在您的代码中,它看起来像这样:

<div class="news-entry news-entry-<?php echo $news_counter; ?><?php echo osu_first_last($wp_news_query); ?>">

答案 1 :(得分:0)

使用count($wp_news_query->posts),您应该获得查询返回的帖子/页数。使用$wp_news_query->current_post,您将获得当前帖子/页面的索引(从0开始......)