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



post_type_exists › WordPress Function

Seit3.0.0
Veraltetn/v
post_type_exists ( $post_type )
Parameter:
  • (string) $post_type Post type name.
    Erforderlich: Ja
Siehe:
Gibt zurück:
  • (bool) Whether post type is registered.
Definiert in:
Codex:

Determines whether a post type is registered.

For more information on this and similar theme functions, check out the {@link Conditional Tags} article in the Theme Developer Handbook.


Quellcode

function post_type_exists( $post_type ) {
	return (bool) get_post_type_object( $post_type );
}