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

发布于 2024-11-19 17:37:47 字数 274 浏览 0 评论 0原文

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

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

谢谢你!

I have a site with 3 category pages. Each one of these categories have a few subpages. For each category I want it to show the title and link for each subpage and maybe the featured image if that's possible.

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

Thank you!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

漫雪独思 2024-11-26 17:37:47

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

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

<?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(); ?>

I found the answer. :) In case someone stumbles upon this question here's what I did.

I made a new template called category with the following code:

<?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(); ?>
前事休说 2024-11-26 17:37:47

只是一个快速补充:

您还可以使用:

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

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

希望有帮助!

Vq。

Just a quick addition:

You can also use:

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

to display a list of the current page's children.

Hope that helps!

Vq.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文