Skip to content

Instantly share code, notes, and snippets.

@steffendre
Last active November 19, 2018 15:56
Show Gist options
  • Save steffendre/265a2288dddfaa4ff86d73d0ba5cb76b to your computer and use it in GitHub Desktop.
Save steffendre/265a2288dddfaa4ff86d73d0ba5cb76b to your computer and use it in GitHub Desktop.
public function facetwp_show_proximity() {
$output = '';
$distance = facetwp_get_distance();
if ( false !== $distance ) {
$output .= esc_html( round( $distance, 2 ) );
}
$output .= 'hello';
return $output;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment