Skip to content

Instantly share code, notes, and snippets.

@bhubbard
Forked from jdevalk/archive-wpseo_locations.php
Last active August 29, 2015 14:25
Show Gist options
  • Save bhubbard/0b7c843416ed7d0f5c8f to your computer and use it in GitHub Desktop.
Save bhubbard/0b7c843416ed7d0f5c8f to your computer and use it in GitHub Desktop.
<?php
/** Replace the standard loop with our custom Locations loop */
remove_action( 'genesis_loop', 'genesis_do_loop' );
add_action( 'genesis_loop', 'wpseo_locations_archive_loop' );
function wpseo_locations_archive_loop() {
echo '<h1>Locations</h1>';
echo '<div class="entry-content"><p>Your intro text here.</p></div>';
$args = array(
'id' => 'all',
'width' => 960, // Feel free to adjust width and height.
'height' => 600
);
echo wpseo_local_show_map( $args );
}
genesis();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment