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



get_post_type › WordPress Function

Seit2.1.0
Veraltetn/v
get_post_type ( $post = null )
Parameter:
  • (int|WP_Post|null) $post Optional. Post ID or post object. Default is global $post.
    Erforderlich: Nein
    Standard: null
Gibt zurück:
  • (string|false) Post type on success, false on failure.
Definiert in:
Codex:

Retrieves the post type of the current post or of a given post.



Quellcode

function get_post_type( $post = null ) {
	$post = get_post( $post );
	if ( $post ) {
		return $post->post_type;
	}

	return false;
}