has_post_parent()WP 5.7.0

Returns whether the given post has a parent post.

No Hooks.

Return

true|false. Whether the post has a parent post.

Usage

has_post_parent( $post );
$post(int|WP_Post|null)
Post ID or WP_Post object.
Default: global $post

Examples

0

#1 Check the availability of the parent post

$post_id = 5;

if ( has_post_parent( $post_id ) ) {
	echo 'The specified post has a parent post';
} 
else {
	echo 'The specified post does not have a parent post';
}

Changelog

Since 5.7.0 Introduced.

has_post_parent() code WP 6.5.2

function has_post_parent( $post = null ) {
	return (bool) get_post_parent( $post );
}