Это мой код:
Код: Выделить всё
function Oembed_vimeo_no_title($html,$url,$args){
// Only run this for vimeo embeds
if ( !strstr($url, 'vimeo.com') )
return $html;
$url_string = parse_url($url, PHP_URL_QUERY);
parse_str($url_string, $id);
if (isset($id['v'])) {
return '
//player.vimeo.com/video/
';
}
return $html;
}
add_filter('oembed_result','Oembed_vimeo_no_title',10,3);
Подробнее здесь: https://stackoverflow.com/questions/243 ... ess-oembed