Skip to content

Instantly share code, notes, and snippets.

@jprieton
Created October 23, 2014 20:16
Show Gist options
  • Save jprieton/3e80184c4476a88527e4 to your computer and use it in GitHub Desktop.
Save jprieton/3e80184c4476a88527e4 to your computer and use it in GitHub Desktop.
WordPress description metabox
<?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