Wordpress - 如何显示当前页面的列表(标题,内容)?

时间:2011-07-13 12:58:39

标签: wordpress-theming wordpress

我有一个包含3个类别页面的网站。这些类别中的每一个都有一些子页面。对于每个类别,我希望它显示每个子页面的标题和链接,如果可能的话,可能是特色图片。

CategoryA Page Example:
  Product1 (from CategoryA) Title
  Product2 (from CategoryA) Title
  Product3 (from CategoryA) Title

谢谢!

2 个答案:

答案 0 :(得分:4)

我找到了答案。 :)如果有人偶然发现这个问题,我就是这么做的。

我使用以下代码创建了一个名为category的新模板:

<?php get_header(); ?>
<?php
    query_posts('post_type=page&post_parent='.$post->ID );
    if ( have_posts() ) while ( have_posts() ) : the_post();
?>

<h3><a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>"><?php the_title(); ?></a></h3>

<pre><?php echo the_content(); ?></pre>

<?php
    endwhile; // end of the loop.
?>
    <?php get_footer(); ?>

答案 1 :(得分:0)

快速添加:

您也可以使用:

<?php wp_list_pages('child_of='.$post->ID); ?> 

显示当前页面的子项列表。

希望有所帮助!

VQ。