如何检测wordpress中是否有子页面?

时间:2015-03-13 15:19:42

标签: php wordpress if-statement

我想查看是否在子页面上。在主页上是:

<?php if(is_front_page()): ?> <?php endif; ?>

但是当它是另一个页面时该如何做呢?

1 个答案:

答案 0 :(得分:5)

这是字面意思right from the docs

  

没有功能可以检查页面是否是子页面。我们可以解决这个问题:

if ( is_page() && $post->post_parent > 0 ) { 
    echo "This is a child page";
}