Docs: The type for the $t_time parameter in the post_date_column_time filter docs should be string, not array.

Props jjeaton
Fixes #33540.

Built from https://develop.svn.wordpress.org/trunk@33731


git-svn-id: http://core.svn.wordpress.org/trunk@33699 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Drew Jaynes 2015-08-25 17:15:21 +00:00
parent 7aff9092c7
commit e8283a6f88
2 changed files with 4 additions and 4 deletions

View File

@ -838,13 +838,13 @@ class WP_Posts_List_Table extends WP_List_Table {
/**
* Filter the published time of the post.
*
* If $mode equals 'excerpt', the published time and date are both displayed.
* If $mode equals 'list' (default), the publish date is displayed, with the
* If `$mode` equals 'excerpt', the published time and date are both displayed.
* If `$mode` equals 'list' (default), the publish date is displayed, with the
* time and date together available as an abbreviation definition.
*
* @since 2.5.1
*
* @param array $t_time The published time.
* @param string $t_time The published time.
* @param WP_Post $post Post object.
* @param string $column_name The column name.
* @param string $mode The list display mode ('excerpt' or 'list').

View File

@ -4,7 +4,7 @@
*
* @global string $wp_version
*/
$wp_version = '4.4-alpha-33730';
$wp_version = '4.4-alpha-33731';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.