BakerMan

Allow Custom Fields Events Calendar PRO 2.0.11

Apr 9th, 2013
151
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.41 KB | None | 0 0
  1. /**
  2.  * Allows the custom fields meta box to display in the event editor -
  3.  * the relevant setting also needs to be checked in the Screen Options
  4.  * pulldown for the event editor.
  5.  */
  6. function allow_tribe_custom_fields() {
  7.     if (tribe_get_option('disable_metabox_custom_fields') !== 'show')
  8.         tribe_update_option('disable_metabox_custom_fields', 'show');
  9. }
  10.  
  11. add_action('init', 'allow_tribe_custom_fields', 1);
Advertisement
Add Comment
Please, Sign In to add comment