Skip to content

Instantly share code, notes, and snippets.

@propertyhive
Created November 23, 2022 10:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save propertyhive/75a74c11e48abc1d5fcf3199baba3473 to your computer and use it in GitHub Desktop.
Save propertyhive/75a74c11e48abc1d5fcf3199baba3473 to your computer and use it in GitHub Desktop.
Import and set featured from Reapit Foundations
add_filter( 'propertyhive_reapit_foundations_json_properties_url_parameters', 'extra_fields_in_reapit' );
function extra_fields_in_reapit( $url_parameters )
{
$url_parameters['extrasField'] = array( 'pFeaturedProperty' );
return $url_parameters;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment