Guest User

Untitled

a guest
Jun 14th, 2018
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. <ul>
  2. <li><a href="<?php echo get_option('home'); ?>/"><span>Home</span></a></li>
  3. <?php
  4. $pages = wp_list_pages(’sort_column=menu_order&title_li=&echo=0′);
  5. $pages = preg_replace(’%<a ([^>]+)>%U’,'<a $1><span>’, $pages);
  6. $pages = str_replace(’</a>’,'</span></a>’, $pages);
  7. echo $pages;
  8. ?>
  9. </ul>
Add Comment
Please, Sign In to add comment