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
/** 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 */ |