Dropdown中的Wordpress投资组合类别而不是标签

时间:2015-06-25 17:22:28

标签: php wordpress categories portfolio

检索选项卡过滤器中的类别的代码是:

<!-- BEGIN .filter-tabs -->
                        <ul class="filter-tabs filt-tabs clearfix">
                            <li class="selected"><a href="#" title="<?php _e('View all All items','hbthemes'); ?>" class="all" data-filter="*"><span class="item-name"><?php _e('All','hbthemes'); ?></span><span class="item-count">0</span></a></li>
                            <?php if ( !empty($portfolio_filters) ) { 
                                foreach ( $portfolio_filters as $slug=>$name ) { ?>
                                    <li>
                                        <a href="#" data-filter=".<?php echo $slug; ?>" title="<?php _e('View all ','hbthemes'); echo $name; _e(' items','hbthemes'); ?>">
                                            <span class="item-name"><?php echo $name; ?><span class="item-count">0</span></span>
                                        </a>
                                    </li>
                            <?php
                                } 
                            }
                            ?>
                        </ul>
                    <!-- END .filter-tabs -->

我是否知道如何在下拉控件中显示相同的类别而不是标签?

感谢您的帮助

0 个答案:

没有答案