Last active
August 29, 2015 14:13
-
-
Save shahadat014/69bebf979030cc232927 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