wpseek.com
Bazujące na WordPress narzędzie wyszukiwania dla deweloperów i twórców motywów.



get_post_types › WordPress Function

Od2.9.0
Przestarzałyn/a
get_post_types ( $args = array(), $output = 'names', $operator = 'and' )
Parametry: (3)
  • (array|string) $args Optional. An array of key => value arguments to match against the post type objects. Default empty array.
    Wymagane: Nie
    Domyślny: array()
  • (string) $output Optional. The type of output to return. Either 'names' or 'objects'. Default 'names'.
    Wymagane: Nie
    Domyślny: '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'.
    Wymagane: Nie
    Domyślny: 'and'
Zobacz:
Powrót:
  • (string[]|WP_Post_Type[]) An array of post type names or objects.
Zdefiniowane na:
Codex:

Gets a list of all registered post type objects.



Źródło

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