i am using wordpress 2.3.1 for my nilgiris travel information site. i want to add more pages ( not posts).But it can overload (or mesh up) the space below header. How can i add more pages without putting it in pages toolbar? any help?
In your header.php file replace with replacing the 1,4,6 with whatever page ids you don't want obviously
Maybe he thought you can register to some of those social network platform and put links there to your website ...
Maybe he thought you can register to some of those social network platform and put links there to your website ...
Maybe he thought you can register to some of those social network platform and put links there to your website ...
Page Link Manager can only manage the page links in sidebar navigation. But i want to remove some of my pages from menu in just below header. please check at nilgiris travel information
How am i doing it in my header then? Check again, look at my blog for an example, cause you are not being right.
Nope, it does the same as Page Link manager ...in the end, I guess I have to hack the code to get what I want ..
Did you even try using page link manager? Did you even see my blog? Look at the header, and the footer. Page link manager is the thing. Never mind and best of luck anyway lol..
nice looking blog godsofchaos, i'll give that plugin a try, so far ive been manually editing the template.
How can i modify the below code to resolve my problem? <div id="nav"> <?php function get_the_pa_ges() { global $wpdb; if ( ! $these_pages = wp_cache_get('these_pages', 'pages') ) { $these_pages = $wpdb->get_results('select ID, post_title from '. $wpdb->posts .' where post_status = "publish" and post_type = "page" order by ID'); } return $these_pages; } function list_all_pages(){ $all_pages = get_the_pa_ges (); foreach ($all_pages as $thats_all){ $the_page_id = $thats_all->ID; if (is_page($the_page_id)) { $addclass = ' class="current_page"'; } else { $addclass = ''; } $output .= '<li' . $addclass . '><a href="'.get_permalink($thats_all->ID).'" title="'.$thats_all->post_title.'"><span>'.$thats_all->post_title.'</span></a></li>'; } return $output; } ?> <ul> <?php if (is_home()) { $addclass = ' class="current_page"'; } else { $addclass = ''; } echo "<li" . $addclass . "><a href='" . get_option('home') . "' title='Home'><span>Home</span></a></li>"; echo list_all_pages();?> </ul> <div class="cleared"></div> </div> <!-- Closes Nav -->