';
$video .= '';
}elseif( wp_oembed_get($url) ) {
$video .= wp_oembed_get($url);
}
$output .= '
';
$output .= $video;
$output .= '
';
return $output;
}
function benjamin_postformat_get_the_image_markup($url = null) {
if(!$url)
return;
$settings = '';
$output = '';
$image = '';
$filetypes = array( '.jpg', '.jpeg', '.png', '.gif', '.ico');
if( in_array( substr( $url, -4 ), $filetypes ) ) {
$image .= '
';
}elseif( wp_oembed_get($url) ) {
$image .= wp_oembed_get($url);
}
$output .= $image;
return $output;
}