75307b4548f1a5c9557f15bd3cb5517e2f3d5c2c.svn-base 318 字节
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
<?php
//解析腾讯视频,只支持一个腾讯视频
function custocm_content_filter($content) {

    $_content=$content;
    if(is_single())
    {
        $vcontent =get_post_qq_video($content);
        if(!empty($vcontent))
        {
            $_content=$vcontent;
        }
    }

    return $_content;

}