wordpress navigational links like forums?

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • nico-t
    emperor of my world
    • Aug 2004
    • 29903

    #1

    wordpress navigational links like forums?

    Looking for wordpress navigational links like gfy has above,
    and all levels linked to that level ofcourse.

    When im in WP, i want this all linked when for example viewing a single post:

    Mainsite > Category > Post title

    Now im trying a bit with <?php the_category(,) ?> which links the category the post is in but that needs to be in the 'loop' and i want to put this navigational thing in the header... searched on the WP forums but dont really know what search terms i should search for..
  • Jdoughs
    Confirmed User
    • Mar 2004
    • 5794

    #2
    If you use any type of Seo Plugin it's built into most. All In One Seo for example lets you set variables for titles for tags, categories, single pages, archive etc.

    %post_title% | %category_title% | %blog_title% | %tag% | %search% | %description% | %post_title%
    Last edited by Jdoughs; 11-05-2010, 01:46 PM.
    LinkSpun - Premier Adult Link Trading Community - ICQ - 464/\281/\250
    Be Seen By New Webmasters/Affiliates * Target out webmasters/affiliates based on niches your sites are for less than $20 a month.
    AmeriNOC - Proudly hosted @ AmeriNOC!

    Comment

    • Highest Def
      In the Cave of Gold
      • Jun 2010
      • 660

      #3
      Sounds like you want breadcrumb links. Just search the plugins for 'breadcrumb nav'. There are a lot of them that will do the trick.

      Comment

      • Jdoughs
        Confirmed User
        • Mar 2004
        • 5794

        #4
        Oh doh, yes breadcrumbs for sure are what you are looking for.
        LinkSpun - Premier Adult Link Trading Community - ICQ - 464/\281/\250
        Be Seen By New Webmasters/Affiliates * Target out webmasters/affiliates based on niches your sites are for less than $20 a month.
        AmeriNOC - Proudly hosted @ AmeriNOC!

        Comment

        • garce
          Confirmed User
          • Oct 2001
          • 7103

          #5
          http://mtekk.us/code/breadcrumb-navxt/

          Comment

          • Davy
            Confirmed User
            • Apr 2006
            • 4323

            #6
            ^^^ plus one

            Breadcrumbs is what you are looking for.
            ---
            ICQ 14-76-98 <-- I don't use this at all

            Comment

            • garce
              Confirmed User
              • Oct 2001
              • 7103

              #7
              Originally posted by garce
              I usually code the breadcrumbs like this:

              Code:
              <?php if (!is_home()) {?>
              <div class="breadcrumb">
              <?php
              if(function_exists('bcn_display'))
              {
              	bcn_display();
              }
              ?>
              </div>
              <?php }?>
              Because I don't like having a "HOME" breadcrumb on the homepage itself.

              Comment

              • nico-t
                emperor of my world
                • Aug 2004
                • 29903

                #8
                Great, thats exactly what im looking for. Thanks guys

                Comment

                Working...