WordPress页面添加打赏按钮

综合1 4,005,373字数 296阅读0分59秒

前言
虽然WordPress很多主题包括CoreNext在文章的底部都有赞赏的按钮,但是页面中是没有的,为了解决这一问题,所以找到了如下教程。

教程
教程非常简单,在需要添加的页面位置添加如下代码,记得更换其中的二维码地址,当然如果你想赞助我的话也是可以的。文章源自小武站https://1z345.cn/小武站-https://bbs.50-0.cn/1009.html

<!-- 打赏 -->
<div id="rewardSection" style="padding: 10px 0; margin: 20px auto; width: 100%; font-size: 16px; text-align: center;"><button id="rewardButton" style="border: 1px solid #ccc; line-height: 36px; text-align: center; height: 36px; display: block; border-radius: 4px; -webkit-transition-duration: 0.4s; transition-duration: 0.4s; background-color: #04be02; color: #ffffff; margin: 0 auto; padding: 0 25px;">¥ 点我显示打赏</button>
<div id="QR" style="display: none;">
<div id="wechat" style="display: inline-block; margin: 20px;"><img id="wechat_qr" style="width: 180px; max-width: 100%; display: inline-block; margin: 0.8em 2em 0 2em;" src="微信二维码" alt="微信二维码" />微信打赏

</div>
<div id="alipay" style="display: inline-block; margin: 20px;"><img id="alipay_qr" style="width: 180px; max-width: 100%; display: inline-block; margin: 0.8em 2em 0 2em;" src="支付宝二维码" alt="支付宝二维码" />支付宝打赏

</div>
</div>
</div>
<script>
jQuery(document).ready(function($) {
    $('#rewardButton').click(function() {
        $('#QR').toggle();
    });
});
</script>

<!-- 打赏 -->

 文章源自小武站https://1z345.cn/小武站-https://bbs.50-0.cn/1009.html 文章源自小武站https://1z345.cn/小武站-https://bbs.50-0.cn/1009.html

继续阅读
  • 本文由 admin 发表于 2024年8月23日 18:50:12
  • 转载请务必保留本文链接:https://bbs.50-0.cn/1009.html
  • 打赏按钮
    • 美团
      美团

      很好很好!

    匿名

    发表评论

    匿名网友
    :?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:
    确定