近 1000 次浏览,没有一条评论。好吧,我也需要这个,并决定去做。我已经分享了下面的 JavaScript 和 Wordpress 代码,供遥远的将来的人们使用。看起来很多,但那是因为我已经定义了一些 jQuery 函数,您可以稍后使用 .extend。它所做的只是寻找带有 CSS 类 .content-filter 的 select 元素(下拉菜单)。
一旦找到,它会使用下拉列表的 id 将 GET 变量设置为当前选择的值,然后重定向到相同的 URL 并添加这些 GET 变量。例如,如果下拉列表的 id 是 product_filter,并且它的值设置为 date,那么它将设置 GET 变量 product_filter=date。这很棒,因为它不关心您的 Wordpess 详细信息 - 它只关心 select 元素。
// A bunch of helper methods for reading GET variables etc from the URL
jQuery.extend({
urlGetVars : function() {
var GET = {};
var tempGET = location.search;
tempGET = tempGET.replace('?', '').split('&');
for(var i in tempGET) {
var someVar = tempGET[i].split('=');
if (someVar.length == 2) {
GET[someVar[0]] = someVar[1];
}
}
return GET;
},
urlGetVar : function(name) {
return $.urlGetVars()[name];
},
serializeUrlVars : function(obj) {
var str = [];
for(var p in obj)
str.push(encodeURIComponent(p) + "=" + encodeURIComponent(obj[p]));
return str.join("&");
},
currentUrl : function() {
return window.location.href.slice(0,window.location.href.indexOf('?'));
}
});
// Adds functionality to filter content using a dropdown
var ContentFilter = function ($) {
$(document).ready(function() {
// Return to a scroll position if exists
var scroll = $.urlGetVar('scroll');
if (typeof scroll != 'undefined') {
$(window).scrollTop(scroll);
}
// Prepare the filter dropdowns
$('.content-filter').each(function(){
var me = $(this);
// e.g. content-filter-product
var id = me.attr('id');
// Refresh with selected filter on change
var refresh = function() {
var GET = $.urlGetVars();
GET[id] = me.val();
// Save scroll position, return to this position on load
GET['scroll'] = $(window).scrollTop();
var newVar = $.currentUrl() + '?' + $.serializeUrlVars(GET);
window.location = newVar;
};
me.change(refresh);
});
});
}(jQuery);
现在是 Wordpress 代码。我们真正需要的是生成带有某种 id 的select 并将类设置为.content-filter。此代码要求输入“post”或“product”之类的帖子类型,并创建 select 元素。然后它为了方便返回 GET 变量,如果没有设置,则默认为“最新”。请注意,$fields 数组设置了您想要支持的所有不同的orderby values。您可以随时使用$_GET['product_filter'] 或$_GET['post_filter'] 在模板中的任何位置访问它,具体取决于您的类型。这意味着在任何给定页面上只能存在一个,但您希望这样 - 否则 jQuery 将不知道该使用哪个。您可以扩展此代码以设置自定义 id 或稍后您喜欢的任何内容。
function ak_content_filter($post_type_id = 'post', &$filter_get_value, $echo = TRUE) {
$dropdown = '<div class="content-filter-wrapper">';
// The dropdown filter id for this post type
$filter_id = $post_type_id.'_filter';
// The actual dropdown
$dropdown .= '<label for="'. $filter_id .'">Filter</label><select id="'. $filter_id .'" class="content-filter" name="'. $filter_id .'">';
// The available ways of filtering, to sort you'd need to set that in the WP_Query later
$fields = array('date' => 'Newest', 'comment_count' => 'Most Popular', 'rand' => 'Random');
$filter_get_value = isset($_GET[$filter_id]) ? $_GET[$filter_id] : 'newest'; // default is 'newest'
foreach ($fields as $field_value=>$field_name) {
$dropdown .= '<option value="'. $field_value .'" '. selected($field_value, $filter_get_value, FALSE) .'>'. $field_name .'</option>';
}
$dropdown .= '</select></div>';
// Print or return
if ($echo) {
echo $dropdown;
} else {
return $dropdown;
}
}
现在是有趣的部分 - 将它们放在内容页面中。我们所有的工作都得到了一些甜蜜而简短的代码:
// This will fill $product_filter with $_GET['product_filter'] or 'newest' if it doesn't exist
ak_content_filter('product', $product_filter);
$args = array('post_type' => 'product', 'orderby' => $product_filter);
// This is just an example, you can use get_pages or whatever supports orderby
$loop = new WP_Query( $args );
// OR, to avoid printing:
$dropdown = ak_content_filter('product', $product_filter, FALSE);
// ... some code ...
echo $dropdown;
我使用了自定义帖子类型“产品”,但如果您使用的是“帖子”,只需替换它即可。如果他们还没有把它做成插件的话,可能有人应该把它做成插件:P