Advertisement
eventsmanager

Enable Event Tags and Categories on Gutenberg

May 9th, 2023
169
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. <?php
  2.  
  3. /*
  4. * Note: this snippet is not fully tested
  5. *
  6. */
  7.  
  8. add_filter ('em_ct_categories', 'zzp_em_ct_categories' );
  9. add_filter ('em_ct_tags', 'zzp_em_ct_categories' );
  10. function zzp_em_ct_categories( $params ) {
  11. if ( defined( 'EM_GUTENBERG' ) AND EM_GUTENBERG ) {
  12. $params['show_in_rest'] = true;
  13. }
  14. return $params;
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement