Tribe_Meta_Box::add()


Source

File: lib/tribe-meta-box.php

	public function add() {
		foreach ( (array) $this->_meta_box['pages'] as $page ) {
			add_meta_box( $this->_meta_box['id'], $this->_meta_box['title'], array( $this, 'show' ), $page, $this->_meta_box['context'], $this->_meta_box['priority'] );
		}
	}