this1guy
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Display different custom menus depending on page.I guess what I mean is if I go into widgets, I have a custom menu widget and I can add it to the sidebar… how can I add multiple menus to the sidebar and only show those on the sidebar column only that pertains to each specific page?
Forum: Fixing WordPress
In reply to: Display different custom menus depending on page.ok, i’m getting somewhere, but my idea was to display my custom menu on the left column, not across the top under the main navigation…
so my links are
about us services contact
if I add the code above to headers.php file what happens is my test menu shows up when i click on services, and then mouse over it as in:
about us services contact
item1 item2I’m using the graphene template…
how could I redirect this custom menu to show up as a widget on the left side so when I click services
to the left of the main body in the left column, you’ll see
item1
item2
etc…Forum: Fixing WordPress
In reply to: Display different custom menus depending on page.Actually — 🙂 you’ll be proud
I added this code into my header.php file
<?php if (is_page(‘Services’)): ?>
<?php wp_nav_menu(‘menu=test’); ?>
<?php endif; ?>and it appears to be working, but it’s showing the menu outside of the page up on top… where in the headers.php file would I need to paste this code?
Forum: Fixing WordPress
In reply to: Display different custom menus depending on page.Zoonini — thank you so much for responding and I’m sorry I didn’t get a chance to get back to you sooner. When I say newbie, I’m really a newbie — can you direct me to where I would modify the header.php code? Can you share an example if my page is called Page1 and I’d like it to be linked to CustomMenu1, where would I go to link the two?