Skip to content

Instantly share code, notes, and snippets.

@Tsunamijaan
Created January 5, 2019 09:53
Show Gist options
  • Save Tsunamijaan/a8baec2bb2dc6ef59df7a6e9ee03aa28 to your computer and use it in GitHub Desktop.
Save Tsunamijaan/a8baec2bb2dc6ef59df7a6e9ee03aa28 to your computer and use it in GitHub Desktop.
Register option tree metabox
function my_theme_custom_meta_boxes() {
$post_meta_box = array(
'id' => 'post_meta_box',
'title' => 'Metabox',
'pages' => array( 'post' ),
'context' => 'normal',
'priority' => 'high',
'fields' => array(
array(
'label' => 'Title',
'id' => 'title',
'type' => 'text'
)
)
);
ot_register_meta_box( $post_meta_box );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment