我有一个 if 语句正在检查页面的 ID,使用以下内容:
<?php if ( is_page(10) ) { ?>
如果页面父级为 10,我该怎么做?
尝试这样的事情
global $post;
if ($post->post_parent == 10) {
echo "parent's id is 10";
}
$id = wp_get_post_parent_id( get_the_id() );
现在$id
有父页面ID
获取当前页面对象,然后获取其父 ID:
global $wp_query;
$currentPage = get_page($wp_query->get_queried_object_id());
if (is_page($currentPage['post_parent'])) {
}