如果你的页面结构有多层级,下面的代码可以找到某个页面最顶层的父页面 ID:
<?php
if ($post->post_parent) {
$ancestors = get_post_ancestors($post->ID);
$root = count($ancestors)-1;
$parent = $ancestors[$root];
} else {
$parent = $post->ID;
}
?>
标签:wordpress教学
如果你的页面结构有多层级,下面的代码可以找到某个页面最顶层的父页面 ID:
<?php
if ($post->post_parent) {
$ancestors = get_post_ancestors($post->ID);
$root = count($ancestors)-1;
$parent = $ancestors[$root];
} else {
$parent = $post->ID;
}
?>
标签:wordpress教学
下一篇:【wordpress教学】WordPress 教程:在 WordPress 中如何设置定时作业
上一篇:【wordpress教学】WordPress 技巧:后台文章列表添加自定义分类筛选
网站
小程序
文章
会员