Emlog文章隐藏内容登陆后可见

2023-05-10 20:02:40 浏览数 (1)

首先在模板module.php中增加已下代码:

代码语言:javascript复制
function login_to_view($content){
        if (preg_match_all('/<!--loginview start-->([sS]*?)<!--loginview end-->/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 #FF9A9A;padding:8px;margin:10px auto;color:#FF6666;">您必须先<a href="'.BLOG_URL.'admin">登录</a>才能查看隐藏内容</div>';
                        $content = str_replace($hide_words[0], $hide_notice, $content);
                }
        }
        return $content;
}

其次将模板echo_log.php中log_content修改成login_to_view(log_content);即可,最后就是后台了。

使用方式:

在后台编辑文章的时候,切换到HTML模式添加:<!--loginview start-->要隐藏的内容<!--loginview end-->

0 人点赞