wordpress 检查当前页面是否是唯一的孙子页面

发布于 2024-10-06 00:16:12 字数 134 浏览 3 评论 0原文

我正在尝试执行一个语句来检查当前页面是否是 WordPress 中唯一的孙子页面,但似乎无法理解它。

即2级深

父>孩子>孙子

如果有超过 1 个孙子页面,则执行操作。

I am trying to do a statement that checks whether the current page is the only grand child page in wordpress and cannot seem to wrap my head around it.

ie 2 levels deep

parent > child > grandchild

if there is more than 1 grandchild page, perform action.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

物价感观 2024-10-13 00:16:12
$siblings = get_posts(array(
    'exclude'     => array($post->ID),
    'post_type'   => $post->post_type,
    'post_parent' => $post->post_parent,
    'numberposts' => 1 // we're only checking if there ARE siblings, so save a little memory
));

$is_only_child = empty($siblings);
$siblings = get_posts(array(
    'exclude'     => array($post->ID),
    'post_type'   => $post->post_type,
    'post_parent' => $post->post_parent,
    'numberposts' => 1 // we're only checking if there ARE siblings, so save a little memory
));

$is_only_child = empty($siblings);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文