¿Quieres eliminar las Opciones Personales de los Perfiles de Usuario? Todo lo que tienes que hacer es añadir un fragmento de código a tu archivo functions.php. Echémosle un vistazo.
Instrucciones:
Todo lo que tienes que hacer es añadir este código al archivo functions.php de tu tema o en un plugin específico del sitio:
function hide_personal_options(){ echo "n" . '<script type="text/javascript">jQuery(document).ready(function($) { $('form#your-profile > h3:first').hide(); $('form#your-profile > table:first').hide(); $('form#your-profile').show(); });</script>' . "n"; } add_action('admin_head','hide_personal_options');
Nota: Si es la primera vez que añade fragmentos de código en WordPress, consulte nuestra guía sobre cómo copiar / pegar correctamente fragmentos de código en WordPress, para no romper accidentalmente su sitio.
Si te ha gustado este fragmento de código, por favor considere revisar nuestros otros artículos en el sitio como: 62 mejores temas gratuitos para blogs de WordPress o 7 mejores plugins para formularios de contacto de WordPress.
Any idea why I get the white screen when using this? I just want to remove the More information link to wp from the profile? Thanks
This doesnt work for me
Just tested this in 3.8 and it works perfectly as expected.
it works, thanks
It works nicely. However, it would be great to allow certain user groups (like the admin) to have their full options show.
if ( !current_user_can( ‘administrator’ ) ) {
add_action(‘admin_head’,’hide_personal_options’);
function hide_personal_options(){
echo “n” . ‘jQuery(document).ready(function($) { $(‘form#your-profile > h3:first’).hide(); $(‘form#your-profile > table:first’).hide(); $(‘form#your-profile’).show(); });’ . “n”;
}
}
[…] for this little hack goes to our friends at wpsnipp.com, originally posted by Kevin […]