当前位置:首页>网站建设>WordPress后台所有文章列表显示缩略图

WordPress后台所有文章列表显示缩略图

释放双眼,带上耳机,听听看~!

wordpress在默认情况下后台的文章列表是没有缩略图这个选项的,如果我们要查看文章是否有缩略图只能点击文章详情页去查看,那有没办法让我们能在后台的文章列表中就可以看到文章是否有缩略图呢?答案是当然可以。我们先来看下最终实现的列表的效果图:

WordPress后台所有文章列表显示缩略图

 

下面我们就来看下wordpress后台文章列表如何显示缩略图
打开你主题的functions.php文件添加如下代码:

if ( !function_exists('fb_AddThumbColumn') && function_exists('add_theme_support') ) {
    
    // 在文章列表页与页面列表页添加缩略图列表
    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');
                    }
            }
    }
    
    // 文章页调用
    add_filter( 'manage_posts_columns', 'fb_AddThumbColumn' );
    add_action( 'manage_posts_custom_column', 'fb_AddThumbValue', 10, 2 );
    
    // 页面调用
    add_filter( 'manage_pages_columns', 'fb_AddThumbColumn' );
    add_action( 'manage_pages_custom_column', 'fb_AddThumbValue', 10, 2 );
}

 

欢迎访问秀主题博客,分享简单实用WP教程
声明:本站所有文章,如无特殊说明或标注,均为本站原创发布。任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。

给TA打赏
共{{data.count}}人
人已打赏
网站建设

批量删除 WordPress 垃圾评论及待审评论

2024-9-13 14:27:33

网站建设

WordPress首页过滤指定分类

2024-9-18 9:33:44

温馨提示:

1.本站大部分内容均收集于网络!若内容若侵犯到您的权益,请发送邮件至:971318156@qq.com,我们将第一时间处理!

2.资源所需价格并非资源售卖价格,是收集、整理、编辑详情以及本站运营的适当补贴,并且本站不提供任何免费技术支持。

3.所有资源仅限于参考和学习,版权归原作者所有,更多请阅读网站声明

0 条回复 A文章作者 M管理员
    暂无讨论,说说你的看法吧
个人中心
购物车
优惠劵
今日签到
有新私信 私信列表
搜索