Fix formatting and add a missing return description for inline documentation introduced in [32644] for `WP_Media_List_Table`.
See #25408. See #32246. Built from https://develop.svn.wordpress.org/trunk@32663 git-svn-id: http://core.svn.wordpress.org/trunk@32633 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
8bcf53cc68
commit
42afe1d373
|
@ -506,7 +506,7 @@ foreach ( $columns as $column_name => $column_display_name ) {
|
|||
/**
|
||||
* Fires for each custom column in the Media list table.
|
||||
*
|
||||
* Custom columns are registered using the 'manage_media_columns' filter.
|
||||
* Custom columns are registered using the {@see 'manage_media_columns'} filter.
|
||||
*
|
||||
* @since 2.5.0
|
||||
*
|
||||
|
@ -530,12 +530,12 @@ foreach ( $columns as $column_name => $column_display_name ) {
|
|||
}
|
||||
|
||||
/**
|
||||
* Get name of default primary column
|
||||
* Get the name of the default primary column.
|
||||
*
|
||||
* @since 4.3.0
|
||||
* @access protected
|
||||
*
|
||||
* @return string
|
||||
* @return string Name of the default primary column, in this case, 'title'.
|
||||
*/
|
||||
protected function get_default_primary_column_name() {
|
||||
return 'title';
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
*
|
||||
* @global string $wp_version
|
||||
*/
|
||||
$wp_version = '4.3-alpha-32662';
|
||||
$wp_version = '4.3-alpha-32663';
|
||||
|
||||
/**
|
||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||
|
|
Loading…
Reference in New Issue