我使用此功能从30天前的查询帖子中排除,
function filter_where($where = \'\') {
//posts in the last 30 days
$where .= " AND post_date > \'" . date(\'Y-m-d\', strtotime(\'-30 days\')) . "\'";
return $where;
}
// Register the filtering function
add_filter(\'posts_where\', \'filter_where\');
// Perform the query, the filter will be applied automatically
query_posts($query_string);
是否可以这样做来排除meta\\u键=投票且meta\\u值=0的帖子?