现在的位置: 首页Wordpress>正文
为WordPress后台文章列表添加缩略图
2010年06月04日 Wordpress ⁄ 作者:知更鸟 ⁄ 共 1243字 评论数 7 ⁄ 被围观 4,428+

目前很多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模板文件中,到后台文章列表页面看看效果。

目前有 7 条留言 其中:访客:6 条, 博主:1 条

  1. zhy : 2010年06月04日 615 天前 10:46:26  1楼 @回复 回复

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

  2. 雅岚 : 2010年06月05日 614 天前 00:57:08  2楼 @回复 回复

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

  3. 火车时刻表查询 : 2010年06月10日 608 天前 17:31:39  3楼 @回复 回复

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

  4. don : 2011年03月25日 320 天前 17:51:44  4楼 @回复 回复

    谢谢

  5. 王3峰 : 2011年06月12日 241 天前 18:09:42  5楼 @回复 回复

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

  6. xiale8 : 2012年01月13日 27 天前 13:55:41  6楼 @回复 回复

    好像没啥用啊

Wopus问答

给我留言

留言无头像?

留言不能超过1500字,已输入字数:

×
腾讯微博