开通会员 尊享会员权益
登录
注册
找回密码
快速登录
QQ登录
微信登录
首页
产品中心
特惠
ZibBox子主题
建站笔记
子比主题
7B2主题
RiTheme
WP插件
绿色软件
实用
图片素材
精美
关于我们
About
用户协议
隐私政策
免责声明
友情链接
登录
注册
首页
产品中心
特惠
ZibBox子主题
建站笔记
子比主题
7B2主题
RiTheme
WP插件
绿色软件
实用
图片素材
精美
关于我们
About
用户协议
隐私政策
免责声明
友情链接
开通会员 尊享会员权益
登录
注册
找回密码
快速登录
QQ登录
微信登录
4.5W+
4281
2
更多资料
搜索内容
汇聚访
UID:1
已加入汇聚访333天
总消费:0
11枚徽章
河南省漯河市
管理员
关注
私信
文章
422
收藏
0
评论
9
粉丝
2
发布
422
排序
最新发布
最近更新
最多查看
最多点赞
最多回复
最多收藏
销售数量
2026-01-11
01-11
实用
子比主题 – 新排名榜页面样式(两款)
这是一款子比主题的新排名榜页面样式,此效果一共有两款,分别为有图以及无图的样式,这个...
1个月前
建站笔记
2025-12-22
12-22
实用
子比主题 – VIP会员权益页面(第二版)
这是给子比主题适配的第二款的Vip会员权益页面,相比第一款这个版本就没有那么长的页面...
3个月前
建站笔记
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)...
3个月前
建站笔记
2026-01-14
01-14
实用
子比主题 – 多功能综合插件
这是一款适用于子比主题的多功能综合插件,此插件包含了一些美化、以及团购、砍价、抽奖等...
1个月前
功能插件
2025-10-13
10-13
实用
Ri主题 – 标签云彩色样式
这是给RiProV5主题增添的一款标签云彩色样式的美化,原本这个标签是灰色的不是特别美观,今天汇聚访就教大家如何让他和别的主题一样变成彩色的,话不多说有喜欢的自行部署吧! 演示效果: 代码部署: [hidecontent type="reply"] 定位:/wp-content/themes/ripro-v5/functions.php在此文件里的最后一行添加以下代码即可: /*汇聚访:www.huijuf.com*/ function colorCloud($text) { $text = preg_replace_callback('|<a (.+?)>|i', 'colorCloudCallback', $text); return $text; } function colorCloudCallback($matches) { $text = $matches[1]; $colors = array('48d1cc','a26ff9','fb7da9','6a6da9','19b5fe','ff5e5c','ffbb50','1ac756','7fb80e','6950a1'); $color = $colors[dechex(rand(0,count($colors)-1))]; $pattern = '/style=("|\')(.*?)\1/i'; $text...
5个月前
建站笔记
2025-08-24
08-24
实用
子比主题 – 会员购买页面添加背景图
大家好,今天汇聚访给大家带来一款子比主题会员购买页面背景图的这么一个样式效果,看上去非常的美观,适合于那些二次元和动漫的站点,话不多说有喜欢的自行部署吧! 演示效果: 代码部署: [hidecontent type="reply"] 直接将代码放到:子比主题–>>自定义CSS样式即可! /*vip背景开始*/ .vip-card{ background: url(https://img.alicdn.com/imgextra/i1/2210123621994/O1CN01t6ynIT1QbIhcVZ38F_!!2210123621994.png); background-size: auto; background-size: 115%; } .sub-vip-card .vip-card{ background-size: 175%; } .payvip-icon{ background: url(https://img.alicdn.com/imgextra/i1/2210123621994/O1CN01t6ynIT1QbIhcVZ38F_!!2210123621994.png); } /*vip背景结束*/ [/hidecontent]
7个月前
建站笔记
2026-01-03
01-03
实用
子比主题 – 马年倒计时小工具
这是一款给子比主题适配的马年倒计时小工具,此代码不单适用于子比主题还适用于别的一些主题等程序,过年的时间你也可自定义修改,代码使用的都是原生代码,重要的地方都有相关注释,有喜欢的朋友自行部署吧! 演示效果: 代码部署: [hidecontent type="reply"] 定位:WP后台 - 外观 - 小工具中找到文章页-侧边栏添加自定义HTML代码即可: /*汇聚访www.huijuf.com*/ <div style="background: linear-gradient(135deg, #f0f8fb 0%, #e8f4f8 100%); border-radius: 8px; padding: 20px; margin-bottom: 20px; border: 1px solid #d1e7f0;"> <h3 style="color: #165dff; font-size: 18px; margin: 0...
1个月前
建站笔记
2026-01-19
01-19
实用
子比主题 -文章页动漫提示引导小人
这是汇聚访为子比主题适配的哔哩哔哩样式的提示引导小人,此代码适用于所有主题,这里仅以子比主题作为演示,该教程部署位置为文章页,你可以放在你网站的任何地方,话不多说有需要的自行部署吧! 演示效果: 代码部署: [hidecontent type="payshow"] 文章插入内容CSS代码 定位:子比后台设置 - 文章&列表 - 文章页面 - 文章插入内容 - 在文章内容后-插入内容中添加以下代码即可: <div class="huijuf-service-bg"><div class="huijuf-service-word"><p>还没有解决问题咩?</p><a style="cursor:pointer;" data-remote="/wp-admin/admin-ajax.php?action=private_window_modal&receive_user=1" data-toggle="RefreshModal">主站相关客服</a></div></div> 定位:子比主题设置–>>自定义代码–>>自定义 CSS 样式添加以下代码即可: .huijuf-service-bg { position: huijuf; display: block; width: 270px; height: 220px; background:...
1个月前
建站笔记
2025-10-11
10-11
实用
Ri主题 – 顶部导航栏添加成为VIP按钮
这是RiPro-V5主题的一款顶部导航样式美化,主要是给导航栏添加一个会员购买按钮,方便引导用户开通会员及介绍权益,总体来说还是很不错的,有需要的自行部署吧! 演示效果: 代码部署: [hidecontent type="payshow"] 定位:/wp-content/themes/ripro-v5/template-parts/header/action-hover.php然后搜索以下代码: <span class="action-btn toggle-color" rel="nofollow noopener noreferrer"> 随后在这段代码的上方添加以下代码(图片我放在图床了,建议自行下载放本地): <span class="fuid-vip-link"><a href="/user/vip"><img src="https://pic1.imgdb.cn/item/68ea3147c5157e1a88657ec0 .svg"> 成为VIP</a></span> 接下来在RiPro-V5后台 - 基本设置 - 自定义CSS样式代码中添加以下代码即可: /*汇聚访:www.huijuf.com*/ .fuid-vip-link { text-align: center; } .fuid-vip-link img { width: 24px; display:...
5个月前
建站笔记
2026-01-04
01-04
实用
子比主题 – 用户拼团功能插件
这是子比主题的一款用户拼团插件,这款插件是由西洋国王分享的,汇聚访并没有做太多测试,...
1个月前
功能插件
上一页
1
…
17
18
19
20
21
…
43
下一页
跳转
欢迎光临~
随便逛逛
博客标签
新窗口打开
复制链接地址
复制选中文本
粘贴文本
站内搜索
百度搜索
复制此图片
下载此图片
用户协议
免责声明
复制地址
关闭热评
轉為繁體
切换模式
热评
登录
没有账号?立即注册
邮箱
验证码
发送验证码
记住登录
账号密码登录
登录
用户名或邮箱
登录密码
记住登录
找回密码
|
免密登录
登录
社交账号登录
QQ登录
微信登录
使用社交账号登录即表示同意
用户协议
、
隐私声明
注册
已有账号,立即登录
设置用户名
邮箱
验证码
发送验证码
设置密码
注册
已阅读并同意
用户协议
、
隐私声明
扫码登录
使用
其它方式登录
或
注册
扫码登录
扫码登录即表示同意
用户协议
、
隐私声明
最近因事业繁忙,随缘更新
如有不便,敬请谅解!
开通会员享特权
专属内容无限访问
下载权限提升至最高级
专属子比付费美化优惠
免费下载更多精品资源
¥29.9
¥39.9
Vip会员 · 立省30元
立即开通
每日签到
在线
扫码关注公众号
获取更多专属内容和最新资讯
展开全屏
返回顶部