Skip to content

Instantly share code, notes, and snippets.

@kaweski
Created November 1, 2016 19:27
Show Gist options
  • Save kaweski/8642bab85dd27862661ed2c7e74cb1b2 to your computer and use it in GitHub Desktop.
Save kaweski/8642bab85dd27862661ed2c7e74cb1b2 to your computer and use it in GitHub Desktop.
Adiciona CSS adicional no painel do Wordpress
/*
* Remove o preview de fotos da página de edição de usuário
*/
function aditionalCSS(){
echo '<style type="text/css">#qd_user_image_id-status { display: none !important; }</style>';
}
add_action('admin_footer', 'aditionalCSS');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment