我喜欢这个答案above但如果您不认为它也适用于古腾堡,则必须添加此选择器:.components-base-control.editor-page-attributes__order
add_action(\'admin_head\', \'hide_order_attribution\');
function hide_order_attribution() {
echo \'<style>
label[for="menu_order"],
input[name="menu_order"],
.components-base-control.editor-page-attributes__order {
display:none;
}
</style>\';
}