Skip to content

Instantly share code, notes, and snippets.

@wolfthemes
Last active June 5, 2019 21:08
Show Gist options
  • Select an option

  • Save wolfthemes/51cc045519d2312e38e041e05ae852ad to your computer and use it in GitHub Desktop.

Select an option

Save wolfthemes/51cc045519d2312e38e041e05ae852ad to your computer and use it in GitHub Desktop.
// 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