Skip to content

Instantly share code, notes, and snippets.

@mikejolley
Created February 11, 2015 19:13
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 mikejolley/5e1b6fd8cbfe68276dfe to your computer and use it in GitHub Desktop.
Save mikejolley/5e1b6fd8cbfe68276dfe to your computer and use it in GitHub Desktop.
Remove Google Map Link
add_filter( 'the_job_location_map_link', 'custom_the_job_location_map_link' );
function custom_the_job_location_map_link( $link ) {
return strip_tags( $link );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment