Skip to content

Instantly share code, notes, and snippets.

@nathaningram
Created November 24, 2020 19:35
Show Gist options
  • Select an option

  • Save nathaningram/8a2fd3fbb6a293081b3eebf3128eaff9 to your computer and use it in GitHub Desktop.

Select an option

Save nathaningram/8a2fd3fbb6a293081b3eebf3128eaff9 to your computer and use it in GitHub Desktop.
Hide Screen Options & Help in WP-Admin
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