Topic: CMS Navigation doesn't work ?

How Do I not show page tittles on the navigation?

I have a lot of pages which i dont want to show on the navigation and also CMS navigation plug in doesn't work with this theme.

Tatsuya

Re: CMS Navigation doesn't work ?

theme folder

header.php

line 38-line 44

        <div id="navigation">
            <ul>
                <li <?php if (is_home()) { echo 'class="current_page_item"'; } ?>><a href="<?php echo get_option('home'); ?>/" title="Home">Home</a></li>
                <?php wp_list_pages('title_li='); ?>
            </ul>
        </div>

if you do not what the page shows .delete this code

Note: If you need to send me an email regarding support, please remember to include the URL for the original question.

Re: CMS Navigation doesn't work ?

Thank you for the quick reply.

I did what you said, but I wanna leave  a couple of tittles too.

How do I distinguish page tittles that I want to show and I dont  want to show on navigation ?

Re: CMS Navigation doesn't work ?

Jay T wrote:

Thank you for the quick reply.

I did what you said, but I wanna leave  a couple of tittles too.

How do I distinguish page tittles that I want to show and I dont  want to show on navigation ?

<?php wp_list_pages('title_li=&exclude=1,2,3'); ?>

due to the codes i list in the first reply
you can modify the
<?php wp_list_pages('title_li='); ?>

to
<?php wp_list_pages('title_li=&exclude=1,2,3'); ?>  change 1,2,3 to the page id you do not want to show.

a reference is http://codex.wordpress.org/Template_Tags/wp_list_pages


Is it what you want?

Note: If you need to send me an email regarding support, please remember to include the URL for the original question.

Re: CMS Navigation doesn't work ?

Yes that's what I want.

Thank you so much!!