X

Actualizado: Añadir Miniatura Destacado a Admin Post / Columnas de página

Snippets by IsItWP

WordPress tiene algunas columnas de administración por defecto que muestran información sobre tus entradas y páginas. También puedes añadir miniaturas destacadas a las columnas de administración de entradas y páginas, de modo que no tengas que editar la entrada para ver las imágenes destacadas.

Instrucciones: Agregue el siguiente código al archivo functions.php de su tema de WordPress.

if (function_exists( 'add_theme_support' )){
    add_filter('manage_posts_columns', 'posts_columns', 5);
    add_action('manage_posts_custom_column', 'posts_custom_columns', 5, 2);
    add_filter('manage_pages_columns', 'posts_columns', 5);
    add_action('manage_pages_custom_column', 'posts_custom_columns', 5, 2);
}
function posts_columns($defaults){
    $defaults['wps_post_thumbs'] = __('Thumbs');
    return $defaults;
}
function posts_custom_columns($column_name, $id){
	if($column_name === 'wps_post_thumbs'){
        echo the_post_thumbnail( array(125,80) );
    }
}

También puede disfrutar de la eliminación de la imagen destacada meta caja.

Comentarios   Deja una respuesta

  1. That’s great! it worked with just copying and pasting that code sinppet on the functions.php file!
    Thank you!

  2. Wordpress Admin - How My Custom Posts List Rolls febrero 28, 2014 en 3:01 pm

    […] [Source] […]

  3. This is a pretty handy snippet, thanks for sharing.

    1. Cool glad you like the snippet,

  4. Thanks for the info. Any idea how to reorder the columns so the thumbnail column is first?
    thanks

    1. I’d also like the answer to that. At first I thought that it might be the “5” because it was in the fifth column but I tried changing it and nothing happened.

  5. Thanks for this handy tip. This really benefits our work process in viewing our wordpress posts.

    1.  Cool glad to see this helps out.

  6. I’d love to have this check if a featured image shows and work like it does, but if featured images aren’t enabled, display the post’s attached image’s thumbnail.  Would that be hard to do?

Añadir un comentario

Nos alegra que haya decidido dejar un comentario. Tenga en cuenta que todos los comentarios se moderan de acuerdo con nuestra política de privacidad , y que todos los enlaces son nofollow. NO utilice palabras clave en el campo del nombre. Tengamos una conversación personal y significativa.

WordPress Launch Checklist

La lista definitiva para lanzar WordPress

Hemos recopilado todos los elementos esenciales de la lista de comprobación para el lanzamiento de su próximo sitio web de WordPress en un práctico ebook.
Sí, envíeme el ¡gratuito!