Created
December 7, 2016 13:00
-
-
Save alandbh/fc5723599c5e5eb20ccca09f03e2b550 to your computer and use it in GitHub Desktop.
Inject style tag in admin header in order to apply custom styles //
Insere estilos no painel de administração com a tag style
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
/* -------------------------------- | |
Insere estilos no painel de administração | |
Alan | |
------------------------------------ */ | |
add_action('admin_head', 'custom_admin_styles'); | |
function custom_admin_styles() { | |
echo '<style> | |
#tagsdiv-regiao { | |
display: none; | |
} | |
</style>'; | |
} | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment