快马论坛

 找回密码
 立即注册
快捷导航
搜索
本站整合全网优质资源每日更新,注册账号即刻拥有!本站资源涵盖类型有--小程序源码 游戏 主题模板 网站源码 网页特效 代码素材 文库文档 各类教程 软件工具 热播影视 动漫二次元 福利姬 cosplay 网红写真 热点爆料。欢迎大家每天过来鉴赏!本站最新网址:www.395t.com
开启左侧

【zibll】子比小优化-未登录模糊文章图片

[复制链接] [查看是否已收录此帖]
发表于 2024-3-24 07:47:32 | 显示全部楼层 |阅读模式

您需要登录账号才能看到图片及内容下载,马上注册享用更多功能,让你轻松玩转社区。

您需要 登录 才可以下载或查看,没有账号?立即注册

x
效果文章图片
2.png
文章灯箱

                               
登录/注册后可看大图
提醒
其实防不住采集和F12,因为采集不采集CSS,F12会懂一点的也防不住。
代码【子比专属】
其实思路都一样,只需要你自己F12定位自己想要模糊的DIV就是

  1. //未登录文章详情页内图片模糊
  2. function unlogin_css(){
  3.   echo '<style>
  4.   .article-content img {
  5.   -webkit-filter: blur(10px)!important;
  6.     -moz-filter: blur(10px)!important;
  7.     -ms-filter: blur(10px)!important;
  8.     filter: blur(6px)!important;}
  9.   .swiper-close img {
  10.   -webkit-filter: blur(10px)!important;
  11.     -moz-filter: blur(10px)!important;
  12.     -ms-filter: blur(10px)!important;
  13.     filter: blur(6px)!important;}
  14.     </style>';
  15. }
  16. if( !is_user_logged_in()) {add_action( 'wp_head', 'unlogin_css' );};
复制代码
  1. //未登录全站图片模糊
  2. function all_css(){
  3.   echo '<style>
  4.   img {
  5.   -webkit-filter: blur(10px)!important;
  6.     -moz-filter: blur(10px)!important;
  7.     -ms-filter: blur(10px)!important;
  8.     filter: blur(6px)!important;}
  9.     </style>';
  10. }
  11. if( !is_user_logged_in()) {add_action( 'wp_head', 'all_css' );};
复制代码
主题根目录functions.php中
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

快速回复 返回顶部 返回列表