Created
October 23, 2014 20:16
-
-
Save jprieton/3e80184c4476a88527e4 to your computer and use it in GitHub Desktop.
WordPress description metabox
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// Colocar en el functions.php | |
function metabox_callback() | |
{ | |
?> | |
<p>Aquí va el contenido...</p> | |
<?php | |
} | |
function adding_custom_meta_boxes() | |
{ | |
add_meta_box( | |
'metabox-id', 'Metabox Title', 'metabox_callback', 'post-type', 'side', 'high' | |
); | |
} | |
add_action('add_meta_boxes', 'adding_custom_meta_boxes', 10, 2); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment