Skip to content

Instantly share code, notes, and snippets.

@tacoverdo
Last active December 22, 2015 07:19
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 tacoverdo/6437412 to your computer and use it in GitHub Desktop.
Save tacoverdo/6437412 to your computer and use it in GitHub Desktop.
Local SEO by Yoast - Map shortcode
<?php
// Can be used in any (template) file, will do the same as [wpseo_map] in posts/pages.
if( function_exists( 'wpseo_local_show_map' ) ) {
$params = array(
'echo' => true,
'id' => 347,
'width' => 800,
'height' => 600,
'zoom' => 5,
'show_route' => true
);
wpseo_local_show_map( $params );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment