<?php
foreach($action_items as $item){
if ( strpos( $item, 'Water' ) !== false ) {
- $icon = "Waterfalls";
- } else if ( strpos( $item, 'Light' ) !== false ) {
- $icon = 'Lighthouses';
- }
- ?>
- <a class="action-item-dropdown-link" href="">
+ $icon = "Waterfalls";
+ $category = 25;
+ } else if ( strpos( $item, 'Light' ) !== false ) {
+ $icon = 'Lighthouses';
+ $category = 21;
+ }
+ ?>
+ <a class="action-item-dropdown-link" href="<?php echo get_site_url(); ?>/members-list?category=<?php echo $category; ?>">
<img class="action-item-dropdown" src="<?php echo get_template_directory_uri();?>/assets/county-navigation/<?php echo $icon; ?>.png">
</a>
<?php } ?>