Advertisement
Guest User

Untitled

a guest
Jun 17th, 2019
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. <?php
  2. function wicked_footer_pagelinks() {
  3. echo '<ul id="simplepages">';
  4. wp_list_pages('depth=1&sort_column=menu_order&title_li=');
  5. echo '</ul>';
  6. }
  7. ?>
  8.  
  9. <div id="footer">
  10. <?php
  11. wicked_footer_pagelinks();
  12. // action hook creating the footer
  13. thematic_footer();
  14. ?>
  15. </div><!-- #footer -->
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement