似乎没有一种标准的方法来区分第一/高层职位。环顾四周,我发现了这个方法:
$current_query = new WP_Query(\'post_type=current&post_status=publish\');
// Pull out top/first post
$first_post = ( $paged == 0 ) ? $posts[0]->ID : \'\';
while ($current_query->have_posts()) : $current_query->the_post();
if ($first_post == $post->ID) {
echo \'<div class="post top-post-special" id="post-\' . get_the_ID() . \'">\';
} else {
echo \'<div class="post" id="post-\' . get_the_ID() . \'">\';
}
这依赖于$paged(似乎是Wordpress内置的)在第一篇文章中按预期添加“top post special”类。但是,当使用以下query\\u post而不是新的WP\\u query实例时,它将不再工作:
$args=array(
\'taxonomy\' => \'highlights\',
\'term\' => \'Featured\',
\'post_type\' => \'highlights\',
);
query_posts($args);
$first_post = ( $paged == 0 ) ? $posts[0]->ID : \'\';
if ( have_posts()) : while (have_posts()) : the_post();
if ($first_post == $post->ID) {
echo \'<div class="post top-post-special" id="post-\' . get_the_ID() . \'">\';
} else {
echo \'<div class="post" id="post-\' . get_the_ID() . \'">\';
}
我以为第二个和第一个类似,不知道我做错了什么。有没有更好或标准化的方法来定位第一个职位?看起来这会发生很多事情。
最合适的回答,由SO网友:aaronwaggs 整理而成
您不需要对此进行任何特殊查询。这里有一个实现它的方法
/**
* conditional check ensures special class only shows on top post on first page.
* if you want top post on page 2, etc. to have special class, just set $first_post to true
*/
if( (int) get_query_var( \'paged\' ) > 1 ){
$first_post = false;
} else {
$first_post = true;
}
if ( have_posts()) : while (have_posts()) : the_post();
if ( $first_post ) {
echo \'<div class="post top-post-special" id="post-\' . get_the_ID() . \'">\';
$first_post = false;
} else {
echo \'<div class="post" id="post-\' . get_the_ID() . \'">\';
}