当有人回复该条留言时,自动在留言内容前面添加@姓名实现方法比较简单,只需要在模板文件comment.php里的评论内容{$comment.Content}的前面加上如下代码即可:{if $comment.ParentID!=0}{php}$newc=$zbp->GetCommentByID($comment->ParentID);$atid=$n...
当有人回复该条留言时,自动在留言内容前面添加@姓名
实现方法比较简单,只需要在模板文件comment.php里的评论内容{$comment.Content}的前面加上如下代码即可:
{if $comment.ParentID!=0}{php}$newc=$zbp->GetCommentByID($comment->ParentID);$atid=$newc->ID;$atname=$newc->Name;{/php}<a class="comment_at" href="#comment-{$atid}">@{$atname}</a>{/if}