Last active
June 5, 2019 21:08
-
-
Save wolfthemes/51cc045519d2312e38e041e05ae852ad to your computer and use it in GitHub Desktop.
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
| // Replace "theme_" with your theme slug | |
| function theme_add_release_metaboxes( $metaboxes ) { | |
| $metaboxes['release_options']['metafields'][] = array( | |
| 'label' => esc_html__( 'My New Option', '%TEXTDOMAIN%' ), | |
| 'id' => '_my_new_option', | |
| 'type' => 'text', | |
| ); | |
| } | |
| add_filter( 'theme_release_metaboxes', 'theme_add_release_metaboxes' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment