Skip to content

Instantly share code, notes, and snippets.

@alandbh
Created February 23, 2016 18:41
Show Gist options
  • Save alandbh/ad8e3ca19cead80fd807 to your computer and use it in GitHub Desktop.
Save alandbh/ad8e3ca19cead80fd807 to your computer and use it in GitHub Desktop.
Insere estilos CSS na área de administração
/* ----------------
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