[wp-trac] [WordPress Trac] #34517: Relocate "Not Spam | Delete Permanently"...etc in Comments administration page
WordPress Trac
noreply at wordpress.org
Thu Dec 10 14:09:59 UTC 2015
#34517: Relocate "Not Spam | Delete Permanently"...etc in Comments administration
page
-------------------------------+---------------------------------
Reporter: baclarkservices | Owner:
Type: enhancement | Status: new
Priority: normal | Milestone: Awaiting Review
Component: Comments | Version: 4.3.1
Severity: normal | Resolution:
Keywords: 2nd-opinion close | Focuses: ui, administration
-------------------------------+---------------------------------
Comment (by SergeyBiryukov):
A quick workaround:
{{{
function wp34517_move_comment_row_actions_to_top() { ?>
<script>
jQuery(document).ready( function($) {
$( '.row-actions' ).each( function() {
$(this).insertAfter( $(this).parent().find(
'.comment-author' ) );
});
});
</script>
<?php
}
add_action( 'admin_footer-edit-comments.php',
'wp34517_move_comment_row_actions_to_top' );
}}}
Screenshot: [attachment:34517.png].
--
Ticket URL: <https://core.trac.wordpress.org/ticket/34517#comment:4>
WordPress Trac <https://core.trac.wordpress.org/>
WordPress publishing platform
More information about the wp-trac
mailing list