Advertisement
Guest User

Untitled

a guest
Jun 26th, 2017
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. <?php // don't copy this line to your functions.php file!
  2.  
  3. /**
  4. * Temporary fix for admin menu conflict with the Email Subscribers & Newsletters plugin
  5. */
  6. function my_lifterlms_menu_fix() {
  7. if ( class_exists( 'es_cls_registerhook' ) && method_exists( 'es_cls_registerhook', 'es_adminmenu' ) ) {
  8. es_cls_registerhook::es_adminmenu();
  9. }
  10. }
  11. add_action( 'admin_menu', 'my_lifterlms_menu_fix', 999999, 1 );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement