Files
agroexpert/partials/menu-forest.php
argoexpert press 1b83816191 add special
2025-05-29 00:59:59 +03:00

10 lines
343 B
PHP

<?$menu_items = wp_get_nav_menu_items( 'forest_main' );
if ($menu_items) : ?>
<?php foreach ($menu_items as $menu_item) : ?>
<li class="menu-item">
<a href="<?= esc_url($menu_item->url); ?>">
<?= esc_html($menu_item->title); ?>
</a>
</li>
<?php endforeach; ?>
<?php endif; ?>