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

知更鸟
知更鸟
站长
2322
文章
0
粉丝
WordPress109,477阅读模式

目前很多WordPress主题都具有缩略图功能,但你想没想过后台文章列表也可以显示缩略图,貌似之前有个插件可以实现这一功能,不过名称忘了。这里给大家介绍一段代码就可实现下图的效果。

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

if ( !function_exists('fb_AddThumbColumn') && function_exists('add_theme_support') ) {
// for post and page
add_theme_support('post-thumbnails', array( 'post', 'page' ) );
function fb_AddThumbColumn($cols) {
$cols['thumbnail'] = __('Thumbnail');
return $cols;
}
function fb_AddThumbValue($column_name, $post_id) {
$width = (int) 35;
$height = (int) 35;
if ( 'thumbnail' == $column_name ) {
// thumbnail of WP 2.9
$thumbnail_id = get_post_meta( $post_id, '_thumbnail_id', true );
// image from gallery
$attachments = get_children( array('post_parent' => $post_id, 'post_type' => 'attachment', 'post_mime_type' => 'image') );
if ($thumbnail_id)
$thumb = wp_get_attachment_image( $thumbnail_id, array($width, $height), true );
elseif ($attachments) {
foreach ( $attachments as $attachment_id => $attachment ) {
$thumb = wp_get_attachment_image( $attachment_id, array($width, $height), true );
}
}
if ( isset($thumb) && $thumb ) {
echo $thumb;
} else {
echo __('None');
}
}
}
// for posts
add_filter( 'manage_posts_columns', 'fb_AddThumbColumn' );
add_action( 'manage_posts_custom_column', 'fb_AddThumbValue', 10, 2 );
// for pages
add_filter( 'manage_pages_columns', 'fb_AddThumbColumn' );
add_action( 'manage_pages_custom_column', 'fb_AddThumbValue', 10, 2 );
}

复制上面的代码到functions.php模板文件中,到后台文章列表页面看看效果。

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

weinxin
我的微信
微信号已复制
版权声明
本站原创文章转载请注明文章出处及链接,谢谢合作!
 
评论  10  访客  8  作者  1
    • zhy
      zhy 2

      貌似只是显示文章里面的图片啊~没有图片的就是无

      • 雅岚
        雅岚 3

        好像是滴,如果也能截取一部分文字描述就很好了

        • 火车时刻表查询
          火车时刻表查询 0

          你这个主题符合30.吗我正在为这事发愁呢?

          • don
            don 0

            谢谢

            • 王3峰
              王3峰 0

              这个缩略图显示的位置可以调吗?比如说,我想让缩略图这一栏紧跟在作者后面,怎么弄呢?

              • xiale8
                xiale8 0

                好像没啥用啊

                • york
                  york 2

                  鸟哥,你知道怎么给缩略图添加链接吗? 就是查看原图的URL 。

                  • york
                    york 2

                    鸟哥,每个用户创建的标签能单独调用的吗?

                  匿名

                  发表评论

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

                  拖动滑块以完成验证