arkadaşın sorununu hallettim, bunu bir wordpress plugin olarak yazıp dagıtmak isterdim fakat zamanım yok şuan onun için nasıl yapabileceğinizi yazayım ihtiyacı olan olabilir. Aşağıdaki işlemleri sırası ile takip edin. Bu işlemleri yapmadan önce tema ve post-template.php yedeğini alın.

wp-includes/post-template.php aç en üste <?php tagından sonra, bir alt satıra ekle;
function the_content_devturkeli($more_link_text = null, $stripteaser = 0, $more_file = '') {
         $content = get_the_content($more_link_text, $stripteaser, $more_file);
         $content = apply_filters('the_content', $content);
         $content = str_replace(']]>', ']]&gt;', $content);
         return $content;
}
wp-content/themes/tema_adın/single.php'de bul ve sil;
<?php the_content('<p class="serif">Yazının tamamını okuyun &raquo;</p>'); ?>
yerine ekle;
<?php 
$id = md5(uniqid(mt_rand(), true));
$yazi = the_content_devturkeli('<p class="serif">Yazının tamamını okuyun &raquo;</p>'); 
echo preg_replace('^<embed(.*?)></embed>^', '<a href="javascript:void(0);" onclick="showBlock(\'' . $id . '\')">Video Göster</a> <div style="display: none;" id="' . $id . '"><embed\\1>\\2</embed><a href="javascript:void(0);" onclick="hideBlock(\'' . $id . '\')"> Gizle</a></div>', $yazi);
unset($id);
?>
wp-content/themes/tema_adın/index.php'de bul ve sil;
 <?php the_content('Yazının tamamını okuyun &raquo;'); ?>
yerine ekle;
<?php 
$id = md5(uniqid(mt_rand(), true));
$yazi = the_content_devturkeli('Yazının tamamını okuyun &raquo;'); 
echo preg_replace('^<embed(.*?)></embed>^', '<a href="javascript:void(0);" onclick="showBlock(\'' . $id . '\')">Video Göster</a> <div style="display: none;" id="' . $id . '"><embed\\1>\\2</embed><a href="javascript:void(0);" onclick="hideBlock(\'' . $id . '\')"> Gizle</a></div>', $yazi);
unset($id);
?>
wp-content/themes/tema_adın/page.php'de bul ve sil;
<?php the_content('<p class="serif">Sayfanın tamamını okuyun &raquo;</p>'); ?>
yerine ekle;
<?php 
$id = md5(uniqid(mt_rand(), true));
$yazi = the_content_devturkeli('<p class="serif">Sayfanın tamamını okuyun &raquo;</p>'); 
echo preg_replace('^<embed(.*?)></embed>^', '<a href="javascript:void(0);" onclick="showBlock(\'' . $id . '\')">Video Göster</a> <div style="display: none;" id="' . $id . '"><embed\\1>\\2</embed><a href="javascript:void(0);" onclick="hideBlock(\'' . $id . '\')"> Gizle</a></div>', $yazi);
unset($id);
?>
wp-content/themes/tema_adın/header.php'de bul
</head>
üstüne ekle;
    <script type="text/javascript"> 
    function showBlock(blockId) { 
        document.getElementById(blockId).style.display = "block"; 
    } 
    function hideBlock(blockId) { 
        document.getElementById(blockId).style.display = "none"; 
    } 
    </script>