Hi,
I have a question about custom metaboxes and post types. Is it possible to register metaboxes and have them show on specific post types rather than showing up on specific templates as in:
PHP Code:
$meta_boxes[] = array(
'id' => 'contact-information',
'title' => 'Contact Information',
'pages' => array('page'), // post type
'show_on' => array( 'key' => 'page-template', 'value' => 'template-contact.php' ),
'context' => 'normal', // 'normal', 'advanced', or 'side'
'priority' => 'high', // 'high', 'core', 'default' or 'low'
'show_names' => true, // Show field names on the left
'fields' => array(
If so, how would I go about that?