¿Estás buscando una forma de deshabilitar widgets en páginas específicas por nivel de usuario? Si bien es probable que haya un plugin para esto, hemos creado un fragmento de código rápido que puede utilizar para desactivar los widgets en páginas específicas por nivel de usuario en WordPress.
Este código deshabilitará los widgets sólo en la página de inicio sin deshabilitarlos completamente. Podrías cambiar is_home()
por is_page()
o páginas específicas.
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:
add_filter( 'sidebars_widgets', 'disable_all_widgets' ); function disable_all_widgets( $sidebars_widgets ) { if ( !current_user_can( 'level_5' ) ){ if(is_page('about-us')){ $sidebars_widgets = array( false ); return $sidebars_widgets; } } }
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: 12 mejores plugins de WordPress para bloggers y cómo asegurar tus formularios de WordPress.
Hi, i want to disable a inbuilt category widget. I am using clipper theme, and i dont want the category widget to get displayed on the category page. What would be the code and where do i need to put the code?
Any way to target specific widgets, say turn of all text widgets on page ID x?
hi andy, please I want to target a specific widget on a page with a template… what im tryin to achieve is replicate a widget area under an existing widget such that i can attach a new menu to the new widget area; and then remove the one above it which is curently existing …
This is great when using WP as a CMS, great little snippet love this 🙂
[…] This post was mentioned on Twitter by Hash WordPress, Patricia Skinner. Patricia Skinner said: RT @hashwordpress: RT @wpsnipp #wordpress Disable widgets on specific pages http://bit.ly/cPS1eV #blog please RT 🙂 […]