treehouse : what would you like to learn today?
Web Design Web Development iOS Development

wp_list_pages question

  • Is there a way to just list the pages as a list without not being wrapped in an anchor link? Customer is looking for the parent pages not link to anything but the children in the drop down actually be links.

    Thanks
  • There is no way using wp_list_pages() as this always produces a list of links.

    You could try get_pages() as this allows you to do whatever you like with the list. It does require a little more work however.