Created
January 5, 2019 09:53
-
-
Save Tsunamijaan/a8baec2bb2dc6ef59df7a6e9ee03aa28 to your computer and use it in GitHub Desktop.
Register option tree metabox
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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