This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Modifica as Páginas do Menu | |
| function meu_plugin_menu_pages() { | |
| if (!is_super_admin()) { | |
| remove_menu_page('index.php'); | |
| remove_menu_page('edit.php'); | |
| remove_menu_page('upload.php'); | |
| remove_menu_page('edit.php?post_type=page'); | |
| remove_menu_page('edit-comments.php'); | |
| remove_menu_page('themes.php'); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| $(document).on('scroll', function () { | |
| var altura = pageYOffset; | |
| if (altura > 200) { | |
| // Macumba pra quando rolar e passar dos 200px do topo | |
| } else { | |
| // Macumba pra quando rolar e ainda não passar dos 200px do topo | |
| } | |
| }); |
NewerOlder