Anchor points for venues
-
I have the following code on a page listing every venue in my system.
<?php $venues = eo_get_venues(); if( $venues ){ foreach($venues as $venue): $venue_id = (int) $venue->term_id; echo '<figure>'; printf( '<a href="%s">%s</a>', eo_get_venue_link($venue_id), eo_get_venue_thumbnail( $venue_id )); printf('<figcaption> <a href="%s">%s</a></figcaption>', eo_get_venue_link($venue_id), esc_html($venue->name)); echo '</figure>'; endforeach; } ?>
Is there any way I can put a menu of “A – B – C – D – E – etc” above it, linked as anchor points
<a href="#m">M</a>
which would in turn scroll down the page to the start of the venues beginning with M?Chris
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘Anchor points for venues’ is closed to new replies.