- This topic has 7 replies, 3 voices, and was last updated 15 years, 5 months ago by imported_Ryan.
-
AuthorPosts
-
June 10, 2009 at 9:39 pm #865conuficusMember
I have an issue; where should I place the code in this Theme (Open Sourcerer)for it to be effective?
Thanks for any help.
This is the script from the Theme Header. Where would the extra piece of code go?
<?php
/*
Template Name: Open Sourcerer
*/
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" <?php language_attributes() ?>>
<!–<html xmlns="http://www.w3.org/1999/xhtml" <?php language_attributes() ?>>–>
<head profile="http://gmpg.org/xfn/11">
<title><?php bloginfo(‘name’); ?> <?php wp_title(); ?></title>
<meta http-equiv="Content-Type" content="<?php bloginfo(‘html_type’); ?>; charset=<?php bloginfo(‘charset’); ?>" />
<link rel="stylesheet" href="<?php bloginfo(‘stylesheet_url’); ?>" type="text/css" media="screen,projection" />
<link rel="alternate" type="application/rss+xml" title="<?php bloginfo(‘name’); ?> RSS Feed" href="<?php bloginfo(‘rss2_url’); ?>" />
<link rel="alternate" type="application/atom+xml" title="<?php bloginfo(‘name’); ?> Atom Feed" href="<?php bloginfo(‘atom_url’); ?>" />
<link rel="pingback" href="<?php bloginfo(‘pingback_url’); ?>" />
<?php wp_head(); ?>
</head><body>
<div id="wrap"><!– Begin Wrap –>
<div id="header"><!– Begin Header –>
<div class="inside">
<h1>
<a href="<?php echo get_option(‘home’); ?>/"><?php bloginfo(‘name’); ?>[/url]
</h1>
<p class="description"><?php bloginfo(‘description’); ?></p>
</div>
</div><!– End Header –>
<div id="menu">
<ul id="nav">
<?php wp_list_pages(‘sort_column=menu_order&title_li=’); ?>
</ul>
</div>If you need to view the test site:
I have uploaded the Page Mash Plugin as well. Are there any tips to using these two together. I am not experienced, and could use information, the more the merrier.
June 11, 2009 at 4:32 am #6408paranoiaMemberAnywhere you want it to appear but I’m guessing here:
-Replace-
<div id="menu">
<ul id="nav">
<?php wp_list_pages(‘sort_column=menu_order&title_li=’); ?>
</ul>
</div>-With-
<div id="menu">
<?php if (function_exists(‘pixopoint_menu’)) {pixopoint_menu();} ?></div>
</div>June 11, 2009 at 4:34 am #6409conuficusMemberI’ve tried that, and what I get is what you see in the URL, a menu that doesn’t drop down, but displays every page.
I thought I was doing something wrong with my location.
June 11, 2009 at 4:53 am #6410paranoiaMemberOh..I think I might have made a small mistake in my post. Try this instead. If it doesn’t work then I’m afraid I’m not too sure and you should wait for Ryan’s reply. ” title=”Smiley” />
<div>
<?php if (function_exists(‘pixopoint_menu’)) {pixopoint_menu();} ?>
</div>June 11, 2009 at 4:57 am #6411conuficusMemberThanks, I will.
I’ll let you know.
June 11, 2009 at 5:05 am #6412conuficusMemberNah…….just made the menu items smaller and bunched to the left.
With regards to this being able to have hidden pages that appear once a top level page is highlighted:- Do I need to customize this setup, or is this a Page Mash issue?
June 14, 2009 at 2:17 am #6413imported_RyanMemberIf you are using PageMash, then I don’t think there will be any need to use the include or exclude pages feature in the Multi-level Navigation plugin. Otherwise, there isn’t much to it really, PageMash does it’s thing and when you use the ‘Pages’ or ‘Pages (single dropdown)’ options in the multi-level navigation plugin it will automatically use any of the changes you have made with PageMash.
June 14, 2009 at 2:19 am #6414imported_RyanMemberI’m guessing you have the menu working the way you want it to now? It looked when I viewed it in Chrome.
-
AuthorPosts
- You must be logged in to reply to this topic.