wpseek.com
A WordPress-centric search engine for devs and theme authors



wp_get_post_parent_id › WordPress Function

Since3.1.0
Deprecatedn/a
wp_get_post_parent_id ( $post = null )
Parameters:
  • (int|WP_Post|null) $post Optional. Post ID or post object. Defaults to global $post.
    Required: No
    Default: null
Returns:
  • (int|false) Post parent ID (which can be 0 if there is no parent), or false if the post does not exist.
Defined at:
Codex:
Change Log:
  • 5.9.0

Returns the ID of the post's parent.



Source

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;
}