Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

test

class Choice_project {

	public function __construct() {

		if ( is_admin() ) {
			add_action( 'load-post.php',     array( $this, 'init_metabox' ) );
			add_action( 'load-post-new.php', array( $this, 'init_metabox' ) );
		}

	}

	public function init_metabox() {

		add_action( 'add_meta_boxes',        array( $this, 'add_metabox' )         );
		add_action( 'save_post',             array( $this, 'save_metabox' ), 10, 2 );

	}

	public function add_metabox() {

		add_meta_box(
			'Choice-project',
			__( 'Вибрати проект', 'schoolfiftytwo' ),
			array( $this, 'render_choiceproject' ),
			'page',
			'advanced',
			'default'
		);

	}

	public function render_choiceproject( $post ) {

	}

	public function save_metabox( $post_id, $post ) {

	}

}

new Choice_project;