• Resolved petrman

    (@petrman)


    Hi new to wordpress, and I’m trying to use it for a website more then a blog. I want to add 5 static pages and have them show in the catergories area? If thats is what its called. So they stay there no matter what and can be used to bump around. I have 2 pages doing this now, home and about. but I have no other options to make more static pages any help would be great.

Viewing 5 replies - 1 through 5 (of 5 total)
  • When you create a new page does it not show in the same place home and about shows?

    Thread Starter petrman

    (@petrman)

    heres the link if im aloud to post https://www.beckyscause.org.
    What i would like is the “technical” linkpage at the top to be added to where about and home are now. Really I want about and home and like 3 other static pages to be shown in that area. Hopefully this makes sense.

    I don’t use that theme, but from a quick look, it seems the categories are being listed in the navbar above the post and your pages are listed in the upper-right of the header. I don’t see an option in the theme to change this through wp admin, so you can change it by editing your header.php file. Find the following:

    <ul id="nav">
      <li><a href="<?php echo get_option('home'); ?>">Home</a></li>
      <?php wp_list_categories('sort_column=name&title_li=&depth=2'); ?>
    </ul>

    and change that wp_list_categories line so it looks like this:

    <ul id="nav">
      <li><a href="<?php echo get_option('home'); ?>">Home</a></li>
      <?php wp_list_pages('depth=1&title_li=0&sort_column=menu_order'); ?>
    </ul>

    If you don’t want the pages listed at the upper-right of the header, then you would need to delete/change that code.

    Seems this option should be provided in the theme options, but I just don’t see it…if I’m missing it somewhere, maybe someone else can post and let us know.

    Thread Starter petrman

    (@petrman)

    Perfect thats what I needed!thanks so much.

    You’re welcome…glad you got it fixed.

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Need help with pixel theme’ is closed to new replies.