| Server IP : 104.26.4.103 / Your IP : 216.73.216.4 Web Server : nginx/1.27.1 System : Linux in-5 5.15.0-143-generic #153-Ubuntu SMP Fri Jun 13 19:10:45 UTC 2025 x86_64 User : arabianexpress ( 1872) PHP Version : 8.0.30 Disable Function : exec,passthru,shell_exec,system,proc_open,popen,parse_ini_file,show_source MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /storage/v9321/highrangesfarmstay/public_html/wp-content/themes/hub/liquid/ |
Upload File : |
<?php
/** The Media
* Contains all the Media functions
*
* Table of Content
*
*/
/**
* [liquid_get_the_small_image]
* @function liquid_get_the_small_image
* @param string $src [description]
* @param string $width [description]
* @param string $height [description]
* @return string $small_image [description]
*/
function liquid_get_the_small_image( $src ) {
if( empty( $src ) ){
return;
}
@list( $width, $height ) = getimagesize( $src );
if( ! $width ) {
return $src;
}
elseif( $width > $height ) {
$image_ratio = $height / $width;
$width = 30;
$height = 30 * $image_ratio;
}
elseif( $width < $height ) {
$image_ratio = $width / $height;
$height = 30;
$width = 30 * $image_ratio;
}
elseif( $width == $height ) {
$width = 30;
$height = 30;
}
$small_image = aq_resize( $src, $width, $height, false );
return $small_image;
}
function liquid_get_retina_image( $image, $size = null ) {
if( empty( $image ) ) {
return;
}
if( $size ) {
//Get image sizes
$aq_size = liquid_image_sizes( $size );
$width = $aq_size['width'];
$height = $aq_size['height'];
}
else {
@list( $width, $height ) = getimagesize( $image );
}
//Double the size for the retina display
$retina_width = $width * 2;
$retina_height = $height * 2;
$retina_src = aq_resize( $image, (int) $retina_width, (int) $retina_height, true, true, true );
return $retina_src;
}
function liquid_the_post_thumbnail( $size = 'thumbnail', $attr = '', $retina = true ) {
return the_post_thumbnail( $size, $attr );
}
function liquid_get_resized_image_src( $original_src, $size = 'liquid-thumbnail' ) {
if( empty( $original_src) ) {
return;
}
@list( $src, $width, $height ) = $original_src;
//Get image sizes
$aq_size = liquid_image_sizes( $size );
if( ! empty( $aq_size ) ) {
$resize_width = $aq_size['width'];
$resize_height = $aq_size['height'];
$resize_crop = $aq_size['crop'];
if( $resize_width >= $width ) {
$resize_width = $width;
}
if( $resize_height >= $height && ! empty( $resize_height ) ) {
$resize_height = $height;
}
//Get resized images
$resized_src = aq_resize( $src, $resize_width, $resize_height, $resize_crop );
}
else {
return $src;
}
return $resized_src;
}
/**
* [liquid_image_sizes description]
* @method liquid_image_sizes
* @param array $image_sizes [description]
* @return array $image_sizes [description]
*/
function liquid_image_sizes( $size ) {
$sizes = array(
'liquid-style1-lb' => array( 'width' => '700', 'height' => '450', 'crop' => true ),
'liquid-style3-lb' => array( 'width' => '700', 'height' => '450', 'crop' => true ),
'liquid-style4-lb' => array( 'width' => '320', 'height' => '320', 'crop' => true ),
'liquid-style5-lb' => array( 'width' => '1250', 'height' => '700', 'crop' => true ),
'liquid-style6-lb' => array( 'width' => '720', 'height' => '510', 'crop' => true ),
'liquid-style6-alt-lb' => array( 'width' => '640', 'height' => '364', 'crop' => true ),
'liquid-style7-lb' => array( 'width' => '1520', 'height' => '800', 'crop' => true ),
'liquid-style9-lb' => array( 'width' => '370', 'height' => '470', 'crop' => true ),
'liquid-style13-lb' => array( 'width' => '480', 'height' => '300', 'crop' => true ),
'liquid-style16-lb' => array( 'width' => '720', 'height' => '400', 'crop' => true ),
'liquid-style18-lb' => array( 'width' => '800', 'height' => '1050', 'crop' => true ),
'liquid-style19-lb' => array( 'width' => '700', 'height' => '560', 'crop' => true ),
'liquid-style20-lb' => array( 'width' => '700', 'height' => '560', 'crop' => true ),
'liquid-style21-lb' => array( 'width' => '720', 'height' => '480', 'crop' => true ),
'liquid-style3-sp' => array( 'width' => '760', 'height' => '760', 'crop' => true ),
'liquid-style3-pf' => array( 'width' => '640', 'height' => '600', 'crop' => true ),
'liquid-style4-pf' => array( 'width' => '1400', 'height' => '1000', 'crop' => true ),
'liquid-style6-pf' => array( 'width' => '748', 'height' => '512', 'crop' => true ),
//Portfolio sizes
'liquid-portfolio' => array( 'width' => '760', 'height' => '520', 'crop' => true ),
'liquid-portfolio-sq' => array( 'width' => '760', 'height' => '640', 'crop' => true ),
'liquid-portfolio-big-sq' => array( 'width' => '1520', 'height' => '1280', 'crop' => true ),
'liquid-portfolio-portrait' => array( 'width' => '700', 'height' => '1000', 'crop' => true ),
'liquid-portfolio-wide' => array( 'width' => '1200', 'height' => '590', 'crop' => true ),
'liquid-packery-wide' => array( 'width' => '1140', 'height' => '740', 'crop' => true ),
'liquid-packery-portrait' => array( 'width' => '540', 'height' => '740', 'crop' => true ),
);
$sizes = apply_filters( 'liquid_media_image_sizes', $sizes );
$image_sizes = ! empty( $sizes[ $size ] ) ? $sizes[ $size ] : '';
return $image_sizes;
}
function liquid_add_image_sizes() {
$sizes = array(
'liquid-style1-lb' => array( 'width' => '700', 'height' => '450', 'crop' => true ),
'liquid-style3-lb' => array( 'width' => '700', 'height' => '450', 'crop' => true ),
'liquid-style4-lb' => array( 'width' => '320', 'height' => '320', 'crop' => true ),
'liquid-style5-lb' => array( 'width' => '1250', 'height' => '700', 'crop' => true ),
'liquid-style6-lb' => array( 'width' => '720', 'height' => '510', 'crop' => true ),
'liquid-style6-alt-lb' => array( 'width' => '640', 'height' => '364', 'crop' => true ),
'liquid-style7-lb' => array( 'width' => '1520', 'height' => '800', 'crop' => true ),
'liquid-style9-lb' => array( 'width' => '370', 'height' => '470', 'crop' => true ),
'liquid-style13-lb' => array( 'width' => '480', 'height' => '300', 'crop' => true ),
'liquid-style16-lb' => array( 'width' => '720', 'height' => '400', 'crop' => true ),
'liquid-style18-lb' => array( 'width' => '800', 'height' => '1050', 'crop' => true ),
'liquid-style19-lb' => array( 'width' => '700', 'height' => '560', 'crop' => true ),
'liquid-style20-lb' => array( 'width' => '700', 'height' => '560', 'crop' => true ),
'liquid-style21-lb' => array( 'width' => '720', 'height' => '480', 'crop' => true ),
'liquid-style3-sp' => array( 'width' => '760', 'height' => '760', 'crop' => true ),
'liquid-style3-pf' => array( 'width' => '640', 'height' => '600', 'crop' => true ),
'liquid-style4-pf' => array( 'width' => '1400', 'height' => '1000', 'crop' => true ),
'liquid-style6-pf' => array( 'width' => '748', 'height' => '512', 'crop' => true ),
//Portfolio sizes
'liquid-portfolio' => array( 'width' => '760', 'height' => '520', 'crop' => true ),
'liquid-portfolio-sq' => array( 'width' => '760', 'height' => '640', 'crop' => true ),
'liquid-portfolio-big-sq' => array( 'width' => '1520', 'height' => '1280', 'crop' => true ),
'liquid-portfolio-portrait' => array( 'width' => '700', 'height' => '1000', 'crop' => true ),
'liquid-portfolio-wide' => array( 'width' => '1200', 'height' => '590', 'crop' => true ),
'liquid-packery-wide' => array( 'width' => '1140', 'height' => '740', 'crop' => true ),
'liquid-packery-portrait' => array( 'width' => '540', 'height' => '740', 'crop' => true ),
);
$sizes = apply_filters( 'liquid_media_image_sizes', $sizes );
if( is_array( $sizes ) ) {
foreach( $sizes as $key => $size ) {
add_image_size( $key, $size['width'], $size['height'], true );
};
}
}
/**
* Prevents from creating different image sizes than default thumbnail, medium, large
* Images are created on demand
* @global array $_wp_additional_image_sizes
* @param type $out
* @param int $id
* @param string $size
* @return boolean|array
*/
add_filter('image_downsize', 'liquid_media_downsize', 10, 3);
function liquid_media_downsize($out, $id, $size) {
// If image size exists let WP serve it like normally
$imagedata = wp_get_attachment_metadata($id);
if (!is_string($size)) {
return false;
}
if (is_array($imagedata) && isset($imagedata['sizes'][$size])) {
return false;
}
// Check that the requested size exists, or abort
global $_wp_additional_image_sizes;
if (!isset($_wp_additional_image_sizes[$size])) {
return false;
}
// Make the new thumb
if (!$resized = image_make_intermediate_size(
get_attached_file($id),
$_wp_additional_image_sizes[$size]['width'],
$_wp_additional_image_sizes[$size]['height'],
$_wp_additional_image_sizes[$size]['crop']
))
return false;
// Save image meta, or WP can't see that the thumb exists now
$imagedata['sizes'][$size] = $resized;
wp_update_attachment_metadata($id, $imagedata);
// Return the array for displaying the resized image
$att_url = wp_get_attachment_url($id);
return array(dirname($att_url) . '/' . $resized['file'], $resized['width'], $resized['height'], true);
}
/**
* Prevent resize on upload
* @param array $sizes
* @return array
*/
function liquid_media_prevent_resize_on_upload($sizes) {
// Removing these defaults might cause problems, so we don't
return array(
'thumbnail' => $sizes['thumbnail'],
'medium' => $sizes['medium'],
'large' => $sizes['large']
);
}
add_filter('intermediate_image_sizes_advanced', 'liquid_media_prevent_resize_on_upload');