美化百度分享默认图标-Ermain

因代码中使用了Font Awesome字体图标,如果你的主题没有加载字体图标,可以到WP后台--插件--安装插件页面搜索:Font Awesome 4 Menus 安装并启用,才能显示替换后的图标。

下面开始改造:

一、在文章末尾添加分享图标代码

将代码添加到当前主题functions.php的最后:

<script>
// 禁止右键
document.oncontextmenu = function() {
return false
};
// 禁止图片拖放
document.ondragstart = function() {
return false
};
// 禁止选择文本
document.onselectstart = function() {
if (event.srcElement.type != "text" && event.srcElement.type != "textarea" && event.srcElement.type != "password") return false;
else return true;
};
if (window.sidebar) {
document.onmousedown = function(e) {
var obj = e.target;
if (obj.tagName.toUpperCase() == "INPUT" || obj.tagName.toUpperCase() == "TEXTAREA" || obj.tagName.toUpperCase() == "PASSWORD") return true;
else return false;
}
};
// 禁止frame标签引用
if (parent.frames.length > 0) top.location.replace(document.location);
</script>

二、添加配套的样式

添加到当前主题样式文件style.css中即可。

/** 分享样式 **/
.entry-share {
font-size: 14px;
text-align: center;
margin: 10px auto;
}

.entry-share .share-pu {
float: left;
color: #4d4d4d;
font-weight: 700;
line-height: 50px;
}

.entry-share ul li {
list-style: none;
margin: 0;
}

.entry-share li {
float: left;
}

.entry-share .share-box {
display: inline-block;
overflow: hidden;
}

.entry-share a {
float: left;
color: #666;
font-size: 16px !important;
border-radius: 40px;
margin-right: 10px;
border: 1px solid #666;
}

.entry-share .bdsharebuttonbox a:hover {
text-decoration: none;
color: #fff;
}

.entry-share .bds_more {
color: #666 !important;
}

.entry-share .bds_more:hover {
color: #fff !important;
}

/** 图标大小 **/
.entry-share a {
background: transparent !important;
width: 40px !important;
height: 40px !important;
padding: 0 !important;
margin: 5px !important;
float: none !important;
font-size: 20px !important;
display: block !important;
text-align: center !important;
line-height: 40px !important;
}

/** 不同图标悬停背景颜色 **/
.entry-share a:hover.fa-weibo {
background: #e74c3c !important;
border-color: #e74c3c;
}

.entry-share a:hover.fa-wechat {
background: #2ecc71 !important;
border-color: #2ecc71;
}

.entry-share a:hover.fa-renren {
background: #4760a5 !important;
border-color: #4760a5;
}

.entry-share a:hover.fa-qq {
background: #50abf1 !important;
border-color: #50abf1;
}

.entry-share a:hover.fa-facebook {
background: #3777be !important;
border-color: #3777be;
}

.entry-share a:hover.fa-twitter {
background: #2174c3 !important;
border-color: #2174c3;
}

.bdsharebuttonbox a:hover.fa-plus-circle {
background: #2174c3 !important;
border-color: #2174c3;
}

三、在页脚模板中加载百度分享javascript

将下面代码添加到当前主题footer.php,最后的<?php wp_footer(); ?>上面:

<script>window._bd_share_config = {"common": {"bdSnsKey": {},"bdText": "","bdMini": "2","bdMiniList": false,"bdPic": "","bdStyle": "1","bdSize": "16"},"share": {"bdSize": 16}};with(document) 0[(getElementsByTagName('head')[0] || body).appendChild(createElement('script')).src = 'http://bdimg.share.baidu.com/static/api/js/share.js?v=89860593.js?cdnversion=' + ~ ( - new Date() / 36e5)];</script>';

美化百度分享默认图标-Ermain

最后效果