bboy131
Member
Posted 2 years ago #
Back again lol. I have upgraded to the newest 2.2 version of Mystique template. I used to have page links at the top along side the category nav bar, but now it seems the code has changed and I cannot place them by using
.
Is there a new way to do this?
yes. in advanced > functions:
<?php
function my_navigation(){
echo '<li><a class="fadeThis" href="#"><span class="title">Name here</span></a></li>';
echo '<li><a class="fadeThis" href="#"><span class="title">Another one</span></a></li>';
}
add_action('mystique_navigation', 'my_navigation');
?>
distinctnews
Member
Posted 2 years ago #
What do you mean by page links? Sub-Menus? If that's it, I'm looking for the same solution lol
bboy131
Member
Posted 2 years ago #
Thank you again for helping me out digitalnature! Worked like a charm.