I am using zend navigation in my site and I have the following navigation.xml
<?xml version="1.0" encoding="UTF-8"?>
<config>
<nav>
<page1>
<label>Site</label>
<uri>/</uri>
<pages>
<page1_1>
<label>Home</label>
<uri>/</uri>
</page1_1>
<page1_2>
<label>News</label>
<uri>/news</uri>
</page1_2>
<page1_3>
<label>Contact</label>
<uri>/contact</uri>
</page1_3>
</pages>
</page1>
</nav>
</config>
Then I render the menu like below
<?=$this->navigation()->menu();?>
Output
- Site
- Home
- News
- Contact
Wanted Output
- Site
- Home
- Contact
How can I remove News item from the menu without affect other menu rendering?