Created
February 20, 2025 19:05
-
-
Save propertyhive/cb0e6f97d26ce02a2672ddd962e3ea34 to your computer and use it in GitHub Desktop.
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_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