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



get_post_parent › WordPress Function

Seit5.7.0
Veraltetn/v
get_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:
  • (WP_Post|null) Parent post object, or null if there isn't one.
Definiert in:
Codex:

Retrieves the parent post object for the given post.



Quellcode

function get_post_parent( $post = null ) {
	$wp_post = get_post( $post );
	return ! empty( $wp_post->post_parent ) ? get_post( $wp_post->post_parent ) : null;
}