Skip to content

Instantly share code, notes, and snippets.

@propertyhive
Created February 20, 2025 19:05
Show Gist options
  • Save propertyhive/cb0e6f97d26ce02a2672ddd962e3ea34 to your computer and use it in GitHub Desktop.
Save propertyhive/cb0e6f97d26ce02a2672ddd962e3ea34 to your computer and use it in GitHub Desktop.
add_action( "propertyhive_wpresidence_property_synced", 'hive_availability_in_action_category_in_wpr', 10, 3 );
function hive_availability_in_action_category_in_wpr( $hive_post_id, $wpr_post_id, $synced )
{
if ( $synced === true )
{
$property = new PH_Property((int)$hive_post_id);
$hive_availability = $property->availability;
wp_set_object_terms( $wpr_post_id, $hive_availability, "property_action_category" );
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment