【发布时间】:2013-09-21 14:31:43
【问题描述】:
我需要什么:
- 用户通过
WordPress Media Uploader在图库中上传图片并在帖子中发布。假设post_id = 1,帖子是:[gallery ids"1,2,3,...,n"] - 我需要一个函数来获取此库中
post_id = 1的所有图像 ID。 - 图像应该被点赞为“.../post-title/attachment/image-title”
我试过了:
$attachements = query_posts(
array(
'post_type' => 'attachment',
'post_parent' => $post->ID,
'posts_per_page' => -1
)
);
var_dump($attachements);
我的输出是:
array(0) { }
我是不是太傻了?
【问题讨论】:
标签: php wordpress post gallery attachment