我创建了一个自定义分类法,该分类法专用于上载图像时的图像附件$post->post_content
返回如下字符串:
\'[caption id="attachment_98" align="alignnone" width="300"]
<a href="http://....jpg">
<img class="size-medium" title="title" src="http://.../wp-content/uploads/2012/10/name.jpg" alt="cardinal2" width="300" height="225" />
</a>
caption[/caption]\'
通过调用
the_content()
这个字符串变成了HTML标记,在codex我找不到一个函数可以让我以动态方式获取图像的来源和标题/描述/标题,有没有一种方法可以不使用
the_content()
作用我应该分割结果吗?