0

我试图突出显示一个菜单项,具体取决于它是否在当前页面上。下面的代码当前突出显示每个菜单项,因为它位于 foreach 循环中。如果分类术语位于某个页面 id 上并且只有该术语(不是每个术语),我如何突出显示它?

                    <?php $args = array( 'taxonomy' => 'blog' );
                        $terms = get_terms('blog', $args);

                        $count = count($terms); $i=0;
                        if ($count > 0) {
                            $cape_list = '<p class="my_term-archive">';
                            echo $postid;
                            foreach ($terms as $term) {
                                $i++;
                                $absolute = get_bloginfo('url');
                                $postid = get_the_ID();
                                if($postid == "561") {
                                    $term_list .= '<a class="menu-active" style="padding-left:30px;width:88%!IMPORTANT;" href="' . $absolute . '/blog/' . $term->slug . '" title="' . sprintf(__('View all post filed under %s', 'my_localization_domain'), $term->name) . '">' . $term->name . '</a>';
                                } else {
                                    $term_list .= '<a style="padding-left:30px;width:88%!IMPORTANT;" href="' . $absolute . '/blog/' . $term->slug . '" title="' . sprintf(__('View all post filed under %s', 'my_localization_domain'), $term->name) . '">' . $term->name . '</a>';
                                } } ?>

                            <?php echo $term_list; } ?>
4

1 回答 1

1

您将必须查询属于当前页面的分类术语并在 foreach 循环中比较它们的 id-s。

get_the_ID()函数返回当前帖子的 id,而不是当前分类。

这是一个与 wordpress 相关的问题的链接,它显示了如何查询当前的分类术语:

https://wordpress.stackexchange.com/questions/20431/how-to-get-taxonomy-term-of-the-current-page-and-populate-queries-in-the-templat

于 2012-12-18T16:57:49.583 回答