Emlog非安装插件来实现隐藏内容登录查看 什么是登录查看隐藏内容?必须在本站注册并登录上 前提 你的前台可以注册和登录 才可以登录查看文章隐藏内容 没登录 代表的就是游客 无法查看隐藏内容的
module.php核心文件添加以下代码
//登录查看隐藏内容 function slyc($content){ if(preg_match_all('/<yc\>([\s\S]*?)<\/yc\>/i', $content, $hide_words)){ if(ISLOGIN ){ $content = str_replace($hide_words[0], $hide_words[1], $content); }else{ $hide_notice = '<div style="text-align:center;border:1px dashed #19b5fe;padding:8px;margin:10px auto;color:#2196f3;">您必须先<a href="'.BLOG_URL.'admin">登录</a>才能查看隐藏内容</div>'; $content = str_replace($hide_words[0], $hide_notice, $content); } } return $content; }echo_log.php文件中找到如下代码
<?php echo $log_content; ?>替换为如下
<?php echo slyc($log_content); ?>如何文章登录隐藏内容
编辑文章的时候 切换到HTML模式 在要隐藏的地方放上隐藏代码
<yc> 此处是要隐藏的内容 </yc>