我有一个自定义的帖子类型,“case”。我目前正在编辑单个案例。php文件和侧栏中有以下代码:
<?php
$case_query = array (
\'post_type\' => \'case\',
\'showposts\' => -1,
\'orderby\' => \'title\',
\'order\' => ASC
);
query_posts($case_query);
if ( have_posts() ) {
echo \'<div class="case-list">\';
while (have_posts()) {
the_post();
$title = get_the_title();
$url = get_permalink(); ?>
<div class="case-list-item">
<div class="ico"><i class="fa fa-fw fa-angle-right"></i></div>
<div class="link"><a href="<?php echo $url; ?>"><?php echo $title; ?></a></div>
</div>
<?php
}
echo \'</div>\';
wp_reset_query();
}
?>
我想知道的是,如何检查上面while循环中的哪些帖子是当前查看的帖子,然后向其中添加一个“current”类?还是我做错了?。。