获取一系列子帖ID,wordpress 3.0,php
作者:互联网
好的,这是一个…
在自定义模板上,我正在使用此代码来检索&显示子页面/帖子列表
$args = array(
'depth' => 1,
'show_date' => '',
'date_format' => get_option('date_format'),
'child_of' => $post->ID,
'exclude' => '',
'include' => '',
'title_li' => '',
'echo' => 1,
'authors' => '',
'sort_column' => 'menu_order, post_title',
'link_before' => '',
'link_after' => '',
'walker' => '' );
wp_list_pages( $args );
这很好用,我也想知道如何访问/创建子帖ID的数组.我的目标是通过每个子帖子的get_post_meta()函数使用它的ID访问一些自定义字段元数据.
多谢你们.
解决方法:
我想我不太清楚这个,因为这是我第一次没有收到SO的回答.
我设法找到了我需要的信息,并将其放在此处供其他使用相同请求浏览的人.
确定 – 获取所有子ID
$pages = get_pages('child_of=X');
foreach($pages as $child) {
// Now you have an object full of Children ID's that you can use for whatever
// E.G
echo $child->ID . "<br />";
}
标签:php,wordpress-theming 来源: https://codeday.me/bug/20190723/1516864.html