/**
* Add meta box to post types.
*
* @since 1.0.0
*/
function myplugin_add_meta_box() {
// Set up the default post types/
$types = array(
'post',
);
// Optional filter for adding the meta box to more types. Uncomment to use.
// $types = apply_filters( 'mypl...