Created
June 19, 2014 02:39
-
-
Save designbuildtest/080021b1ea14df175700 to your computer and use it in GitHub Desktop.
Show map page
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 // Map page | |
if ( get_theme_mod( 'map_page' ) ) { | |
$map_page_id = get_theme_mod( 'map_page' ); ?> | |
<div class="location-map"> | |
<a href="<?php echo esc_url( get_permalink( $map_page_id ) ); ?>" title="<?php echo esc_attr( get_the_title( $map_page_id ) ); ?>"> | |
<?php echo esc_attr( get_the_title( $map_page_id ) ); ?> | |
</a> | |
</div><?php | |
} ?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment