Creating custom field with drop down on new post page
Instead of defining the default values for custom fields, you should do like Milo says. You should have something like this in your functions.php. I tried to follow what you need, but didn’t test it. <?php // action to add meta boxes add_action( ‘add_meta_boxes’, ‘voodoo_dropdown_metabox’ ); // action on saving post add_action( ‘save_post’, ‘voodoo_dropdown_save’ ); … Read more