标签: php wordpress if-statement
我想查看是否在子页面上。在主页上是:
<?php if(is_front_page()): ?> <?php endif; ?>
但是当它是另一个页面时该如何做呢?
答案 0 :(得分:5)
这是字面意思right from the docs:
没有功能可以检查页面是否是子页面。我们可以解决这个问题:
if ( is_page() && $post->post_parent > 0 ) { echo "This is a child page"; }