帝国cms简介列表页和内容页模板smalltext过滤空格 - Lin Huiming (Aaron) - 林茄子
lin huiming
因上努力,果上随缘

帝国cms简介列表页和内容页模板smalltext过滤空格

  • Lin Huiming
  • 5分钟阅读 5min read

在需要显示简介的地方加上以下代码即可,简单了事,不用修改任何文件

内容模板

<?
$oldchar=array(" "," ","\t","\n","\r");
$newchar=array("","","","","");
$smalltext=str_replace($oldchar,$newchar,"$navinfor[smalltext]");
echo $smalltext;
?>

列表模板,打开列表模板,首先勾选使用程序代码

$r[smalltext]=str_replace(array("\r\n", "\r", "\n", "<br />", "</p>"),"",str_replace("<p>","",$r[smalltext]));
$listtemp='<li><p><a href="[!--titleurl--]" target="_blank">[!--title--]</a></p><p>[!--smalltext--]</p><div class="listinfo"><span>时间:[!--newstime--]</span><span>阅读:[!--onclick--]</span><span>[!--diggtop--]人觉得有用</span></div></li>';

smalltext显示字数的方法

<?=esub($navinfor[smalltext],字数)?>

该内容有帮助吗?Was this helpful?

评论 Comment

已有0人参与,点击查看更多评论