div.alignleft.actions needs to wrap the 'Empty Trash' button too, otherwise they're not aligned. see #15580.
git-svn-id: https://develop.svn.wordpress.org/trunk@17195 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
dfe0736002
commit
8ace5bbf91
@ -202,11 +202,11 @@ class WP_Posts_List_Table extends WP_List_Table {
|
||||
|
||||
function extra_tablenav( $which ) {
|
||||
global $post_type, $post_type_object, $cat;
|
||||
|
||||
if ( 'top' == $which && !is_singular() ) {
|
||||
?>
|
||||
<div class="alignleft actions">
|
||||
<?php
|
||||
if ( 'top' == $which && !is_singular() ) {
|
||||
|
||||
$this->months_dropdown( $post_type );
|
||||
|
||||
if ( is_object_in_taxonomy( $post_type, 'category' ) ) {
|
||||
@ -222,14 +222,14 @@ class WP_Posts_List_Table extends WP_List_Table {
|
||||
}
|
||||
do_action( 'restrict_manage_posts' );
|
||||
submit_button( __( 'Filter' ), 'secondary', 'post-query-submit', false );
|
||||
?>
|
||||
</div>
|
||||
<?php
|
||||
}
|
||||
|
||||
if ( $this->is_trash && current_user_can( $post_type_object->cap->edit_others_posts ) ) {
|
||||
submit_button( __( 'Empty Trash' ), 'button-secondary apply', 'delete_all', false );
|
||||
}
|
||||
?>
|
||||
</div>
|
||||
<?php
|
||||
}
|
||||
|
||||
function current_action() {
|
||||
|
Loading…
x
Reference in New Issue
Block a user