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_property_imported_reapit_foundations_json", 'force_main_id_import', 10, 2 ); | |
function force_main_id_import( $post_id, $property ) | |
{ | |
if ( isset($property['id']) && !empty($property['id']) ) | |
{ | |
update_post_meta( $post_id, '_reference_number', $property['id'] ); | |
} | |
} |
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
<?php | |
add_action('rest_api_init', function () { | |
register_rest_route('ppa/v1', '/update-property/', array( | |
'methods' => 'POST', | |
'callback' => 'update_property', | |
'permission_callback' => 'basic_auth_permission_check' | |
)); | |
}); |
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
<?php | |
$args = array( | |
'post_type' => 'property', | |
'ignore_sticky_posts' => 1, | |
'posts_per_page' => 1, // change to show more than 1 | |
'orderby' => 'rand', | |
'order' => 'desc', | |
); | |
$meta_query = array( |