【问题标题】:How to detect if is subpage in wordpress?如何检测wordpress中是否是子页面?
【发布时间】:2015-03-13 15:19:42
【问题描述】:

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

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

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

【问题讨论】:

  • if (! is_front_page() ),我想这不是你想要的答案,但它确实是你问题的答案。
  • 您的权利。我需要知道如何检查特定页面..

标签: php wordpress if-statement


【解决方案1】:

这实际上是right from the docs

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

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

【讨论】:

    猜你喜欢
    • 2011-07-13
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 2018-10-27
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    相关资源
    最近更新 更多