Skip to content

Instantly share code, notes, and snippets.

@JulioPotier
Last active December 25, 2015 04:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save JulioPotier/6916144 to your computer and use it in GitHub Desktop.
Save JulioPotier/6916144 to your computer and use it in GitHub Desktop.
add_action( 'add_meta_boxes', 'add_my_box' );
function add_my_box() {
add_meta_box( 'mybox', 'My Box !', '_add_my_box', get_post_type() );
}
function _add_my_box() {
echo 'Ma boite :)';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment