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



get_post_types › WordPress Function

Seit2.9.0
Veraltetn/v
get_post_types ( $args = array(), $output = 'names', $operator = 'and' )
Parameter: (3)
  • (array|string) $args Optional. An array of key => value arguments to match against the post type objects. Default empty array.
    Erforderlich: Nein
    Standard: array()
  • (string) $output Optional. The type of output to return. Either 'names' or 'objects'. Default 'names'.
    Erforderlich: Nein
    Standard: 'names'
  • (string) $operator Optional. The logical operation to perform. 'or' means only one element from the array needs to match; 'and' means all elements must match; 'not' means no elements may match. Default 'and'.
    Erforderlich: Nein
    Standard: 'and'
Siehe:
Gibt zurück:
  • (string[]|WP_Post_Type[]) An array of post type names or objects.
Definiert in:
Codex:

Gets a list of all registered post type objects.



Quellcode

function get_post_types( $args = array(), $output = 'names', $operator = 'and' ) {
	global $wp_post_types;

	$field = ( 'names' === $output ) ? 'name' : false;

	return wp_filter_object_list( $wp_post_types, $args, $operator, $field );
}