eventsmanager

add support to revisions

Oct 11th, 2013 (edited)
640
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.34 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[] = 'revisions';
  8.     return $supports;
  9. }
  10. add_filter('em_cp_event_supports','em_mod_support',1,1);
Add Comment
Please, Sign In to add comment