Created
February 23, 2016 18:41
-
-
Save alandbh/ad8e3ca19cead80fd807 to your computer and use it in GitHub Desktop.
Insere estilos CSS na área de administração
This file contains 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
/* ---------------- | |
Deixa invisível o campo Plano de trabalho | |
Alan | |
----------------- */ | |
function ocultaPlanoDeTrabalho() { | |
echo '<style> | |
#acf-plano_de_trabalho { display: none; } | |
</style>'; | |
} | |
add_action('admin_head', 'ocultaPlanoDeTrabalho'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment