Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save propertyhive/4506a9d7b800014f7c430c375542ab35 to your computer and use it in GitHub Desktop.
Save propertyhive/4506a9d7b800014f7c430c375542ab35 to your computer and use it in GitHub Desktop.
Custom shortcodes to output lat/lng
add_shortcode( 'property_lat', 'property_lat_shortcode' );
function property_lat_shortcode()
{
global $property;
ob_start();
echo $property->latitude;
return ob_get_clean();
}
add_shortcode( 'property_lng', 'property_lng_shortcode' );
function property_lng_shortcode()
{
global $property;
ob_start();
echo $property->longitude;
return ob_get_clean();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment