function blogizma_youtube($atts) {
extract(shortcode_atts(array(
"izle" => 'http://',
"width" => '610',
"height" => '343',
), $atts));
return '
<object codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0" height="'.$height.'" width="'.$width.'">
<param name="allowFullScreen" value="true">
<param name="allowscriptaccess" value="always">
<param name="src" value="http://www.youtube.com/v/'.$izle.'?version=3&hl=en_US">
<param name="allowfullscreen" value="true">
<embed type="application/x-shockwave-flash" src="http://www.youtube.com/v/'.$izle.'?version=3&hl=en_US" allowfullscreen="true" allowscriptaccess="always" height="'.$height.'" width="'.$width.'">
</object>
';
}
add_shortcode("youtube", "blogizma_youtube");
function blogizma_vimeo($atts) { extract(shortcode_atts(array( "izle" => 'http://', "width" => '610', "height" => '343',), $atts));
return '<iframe src="http://player.vimeo.com/video/'.$izle.'" height="'.$height.'" width="'.$width.'" frameborder="0" webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe>';
} add_shortcode("vimeo", "blogizma_vimeo");fonksiyon dosyanıza ekleyerek shortcode yapısını tekrar çalışır hale getirebilirsiniz.