Link to home
Start Free TrialLog in
Avatar of thtate
thtateFlag for United States of America

asked on

remove href from wp_list_pages

i am trying to remove a hyperlink from wp_list_pages, but only from the first ul in the heirachy. i want the sub pages to be displayed as links and the first level to be text. is it possible to do this with the wp_list_pages function? doesnt matter how this is achieved, it just needs to be dynamic. thanks for your help
<!-- generated list output-->
<ul id="nav2">
<li class="page_item page-item-74"><a href="http://www.ericksonblog.com/ericksonresident/anns-choice/community" title="Community">Community</a><!--make community plain text no link-->
<ul>
	<li class="page_item page-item-87"><a href="http://www.ericksonblog.com/ericksonresident/anns-choice/community/activities" title="Activities">Activities</a></li>
	<li class="page_item page-item-101"><a href="http://www.ericksonblog.com/ericksonresident/anns-choice/community/campus-map" title="Campus Map">Campus Map</a></li>
	<li class="page_item page-item-99"><a href="http://www.ericksonblog.com/ericksonresident/anns-choice/community/dining" title="Dining">Dining</a></li>
	<li class="page_item page-item-79"><a href="http://www.ericksonblog.com/ericksonresident/anns-choice/community/transportation" title="Transportation">Transportation</a></li>
</ul>
</li>
<li class="page_item page-item-108"><a href="http://www.ericksonblog.com/ericksonresident/anns-choice/information" title="Information">Information</a><!--make information plain text no link and so on...-->
<ul>
	<li class="page_item page-item-112"><a href="http://www.ericksonblog.com/ericksonresident/anns-choice/information/newsletters" title="Newsletters">Newsletters</a></li>
	<li class="page_item page-item-110"><a href="http://www.ericksonblog.com/ericksonresident/anns-choice/information/tv-listings" title="T.V. Listings">T.V. Listings</a></li>
</ul>
</li>
<li class="page_item page-item-104"><a href="http://www.ericksonblog.com/ericksonresident/anns-choice/services" title="Services">Services</a>
 
<ul>
      <li class="page_item page-item-106"><a href="http://www.ericksonblog.com/ericksonresident/anns-choice/services/resident-computer-services" title="Resident Computer Services">Resident Computer Services</a></li>
</ul>
</li>
</ul>

Open in new window

ASKER CERTIFIED SOLUTION
Avatar of dosth
dosth
Flag of India image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of thtate

ASKER

Great! Just what i was looking for, thanks!
thanks for the point