超贴心,WordPress 技巧:给后台特色图片加上大小说明

2014-11-13 2,881 0

使用 WordPress 开发的时候,很多项目都会用到缩略图的功能,但是 WordPress 后台的特色图片上传得时候并没有提示图片的大小,这样给客户操作的时候带来了一定的问题,其实我们可以通过以下代码在特色图片上传的地方增加大小说明。

add_filter('admin_post_thumbnail_html', 'wpjam_admin_post_thumbnail_html',10,2);
function wpjam_admin_post_thumbnail_html($content, $post_id){
	$post = get_post($post_id);
	$post_type = $post->post_type;
	if($post_type == 'post'){
		return $content.'<p>大小:390x200</p>';
	}
	return $content;
}

最终效果:

 

感谢原作者:http://blog.wpjam.com/m/post-thumnail-with-size/

相关文章

MySQL 设置优化记录
来自 WPJAM 的修改,给图片文件名增加时间戳
wordpress 博客使用 CloudFlare 的页面规则缓存设置教程
Better Search Replace – 简单强大易用的数据库替换工具
WordPress获取文章所有图片和图片数量
删除 WooCommerce 产品页中的简介 – Remove Woocommerce Product Short Description

发布评论

此站点使用Akismet来减少垃圾评论。了解我们如何处理您的评论数据