Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save propertyhive/a10cfe7d8d48461e231c7bd097186f51 to your computer and use it in GitHub Desktop.
Save propertyhive/a10cfe7d8d48461e231c7bd097186f51 to your computer and use it in GitHub Desktop.
add_action( "propertyhive_property_imported_agentsinsight_xml", 'import_custom_field', 10, 2 );
function import_custom_field($post_id, $property)
{
update_post_meta( $post_id, '_energy_rating', isset($property->current_energy_ratings->rating) ? (string)$property->current_energy_ratings->rating : '' );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment