frioman
Member
Posted 2 years ago #
When the mouse is placed over the Page titles, no assigned Child pages appear in a drop down? The web address is http://votefernandoherrera.com.
I have other web sites using a different theme and they work fine, but not in the above site/theme? I researched the forums prior to asking for help.
On line 40 of your active theme's header.php file you will find this:
<?php wp_list_pages('title_li=&depth=1' ); ?>
Which says to only show top level (or parent) pages with the parameter 'depth=1', changing it to the following will show child pages but I have not tested how it will affect the theme's presentation.
<?php wp_list_pages('title_li='); ?>
Hope that helps some ...