get_post_parent

函数
get_post_parent ( $post = null )
参数
  • (int|WP_Post|null) $post Optional. Post ID or WP_Post object. Default is global $post.
    Required:
    Default: null
返回值
  • (WP_Post|null) Parent post object, or null if there isn't one.
定义位置
相关方法
wp_get_post_parent_idhas_post_parentget_post_metaget_postdataget_post_format
引入
5.7.0
弃用
-

get_post_parent: 这个WordPress函数检索当前文章的父文章的ID。如果当前文章没有父文章或根本就不是一个文章,它将返回0。

为给定的文章检索父职位对象。

function get_post_parent( $post = null ) {
	$wp_post = get_post( $post );
	return ! empty( $wp_post->post_parent ) ? get_post( $wp_post->post_parent ) : null;
}

常见问题

FAQs
查看更多 >