Skip to content

Instantly share code, notes, and snippets.

@mrbobbybryant
Created January 26, 2015 05:38
Show Gist options
  • Save mrbobbybryant/6c55d4af121714fcf7fc to your computer and use it in GitHub Desktop.
Save mrbobbybryant/6c55d4af121714fcf7fc to your computer and use it in GitHub Desktop.
add_meta_box
<?php
function dwwp_add_custom_meta() {
add_meta_box(
'dwwp_meta',
'Job Listing',
'dwwp_meta_callback',
'job',
'side',
'core'
);
}
add_action( 'add_meta_boxes', 'dwwp_add_custom_meta' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment