Skip to content

Instantly share code, notes, and snippets.

View billcotter's full-sized avatar

Bill Cotter billcotter

  • New York, New York
View GitHub Profile
/** Add custom meta box **/
add_action( 'add_meta_boxes', 'myplugin_add_custom_box' );
// backwards compatible (before WP 3.0)
// add_action( 'admin_init', 'myplugin_add_custom_box', 1 );
/* Do something with the data entered */
add_action( 'save_post', 'myplugin_save_postdata' );
/* Adds a box to the main column on the Post and Page edit screens */