Skip to content

Instantly share code, notes, and snippets.

@carlesjove
Last active August 29, 2015 14:03
Show Gist options
  • Save carlesjove/d3813e0c7226ab188fdc to your computer and use it in GitHub Desktop.
Save carlesjove/d3813e0c7226ab188fdc to your computer and use it in GitHub Desktop.
Fetch Img Src
/**
* Fetch Img Src
* Helper function to get an image source from an <img> tag
*/
function tm_fetch_img_src( $img_tag ) {
return preg_match( '@src="([^"]+)"@' , $img_tag , $src );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment