我使用以下内容列出当前页面的所有子页面。我想使用wp_get_post_terms按自定义分类词术语过滤这些子页面。
当前页面
- 分类1标题
- - 子页面1
- - 第2页
- 分类学2标题
- - 子页面1
- - 子第2页
$mypages = get_pages( array( 'child_of' => $post->ID, 'sort_column' => 'post_date', 'sort_order' => 'desc' ) );
foreach( $mypages as $page ) {
$content = $page->post_content;
if ( ! $content )
continue;
echo "<h2><?php echo $page->post_title; ?></h2>";
}
有人可以帮忙吗?