';
} else { // did not find any images from the content.
// using get_children failed to find any gallery image, so let's do it ourselves.
$content = do_shortcode(apply_filters( 'the_content', get_the_content(''))); // pick up wp 3.6 post format
if (preg_match('/]+>/i',$content, $images)) { // grab s
$src = '';
if (preg_match('/src="([^"]*)"/', $images[0], $srcs)) {
$src = $srcs[0];
} else if (preg_match("/src='([^']*)'/", $images[0], $srcs)) {
$src = $srcs[0];
}
$the_image = '';
$linked = true;
?>