启用Wordpress主题的发布缩略图
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了启用Wordpress主题的发布缩略图相关的知识,希望对你有一定的参考价值。
This snippet adds support for post thumbnails (a.k.a. 'featured images') to a Wordpress theme. It also adds an additional image size for image thumbnails, hard cropped. This second step is optional.Add this snippet to your WP theme's functions.php file.
/** * Enable post thumbnails. */ add_image_size( 'large-feature-image', 715, 402, true ); // large size, hard crop mode }
以上是关于启用Wordpress主题的发布缩略图的主要内容,如果未能解决你的问题,请参考以下文章