首页
归档
留言
广告合作
友链
美女主播
Search
1
博瑞GE车机升级/降级
5,146 阅读
2
Mac打印机设置黑白打印
4,517 阅读
3
修改elementUI中el-table树形结构图标
4,516 阅读
4
Mac客户端添加腾讯企业邮箱方法
4,351 阅读
5
intelliJ Idea 2022.2.X破解
4,060 阅读
Java
HarmonyOS Next
Web前端
微信开发
开发辅助
App开发
数据库
随笔日记
登录
/
注册
Search
标签搜索
Spring Boot
Java
Spring Cloud
Mac
mybatis
WordPress
Nacos
Spring Cloud Alibaba
Mybatis-Plus
jQuery
Java Script
asp.net
微信小程序
Sentinel
UniApp
MySQL
asp.net core
IntelliJ IDEA
Jpa
树莓派
Laughing
累计撰写
570
篇文章
累计收到
1,424
条评论
首页
栏目
Java
HarmonyOS Next
Web前端
微信开发
开发辅助
App开发
数据库
随笔日记
页面
归档
留言
广告合作
友链
美女主播
搜索到
13
篇与
的结果
2018-01-22
WordPress代码高亮插件推荐:G-prettify
使用方法本插件是在文本环境下使用的,使用本插件请在文本下编辑,然后安装后会有一个代码高亮的按钮,使用的时候点击一下,将代码放进去就好了。本插件无需考虑代码转义的问题,直接插入代码即可注意事项使用本插件,请不要插入代码之后转到可视化编辑器,如果您的觉得文本编辑不够使用的话,推荐使用本站的短代码插件插件目前是最新版,不会出现行号错乱的问题
2018年01月22日
1,343 阅读
0 评论
1 点赞
2018-01-22
WordPress复制文字自动添加版权信息
方法一、将以下代码放入主题对应的functions.php文件即可//复制文字自动添加版权信息 function v7v3_copyright() { > <script type='text/javascript'> function addLink() { var body_element = document.getElementsByTagName('body')[0]; var selection; selection = window.getSelection(); var pagelink = "<br /><br /> 原文信息: <?php if(is_single()){ the_title();}> 原文链接:<a href='"+document.location.href+"'>"+document.location.href+"</a>"; var copy_text = selection + pagelink; var new_div = document.createElement('div'); new_div.style.left='-99999px'; new_div.style.position='absolute'; body_element.appendChild(new_div ); new_div.innerHTML = copy_text ; selection.selectAllChildren(new_div ); window.setTimeout(function() { body_element.removeChild(new_div ); },0); } document.oncopy = addLink; </script> <?php } add_action( 'wp_head', 'v7v3_copyright');方法二,将以下代码放入header.php中<script type="text/javascript">function addLink() { var body_element = document.body; var selection; selection = window.getSelection(); if (window.clipboardData) { // Internet Explorer var pagelink ="\r\n\r\n 原文出自[ 木子网 ] 转载请保留原文链接: "+document.location.href+""; var copytext = selection + pagelink; window.clipboardData.setData ("Text", copytext); return false; } else { var pagelink = " 原文出自[ 木子网 ] 转载请保留原文链接: "+document.location.href+""; var copytext = selection + pagelink; var newdiv = document.createElement('div'); newdiv.style.position='absolute'; newdiv.style.left='-99999px'; body_element.appendChild(newdiv); newdiv.innerHTML = copytext; selection.selectAllChildren(newdiv); window.setTimeout(function() { body_element.removeChild(newdiv); },0); } } document.oncopy = addLink; </script>
2018年01月22日
1,899 阅读
0 评论
1 点赞
2017-12-15
Nana主题移除评论者网址
不管是为了网站权重还是为了防止垃圾评论,我们一般都是建议移除掉wordpress默认的评论者网址的。现在网上很多的教程都是说如何隐藏掉评论的网址框,但是即使我们隐藏掉了评论框,仍然无法阻挡一些机器评论。所以我们这里就说一下Nana主题如何测试移除评论者网址。首先我们找到Nana主题下的/inc/functions/文件夹,里面有一个comment-template.php文件。我们打开文件,定位到49行,如下我们可以发现,调用了一个commentauthor函数。所以我们打开主题下面的functions.php文件,找到函数我是直接注释掉了,大家也可以直接删除。然后打开任意一个有评论的文章,看一下,评论者的链接已经被移除了。
2017年12月15日
1,866 阅读
2 评论
0 点赞
2017-11-11
wordpress增加作者信息小工具
本文介绍的方法是通过在添加小工具代码的方式增加的,所以添加之后,大家可以随意调节显示的位置。增加小工具代码首先打开自己主题对应的小工具代码文件,一般位于主题下面的inc/functions/widgets.php文件,在文件顶部或者其他位置增加如下代码:<?php /* Widget Name:木子网 Description:木子网 Version:1.0 Author:木子网 Author URI:https://www.xiangcaowuyu.net */ add_action('widgets_init', create_function('', 'return register_widget("Authorinfo");')); class Authorinfo extends WP_Widget { function Authorinfo() { $widget_ops = array('description' => '显示当前文章的作者信息!'); $this->WP_Widget('Authorinfo', '本文作者', $widget_ops); } function update($new_instance, $old_instance) { return $new_instance; } function widget($args, $instance) { extract( $args ); echo $before_widget; echo widget_authorinfo(); echo $after_widget; } } function widget_authorinfo(){ ?> <div class="Author-recommend"> <div class = "Author-recommendation"> <div class = "wrap"> <a class = "zzavatar" href = "https://www.xiangcaowuyu.net/"> <img alt = "木子网" src = "https://www.xiangcaowuyu.net/wp-content/themes/Nana/img/post-lz.png" class = "avatar avatar-137 photo" width = "137" height = "137" > </a> <h4><a href="https://www.xiangcaowuyu.net/about-me">木子网</a></h4> <p class="description">木子网是个人的生活纪实博客,记录个人点滴生活,分享和交流开发技术。</p> <div id="aboutme_widget"> <span class="aboutme"> <ul> <li class="fahome"> <a title="木子网" href="https://www.xiangcaowuyu.net/" rel="nofollow"> <i class="fa fa-home"></i> </a> </li> <li class = "fauser"> <a title = "专栏地址" href = "https://www.xiangcaowuyu.net/" rel = "nofollow"> <i class = "fa fa-user"> </i> </a> </li> <li class="weixin"> <a title="微信号"> <i class="fa fa-weixin"></i> <span> <img alt = "微信号" src = "https://xiangcaowuyu.xiangcaowuyu.net/blog/typecho/2017/06/weixinpay.png"></span> </a> </li> <li class="tqq"> <a target="blank" rel="nofollow" href="https://wpa.qq.com/msgrd?V=3&uin=79505393&Site=QQ& Menu = yes " title="QQ在线"> <i class="fa fa-qq "></i> </a> </li> <li class="tsina"> <a title="新浪微博" href="https://weibo.com/333454448" target="_blank" rel="nofollow"> <i class="fa fa-weibo"></i> </a> </li> <li class = "toutiao"> <a title = "头条号" href = "https://www.toutiao.com/c/user/1827107990" target = "_blank" rel = "nofollow"> <i class = "fa fa-tumblr"></i> </a> </li> </ul > </span> </div> </div> </div> </div> <?php } ?>修改样式打开主题样式文件style.css,增加如下样式/* 本文作者小工具开始 */ .Author-recommend { text-align:center } #sidebar .Author-recommendation { width:100%; background-color: LightGray; } .Author-recommend { text-align:center } .Author-recommendation { width:100%; float:left; position:relative; min-height:1px; padding:0; } .zzavatar img { width:100%; height:100%; border:1px solid #ddd; border-radius:50% } .liebiaos li { line-height:25px; whitewhite-space:nowrap; text-overflow:ellipsis; overflow:hidden } .liebiaos li a { color:#333 } .liebiaos li a:hover { color:#1abc9c } .liebiaos li { list-style-type:disc; list-style-position:inside; color:#1abc9c; whitewhite-space:nowrap; text-overflow:ellipsis; overflow:hidden; text-align:left; line-height:190% } .liebiaos p { text-align:left; margin:8px 0 } .Author-recommend .wrap .description { margin:5px auto 5px; height:100%; font-size:13px; line-height:25px } .Author-recommend .wrap { height:100%; margin-top:60px; padding:0; border:1px solid #e6e6e6; border-radius:4px; background:#fff } #aboutme_widget li { float: left; width: 16%; margin: 0 0.3%; height: 40px; line-height: 38px } #aboutme_widget a { color:#999; width:40px; display:block; text-align:center; margin:0 auto; border-radius:25px; border:none } #aboutme_widget .fauser a:hover { color:#fff; background:#b686d7; border:1px solid #b686d7 } #aboutme_widget .fahome a:hover { color:#fff; background:#949fd8; border:1px solid #949fd8 } .Author-recommend .wrap:hover { box-shadow:0 5px 20px rgba(0,0,0,.1) } .Author-recommend .wrap .zzavatar { width:80px; height:80px; margin-top:-40px; display:inline-block; background-color:#fff } .Author-recommend .wrap .zzavatar img { vertical-align:baselinebaseline } .Author-recommend .wrap .zzavatar { border-radius:40px } .Author-recommend .wrap h4 { font-size:21px; font-weight:700 } @media screen and (max-width:1080px) { .Author-recommendation { width:50% } } @media screen and (max-width:720px) { .Author-recommendation { width:100% } } @media screen and (max-width:360px) { #aboutme_widget li { margin-right:0 } } .aboutme { position:relative; font-size:18px; display:block } #aboutme_widget ul { overflow:hidden; padding:8px 0 } #aboutme_widget span { display:block } .Author-recommend .tebie .wrap .description { max-width:100%; text-align:left; height:100px } #text-121 .Author-recommend .tebie .wrap,#text-122 .Author-recommend .tebie .wrap { height:200px } #zhuantituijian .textwidget,#text-121 .textwidget,#text-122 .textwidget { padding:0 } #zhuantituijian .Author-recommendation,#text-121 .Author-recommendation,#text-122 .Author-recommendation { padding-left:0; padding-right:0 } #text-122 .Author-recommend .wrap { margin-top:40px; padding:0 15px; height:265px } #text-121 .Author-recommend .wrap { margin-top:58px; padding:0 15px } #zhuantituijian .textwidget img,#text-121 .textwidget img,#text-122 .textwidget img { padding:0 } #text-121,#text-122 { border:none; background:#e6e6e6 } #aboutme_widget a:hover { color:#fff; border:1px solid #fff } #aboutme_widget .toutiao a:hover { color:#fff; background:#d28300; border:1px solid #d28300 } #aboutme_widget .weixin a:hover { color:#fff; background:#248a34; border:1px solid #248a34 } #aboutme_widget .tsina a:hover { color:#fff; background:#c40000; border:1px solid #c40000 } #aboutme_widget .tqq a:hover { color:#fff; background:#4e91d1; border:1px solid #4e91d1 } #aboutme_widget .fauser a { color:#b686d7; border:1px solid #b686d7 } #aboutme_widget .fahome a { color:#949fd8; border:1px solid #949fd8 } #aboutme_widget .toutiao a { color:#d28300; border:1px solid #d28300 } #aboutme_widget .weixin a { color:#248a34; border:1px solid #248a34 } #aboutme_widget .tsina a { color:#c40000; border:1px solid #c40000 } #aboutme_widget .tqq a { color:#4e91d1; border:1px solid #4e91d1 } #aboutme_widget .weixin span { position:absolute; left:-10px; visibility:hidden; padding:5px; border:1px dashed gray; background-color:#ffffe0; color:#000; height: 132px; text-decoration:none } #aboutme_widget img { margin:0; padding:2px; height:90pt; max-width:90pt } #aboutme_widget .weixin:hover span { top:50px; left:0; visibility:visible } #text-15 .textwidget { padding:4px 4px 0 } /* 本文作者小工具结束 */使用方法通过上述设置之后,我们进入WordPress后台,依次进入外观→小工具,可以看到“本文作者”小工具,然后拖拽到需要显示的位置即可
2017年11月11日
1,568 阅读
2 评论
0 点赞
2017-10-23
WordPress标题自动翻译英文插件LS_baidu_translator v2.0
更新记录2020年8月22日V3.0发布,支持特殊字符、空格等翻译。2018年4月2日最新版已经提供下载,大家可以继续使用。最新版需要申请百度api。2018年1月7日根据网友反馈,目前百度应该已经封掉了这个接口,目前插件已经不能用了,等有时间在更新吧。大家不要下载了。现在WordPress好多标题自动转换英文的插件都无法使用了,之前的cos-slug-translator由于今年年底有道云老的接口停止维护、wp-slug-translator由于谷歌翻译接口无法调用,微软bing的老的接口也停止了,导致现在WordPress翻译英文的插件会产生好多问题。这个插件是博主结合col-slug-translator插件以及网上百度api翻译接口制作的,在此对于原作者的辛勤劳动表示由衷的感谢。插件特色插件不会导致站点访问速度过慢的问题。此插件不是网上通过在functions.php添加add_filter方法添加的,网上此方法会导致整个WordPress站点特别慢插件无需申请百度账号以及相关的APPID等信息,可以直接使用温馨提示由于新的百度翻译网址已经不可用,新的插件需要申请相关的APPID插件使用下载LS_baidu_translator.zip压缩文件解压文件,得到LS_baidu_translator文件夹将LS_baidu_translator文件上传到网站plugs目录下后台启用插件在每次更新文章或者发布文章时,系统会自动将标题的中文转换成英文插件下载链接: https://pan.baidu.com/s/1WfrIv2PimFIKxTGEriI_ZA 提取码: socd
2017年10月23日
3,560 阅读
96 评论
0 点赞
2017-07-08
解决Nana主题打开文章提示Expected ')' to end an argument list的问题
最新新网站上线,使用了Nana主题,Nana主题是一款免费的主题,博主也是通过赞助的形式获得了免费的使用、修改权限。讲真,Nana主题还是挺好看的,当然也是参考了Begin主题的东西。这个只是个人,呵呵。言归正传,下面说一下问什么会出现这个问题问题分析其实今天在Nana讨论群里面询问了一下今天发现的这个问题,当时@群主也没有得到大幅,可能群主太忙了,也没来得及看。然后群里一位童鞋说开启CDN导致的,我又正好开启了百度的CDN,所以当时也没多想。其实主要还是周六在加班呀。。。。。。晚上回到家,还是打算看一下是什么原因导致的,打开Safari调试器,大概看到报错的原因了,如下图通过错误信息,我们大概可以了解到是调用360的自动提交接口导致的,看了一下拼接的string字符串,发现是字符串拼接错了。本来应该是"的,结果错误的使用了'。解决办法既然知道原因,其实就好解决了。首先我们打开主题的functions.php文件,在大概1234行,找到拼接的语句,就是下面这句document.write('<script src='" + src + id='sozz'><\/script>'); 替换成以下即可document.write('<script src='" + src + "id='sozz'><\/script>');
2017年07月08日
1,539 阅读
1 评论
0 点赞
2017-07-08
begin主题V4.4下载
HTML5+CSS3 响应式设计,博客、杂志、图片、公司企业多种布局可选,集成SEO自定义功能,丰富的主题选项,众多实用小工具。主题说明好久之前,跟大家提供做begin主题2.2版本,本次主题提供的是begin主题4.4版本。虽然提供免费的主题,但是大家如果条件允许还是建议购买正版主题。目前李森的博客使用的主题是在Nana主题的基础上自己修改的一款主题,大家如果有需要的,也可以留言回复。安装须知主题有些功能会用到文章点击量,所以必须安装文章点击统计插件:wp-postview,可后台搜索安装官方最新版。安装主题前请禁用其它插件,只保留上面的wp-postview插件,以免造成不可预知的问题,特别是一些静态缓存、网页压缩类的插件,切记!之后逐一测试启用,主题不能保证兼容所有插件。使用主题前需详细阅读使用说明,并熟习主题选项面板及WordPress基本功能。主题安装登录WP后台→外观→主题→添加→上传主题→并启用Begin主题。启用主题后,会自动跳转到主题选项设置页面,不论设置与否,必须保存一次主题选项。主题升级主题会不定期地添加功能,修正BUG,并为用户提供免费升级服务。安装新版本主题,登录WP后台→外观→主题,在管理主题页面,启用任何一款WP默认主题→然后点击Begin主题缩略图上的“主题详情”按钮,在弹出的窗口中删除旧版本,然后添加→上传新版Begin主题包并启用,之前的主题选项设置不会丢失。建议上面的方法升级安装主题,如果使用FTP客户端上传,传输模式必须选择“二进制”,否则可能会造成“白屏”。更新主题后不论设置与否,必须保存一次主题选项。注:WordPress 自带的三款默认主题twentyfourteen、twentythirteen和twentyfifteen,必须保留。当升级主题出现空白页之类错误 时,用FTP删除当前主题,登录后台,会自动切换到默认主题,所以必须保留不能因为不使用而删除,切记。升级主题后,请清空WP Super Cache之类缓存插件的缓存文件,并刷新浏览器。主题下载链接: https://pan.baidu.com/s/1Pq0Pn6Xx0-SIi9jrhjQuyw提取码: bs9n
2017年07月08日
880 阅读
19 评论
2 点赞
2017-06-30
win主机WordPress伪静态设置方法404页面方法
新建一个404.txt文档,将以下代码复制进去:header(“HTTP/1.1 200 OK”); $ori_qs = $_SERVER['QUERY_STRING']; $pattern = ‘/[^;]+;[^:]+://[^/]+(/[^?]*)(?:?(.*))?/i’; preg_match($pattern, $ori_qs, $matches); $_SERVER['PATH_INFO'] = $matches[1] . ‘?’ . $matches[2]; $_SERVER['REQUEST_URI'] = $_SERVER['PATH_INFO']; $query_args = explode(‘&’, $matches[2]); unset($_GET); foreach ($query_args as $arg) { $the_arg = explode(‘=’, $arg); $_GET[$the_arg[0]] = $the_arg[1]; } include(‘index.php’); ?> 复制进去后,点击另存为,保存为404.php。然后进入WP后台,【设置】–【固定连接】里面,先把固定连接选择自定义,设置成/%post_id%.html。上传下面的404.php页面到网站根目录下,然后在虚拟主机控制面板里面修改404跳转页面为刚才上传的404.php,这样就可以实现伪静态了。
2017年06月30日
1,192 阅读
0 评论
0 点赞
2017-06-30
Windows服务器WordPress伪静态
估计没人会用Windows部署WordPress吧。以下代码复制到httpd.ini文件[ISAPI_Rewrite] # 3600 = 1 hour CacheClockRate 3600 RepeatLimit 32 # Protect httpd.ini and httpd.parse.errors files # from accessing through HTTP # Rules to ensure that normal content gets through RewriteRule /sitemap.xml /sitemap.xml [L] RewriteRule /favicon.ico /favicon.ico [L] # For file-based wordpress content (i.e. theme), admin, etc. RewriteRule /wp-(.*) /wp-$1 [L] # For normal wordpress content, via index.php RewriteRule ^/$ /index.php [L] RewriteRule /(.*) /index.php/$1 [L] 后台设置→固定连接填写/%post_id%.html
2017年06月30日
1,306 阅读
0 评论
0 点赞
2017-06-30
WordPress给网站添加支付宝捐赠功能
提示:默认捐款数和图片可以自行替换。<form action="https://shenghuo.alipay.com/send/payment/fill.htm" method="POST" target="_blank" accept-charset="GBK" rel="nofollow" ><input name="optEmail" type="hidden" value="iamlisen@163.com"><input name="payAmount" type="hidden" value="6"><input name="memo" type="hidden" value="mailto:iamlisen@163.com"><input name="pay" type="image" value="转账" src="http://www.iamlisen.com/wp-content/uploads/2015/09/btn-index1.png"></form>使用方法:在后台外观,选择小工具,然后选择文本,将上述代码复制到文本小工具就可以了。
2017年06月30日
1,308 阅读
0 评论
0 点赞
2017-06-30
WordPress添加鼠标点击上升红字特效
将以下代码放到主题footer.php文件body前,即可实现鼠标点击红色数字上升特效<script type="text/javascript"> (function(window,document,undefined){ var hearts = []; window.requestAnimationFrame = (function(){ return window.requestAnimationFrame || window.webkitRequestAnimationFrame || window.mozRequestAnimationFrame || window.oRequestAnimationFrame || window.msRequestAnimationFrame || function (callback){ setTimeout(callback,1000/60); } })(); init(); function init(){ css(".heart{width: 10px;height: 10px;position: fixed;background: #f00;transform: rotate(45deg);-webkit-transform: rotate(45deg);-moz-transform: rotate(45deg);}.heart:after,.heart:before{content: '';width: inherit;height: inherit;background: inherit;border-radius: 50%;-webkit-border-radius: 50%;-moz-border-radius: 50%;position: absolute;}.heart:after{top: -5px;}.heart:before{left: -5px;}"); attachEvent(); gameloop(); } function gameloop(){ for(var i=0;i<hearts.length;i++){ if(hearts[i].alpha <=0){ document.body.removeChild(hearts[i].el); hearts.splice(i,1); continue; } hearts[i].y--; hearts[i].scale += 0.004; hearts[i].alpha -= 0.013; hearts[i].el.style.cssText = "left:"+hearts[i].x+"px;top:"+hearts[i].y+"px;opacity:"+hearts[i].alpha+";transform:scale("+hearts[i].scale+","+hearts[i].scale+") rotate(45deg);background:"+hearts[i].color; } requestAnimationFrame(gameloop); } function attachEvent(){ var old = typeof window.onclick==="function" && window.onclick; window.onclick = function(event){ old && old(); createHeart(event); } } function createHeart(event){ var d = document.createElement("div"); d.className = "heart"; hearts.push({ el : d, x : event.clientX - 5, y : event.clientY - 5, scale : 1, alpha : 1, color : randomColor() }); document.body.appendChild(d); } function css(css){ var style = document.createElement("style"); style.type="text/css"; try{ style.appendChild(document.createTextNode(css)); }catch(ex){ style.styleSheet.cssText = css; } document.getElementsByTagName('head')[0].appendChild(style); } function randomColor(){ return "rgb("+(~~(Math.random()*255))+","+(~~(Math.random()*255))+","+(~~(Math.random()*255))+")"; } })(window,document); </script>
2017年06月30日
1,273 阅读
0 评论
0 点赞
2017-06-30
解决WordPress网站后台不显示图片的问题
使用hosts直接解析WordPress可用ip解决后台无法显示图片的问题前言WordPress站长经常会在后台搜索插件和主题什么的,由于插件后台是调用WordPress官方资源,所以经常会出现无法显示图片问题,如果你没有的话,请无视吧,如果你有这个问题,那么请继续向下看。解决方法将下面代码加入电脑的hosts文件,路径:C:\Windows\System32\Drivers\etc#wpCDN 93.184.216.127 s.w.org 93.184.216.127 ts.w.org 93.184.216.127 ps.w.org #GOOGLE字体、AJAX地址解析到中国360CDN的IP 106.39.201.244 fonts.googleapis.com 125.88.190.61 libs.googleapis.com 125.88.190.61 ajax.googleapis.com
2017年06月30日
1,140 阅读
0 评论
0 点赞
1
2