WordPres后台文章列表添加缩略图的方法

目前很多WordPres主题都具有缩略图功能,但想没想过后台文章列表也可以显示缩略图。

这个是一个更简单的版本,减少了上传与删除功能,只是一个显示调用功能,方便大小进行缩略图查看,因为更多的用户习惯是进入文章上传特色图片,很少人会通过后台列表就直接上传缩略图。将下面的代码复制到当前WordPres主题的functions.php模板文件中,保存即可:

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 );
}

下面的代码可以在 WordPress 后台文章列表增加一个作者筛选框,快速筛选出某个作者的所有文章。

add_action('restrict_manage_posts', function($post_type){
if(post_type_supports($post_type, 'author')){
wp_dropdown_users([
'name' => 'author',
'who' => 'authors',
'show_option_all' => '所有作者',
'hide_if_only_one_author' => true,
'selected' => $_REQUEST['author'] ?? 0
]);
}
});

👋 感谢您的观看!

© 版权声明
THE END
喜欢就支持一下吧
点赞0 分享