Comments: Pass the `$which` parameter to the `manage_comments_nav` action.
This brings some consistency with the `manage_users_extra_tablenav` and `manage_users_extra_tablenav` actions. Props Tkama, wpgurudev. Fixes #50736. Built from https://develop.svn.wordpress.org/trunk@48693 git-svn-id: http://core.svn.wordpress.org/trunk@48455 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
bb0630caa9
commit
cf137e7c1b
|
@ -390,7 +390,9 @@ class WP_Comments_List_Table extends WP_List_Table {
|
|||
if ( ! isset( $has_items ) ) {
|
||||
$has_items = $this->has_items();
|
||||
}
|
||||
|
||||
echo '<div class="alignleft actions">';
|
||||
|
||||
if ( 'top' === $which ) {
|
||||
ob_start();
|
||||
|
||||
|
@ -415,14 +417,18 @@ class WP_Comments_List_Table extends WP_List_Table {
|
|||
$title = ( 'spam' === $comment_status ) ? esc_attr__( 'Empty Spam' ) : esc_attr__( 'Empty Trash' );
|
||||
submit_button( $title, 'apply', 'delete_all', false );
|
||||
}
|
||||
|
||||
/**
|
||||
* Fires after the Filter submit button for comment types.
|
||||
*
|
||||
* @since 2.5.0
|
||||
* @since 5.6.0 The `$which` parameter was added.
|
||||
*
|
||||
* @param string $comment_status The comment status name. Default 'All'.
|
||||
* @param string $which The location of the extra table nav markup: 'top' or 'bottom'.
|
||||
*/
|
||||
do_action( 'manage_comments_nav', $comment_status );
|
||||
do_action( 'manage_comments_nav', $comment_status, $which );
|
||||
|
||||
echo '</div>';
|
||||
}
|
||||
|
||||
|
|
|
@ -13,7 +13,7 @@
|
|||
*
|
||||
* @global string $wp_version
|
||||
*/
|
||||
$wp_version = '5.6-alpha-48692';
|
||||
$wp_version = '5.6-alpha-48693';
|
||||
|
||||
/**
|
||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||
|
|
Loading…
Reference in New Issue