wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren



has_post_parent › WordPress Function

Seit5.7.0
Veraltetn/v
has_post_parent ( $post = null )
Parameter:
  • (int|WP_Post|null) $post Optional. Post ID or WP_Post object. Default is global $post.
    Erforderlich: Nein
    Standard: null
Gibt zurück:
  • (bool) Whether the post has a parent post.
Definiert in:
Codex:

Returns whether the given post has a parent post.



Quellcode

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