add special

This commit is contained in:
argoexpert press
2025-05-29 00:59:59 +03:00
parent f2d7deeedf
commit 1b83816191
13 changed files with 377 additions and 17 deletions

10
partials/menu-forest.php Normal file
View File

@@ -0,0 +1,10 @@
<?$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; ?>