Skip to content

Instantly share code, notes, and snippets.

@JudeRosario
Created September 20, 2015 22:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save JudeRosario/95998f632a4f3705abcb to your computer and use it in GitHub Desktop.
Save JudeRosario/95998f632a4f3705abcb to your computer and use it in GitHub Desktop.
Hide Theme Changer WP Admin
add_action('admin_head', 'my_custom_fonts');
function my_custom_fonts() {
echo '<style>
#accordion-section-themes {
display: none !important;
}
</style>';
}
@JudeRosario
Copy link
Author

Just copy/paste the code into the functions.php file of your child theme or a site specific plugin if you use one.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment