时间:2024-03-12
WordPress函数get_post_ancestors用于获取父页面的ID,通常在企业模板中,侧边栏需要显示页面导航,例如:公司简介、企业文化、人才招聘等等,就可能需要用get_post_ancestors函数来获取父页面。
get_post_ancestors( int $post )
$post
整数型,默认值为空
必须传递一个页面ID,以返回该页面的父级页面ID
Array ( [0] => 2 )
以下代码可以获取父页面的各种数据:
<?php if( is_page() ) { global $post; $parents = get_post_ancestors( $post->ID ); $id = ($parents) ? $parents[count($parents)-1]: $post->ID; $parent = get_post( $id ); } ?>
get_post_ancestors()函数位于:wp-includes/post.php
相关函数:
get_post()
Copyright © 2019-2024 javascript.hk