Last active
November 19, 2018 15:56
-
-
Save steffendre/265a2288dddfaa4ff86d73d0ba5cb76b to your computer and use it in GitHub Desktop.
This file contains hidden or 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
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