Make WordPress Core

Ticket #47685: 47685.3.diff

File 47685.3.diff, 977 bytes (added by garrett-eclipse, 4 years ago)

Minor refresh to improve the filter docblock and rename it quick_edit_dropdown_authors_args to coincide with the existing quick_edit_dropdown_pages_args filter.

  • src/wp-admin/includes/class-wp-posts-list-table.php

     
    15871587                                                        $users_opt['show_option_none'] = __( '— No Change —' );
    15881588                                                }
    15891589
     1590                                                /**
     1591                                                 * Filters the arguments used to generate the Quick Edit authors drop-down.
     1592                                                 *
     1593                                                 * @since 5.6.0
     1594                                                 *
     1595                                                 * @see wp_dropdown_users()
     1596                                                 *
     1597                                                 * @param array $users_opt An array of arguments for the wp_dropdown_users function.
     1598                                                 * @param bool  $bulk      A flag to denote if it's a bulk action.
     1599                                                 */
     1600                                                $users_opt = apply_filters( 'quick_edit_dropdown_authors_args', $users_opt, $bulk );
     1601
    15901602                                                $authors = wp_dropdown_users( $users_opt );
    15911603                                                if ( $authors ) :
    15921604                                                        $authors_dropdown  = '<label class="inline-edit-author">';