Skip to content

Instantly share code, notes, and snippets.

@alandbh
Created December 7, 2016 13:00
Show Gist options
  • Save alandbh/fc5723599c5e5eb20ccca09f03e2b550 to your computer and use it in GitHub Desktop.
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
/* --------------------------------
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