benjaminmorgan Posted December 18, 2011 Report Posted December 18, 2011 I have a main nav horizontal with the wp_list_pages('depth=1&title_li=<h2 class="displaynone">Pages</h2>); On the commercial page (on main navigation) I need to have a vertical sidebar only on this page. I don't know how to make it where he can add pages to it like that. So far when it creates a page it adds it to the main nav bar.
benjaminmorgan Posted December 18, 2011 Author Report Posted December 18, 2011 I tried doing an If statement. It didn't work. For some reason the only thing it is putting on the sidebar is the word Commercial <?php if(trim(wp_title(''))=="Commercial") { ?> <ul class="comside"> <?php $recent_posts = wp_get_recent_posts(); foreach($recent_posts as $recent){ echo '<li><a href="' . get_permalink($recent["ID"]) . '">' . $recent["post_title"].'</a></li> '; } ?> </ul> <?php }?>
benjaminmorgan Posted December 18, 2011 Author Report Posted December 18, 2011 (edited) Nevermind. I fixed it with adding , false to the wp_title. Not sure what parameter that is though. Edited December 18, 2011 by benjaminmorgan
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now