• Hello! I searching for a solution to place links before the list items with wp_list_pages.

    Current state:

    <div class="menu">
    <div class="menuborder">
    <ul class="menubar">
    <li class="page_item page-item-9 current_page_item"><a href="http://localhost:8080/izzywp/test2/">HOME</a></li>
    </ul>
    </div>
    </div>

    What i want to make :

    <div class="menu">
    <div class="menuborder">
    <ul class="menubar">
    
    <a href="http://localhost:8080/izzywp/test2/"><li class="page_item page-item-9 current_page_item">HOME</li></a>
    
    </ul>
    </div>
    </div>

    I list the items with this code :

    <?php wp_list_pages( array( ‘title_li’ => ” ) ); ?>

Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
  • The topic ‘wp list pages links before list items’ is closed to new replies.