我正在做一个搜索(wordpress),应该只返回一个网页的孩子。它目前正在返回所有网页。我需要它只返回一个网页的孩子在结果中。
父页面是'products',所以网址如下:
www.helpme.com/products/child-page-1
www.helpme.com/products/child-page-2
我的代码:
if(have_posts()){
while(have_posts()){
the_post();
if ( $post->post_parent == 'products' ){
something
}
}
}
?>
can you help me, please ?
1条答案
按热度按时间ffdz8vbo1#
试试这个: