我试图创建一个简单的函数来进行“状态测试”。目标是测试并查看当前正在查看的页面是否有子页面。使用此选项可以更改布局以容纳子页面。下面的代码似乎应该可以工作,但遗憾的是,没有骰子。
有人看到我错过了什么吗?
function is_subpage() {
global $post; // load details about this page
if ( is_page() && $post->post_parent ) { // test to see if the page has a parent
return true; // return true, confirming there is a parent
} else { // there is no parent so ...
return false; // ... the answer to the question is false
}
}