I’d like to remove, or at least hide, the Order field from the Page Attributes box. Anyone have a way to go about do this?
4 Answers
I went with jQuery to remove the elements.
jQuery(document).ready(function() {
jQuery('#pageparentdiv label[for=menu_order]').parents('p').eq(0).remove();
jQuery('#pageparentdiv input#menu_order').remove();
});