get_post_types( array|string $args = array(), string $output = ‘names’, string $operator = ‘and’ )
Get a list of all registered post type objects.
Description Description
See also See also
- register_post_type(): for accepted arguments.
Parameters Parameters
- $args
-
(array|string) (Optional) An array of key => value arguments to match against the post type objects.
Default value: array()
- $output
-
(string) (Optional) The type of output to return. Accepts post type ‘names’ or ‘objects’.
Default value: ‘names’
- $operator
-
(string) (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 value: ‘and’
Return Return
(string[]|WP_Post_Type[]) An array of post type names or objects.
Source Source
File: wp-includes/post.php
|
1268 1269 1270 1271 1272 1273 1274 |
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 );} |
View on Trac
Changelog Changelog
| Version | Description |
|---|---|
| 2.9.0 | Introduced. |
