I have a Bootstrap theme uploaded to Wordpress and it seems to be working fine except when I try to enter my own menu items.
The code for the php menu is below:
<div class="nav-scroller py-1 mb-2">
<nav class="nav d-flex justify-content-center">
<a href="#" class="p-2 px-3 text-muted">
<?php
wp_nav_menu(array(
'theme_location' => 'categoryMenu'
));
?>
</a>
</nav>
</div>
Should you need additional information, please don't hesitate to ask. I will post more code.
Thank you,
The following HTML code from the 'inspection' tool in Chrome:
<?php
$menuParameters = array(
'container' => false,
'echo' => false,
'items_wrap' => '%3$s',
'depth' => 0,
);
echo strip_tags(wp_nav_menu($menuParameters), '<a>');
?>
wp_nav_menu