Wordpress当前分类页面

时间:2012-11-09 19:30:03

标签: php wordpress taxonomy

我有一个导航菜单,我在其中显示具有特殊分类的页面,但我不知道如何将其标记为“当前页面” 我的代码:

    <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>  

0 个答案:

没有答案