Files
agroexpert/partials/menu-footer-bottom.php

14 lines
432 B
PHP
Raw Permalink Normal View History

2024-03-01 17:47:03 +03:00
<?php
$menu_location = 'footer-bottom';
$locations = get_nav_menu_locations();
$menu_id = $locations[$menu_location];
$menu_items = wp_get_nav_menu_items($menu_id);
2025-07-04 23:44:07 +03:00
//$privacyPolicy = get_field('privacy_policy', 'option');
2024-03-01 17:47:03 +03:00
foreach ($menu_items ?? [] as $menu_item) {
2025-07-04 23:44:07 +03:00
echo "<a href='" . esc_url($menu_item->url) . "' class='footer-bottom__text footer-bottom__link' target='_blank'>" . esc_html($menu_item->title) . "</a>";
2024-03-01 17:47:03 +03:00
}