Hello alchymyth,
Thank you for your help… I very much appreciate it.
This is the code in my functions.php that I’m using to power my menus.
How would I integrate or use new a php code to get my selected / current page to show? What do you suggest?
//Navigation
add_action('init','register_custom_menu');
function register_custom_menu(){
register_nav_menu('custom_menu',__('Custom Menu'));
}
//Footer Navigation
add_action('init','register_custom_menu');
function register_custom_foot_menu(){
register_nav_menu('custom_foot_menu',__('Custom Footer Menu'));
}
thx
mrjap1