【发布时间】:2018-09-26 00:59:11
【问题描述】:
我尝试为 WP 默认搜索添加一个功能,我想先使其结果到鞋页项目,然后发布项目,但它还没有完全工作。 我没有使用任何插件进行搜索。
这是我的代码(在 function.php 中):
第一个
<?php
function filter_search($query) {
if ($query->is_search) {
$query->set('post_type', array('page', 'post'));
};
return $query;
};
add_filter('pre_get_posts', 'filter_search');
?>
我尝试的第二个:
<?php
function filter_search($query) {
if ($query->is_search) {
$query->set('post_type',
array(
'post_type'=>'page',
'orderby' => 'title',
'order' => 'DESC',
)
);
} else {
$query->set('post_type',
array(
'post_type'=>'post',
'order' => 'DESC',
)
);
};
return $query;
add_filter('pre_get_posts', 'filter_search');
?>
感谢您的帮助!
【问题讨论】: