首页
产品中心
折扣
ZibBox主题
建站笔记
子比主题
7B2主题
RiTheme
WP插件
绿色软件
实用
图片素材
精美
关于我们
About
用户协议
隐私政策
免责声明
友情链接
登录
注册
首页
产品中心
折扣
ZibBox主题
建站笔记
子比主题
7B2主题
RiTheme
WP插件
绿色软件
实用
图片素材
精美
关于我们
About
用户协议
隐私政策
免责声明
友情链接
开通会员 尊享会员权益
登录
注册
找回密码
快速登录
QQ登录
微信登录
3.9W+
4082
2
更多资料
搜索内容
汇聚访
UID:1
已加入汇聚访287天
总消费:0
11枚徽章
河南省驻马店市
管理员
关注
私信
文章
401
收藏
0
评论
8
粉丝
2
发布
401
排序
最新发布
最近更新
最多查看
最多点赞
最多回复
最多收藏
销售数量
2025-08-23
08-23
实用
子比主题 – 未登录时图片高斯模糊显示
大家好,今天汇聚访给大家带来子比主题未登录时图片高斯模糊显示的这么一个功能,关于未登录的功能,本站已经写了三个教程了,本次这个功能呢是用户没有登录的时候图片显示模糊的,登入之后就可以看到全部图片了,有喜欢的自行部署吧! 演示效果: 代码部署: [hidecontent type="reply"] 找到文件:/wp-content/themes/zibll/func.php文件里面,没有这个文件自己创一个,创建之后别忘了加php头,要不然会报错。将下面的代码放到这个文件里面即可!当然你也可以直接放在functions.php,但是这样主题更新,效果会丢失,所以建议放在func.php文件里! //未登录时全站图片模糊 function n_yingcang_css(){ echo '<style> img { -webkit-filter: blur(10px)!important; -moz-filter: blur(10px)!important; -ms-filter: blur(10px)!important; filter: blur(6px)!important;} </style>'; } if( !is_user_logged_in()) {add_action( 'wp_head', 'n_yingcang_css' );}; //未登录时全站图片模糊 [/hidecontent]
5个月前
建站笔记
2025-08-20
08-20
精美
图片素材 – 王者荣耀皮肤类型图标
大家好,今天汇聚访给大家分享一下王者荣耀的皮肤类型素材图标,但是不是那么全,大家将就...
5个月前
图文素材
2025-11-14
11-14
实用
Ri主题 – 顶部导航栏开通会员图标
这是一款RiProV5主题的顶部导航栏开通会员图标,之前我也发过几种导航栏的开通会员图标,但是那几个几乎都差不多,今天汇聚访给大家带来一款全新的,夜间模式我没有适配,需要的自行适配一下吧,话不多说喜欢的自行部署吧! 演示效果: 代码部署: [hidecontent type="payshow"] CSSmenu.php 定位:后台主题设置 - 基本设置 - 自定义CSS样式代码中添加以下代码: /*汇聚访:www.huijuf.com*/ .btn-floating.btn-sm, .btn-group-sm>.btn-floating.btn { width: 1.8125rem; height: 1.8125rem; transition: all 0.3s ease; } .btn-floating.btn-sm:hover { transform: scale(1.1); box-shadow: 0 4px 12px rgba(103, 58, 183,...
2个月前
建站笔记
2025-11-15
11-15
实用
子比主题 – 论坛最近活跃排序功能
这是子比主题的论坛最近活跃排序功能,部署后主要是给论坛添加了一个最近活跃的选项,原作者是小极,主要功能就是当本贴子被评论或者作者进行更新,贴子会重新排序到首位,话不多说喜欢的自行部署吧! 演示效果: 代码部署: [hidecontent type="reply"] 教程比较麻烦,跟着我的步骤走就不会出问题,一共好几步。 定位:/wp-content/themes/zibll/inc/functions/bbs/inc/posts.php,找到zib_bbs_get_posts_order_options函数,我们在里面添加: 'last_active' => '最近活跃', 添加完第一步之后定位:/wp-content/themes/zibll/inc/functions/bbs/inc/functions.php,找到zib_bbs_query_orderby_filter这个函数,代码如下所示: function zib_bbs_query_orderby_filter($orderby = 'date', $args = array()) { return zib_query_orderby_filter($orderby, $args); } 随后替换为我下放给的整个函数代码即可: function zib_bbs_query_orderby_filter($orderby = 'date', $args = array()) { if ('last_active' ===...
2个月前
建站笔记
2025-09-04
09-04
实用
子比主题 – 购买文章自动认证教程
该教程是给子比主题购买的文章加上一个文章自动认证教程,这个功能还是比较实用的,当用户买了本篇文章之后那么将会自动认证,有需要的自行部署即可! 演示效果: 代码部署: [hidecontent type="reply"] 将下面的代码放到:/wp-content/themes/zibll/func.php文件,没有这个文件自己创建一个,记得加上php头,要不然报错,将下面的代码放到里面 // 购买文章自动认证 function zibll_add_meta_box() { add_meta_box( 'zibll_auth_meta_box', '认证用户设置', 'zibll_auth_meta_box_callback', 'post', 'side' ); } add_action('add_meta_boxes', 'zibll_add_meta_box'); function zibll_auth_meta_box_callback($post) { // 获取元数据 $is_enabled = get_post_meta($post->ID, '_zibll_auth_enabled', true); $name = get_post_meta($post->ID, '_zibll_auth_name',...
4个月前
建站笔记
2025-12-14
12-14
实用
子比主题 – 新文章轮播小工具
这是一款适配于子比主题的新文章轮播小工具,此小工具是左一右二排列的,同时此小工具还可以自定义轮播的文章ID以及是否显示作者、日期等相关信息,同时还可以单独设置每个轮播组件的切换效果,有需要的朋友自行部署吧! 演示效果: 代码部署: [hidecontent type="reply"] 定位:/wp-content/themes/zibll/func.php添加以下代码即可: Zib_CFSwidget::create('zib_widget_new_carousel',array('title'=>'New轮播图','zib_title'=>true,'zib_affix'=>true,'zib_show'=>true,'description'=>'左侧轮播+右侧双栏,支持5种切换效果','fields'=>array(array('id'=>'height','type'=>'number','title'=>'模块高度','default'=>400,'unit'=>'px'),array('id'=>'right_width','type'=>'number','title'=>'右侧宽度','default'=>300,'unit'=>'px'),array('id'=>'left_posts','type'=>'text','title'=>'左侧文章ID','desc'=>'多个用逗号分隔,留空自动获取'),array('id'=>'right_top_posts','type'=>'text','title'=>'右上文章ID','desc'=>'多个用逗号分隔,留空自动获取'),array('id'=>'right_bottom_posts','type'=>'text','title'=>'右下文章ID','desc'=>'多个用逗号分隔,留空自动获取'),array('id'=>'left_effect','type'=>'select','title'=>'左侧切换效果','options'=>array('slide'=>'滑动','fade'=>'淡出淡入','cube'=>'3D方块','coverflow'=>'3D滑入','flip'=>'3D翻转'),'default'=>'slide'),array('id'=>'right_top_effect','type'=>'select','title'=>'右上切换效果','options'=>array('slide'=>'滑动','fade'=>'淡出淡入','cube'=>'3D方块','coverflow'=>'3D滑入','flip'=>'3D翻转'),'default'=>'fade'),array('id'=>'right_bottom_effect','type'=>'select','title'=>'右下切换效果','options'=>array('slide'=>'滑动','fade'=>'淡出淡入','cube'=>'3D方块','coverflow'=>'3D滑入','flip'=>'3D翻转'),'default'=>'fade'),array('id'=>'autoplay','type'=>'switcher','title'=>'自动播放','default'=>true),array('id'=>'interval','type'=>'number','title'=>'播放间隔(秒)','default'=>4,'dependency'=>array('autoplay','==',true)),array('id'=>'show_info','type'=>'checkbox','title'=>'显示信息','inline'=>true,'options'=>array('show_author'=>'作者','show_date'=>'日期','show_category'=>'分类','show_tags'=>'标签'),'default'=>array('show_author','show_date','show_category')),array('id'=>'text_style','type'=>'fieldset','title'=>'文字样式','inline'=>true,'fields'=>array(array('id'=>'title_length','type'=>'number','title'=>'标题字数','default'=>30),array('id'=>'excerpt_length','type'=>'number','title'=>'摘要字数','default'=>50),array('id'=>'text_shadow','type'=>'switcher','title'=>'文字阴影','default'=>true)))))); function zib_widget_new_carousel($args,$instance){if(!Zib_CFSwidget::show_class($instance))return;$cfg=array_merge(array('height'=>400,'right_width'=>300,'left_effect'=>'slide','right_top_effect'=>'fade','right_bottom_effect'=>'fade','autoplay'=>true,'interval'=>4,'show_info'=>array(),'text_style'=>array()),$instance);$show_cfg=array_flip($cfg['show_info']);$posts=array('left'=>nc_get_posts($cfg['left_posts']??'',5),'top'=>nc_get_posts($cfg['right_top_posts']??'',3),'bottom'=>nc_get_posts($cfg['right_bottom_posts']??'',3));if(!array_filter($posts))return;$id='nc-'.uniqid();$shadow=($cfg['text_style']['text_shadow']??true)?'text-shadow:1px 1px 2px rgba(0,0,0,0.8);':'';Zib_CFSwidget::echo_before($instance);echo'<div class="new-carousel-wrap" id="'.$id.'">';$areas=array('left'=>array('height'=>$cfg['height'],'class'=>'nc-left-wrap','pagination'=>true,'button'=>true,'effect'=>$cfg['left_effect'],'interval'=>$cfg['interval']*1000),'top'=>array('height'=>($cfg['height']-10)/2,'class'=>'nc-right-top-wrap','pagination'=>true,'button'=>false,'effect'=>$cfg['right_top_effect'],'interval'=>$cfg['interval']*1000+1000),'bottom'=>array('height'=>($cfg['height']-10)/2,'class'=>'nc-right-bottom-wrap','pagination'=>true,'button'=>false,'effect'=>$cfg['right_bottom_effect'],'interval'=>$cfg['interval']*1000+2000));if($posts['left']){echo'<div class="nc-left-wrap">';nc_render_slider($posts['left'],$areas['left'],$show_cfg,$cfg['text_style'],true);echo'</div>';}if($posts['top']||$posts['bottom']){echo'<div class="nc-right-wrap">';if($posts['top']){echo'<div class="nc-right-top-wrap">';nc_render_slider($posts['top'],$areas['top'],$show_cfg,$cfg['text_style'],false);echo'</div>';}if($posts['bottom']){echo'<div class="nc-right-bottom-wrap">';nc_render_slider($posts['bottom'],$areas['bottom'],$show_cfg,$cfg['text_style'],false);echo'</div>';}echo'</div>';}echo'</div><style>#'.$id.'{display:flex;gap:10px;height:'.$cfg['height'].'px;border-radius:8px;overflow:hidden}#'.$id.' .nc-left-wrap{flex:1;position:relative;border-radius:8px;overflow:hidden}#'.$id.' .nc-right-wrap{width:'.$cfg['right_width'].'px;display:flex;flex-direction:column;gap:10px}#'.$id.' .nc-right-top-wrap,#'.$id.' .nc-right-bottom-wrap{flex:1;position:relative;border-radius:8px;overflow:hidden}#'.$id.' .zib-slider{height:100%}#'.$id.' .new-swiper{height:100%;border-radius:8px;overflow:hidden}#'.$id.' .nc-right-top-wrap .swiper-pagination,#'.$id.' .nc-right-bottom-wrap .swiper-pagination{bottom:8px}#'.$id.' .nc-right-top-wrap .swiper-pagination-bullet,#'.$id.' .nc-right-bottom-wrap .swiper-pagination-bullet{width:6px;height:6px;margin:0 3px}#'.$id.' .swiper-slide::before{content:"";position:absolute;bottom:0;left:0;right:0;height:30%;background:linear-gradient(to top,rgba(0,0,0,0.5)...
1个月前
建站笔记
2025-07-13
07-13
实用
子比主题 – 自定义博主标识
今天汇聚访给大家分享一个评论区自定义博主标识的修改教程,这个原来的标识显示的是楼主,有的人觉得不好看,今天给大家分享这个地方的修改方案,这里的边距可以用代码调整,我比较懒,如果需要你可以自己研究一下,该教程为修改主题源代码,请先备份文件再修改,以防文件丢失或出错! 演示效果: 代码部署: [hidecontent type="reply"] 找到wp-content/themes/zibll/inc/functions/zib-comments-list.php 替换成下面这个: <svg t="1653902014495" class="icon" viewBox="0 0 1194 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="736" width="200" height="200"><path d="M980.282449 0q91.926387 2.656832 151.173741 61.992747t61.992747 151.173741v596.635908q-2.656832 91.926387-61.992747 151.173741t-151.173741 61.992746H213.077927q-91.926387-2.656832-151.173741-61.992746T0 809.802396V213.077927Q2.656832 121.151539 61.992747 61.992747t151.08518-61.992747z m-507.454913 554.038034a229.284602 229.284602...
6个月前
建站笔记
2025-04-28
04-28
实用
子比主题 – 仿致美化顶部样式代码
这是一款子比主题模仿致美化顶部样式代码样式,这款样式能够更好的去让用户加入自己的群聊,还是不错的一款顶部样式美化,喜欢的自行部署吧! 演示效果: 代码部署: [hidecontent type="payshow"] 定位:WP后台–>>外观–>>小工具–>>自定义HTML,建议放到:首页-顶部全宽度,自己改一下跳转链接! <style type='text/css'> a,abbr,acronym,address,applet,big,blockquote,body,caption,cite,code,dd,del,dfn,div,dl,dt,em,fieldset,figure,font,form,h1,h2,h3,h4,h5,h6,html,iframe,ins,kbd,label,legend,li,object,ol,p,pre,q,s,samp,small,span,strike,strong,sub,sup,table,tbody,td,tfoot,th,thead,tr,tt,ul,var { border: 0; font-size: 100%; font-style: inherit; font-weight: inherit; margin: 0; outline: 0; padding: 0; vertical-align: baseline; box-sizing: border-box; } .index-header { width: 100%; height: 624px;...
9个月前
建站笔记
2025-05-13
05-13
实用
子比主题 – 经典三栏插件增加左侧边栏
经典三栏插件是为子比主题专门设计的一个插件,用于为子比主题增加一个左侧边栏。该插件支...
8个月前
功能插件
2025-11-08
11-08
实用
Ri主题 – 作者头像指针旋转动画
这是给RiProV5添加的一款作者头像指针旋转动画的样式效果,之前我在子比主题上适配过,今天适配了最新的日主题版本,没啥可说的喜欢的自行部署吧! 演示效果: 代码部署: [hidecontent type="reply"] 定位:主题后台设置 - 基本设置 - 自定义CSS代码样式中添加以下代码: /*汇聚访:www.huijuf.com*/ .avatar{ -webkit-transition:0.4s; -webkit-transition:-webkit-transform 0.4s ease-out; transition:transform 0.4s ease-out; -moz-transition:-moz-transform 0.4s ease-out; } .avatar:hover{ transform:rotateZ(360deg); -webkit-transform:rotateZ(360deg); -moz-transform:rotateZ(360deg); } /*汇聚访:www.huijuf.com*/ [/hidecontent]
2个月前
建站笔记
上一页
1
…
25
26
27
28
29
…
41
下一页
跳转
随便逛逛
博客标签
新窗口打开
复制链接地址
复制选中文本
粘贴文本
站内搜索
百度搜索
复制此图片
下载此图片
用户协议
免责声明
复制地址
关闭热评
轉為繁體
切换模式
热评
登录
没有账号?立即注册
邮箱
验证码
发送验证码
记住登录
账号密码登录
登录
用户名或邮箱
登录密码
记住登录
找回密码
|
免密登录
登录
社交账号登录
QQ登录
微信登录
使用社交账号登录即表示同意
用户协议
、
隐私声明
注册
已有账号,立即登录
设置用户名
邮箱
验证码
发送验证码
设置密码
注册
已阅读并同意
用户协议
、
隐私声明
扫码登录
使用
其它方式登录
或
注册
扫码登录
扫码登录即表示同意
用户协议
、
隐私声明
开通会员享特权
专属内容无限访问
下载权限提升至最高级
专属子比付费美化优惠
免费下载更多精品资源
¥29.9
¥39.9
Vip会员 · 立省30元
立即开通
每日签到
在线
扫码关注公众号
获取更多专属内容和最新资讯
展开全屏
返回顶部