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?

order

4 Answers
4

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();
});

Tags:

Leave a Reply

Your email address will not be published. Required fields are marked *