dedecms栏目内容自动标签的方法
时间:2016-07-09
处理写法如下:
-
{dede:field.content runphp="yes"}
-
$str = preg_replace("/^\s+/", "", html2text(@me));
-
if( !empty($str) ){
-
@me = '<div class="content">'.@me.'</div>';
-
}else{
-
@me = '';
-
}
-
{/dede:field.content}
由于栏目内容默认有标签或者空格吧,所以要先处理。