Files
2026-07-02 15:54:39 -06:00

10 lines
300 B
JavaScript

(function( $ ) {
'use strict';
$(document).ready( function() {
// Move "Manage Columns" button to the right of "Filter" button on list tables
$('#content-order-button').appendTo('.tablenav.top .alignleft.actions:not(.bulkactions)');
}); // END OF $(document).ready()
})( jQuery );