Greetings, great theme.
I'm having a problem downloading and/or installing the NavT plugin (or any other plugin for that matter, but that is a separate issue)...
Is there any way I can add a couple links to the nav bar without any major changes?
I'm new to the .org business, so bare with me. I've set up a test site at http://www.barbapelo.com that I've been using to test the templates and figure out how it all works.
any help would be kindly appreciated!
hi
Add links to the end of wp_list_pages output ( to nav list)
add this code to /wp-content/themes/{themename}/functions.php
add_filter('wp_list_pages', 'add_forum_link');
function add_forum_link($output) {
$output .= '<li><a href="http://forum.example.org/">Forum</a></li>';
$output .= '<li><a href="http://forum.example2.org/">Forum2</a></li>';
return $output;
}
change the LI to suit your needs. You can add more LI's to that list also.
thanks stvwlf...
The nav menu on that template (simplistix) wasn't working out.
I switched themes in the end.
thanks for your time