Code
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<ul> | |
<?php echo preg_replace('@\<li([^>]*)>\<a([^>]*)>(.*?)\<\/a>@i', '<li$1><span class="navl"></span><a$2>$3</a><span class="navr"></span>',wp_list_pages('echo=0&title_li=&depth=1&sort_column=post_date')); ?> | |
</ul> | |
/*上記コードの場合、以下のようになる*/ | |
<ul> | |
<li class="page_item page-item-2"><span class="navl"></span><a href="http://example/foo">foo</a><span class="navr"></span></li> | |
<li class="page_item page-item-69"><span class="navl"></span><a href="http://example/bar">bar</a><span class="navr"></span></li> | |
<li class="page_item page-item-90"><span class="navl"></span><a href="http://example/hoge">hoge</a><span class="navr"></span></li> | |
</ul> |
Note
Description | wp_list_pagesで羅列される固定ページのリスト内に任意の要素を含める。 |
---|---|
WordPress Ver. | 3.3.1 |
Via | WordPress Custom wp_list_pages output |