arkadaşlar dailymotion'u becerdim sanırsam
eğer mp3 değişkeni eklemezseniz "dailymotion" adında özel alan girin oraya dailymotion daki videonun ilk girişindeki id yi yazın (player dailymotion'un action script bilmediğimden videoyu css le playerı kapattım )

http://anarsiktube.com/rafet-el-roman-seni-seviyorum-dm

örnek

single.php böyle olacak.
<?php get_header(); ?>

<div class="siralasekerim">
            <?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<div class="icineal">
<div class="mp3can">
<h2><?php the_title(); ?></h2>
</div>
<div class="playercan">
<?php
$mp3 = get_post_meta($post->ID,'mp3', true);
$dailymotion =  get_post_meta($post->ID,'dailymotion', true);
if($mp3 != "") {  ?>

    <object type="application/x-shockwave-flash" data="<?php bloginfo('template_url'); ?>/player/player.swf?mp3=<? echo strtolower($mp3); ?>" width="200" height="20" id="dewplayer"><param name="wmode" value="transparent" /><param name="movie" value="<?php bloginfo('template_url'); ?>/player/player.swf?mp3=<? echo strtolower($mp3); ?>" /></object>
<?php } elseif($mp3 == "" && $dailymotion != "") { ?>
<object width="480" height="25">
<embed src="http://www.dailymotion.com/swf/<?php echo $dailymotion; ?>&related=0" type="application/x-shockwave-flash" width="480" height="25">
</embed></object>
<?php }else{ ?>
Henüz Bir Şarkı Yüklenmemiş
<?php } ?>
</div>
<div class="etican">
Etiketler: <?php the_tags('') ?>
</div>
<div class="temizle"></div>
</div><div class="icineal"><div class="paylas">Bu şarkı <?php the_category(',') ?> adlı şarkıcıya ait olup <?php if(function_exists('the_views')) { the_views(); } ?> kez dinlenmiştir.</div><div class="temizle"></div></div>
<div class="yorum">                    <?php comments_template(); ?>
</div>

    <?php endwhile; else: ?>

            <?php endif; ?>

</div>
<?php get_footer(); ?>