为WordPress 后台文章列表添加缩略图

WordPress1 1.1K阅读模式

为WordPress 后台文章列表添加缩略图-图片1

WordPress 2.9版引入文章缩略图的功能,这个特色图像功能,不仅可以在前台显示,后台文章列表中也可以显示缩略图。

为WordPress 后台文章列表添加缩略图-图片2

将如下代码添加到当前主题functions.php中:

  1. if ( !function_exists('fb_AddThumbColumn') && function_exists('add_theme_support') ) {
  2.     // for post and page
  3.     add_theme_support('post-thumbnails', array( 'post', 'page' ) );
  4.     function fb_AddThumbColumn($cols) {
  5.         $cols['thumbnail'] = __('Thumbnail');
  6.         return $cols;
  7.     }
  8.     function fb_AddThumbValue($column_name$post_id) {
  9.             $width = (int) 35;
  10.             $height = (int) 35;
  11.             if ( 'thumbnail' == $column_name ) {
  12.                 // thumbnail of WP 2.9
  13.                 $thumbnail_id = get_post_meta( $post_id, '_thumbnail_id', true );
  14.                 // image from gallery
  15.                 $attachments = get_children( array('post_parent' => $post_id, 'post_type' => 'attachment', 'post_mime_type' => 'image') );
  16.                 if ($thumbnail_id)
  17.                     $thumb = wp_get_attachment_image( $thumbnail_idarray($width$height), true );
  18.                 elseif ($attachments) {
  19.                     foreach ( $attachments as $attachment_id => $attachment ) {
  20.                         $thumb = wp_get_attachment_image( $attachment_idarray($width$height), true );
  21.                     }
  22.                 }
  23.                     if ( isset($thumb) && $thumb ) {
  24.                         echo $thumb;
  25.                     } else {
  26.                         echo __('None');
  27.                     }
  28.             }
  29.     }
  30.     // for posts
  31.     add_filter( 'manage_posts_columns', 'fb_AddThumbColumn' );
  32.     add_action( 'manage_posts_custom_column', 'fb_AddThumbValue', 10, 2 );
  33.     // for pages
  34.     add_filter( 'manage_pages_columns', 'fb_AddThumbColumn' );
  35.     add_action( 'manage_pages_custom_column', 'fb_AddThumbValue', 10, 2 );
  36. }

源代码出自:http://wpengineer.com/1960/display-post-thumbnail-post-page-overview/

本站文章大部分始于原创,用于个人学习记录,可能对您有所帮助,仅供参考!

weinxin
我的微信
版权声明
本站原创文章转载请注明文章出处及链接,谢谢合作!
 
    • 莫斯科
      莫斯科 3

      大佬 这个支持最新版的wordpress5.6么?
      有没有什么办法在文章列表显示文章缩略图呢?
      如果没有缩略图就显示文章的第一个图片。

    匿名

    发表评论

    匿名网友
    :?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

    拖动滑块以完成验证