Now, you’ve guessed it’, how do I link the buttons to the corresponding pages.
What’s the HTML markup for your navigation. Assuming you followed the instructions in the webpage, it would at least look something like:
<div id="navmenu">
<ul>
<li><a href="<?php echo get_settings('home'); ?>">HOME</a></li>
<li><a href="wordpress/recipes/">RECIPES</a></li>
<li><a href="wordpress/travel/">TRAVEL</a></li>
<li><a href="https://www.www.ads-software.com">WORDPRESS</a></li>
</ul>
</div>
wp_list_pages way:
<div id="navmenu">
<ul>
<li><a href="<?php echo get_settings('home'); ?>">HOME</a></li>
<li><?php wp_list_pages(); ?></li>
</ul>
</div>
wp_page_menu way:
<div id="navmenu">
<ul>
<?php wp_page_menu(); ?>
</ul>
</div>