Skip to content

Instantly share code, notes, and snippets.

@shrimp2t
Created June 17, 2017 04:25
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 shrimp2t/20e54ac05a8137cadbe4b1ef6ab3e26d to your computer and use it in GitHub Desktop.
Save shrimp2t/20e54ac05a8137cadbe4b1ef6ab3e26d to your computer and use it in GitHub Desktop.
Get all images from content
<?php
function get_link_img_post( $content ){
global $post;
preg_match_all('/src="(.*)"/Us',$content,$matches);
$link_img_post = $matches[1];
return $link_img_post;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment