Add Meta Boxes to Multiple Post Types

add_action( 'add_meta_boxes', 'my_add_custom_box' );
  function my_add_custom_box($postType) {
 	$types = array('type1', 'type2', 'type3');
 	if(in_array($postType, $types)){
 		add_meta_box(
 				'myid',
 				__( 'Title', 'myplugin_textdomain' ),
 				'callback',
 				$postType
 		);
 	} }

Sourced here.

Leave a Reply

katherine as a flat graphic icon

About Me

I’m an African / Ojibwe First Nations Web Developer living in Winnipeg, Manitoba.

Visit the Tips and Blog to see what I’m working on.