Created
February 12, 2025 10:28
-
-
Save propertyhive/807823423db7dc481d40383adddeb150 to your computer and use it in GitHub Desktop.
Import different size image when importing from other Houzez site as to not get large/massive images
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
add_filter( 'houzez_property_feed_wp_rest_api_houzez_media_source_url', 'different_source_url', 10, 2); | |
function different_source_url($url, $attachment) | |
{ | |
if ( isset($attachment['media_details']['sizes']['1536x1536']['source_url']) && !empty($attachment['media_details']['sizes']['1536x1536']['source_url']) ) | |
{ | |
return $attachment['media_details']['sizes']['1536x1536']['source_url']; | |
} | |
return $url; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment