淘先锋技术网

首页 1 2 3 4 5 6 7

zblogphp主题制作中常需要用到调用摘要文字,特别是zblog博客模板,更是需要,而zblogphp程序提供的默认调用代码不能通过模板代码控制字数,所以就只能自己来了。

1、在include.php加入:

function ydnew_zhai($as,$type,$long,$other) {
    global $zbp;
    $str = '';
    if ($type=='0') {
    //$str .= preg_replace('/[\r\n\s]+/', '', trim(SubStrUTF8(TransferHTML($as->Intro,'[nohtml]'),$long)).$other);
 $str .= trim(SubStrUTF8(TransferHTML($as->Intro,'[nohtml]'),$long)).$other;
    } else {
    //$str .= preg_replace('/[\r\n\s]+/', '', trim(SubStrUTF8(TransferHTML($as->Content,'[nohtml]'),$long)).$other);
 $str .= trim(SubStrUTF8(TransferHTML($as->Content,'[nohtml]'),$long)).$other;
    }
    return $str;
}

注:第一行的ydnew是模板应用ID,自己用需要。

调用方式,文章列表中调用方式:

{ydnew_zhai($article,1,80,'...')}

根据调用字数多少,自行修改80这个数字。

演示:

zblogphp调用摘要文字.png