"Include-pages" + "Superfish-Plugin"?
Hi,
I have downloaded the Superfish-Plugin (http://users.tpg.com.au/j_birch/plugins/superfish/). It does work so far.
But there is one thing, I want to have an answer:
Is it possible to add the following code with the "include-tag"?
<ul id='cat-menu' class='sf-menu'>
<li class='cat_item<?php if(is_home()) echo ' current-cat'; ?>'><a href='<?php bloginfo('url'); ?>'>Startseite</a></
<?php wp_list_pages('title_li='); ?>
</ul>
Doing this by the following way, the subpages were not displayed anymore:
<ul id='cat-menu' class='sf-menu'>
<li class='cat_item<?php if(is_home()) echo ' current-cat'; ?>'><a href='<?php bloginfo('url'); ?>'>Startseite</a></
<?php wp_list_pages('include=7,13,26,35&title_li=<h2>' . __('Pages') . '</h2>' ); ?>
</ul>
How can I solve the problem?