Skip to content

Instantly share code, notes, and snippets.

@m-pokrovskii
Created June 7, 2015 08:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save m-pokrovskii/d818177b815017ca9d8b to your computer and use it in GitHub Desktop.
Save m-pokrovskii/d818177b815017ca9d8b to your computer and use it in GitHub Desktop.
Get all images from post
<ul>
<?php
$doc = new DOMDocument();
@$doc->loadHTML($post->post_content);
$tags = $doc->getElementsByTagName('img');
foreach ($tags as $tag) {
echo '<li>'.$tag->getAttribute('src').'</li>';
}
?>
</ul>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment