我们目前的网站使用的是自定义帖子和父/子帖子。当查看(父)帖子时,会使用一个插件来提取其子帖子,这些帖子会显示在页面上的一个标签中。
我们正在使用一个新版本的自定义主题在几个网站上,现在不再使用父母/孩子的关系。相反,我们有元框在我们的自定义文章类型和所有额外的信息可以提交的权利。
我想更新这个特定的网站与最新版本的主题,但由于它是使用父/子关系,我想添加几行代码的主题,以实现相同的结果,并保持旧的职位,而不是修改他们的方式。
我想做的是:我想要一个非常简单的方法来显示所有的子职位(按顺序)在一个父职位页。
我在这里和那里找到了一些想法,但到目前为止似乎都没有成功。(这里有一个例子: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)。我不知道这是否与我使用post而不是pages有关。
我不想要一个子帖子的列表,而是直接显示这些帖子的内容。我认为实现这一点的最好方法可能是创建一个函数来检索子帖子,然后在模板中回显结果。这样就不必改变我们的主题,它可以与我们不同的网站一起工作。
编辑:
到目前为止,我在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()
。
2条答案
按热度按时间niknxzdl1#
好的,在循环中的帖子模板中尝试类似的操作。它应该可以帮助你在特定的帖子中输出子帖子。〈?php /Somwhere in the loop/
更新:好的,你可以试着在ID数组中使用post_parent__,这应该也可以。〈?php /Somwhere in the loop/
如果没有,下面是使用get_children函数输出帖子内容的方法。
icnyk63a2#