启用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.
  1. /**
  2.  * Enable post thumbnails.
  3.  */
  4. if ( function_exists( 'add_theme_support' ) ) {
  5. add_theme_support( 'post-thumbnails', array( 'project' ) ); // Add support for posts
  6. add_image_size( 'large-feature-image', 715, 402, true ); // large size, hard crop mode
  7. }

以上是关于启用Wordpress主题的发布缩略图的主要内容,如果未能解决你的问题,请参考以下文章

wordpress后台启用自带的图片缩略功能

WordPress主题开发:产品展示实例

如何在最近的帖子Wordpress中添加缩略图

wordpress给文章添加缩略图

wordpress:缩略图悬停->显示标题

如何在 Wordpress 中更改默认图像缩略图大小