子の子の子の子のあるページのみのWordpress検索フィルター
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の単一の値のみを受け入れます.
これに対する解決策は大歓迎です.
ありがとう