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



wp_get_post_parent_id › WordPress Function

Seit3.1.0
Veraltetn/v
wp_get_post_parent_id ( $post = null )
Parameter:
  • (int|WP_Post|null) $post Optional. Post ID or post object. Defaults to global $post.
    Erforderlich: Nein
    Standard: null
Gibt zurück:
  • (int|false) Post parent ID (which can be 0 if there is no parent), or false if the post does not exist.
Definiert in:
Codex:
Changelog:
  • 5.9.0

Returns the ID of the post's parent.



Quellcode

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