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 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 | |
/** | |
* 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(); ?> |
I have a more detailed template here - https://gist.github.com/bhubbard/f54b531f87690b857c35
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 ?
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The code above goes into a new PHP file called archive-wpseo_locations.php which goes in the root of your theme's folder. Further info here: http://kb.yoast.com/article/102-template-files-for-local-seo