nigelmellish
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Adding a sidebar.Renn:
I struggled with this: “But, I’d like to add these pages to the sidebar for “Sociology”, instead of the main navigation. In the Blix help file this is said about ‘secondary navigation’:”
For a while. You need to add an argument after this in header.php:
elseif ($page_name == “about_short”) {/*ignore*/}
After that I added the following:
elseif ( $page_id>8 )
Because I didn’t want any page with an id greater than 8 to show up.
Hope this helps….
Forum: Themes and Templates
In reply to: Adding a sidebar.I was able to put up a sidebar on pages by modding the page.php – drop in:
<?php get_sidebar(); ?>
right after the get_header argument and before the “comment”…
Now, anybody have any ideas how I can get the sidebar to display something other than the Pages Menu? If I find out I’ll let you know.
Forum: Plugins
In reply to: Creating a page which does not apear on my menu of pages.I’m looking for exactly that, banana – if you find a fix, please post and let me know!
Forum: Themes and Templates
In reply to: Excluding Pages on Blix ThemeHi,
I’m looking to do the same thing, but with something like 25 pages…
would I just add:
post_title!=’firstpage’; post_title!=’secondpage”; etc…
All of the pages I want to exclude are children pages, do you think I could just make some flavor of declaration to exclude all pages with in an id range (i.e. all with an i.d. > 7)?