Skip to content

Instantly share code, notes, and snippets.

@propertyhive
Created February 12, 2025 10:28
Show Gist options
  • Save propertyhive/807823423db7dc481d40383adddeb150 to your computer and use it in GitHub Desktop.
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
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