数据过滤器库 - 需要活动的特定类别而不是全部

时间:2017-01-11 08:55:20

标签: javascript wordpress themes

我有一个问题,我有一个代码

<!--Filter-->
            <div class="filters">
                <ul class="filter-tabs clearfix anim-3-all">

                    <li class="filter" data-role="button" data-filter="all"><?php esc_html_e('All', 'dreamland');?></li>

                    <?php foreach( $fliteration as $t ): ?>
                    <li class="filter" data-role="button" data-filter=".<?php echo dreamland_set( $t, 'slug' ); ?>"><?php echo dreamland_set( $t, 'name'); ?></li>
                    <?php endforeach;?>
                </ul>
            </div>

现在,我有活动过滤器&#34;所有&#34;,但是如何激活另一个过滤器?比如我的类别?我认为,必须在javascript中设置,但不知道在哪里。

感谢您的帮助。

0 个答案:

没有答案