Last active
January 2, 2016 14:58
-
-
Save rodica-andronache/8320074 to your computer and use it in GitHub Desktop.
How to use yoast local plugin
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
| <?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