没有WooCommerce的价格过滤器

时间:2018-11-08 作者:LePung

我有产品的自定义帖子类型(AFC备案价格),我没有安装WooCommerce。但我想在价格过滤器中按价格对产品进行排序。有什么想法可以让我做到这一点,或者有人可以为我指明正确的方向?

1 个回复
SO网友:Gufran Hasan

你应该ACF meta\\u查询按自定义字段筛选自定义帖子类型。

https://www.advancedcustomfields.com/resources/query-posts-custom-fields/

基本示例:

$posts = get_posts(array(
    \'numberposts\'   => -1,
    \'post_type\'     => \'products\',
    \'meta_key\'      => \'price\',
    \'meta_value\'    => $value
));

结束

相关推荐

apply_filters() function

我用过apply_filters() 从WordPress帖子中检索内容时,如:$content=$query_val->post_content; $content = apply_filters( \'the_content\', $content ); 当我使用apply_filters() 这个apostrophe( \' ) 在我的文本中显示了一些字符。在我移除后apply_filters() 它显示正确。所以请解释清楚!!它在做什么?我已引用此链接Referal_lin