我在一个网站上工作,我正在尝试使用 Isotope (http://isotope.metafizzy.co/docs/filtering.html) 在我的分类页面上过滤/排序帖子。但是由于某种原因,无论我做什么,我都无法使其工作。我需要一些紧急帮助。这是我的编码的样子 - 首先我在我的主题functions.php中有这个来生成类别列表
function isotope_categories() {
$terms = get_terms('videoscategory');
$html = '<ul class="filters option-set" data-option-key="filter">';
$html .= '<li><a href="#" data-option-value="*" class="selected">All items</a></li>';
foreach ($terms as $term) {
$html .= "<li><a href='#filter' data-filter='.boxes {$term->name}'>{$term->name}</a></li>";
}
$html .= '</ul>';
echo $html;
}
然后在我的分类页面上,我这样称呼它-
<nav id="options" class="option-set filter" data-option-key="filter">
<?php isotope_categories() ?>
</nav>
类别链接已生成,但它们的功能不像预期的那样。这是我的页面循环 -
<div id="content">
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
<?php $terms = get_the_terms( $post->ID, 'videoscategory' ); ?>
<div class="boxes <?php foreach( $terms as $term ) echo ' ' . $term->name; ?>" style="width:100%; float:left; border-top:1px solid #ccc; margin-top:10px;">
// MY POST CONTENT AND DIVS
</div>
<?php endwhile; else: ?>
<p><?php _e('Sorry, no posts matched your criteria.'); ?></p>
<?php endif; ?>
<?php if (function_exists("pagination")) {
pagination($additional_loop->max_num_pages);
} ?>
</div>
而它下面的js——
<script type="text/javascript">
jQuery(document).ready(function(){
var mycontainer = jQuery('#content');
mycontainer.isotope({
itemSelector: '.boxes'
});
// filter items when filter link is clicked
jQuery('#options a').click(function(){
var selector = jQuery(this).attr('data-filter');
mycontainer.isotope({ filter: selector });
return false;
});
});
</script>
我根本无法让它工作,我尝试了几种方法让它工作,但我想我错过了一些东西或者只是做错了。我必须修复或更改什么才能使过滤起作用?
很感谢任何形式的帮助。谢谢。
编辑:
通过使用 chrome 调试控制台,我能够看到这个错误 - Uncaught TypeError: Object [object Object] has no method 'isotope' - 我不确定它的含义。