Hướng dẫn cách lấy tất cả các kích thước ảnh đang sử dụng trên website :(
3. Xử lý ảnh kết hợp với lệnh cmd hỗ trợ của wordpress để loại bỏ nhưng kích thước không mong muốn :))
4. My default media setting in WordPress blog is 150x150, 300x300, 1024x1024 respectively for thumbnail, medium, large images. Now I am designing a theme that need different size thumbnail images to show in theme. For this, I go to the media setting again and changed the setting with my news sizes like 72x72, 250x250, 400x400 respectively for thumbnail, medium, large images.
But now to resize my old uploaded images, I used Regenerate Thumbnails WordPress plugin and that generated my new media setting images size easily. So this solved my main problem.
5. Cách sử dụng remove_image_size kết hợp với init cũng có tác dụng như trên :)
function remove_extra_image_sizes() {
foreach ( get_intermediate_image_sizes() as $size ) {
if ( !in_array( $size, array( 'medium', 'medium_large', 'large' ) ) ) {
remove_image_size( $size );
}
}
}
add_action('init', 'remove_extra_image_sizes');
Kết hơp với cầu lệnh C:\xampp\htdocs\wordpress3>wp media regenerate --yes