type没有关于回复可见的插件,因为毕竟是博客不是论坛
但是我们想要回复可见的效果怎么办
我们需要手动修改post主题模板文件
这是要替换的代码
<?php
$db = Typecho_Db::get();
$sql = $db->select()->from('table.comments')
->where('cid = ?',$this->cid)
->where('mail = ?', $this->remember('mail',true))
->limit(1);
$result = $db->fetchAll($sql);
if($this->user->hasLogin() || $result) {
$content = preg_replace("/\[hide\](.*?)\[\/hide\]/sm",'<div class="reply2view">$1</div>',$this->content);
}
else{
$content = preg_replace("/\[hide\](.*?)\[\/hide\]/sm",'<div class="reply2view">此处内容需要评论回复后方可阅读。</div>',$this->content);
}
echo $content;
?>
替换模板 post.php 中的
使用方法, 在写文章需要隐藏部分内容时用以下写法
为了让隐藏内容更加美观,我们需要对其设置css样式,放在主题文件夹中的css文件中
.reply2view {
background:#f8f8f8;
padding:10px 10px 10px 40px;
position:relative
}
还不快抢沙发