eventsmanager

Events CPT - Supports

Oct 11th, 2013 (edited)
677
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.40 KB | None | 0 0
  1. <?php
  2. /*
  3. This snippet will add support to post revisions at event CPT
  4. For installation instructions, see here - http://wp-events-plugin.com/tutorials/how-to-safely-add-php-code-to-wordpress/
  5.  */
  6. function em_mod_support($supports){
  7.     $supports = array('custom-fields','title','editor','comments','thumbnail','author');
  8.     return $supports;
  9. }
  10. add_filter('em_cp_event_supports','em_mod_support',100,1);
Advertisement
Add Comment
Please, Sign In to add comment