客户希望显示在帖子中有多少图像等待读者。我说:放松点。现在我意识到:我撒谎了。
该系统仅使用图库,即使是单个图片。
$images = get_children(array(
"post_parent" => $post->ID, // $post->ID gives the right ID.
"post_status" => "any",
"post_type" => "attachment",
"post_mime_type" => "image"
));
count($images); // only post with id 12 shows correctly 14 entries
在一个帖子中(ID 12,eaaarly测试条目)
$images
填写了正确数量的条目。在我测试过的其他帖子中
$images
错误地为空。
我甚至复制了完全相同的文本(从TinyMCE的“文本”选项卡,而不是“视觉”)到ID为298的帖子。仍为空$images
. 相同的自定义字段。两者都有缩略图(即使我删除了它,也没有更改)-相同的分类设置。。