当当前站点url等于帖子的永久链接时,有没有方法向div添加类?
我需要一个类“当前”到我的自定义菜单。我把帖子链接放在一个带有循环的列表项中,对于每个链接,我想检查永久链接是否等于当前页面url。如果永久链接与当前页面url匹配,我想添加类“current”。
类似于:
<?php $currentUrl = "http://" . $_SERVER[\'HTTP_HOST\'] . $_SERVER[\'REQUEST_URI\']; ?>
<?php if ( $currentUrl == the_permalink() ) { echo \' class="current"\'; } else {} ?>
与回路一起:
<?php $currentUrl = "http://" . $_SERVER[\'HTTP_HOST\'] . $_SERVER[\'REQUEST_URI\']; ?>
<?php query_posts(\'orderby=name\'); ?>
<?php while (have_posts()) : the_post(); ?>
<li>
<a <?php if ( $currentUrl == the_permalink() ) { echo \' class="current"\'; } else {} ?>
href="<?php the_permalink() ?>">
<?php the_title() ?>
</a>
</li>
<?php endwhile; ?>
<?php wp_reset_query(); ?>