获取子帖子 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 来访问一些自定义字段
元数据。
谢谢你们。
Ok here's one for ya...
On a custom template I'm using this code to retrieve & display a list of child pages/posts
$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 );
This works great, I'm also wondering how I can access/create an array
of child post ID's. My goal is to access some custom fields
meta data through the get_post_meta()
function of each child post using it's ID.
Thanks guys.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
我想我对此不是很清楚,因为这是我第一次从未收到过这样的答复。
我设法找到了我需要的信息,并将其放在这里,供其他有相同请求的人浏览。
好的 - 获取所有孩子的 ID..
I guess I wasn't very clear with this one as it's the first time I've never recieved an answer from SO.
I managed to find the information I needed and will place it here for anyone else browsing with the same request.
ok - To get all child IDs..
如果你想构建一个帖子 id 数组供以后使用,你可以这样做:
并且你有一个干净的页面 id 数组。
If you want to build an array of post ids for later use you can do this:
And you have a clean array of just page ids.
您可以使用其他属性(即
$child->post_content
)...如果您需要定义 post_type,则也添加此参数:
&post_type=POST_TYPE_NAME
you can use other attributes (i.e.
$child->post_content
)...if you need to define post_type, then add this argument too :
&post_type=POST_TYPE_NAME
另一种方法可以做到这一点:
Another way to do this: