• Resolved V E

    (@eddie-vdub)


    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 https://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!

Viewing 2 replies - 1 through 2 (of 2 total)
  • 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="https://forum.example.org/">Forum</a></li>';
            $output .= '<li><a href="https://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.

    Thread Starter V E

    (@eddie-vdub)

    thanks stvwlf…
    The nav menu on that template (simplistix) wasn’t working out.
    I switched themes in the end.
    thanks for your time

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Nav Bar Links’ is closed to new replies.