自定义wp_list_ages()函数

时间:2013-04-18 作者:Tom11

我的.php 文件:

$my_pages = wp_list_pages("title_li=&child_of=".$my_id."&echo=0");
然后我创建一个<ul>

<ul>
  <?php echo $my_pages; ?>
</ul>
问题是,我想列出title 在里面<h2> 标记,以及excerpt 在下面的文本页。可以使用wp_list_pages?

1 个回复
最合适的回答,由SO网友:Nathan Powell 整理而成

不,这是不可能的。您将要使用WP_Query()

这是Codex Article 在那上面。

示例:

<?php

// Query All Pages
$my_query = new WP_Query( \'post_type=page\' );

// The Loop
while ( $my_query->have_posts() ) :
    $my_query->the_post();
    echo \'<h2>\' . get_the_title() . \'</h2><p>\' . get_the_excerpt() . \'</p>\';    
endwhile;

?>

结束