Description
Set the default Featured Image (formerly Post Thumbnail) dimensions. To register additional image sizes for Featured Images use: add_image_size().
Note: To enable featured images, the current theme must include add_theme_support( 'post-thumbnails' ); in its functions.php file. See also Post Thumbnails.
Usage
<?php set_post_thumbnail_size( $width, $height, $crop ); ?>
Parameters
$width
(int) (optional) The post thumbnail width in pixels.
Default: 0
$height
(int) (optional) The post thumbnail height in pixels.
Default: 0
$crop
(boolean) (optional) Crop the image or not. False - Soft proportional crop mode ; True - Hard crop mode.
Default: false
Examples
Default Usage
To be used in the current theme's functions.php file.
if ( function_exists( 'add_theme_support' ) ) {
add_theme_support( 'post-thumbnails' );
set_post_thumbnail_size( 150, 150 );
}
Crop Mode
Set the default Post Thumbnail size by resizing the image proportionally (that is, without distorting it):
set_post_thumbnail_size( 50, 50 ); // 50 pixels wide by 50 pixels tall, resize mode
Set the default Post Thumbnail size by cropping the image (either from the sides, or from the top and bottom):
set_post_thumbnail_size( 50, 50, true ); // 50 pixels wide by 50 pixels tall, crop mode
Change Log
Since 2.9
Source File
set_post_thumbnail_size() is located in wp-includes/media.php.
Related
Post Thumbnails: has_post_thumbnail(), the_post_thumbnail(), get_post_thumbnail_id(), get_the_post_thumbnail(), add_image_size(), set_post_thumbnail_size()
Monday, June 9, 2014
Function Reference/set post thumbnail size
20Me Reviews
8:58 PM
Translate
Được Quan Tâm
-
Hướng dẫn này sẽ cho bạn thấy làm thế nào để rút ra những biểu tượng logo Volkswagen huyền thoại bằng cách sử dụng LayerStyles, Radial Gradi...
-
Hệ cơ sở dữ liệu là tập hợp các dữ liệu có liên quan với nhau, chứa thông tin của 1 đối tượng nào đó ( như trường họ...
-
Đối với các lập trình viên ít nhất một lần cũng phải có nhu cầu lấy địa chỉ IP (Internet Protocol) cho việc phát triển ứng dụng. Ví dụ để ...
-
1. Tạo trang fanpage trên Facebook Nếu bạn chưa có trang fanpage trên Facebook, bạn hãy làm theo các bước dưới đây để tạo: - Vào trang ...
-
Preview action đẹp cho photoshop action for photoshop download action photoshop Download
-
Dùng để di chuyển file 1 cách nhanh chóng Chức năng Blackberry bend là 1 tính năng cho phép bản chuyển file từ máy tính đến...
-
Chào các bạn, hôm nay mình viết bài này vơi mong muốn chia sẻ cho các bạn vừa mới học joomla có thể hệ thống lại các bước để tạo ra website...
-
Sự phát triển của khoa học công nghệ ngày càng lớn mạnh, giúp cho con người tạo ra nhiều sản phẩm từ điện tử, cơ khí, ro...
0 nhận xét :