wordpress点赞

像西瓜视频,B站这样的视频网站没明显广告是怎么盈利的?

请问怎样建立一个属于自己的网站?

1、准备好域名,做网站的基本条件

2、准备好空间。(无需备案)

3、如果自己做的话,需要一个后台程序,列如:pageadmin,dz等等后期网站代码自己控制管理,扩展修改什么的更灵活。

4、需要一套模板,如果自己懂前台设计可以按照自己的需求来设计

5、需要一个本地的搭建环境的软件(也可以使用临时域名)

不需要成本的暴利创业项目都有哪些?

自己在网游中,图的是觅友,寻找自已的快乐,这目的已达到了。不想,也没能力开自己.的网站,谢友的关怀。

免插件实现WordPress打赏功能

本站之前一直在使用有赏「You Shang」这款WordPress打赏插件,此插件能为WordPress站点增加微信、支付宝打赏/赞赏功能,通过JS实现,博主发现加载略慢,今天分享一篇免插件实现WordPress打赏功能教程。

有没有用户打赏不重要,此功能不能缺少!Demo可查看本站的,哈哈,上干货!

首先,将需要增加打赏功能的页面、模板(比如 single.php 文件)位置添加以下 html 代码

<div class="reward"> <div class="reward-button">赏<span class="reward-code"> <span class="wechat-code"><img class="wechat-img" src=""><b>微信</b></span> <span class="alipay-code"><img class="alipay-img" src=""><b>支付宝</b></span> </span> </div> <p class="reward-notice"> 如果文章对您有帮助,欢迎打赏作者!</p></div>

然后,将 CSS 代码放到本主题的 style.css 文件里即可

/*打赏*/.reward {padding: 0;margin: -30px 0 30px 0;}.reward .reward-notice {font-size: 14px;line-height: 14px;margin: 15px auto;text-align: center}.reward .reward-button {font-size: 33px;line-height: 40px;position: relative;display: block;width: 45px;height: 45px;margin: 0 auto;padding: 0;-webkit-user-select: none;text-align: center;vertical-align: middle;color: #fff;border: 1px solid #f1b60e;border-radius: 50%;background: #fccd60;background: -webkit-gradient(linear,left top,left bottom,color-stop(0,#fccd60),color-stop(100%,#fbae12),color-stop(100%,#2989d8),color-stop(100%,#207cca));background: -webkit-linear-gradient(top,#fccd60 0,#fbae12 100%,#2989d8 100%,#207cca 100%);background: linear-gradient(to bottom,#fccd60 0,#fbae12 100%,#2989d8 100%,#207cca 100%)}.reward .reward-code {position: absolute;top: -200px;left: 50%;display: none;width: 326px;height: 170px;margin-left: -174px;padding: 10px;border: 1px solid #e6e6e6;background: #05af4e;}.reward .reward-button:hover .reward-code {display: block}.reward .reward-code span {display: inline-block;width: 150px;height: 150px}.reward .reward-code span.alipay-code {float: right}.reward .reward-code span.alipay-code a {padding: 0}.reward .reward-code span.wechat-code {float:left }.reward .reward-code img {display: inline-block;float: left;width: 150px;height: 150px;margin: 0 auto;border: 0}.reward .reward-code b {font-size: 14px;line-height: 30px;display: block;margin: 0;text-align: center;color: #fff}.reward .reward-code b.notice {line-height: 2rem;margin-top: -1rem;color: #999}.reward .reward-code:after,.reward .reward-code:before {position: absolute;content: '';border: 10px solid transparent}.reward .reward-code:after {bottom: -19px;left: 50%;margin-left: -10px;border-top-color: #fff}.reward .reward-code:before {bottom: -20px;left: 50%;margin-left: -10px;border-top-color: #e6e6e6}

为你的wordpress网站加入扫微信和支付宝二维码打赏功能,非插件

打赏功能并不复杂,因为现在微信和支付宝都提供二维码收款功能,只需把对应的二维码图片放在网站某个位置,扫一扫即可收钱。

最近网站流量也是处于上涨态势,那有必要为自己网站加个打赏功能,追一下内容付费的潮流。话不多说,方法如下。

下面是华哥的实践方式与对应代码。

1.functions.php,在最后面空白处添加代码如下:

//打赏

function orwei_ds_alipay_wechat(){

echo ‘<section class=”to-tip”><div class=”inner”><div class=”top-tip-shap”><a>赏<span class=”code”><img alt=”” src=””></span></a><p>这篇文章对俺有帮助,打赏犒劳下作者吧?</p></div></div></section>’;

}

注意,此处只用到一个图片,图片是在ps中,合成了微信二维码和支付宝二维码。

(因文章不能使用带二维码的图片,你可以想像一下,就是两个二维码左右摆放在一排)

2.将此功能添加至文章内容页面single.php,一行代码即可。

<?php echo orwei_ds_alipay_wechat();?>

如参考文章所示,通常此代码是加在<?php the_content(); ?>后面,你也可以选择其他位置。

3.样式,style.css中添加打赏的样式,可以自行修改美化。

@media (max-width: 800px) {

.to-tip {display:none !important}

}

.to-tip {

background:#fff;

text-align:center

}

.to-tip .inner {

display:inline-block;

margin-bottom:40px;

}

.to-tip .top-tip-shap {

border-radius:100%

}

.to-tip a {

display:block;

width:75px;

height:75px;

border:1px solid #eee;

border-radius:100%;

line-height:75px;

color:#FFF;

font-size:32px;

font-weight:bold;

background:#ff9800;

position:relative;margin:0 auto;

}

.to-tip a:hover .code {

display:block

}

.to-tip div {

color:#666;

margin-top:4px

}

.to-tip .code {

position:absolute;

padding:20px;

border:1px solid #e6e6e6;

background-color:#fff;

line-height:14px;

width:360px;

height:224px;

top:-200px;

left:50%;

-webkit-transform:translate3d(-50%, 0, 0);

transform:translate3d(-50%, 0, 0);

display:none

}

.to-tip .code:before,.to-tip .code:after {

position:absolute;

content:””;

border:10px solid transparent

}

.to-tip .code:before {

border-top-color:#e6e6e6;

left:50%;

margin-left:-10px;

bottom:-20px

}

.to-tip .code:after {

border-top-color:#fff;

left:50%;

margin-left:-10px;

bottom:-19px

}

.to-tip .code img {

width:360px;

height:223px

}

.to-tip .code b {

color:#333;

font-size:12px;

font-weight:normal

}