Skip to content

Instantly share code, notes, and snippets.

@danpastori
Created January 20, 2015 16:09
Show Gist options
  • Save danpastori/d7b9dab66cb7ec40fd5f to your computer and use it in GitHub Desktop.
Save danpastori/d7b9dab66cb7ec40fd5f to your computer and use it in GitHub Desktop.
Custom Meta Box initialization
<?php
add_action( 'add_meta_boxes', 'add_custom_meta_boxes');
function add_custom_meta_boxes(){
add_meta_box(
'my-meta-box',
'Example Meta Data',
'custom_meta_box_render',
'page',
'normal',
'high'
);
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment