我正在使用facetwp,目前如果我使用facet并且只是点击搜索而不在搜索框中输入任何内容,则帖子会随机显示。
然而,当我输入一个邮政编码/邮政编码并点击搜索时,首先显示最新列表。在Facet模板中我使用
'post', 'post_status' => 'publish', 'orderby' => 'rand', );
我尝试过这几种方法,但没有快乐
'post', 'post_status' => 'publish', 'taxonomy' => 'delivery_postcode', 'orderby' => 'rand', );
'post', 'post_status' => 'publish', 'taxonomies' => 'delivery_postcode', 'orderby' => 'rand', );
'post', 'post_status' => 'publish', 'taxonomies' => '_delivery_postcode', 'orderby' => 'rand', );
我不确定我是否应该查看facets模板以查询问题或函数.php