wp_get_post_parent_id

函数
wp_get_post_parent_id ( $post = null )
参数
  • (int|WP_Post|null) $post Optional. Post ID or post object. Defaults to global $post.
    Required:
    Default: null
返回值
  • (int|false) Post parent ID (which can be 0 if there is no parent), or false if the post does not exist.
定义位置
相关方法
get_post_parentwp_get_post_catswp_get_post_revisionwp_get_post_revisionswp_get_term_taxonomy_parent_id
引入
3.1.0
弃用
-

wp_get_post_parent_id: 这个函数为一个给定的文章检索父文章的ID。它接受一个文章的ID作为参数。

返回该文章的父级ID。

function wp_get_post_parent_id( $post = null ) {
	$post = get_post( $post );

	if ( ! $post || is_wp_error( $post ) ) {
		return false;
	}

	return (int) $post->post_parent;
}

常见问题

FAQs
查看更多 >