get_post_stati() returns post statuses not types. Props jeremyfelt. Fixes #20664.

git-svn-id: http://core.svn.wordpress.org/trunk@20779 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
duck_ 2012-05-13 07:41:47 +00:00
parent 791e0df3dd
commit a2cf2fa988

View File

@ -755,7 +755,7 @@ function get_post_status_object( $post_status ) {
* @param string $output The type of output to return, either post status 'names' or 'objects'. 'names' is the default.
* @param string $operator The logical operation to perform. 'or' means only one element
* from the array needs to match; 'and' means all elements must match. The default is 'and'.
* @return array A list of post type names or objects
* @return array A list of post status names or objects
*/
function get_post_stati( $args = array(), $output = 'names', $operator = 'and' ) {
global $wp_post_statuses;