You appear to be a bot. Output may be restricted
Description
Echo out the content of a meta box.
Usage
Genesis_Admin_Boxes::do_meta_box( $object, $meta_box );
Parameters
- $object
- ( object ) required – Object passed to do_meta_boxes function.
- $meta_box
- ( array ) required – Array of parameters passed to add_meta_box function.
Returns
void
Source
File name: genesis/lib/classes/class-genesis-admin-boxes.php
Lines:
1 to 9 of 9
public function do_meta_box( $object, $meta_box ) { $view = $this->views_base . '/meta-boxes/' . $meta_box['id'] . '.php'; if ( is_file( $view ) ) { include $view; } }