Newbie and wp_list_pages
-
I am trying to add the tag strong inside the a href piece, here is my code it works for the first element but not the second any ideas?
I want to make it look like this in the end
<li><a href="./"><strong>About us</strong></a><em> [2]</em></li>
ThanksJohn
<br /> <?php</p> <p> $my_pages = wp_list_pages('echo=0&title_li=&depth=1');</p> <p> $pieces = explode('"', $my_pages);<br /> $i = 6;<br /> $j = 5;<br /> $limit = count($pieces);<br /> for (;$i<$limit;) {<br /> $tmp1 = '><strong>'.$pieces[$j].'</strong>';<br /> $pieces[$i] = $tmp1;<br /> $i = $i+6;<br /> $j = $j+6;<br /> } </p> <p> $tmp2 = implode('"',$pieces);</p> <p> echo $tmp2;<br /> // echo "<!--".$tmp2."-->";</p> <p> ?></p> <p>
Viewing 8 replies - 1 through 8 (of 8 total)
Viewing 8 replies - 1 through 8 (of 8 total)
- The topic ‘Newbie and wp_list_pages’ is closed to new replies.