Advertisement
Guest User

Untitled

a guest
Jul 24th, 2015
259
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.25 KB | None | 0 0
  1. if( !function_exists( 'marstheme_hide_menu_on_mobile' ) ){
  2.     function marstheme_hide_menu_on_mobile() {
  3.         if( wp_is_mobile() ){
  4.             print '<style>a.elemadded{display: none;}</style>';
  5.         }
  6.     }
  7.     add_action( 'wp_footer' , 'marstheme_hide_menu_on_mobile');
  8. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement