Skip to content

Instantly share code, notes, and snippets.

@rodica-andronache
Last active January 2, 2016 14:58
Show Gist options
  • Select an option

  • Save rodica-andronache/8320074 to your computer and use it in GitHub Desktop.

Select an option

Save rodica-andronache/8320074 to your computer and use it in GitHub Desktop.
How to use yoast local plugin
<?php
pt o singura adresa in loc de id pun 'all'
!!!Asta e pt mai multe locatii:
if( function_exists( 'wpseo_local_show_map' ) ) {
$params = array(
'echo' => true,
'id' => 804, // this is the post id from the Albany post in the Locations CPT
'width' => 460,
'height' => 296,
'zoom' => 12,
'show_route' => false
);
wpseo_local_show_map( $params );
}
if( function_exists( 'wpseo_local_show_address' ) ) {
$params = array(
'echo' => true,
'id' => 804, // this is the post id from the Albany post in the Locations CPT
'show_state' => true,
'show_country' => false,
'show_phone' => true,
'oneline' => false,
'show_opening_hours' => false
);
wpseo_local_show_address( $params );
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment