特別な分類法でページを表示するナビゲーション メニューがありますが、「現在のページ」としてマークする方法がわかりません。私のコード:
<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>