¿Quiere ocultar entradas y páginas en su panel de administración de WordPress? Ocultando algunas entradas y páginas en su panel de administración, puede restringir a sus clientes la edición de las mismas. Esto es útil si desea tener algunas páginas en su sitio sólo para sus plantillas en las que es necesario añadir códigos cortos o algo más que nadie debe editar.
Este snippet le permite especificar los IDs de las entradas y páginas que desea ocultar en el dashboard de WordPress.
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:
<?php add_action('admin_head', 'hide_posts_pages'); function hide_posts_pages() { global $current_user; get_currentuserinfo(); If($current_user->user_login != 'admin') { ?> <style> #post-10, #post-11, #post-12, #post-13, #post-14{ display:none; } </style> <?php } } ?>
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 le gustó este fragmento de código, por favor considere revisar nuestros otros artículos en el sitio como: Los mejores constructores de páginas de WordPress (Comparados).
Ignore my last request, I have sorted it!
This is a really good snippet, just what I was looking for but it is hiding the pages from all users including me (admin), how can I hide from a selected set of user admins that I have created using User Role Editor. Thanks in advance!
SCHALK thank you for help, can you post the function with one post and 1 page to see how will be the final cone?
Thanks
I apologize, I’m not sure if I understand the question.
Hi,
Is it possible to first add a class to each page, so that i can rather hide the injected class?
the same way i can assign the page slug as a class to a page with the code below.
The reason is, i wat ti make it easier to programatically hide pages if there are an options page present.
So instead of #post-10 it will be .post-about or .post-contact
function add_slug_body_class( $classes ) {
global $post;
if ( isset( $post ) ) {
$classes[] = $post->post_type . ‘-‘ . $post->post_name;
}
return $classes;
}
add_filter( ‘body_class’, ‘add_slug_body_class’ );
Thank you.
Schalk
hahaaa after 5 years still kicks wordpress ass
GREAT SOLUTION!!! I SEARCHED A LOT TO FIND THIS !!! THANK’S!!!
Cool! thanx 🙂
Yes this would be a better solution thanks for posting.