我有一个导航菜单,在其中显示具有特殊分类的页面,但我不知道如何将其标记为“当前页面”我的代码:
<div id="nav">
<?php $query = new WP_Query( array('post_type' => 'page', 'kalba' => 'Lietuviu') );?>
<ul>
<?php while ( $query->have_posts() ) : $query->the_post();?>
<li><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php the_title(); ?></a></li>
<?php endwhile;?>
</ul>
</div>