我们当前的网站使用包含父/子帖子的自定义帖子。 查看(父)帖子时,会使用插件来提取其子帖子,这些帖子会显示在页面上的标签中。
我们现在在几个网站上使用该自定义主题的新版本,不再使用父/子关系。相反,我们在自定义帖子类型中有元框,所有其他信息都可以在那里归档。
我想用最新版本的主题更新这个特定网站,但由于它使用了父/子关系,我想在主题中添加几行代码以获得相同的结果并保留旧帖子它们的方式而不是修改它们。
这就是我想要做的事情:我希望以一种非常简单的方式在父帖子页面上显示所有子帖子(按顺序)。
我在这里和那里找到了一些想法,但到目前为止似乎都没有。 (例如:http://www.wpbeginner.com/wp-tutorials/how-to-display-a-list-of-child-pages-for-a-parent-page-in-wordpress/以及此https://wordpress.stackexchange.com/questions/153042/how-to-display-list-of-child-pages-with-parent-in-wordpress)。我不知道是否与我使用帖子而不是页面这一事实有关。
我不想要儿童帖子的列表,而是直接显示那些内容。认为实现这一目标的最佳方法可能是创建一个函数来检索子帖子,然后在模板中回显结果。这样,无需更改主题,就可以使用我们的不同网站。
编辑:
到目前为止,这是我在single.php中尝试的内容:
$query = new WP_Query( array(
'post_parent' => get_the_ID(),
));
while($query->have_posts()) {
$query->the_post();
the_content(); //Outputs child's content as it is
}
wp_reset_query();`
然后我将代码更改为:
$new_args = array(
'order' => 'ASC',
'post_parent' => get_the_ID()
);
$new_query = new WP_Query( $new_args);
if ($new_query->have_posts() ) {
while($new_query->have_posts() ) {
$new_query->the_post();
the_content();
}
wp_reset_query();
}
然后因为它没有用,我把它改成了:
$children = get_children( array('post_parent' => get_the_ID()) );
foreach ( $children as $children_id => $children ) {
the_title();
the_content();
}
最新似乎能够返回一些结果,它“知道”当前帖子中有孩子,但我正在显示当前帖子的标题和内容。我很确定我不应该在这里使用the_content()
。
答案 0 :(得分:0)
好的,在循环内的帖子模板中尝试这样的东西。它应该可以帮助您在特定帖子中输出子帖子。 Somwhere在循环/
$query = new WP_Query( array(
'post_parent' => get_theID(),
'posts_per_page' => 3, //shows only 3 children. If you want to show all of them, comment this line
));
while($query->have_posts()) {
$query->the_post();
/*Output the child markup here*/
the_content(); //Outputs child's content as it is
}
wp_reset_query();
?>
更新: 好的,你可以尝试使用post_parent__in& ID数组,这也应该工作。 Somwhere在循环/
$query = new WP_Query( array(
'post_parent__in' => array(get_theID()),
'posts_per_page' => 3, //shows only 3 children. If you want to show all of them, comment this line
));
while($query->have_posts()) {
$query->the_post();
/*Output the child markup here*/
}
wp_reset_query();
?>
如果没有,这里是输出你使用get_children函数获得的帖子内容的方法。这应该也可能有用
<?php
$children = get_children( array('post_parent' => get_the_ID()) );
foreach ( $children as $children_id => $child ) {
echo $child->post_title;
echo str_replace( ']]>', ']]>',apply_filters( 'the_content', $child->post_content )); //mimic the_content() filters
//echo $child->post_content; // if you do not need to filter the content;
}
?>