Server : LiteSpeed System : Linux webbox1.ncrdns.net 5.14.0-611.55.1.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Tue May 19 15:19:29 EDT 2026 x86_64 User : rahcos ( 1533) PHP Version : 8.4.23 Disable Function : NONE Directory : /home/rahcos/.trash/wp-content/themes/hara/inc/customizer/ |
<?php
if (!function_exists('hara_tbay_private_size_image_setup')) {
function hara_tbay_private_size_image_setup()
{
if (hara_tbay_get_global_config('config_media', false)) {
return;
}
// Post Thumbnails Size
set_post_thumbnail_size(420, 315, true); // Unlimited height, soft crop
update_option('thumbnail_size_w', 420);
update_option('thumbnail_size_h', 315);
update_option('medium_size_w', 555);
update_option('medium_size_h', 333);
update_option('large_size_w', 770);
update_option('large_size_h', 462);
}
add_action('after_setup_theme', 'hara_tbay_private_size_image_setup');
}