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

问题描述 投票:0回答:1

我想检查一下我是否在子页面上。在主页上是:

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

但是当是另一个页面时怎么办?

php wordpress if-statement
1个回答
6
投票

来自文档

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

if ( is_page() && $post->post_parent > 0 ) { 
    echo "This is a child page";
}
© www.soinside.com 2019 - 2024. All rights reserved.