Created
November 24, 2020 19:35
-
-
Save nathaningram/8a2fd3fbb6a293081b3eebf3128eaff9 to your computer and use it in GitHub Desktop.
Hide Screen Options & Help in WP-Admin
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
| add_action('admin_head', 'my_custom_fonts'); | |
| function my_custom_fonts() { | |
| echo '<style> | |
| #screen-meta-links { | |
| display:none; | |
| } | |
| </style>'; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment