An easy way to find images used in Wordpress Post?

Is there anything in the Wordpress API that will show me a list of images used in a post? Or do I need to browse the content of the post to find it?

0


a source to share


1 answer


Well, one more time I ask the question before looking carefully for the answer. A quick Google search showed the following piece of code:

$arrImages =& get_children('post_type=attachment&post_mime_type=image&post_parent=' . $iPostID );

      



I found this at http://wphackr.com/ .

+1


a source







All Articles