You appear to be a bot. Output may be restricted
Description
Add meta box to the current admin screen.
Usage
Genesis_Admin_Boxes::add_meta_box( $handle, $title, $priority );
Parameters
- $handle
- ( string ) required – Meta box handle.
- $title
- ( string ) required – Meta box title.
- $priority
- ( string ) optional default: default – Optional. Meta box priority.
Returns
void
Source
File name: genesis/lib/classes/class-genesis-admin-boxes.php
Lines:
1 to 6 of 6
public function add_meta_box( $handle, $title, $priority = 'default' ) { add_meta_box( $handle, $title, [ $this, 'do_meta_box' ], $this->pagehook, 'main', $priority ); }