Created
November 1, 2016 19:27
-
-
Save kaweski/8642bab85dd27862661ed2c7e74cb1b2 to your computer and use it in GitHub Desktop.
Adiciona CSS adicional no painel do Wordpress
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
/* | |
* 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