help_base = GENESIS_VIEWS_DIR . '/help/'; $this->views_base = GENESIS_VIEWS_DIR; } /** * Bypass registering meta boxes. * * @since 2.5.0 */ public function metaboxes() {} /** * Echo out the content of a meta box. * * @since 2.5.0 * * @param string $id Id of the meta box. * @param object $object Object for the meta box. Default null. */ public function show_meta_box( $id, $object = null ) { $this->do_meta_box( $object, array( 'id' => $id, ) ); } }