如何查看WordPress文章是否有特色图片?

爱德网 WordPress经验评论263阅读模式
摘要

主题缩略图完全依靠特色图像,这个功能基本无用,如主题有多种缩略图方式时,可以方便查看文章是否使用的特色图像。

WordPress 自带的特色图片功能用于生成缩略图,但默认情况下,WordPress并没有为我们提供查看某篇文章是滞添加了特色图片功能,可以通过下面的代码,在后台文章列表中显示文章的特色图片。

将代码添加到当前主题函数模板 functions.php 中:

// 在后台文章列表添加特色图片列
add_filter( 'manage_post_posts_columns', 'zm_featured_image' );
function zm_featured_image( $columns ) {
	$columns['featured_image_col'] = '特色图片';
	return $columns;
}
 
// 有特色图片则显示,否则显示占位图
add_action( 'manage_post_posts_custom_column','zm_featured_image_col_callback', 10,2 );
function zm_featured_image_col_callback( $column, $pid ) {
	Switch( $column ) {
		case 'featured_image_col':
		if ( get_post_thumbnail_id( $pid ) )
			echo get_the_post_thumbnail( $pid, array( 80, 60 ) );
		else
			echo '<img src="data:image/gif;base64,R0lGODdhAQABAPAAAMPDwwAAACwAAAAAAQABAAACAkQBADs=" class="wp-post-image" decoding="async" loading="lazy" width="80" height="60">';
		break;
	}
}

主题缩略图完全依靠特色图像,这个功能基本无用,如主题有多种缩略图方式时,可以方便查看文章是否使用的特色图像。

weinxin
我的微信
微信及版权声明
本站原创文章转载请注明文章出处及链接,谢谢合作!其他文章来源于网络,如有侵权,请联系我!
评论  0  访客  0
匿名

发表评论

匿名网友

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

确定