Фильтр поиска Wordpress только для страницы с Child of Child of Child of Child
1 ответ
- голосов
Вы,вероятно,сможете сделать что-то подобное.Вероятно,это менее эффективно,но должно найти всех потомков данной страницы,а не только прямых потомков.
function find_descendants($post_id) {
$descendant_ids = array();
$pages = get_pages("child_of=$post_id");
foreach ($pages as $page) { array_push($descendant_ids, $page->ID); }
return $descendant_ids;
}
function SearchFilter($query) {
if ($query->is_search) {
$query->set ( 'post__in', find_descendants(21) );
}
return $query;
}
add_filter('pre_get_posts','SearchFilter');
You can probably do something like this. It's probably less efficient, but should find all descendants of a given page rather than just direct children.
function find_descendants($post_id) {
$descendant_ids = array();
$pages = get_pages("child_of=$post_id");
foreach ($pages as $page) { array_push($descendant_ids, $page->ID); }
return $descendant_ids;
}
function SearchFilter($query) {
if ($query->is_search) {
$query->set ( 'post__in', find_descendants(21) );
}
return $query;
}
add_filter('pre_get_posts','SearchFilter');
после просмотра вопроса на этом сайте я нашел обходной путь для этого:
Когда я это делаю,он ищет только дочерний элемент родителя 21,а не дочерний элемент родителя 21.
Кроме того,query_vars принимает только одно значение дляpost_parent.
Приветствуется любое решение этой проблемы.
спасибо