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



get_post_type_object › WordPress Function

Seit3.0.0
Veraltetn/v
get_post_type_object ( $post_type )
Parameter:
  • (string) $post_type The name of a registered post type.
    Erforderlich: Ja
Siehe:
Gibt zurück:
  • (WP_Post_Type|null) WP_Post_Type object if it exists, null otherwise.
Definiert in:
Codex:
Changelog:
  • 4.6.0

Retrieves a post type object by name.



Quellcode

function get_post_type_object( $post_type ) {
	global $wp_post_types;

	if ( ! is_scalar( $post_type ) || empty( $wp_post_types[ $post_type ] ) ) {
		return null;
	}

	return $wp_post_types[ $post_type ];
}