Returns whether the given post has a parent post.
Parameters
Source
function has_post_parent( $post = null ) {
return (bool) get_post_parent( $post );
}
Changelog
Version | Description |
---|---|
5.7.0 | Introduced. |
Returns whether the given post has a parent post.
function has_post_parent( $post = null ) {
return (bool) get_post_parent( $post );
}
Version | Description |
---|---|
5.7.0 | Introduced. |
User Contributed Notes
You must log in before being able to contribute a note or feedback.