
Imagine that you’re running a blog, but also have an online shop, a phpBB forum and some static pages. Do you’d like to be able to include theses pages in WordPress navigation, just like slamdunk asked in the forum? If yes, just read on.

Imagine that you’re running a blog, but also have an online shop, a phpBB forum and some static pages. Do you’d like to be able to include theses pages in WordPress navigation, just like slamdunk asked in the forum? If yes, just read on.
The solution to this problem is fairly simple. As the wp_list_pages() function returns only <li>...</li> elements, we just have to add static links to our external pages, just as shown below:
<ul>
<?php wp_list_pages('title_li='); ?>
<li><a href="forum.php">Forum</a></li>
<li><a href="shop.php">Shop</a></li>
</ul>
That's all. These two external links looks exactly the same as the ones from WordPress.
Leave a Comment