Last active
July 14, 2019 23:32
-
-
Save jdevalk/5270502 to your computer and use it in GitHub Desktop.
A cool example of what your locations post type archive page could look like
This file contains 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 | |
/** | |
* Template for displaying a map on the locations post-type archive page. | |
* | |
* @package Twenty_Twelve | |
* @subpackage Local SEO for WordPress Archive page template | |
* @author Joost de Valk | |
*/ | |
get_header(); | |
if ( function_exists( 'yoast_breadcrumb' ) ) { | |
yoast_breadcrumb('<p id="breadcrumbs">','</p>'); | |
} | |
?> | |
<div id="primary" class="site-content"> | |
<div id="content" role="main"> | |
<h1>Locations</h1> | |
<br/> | |
<?php | |
$args = array( | |
'id' => 'all', | |
'width' => 960, | |
'height' => 600 | |
); | |
echo wpseo_local_show_map( $args ); | |
?> | |
</div><!-- #content --> | |
</div><!-- #primary --> | |
<?php get_footer(); ?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
so, if i use flatsome, I only need to add the file archive-wpseo_locations.php to flatsome root directory (with above code)?, does it work on child ?