Skip to content

Instantly share code, notes, and snippets.

@bryceadams
Last active October 11, 2015 16:38
Show Gist options
  • Save bryceadams/3887938 to your computer and use it in GitHub Desktop.
Save bryceadams/3887938 to your computer and use it in GitHub Desktop.
Rename Meta Box in Wordpress
<?php
remove_meta_box( 'METABOX_ID', 'slides', 'side' );
add_meta_box('METABOX_ID', __('META BOX TITLE'), 'METABOX_CALLBACK', 'POST_TYPE', 'normal', 'high');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment