首页
微语
统计
友链
留言
memos
圈子
图床
推荐
相册
网站监控
VPS监控
Search
1
实现typecho微信时光机功能的图文教程
45,105 阅读
2
为Typecho添加webp解析
43,168 阅读
3
emlog数据成功迁移到typecho
26,686 阅读
4
Memos备忘录,记录瞬间想法
25,606 阅读
5
Jasmine - 简约、美观的博客主题
24,296 阅读
手机达人
免费资源
电脑网络
娱乐休闲
网站建设
威言威语
Typecho
Emlog
WordPress
服务器
主题
插件
排行榜    
登录
/
注册
Search
标签搜索
wordpress
发布
插件
免费
教程
typecho
EMlog
PHP
代码
CSS
华为
图片
代码修改
安装
评论
手机
诺基亚
微信
文章
智能
Chen'mo
累计撰写
1,266
篇文章
累计收到
374
条评论
首页
栏目
手机达人
免费资源
电脑网络
娱乐休闲
网站建设
威言威语
Typecho
Emlog
WordPress
服务器
主题
插件
页面
微语
统计
友链
留言
memos
推荐
相册
网站监控
VPS监控
搜索到
2
篇与
的结果
2021-03-01
给typecho添加个打赏功能
虽然没有人给我打赏,但这功能必须要有!功能虽然没用,但看着比较爽!参考两篇文章:https://www.ijkxs.com/archives/15.htmlhttps://xiamp.net/archives/new-topic-reward-button.html一、如果你没有买插件,那以下内容基本没用。我拿过来是学习它的方法。添加打赏按扭。<?php if (isPluginEnabled('TePass')) : ?> <a class="btn btn-warning" onclick="show_reward()" href="javascript:void(0);"><?php _e("打赏"); ?></a> <?php endif; ?>isPluginEnabled是检测插件是否激活的方法,具体如下function isPluginEnabled($pluginName) { return array_key_exists($pluginName, Typecho_Plugin::export()['activated']); } 然后把调用打赏区域的代码包裹起来(主要是为了限定css生效范围)<?php if (isPluginEnabled('TePass')) : ?> <div class="entry-support"> <?php echo TePass_Plugin::getReward(); ?> </div> <?php endif; ?> 接着增加CSS样式.btn_reward { /*隐藏TePass输出的按钮*/ display: none; } .entry-support .p-list { padding: 10px 0; margin: 0 -5px; /* display: none 这是捐赠用户列表,无需要就隐藏 */ } .entry-support .p-list .clusr { /* 限制头像大小 */ width: 45px; height: 45px; margin: 5px; } 然后你就可以点击打赏按钮显示打赏区域了。二、结合自己买的TePass插件,和JOE主题,折腾一上午,也基本上弄好了。我发现原理是在点击按扭 添加 onclick="show_reward()"效果,然后加个自动隐藏和显示效果。我的JQ代码比较简单:$('.pay-author').click(function(){ $(".tepasspost").toggle(); }) </script>具体在/WEB/usr/plugins/TePass/theme/reward/need_your_reward.php里可看到打赏的实现效果在想要打赏的位置添加: <?php $all = Typecho_Plugin::export();?> <?php if (array_key_exists('TePass', $all['activated'])) : ?> <?php echo TePass_Plugin::getTePass(); ?> <?php echo TePass_Plugin::getReward(); ?> <?php endif; ?>
2021年03月01日
4,275 阅读
0 评论
13 点赞
2013-08-23
给wordpress的评论和回复链接添加nofollow属性
最近发现好多打广告的啊。。。于是我决定给评论加个nofollow属性。。顺便优化以下,要加的地方有两个,一个是评论者的链接,还有就是那个“回复”这也是个链接。代码如下: //为评论者添加nofollow属性 functionadd_nofollow_to_comments_popup_link(){ return'rel="nofollow"'; } add_filter('comments_popup_link_attributes', 'add_nofollow_to_comments_popup_link'); //为评论回复链接加nofollow属性 add_filter('comment_reply_link', 'add_nofollow_to_replay_link'); functionadd_nofollow_to_replay_link($link){ returnstr_replace( '")\'>', '")\' rel=\'nofollow\'>',$link); } 以后对于广告都放行。。打个广告也不容易
2013年08月23日
5,070 阅读
0 评论
0 点赞