WordPress短代码添加闪光按钮

效果图:

[sgbtn_blue href='http://www.99bsy.com/?p=582']蓝色闪光[/sgbtn_blue] [sgbtn_red href='http://www.99bsy.com/?p=582']红色闪光[/sgbtn_red] [sgbtn_orange href='http://www.99bsy.com/?p=582']橙色闪光[/sgbtn_orange] [sgbtn_lv href='http://www.99bsy.com/?p=582']绿色闪光[/sgbtn_lv]

将以下代码添加到style.css文件里:

  1. [class*=sgbtn]{display:inline-block;text-indent:0;position:relative;color:#fff;padding:0 10px 0 10px;min-width:160px;height:38px;line-height:38px;opacity:.8;text-align:center;font-family:Ubuntu,sans-serif;font-size:15px;text-decoration:none;border-radius:2px;overflow:hidden;-webkit-transition:all .15s ease-in;transition:all .15s ease-in}[class*=sgbtn]:before{content:'';position:absolute;background:#fff;width:25px;height:50px;top:0;left:-45px;opacity:.3;-webkit-transition:all .25s ease-out;transition:all .25s ease-out;-webkit-transform:skewX(-25deg);transform:skewX(-25deg)}[class*=sgbtn]:hover{opacity:.65}[class*=sgbtn]:hover:before{width:45px;left:205px}.sgbtn_blue{background:#1cb2f5}.sgbtn_red{background:#C00}.sgbtn_orange{background:#F90}.sgbtn_lv{background:#096}a[class*=sgbtn]{color:#fff}a[class*=sgbtn]:hover{color:#fff}

将以下代码添加到functions.php里:

  1. /*添加蓝色闪光按钮*/
  2. function sg_blue($atts$content = null) {
  3.     extract(shortcode_atts(array(
  4.         "href" => 'http://'
  5.     ) , $atts));
  6.     return '<a class="sgbtn_blue" href="' . $href . '" target="_blank" rel="nofollow">' . $content . '</a>';
  7. }
  8. add_shortcode('sgbtn_blue', 'sg_blue');
  9. /*添加红色闪光按钮*/
  10. function sg_red($atts$content = null) {
  11.     extract(shortcode_atts(array(
  12.         "href" => 'http://'
  13.     ) , $atts));
  14.     return '<a class="sgbtn_red" href="' . $href . '" target="_blank" rel="nofollow">' . $content . '</a>';
  15. }
  16. add_shortcode('sgbtn_red', 'sg_red');
  17. /*添加橙色闪光按钮*/
  18. function sg_orange($atts$content = null) {
  19.     extract(shortcode_atts(array(
  20.         "href" => 'http://'
  21.     ) , $atts));
  22.     return '<a class="sgbtn_orange" href="' . $href . '" target="_blank" rel="nofollow">' . $content . '</a>';
  23. }
  24. add_shortcode('sgbtn_orange', 'sg_orange');
  25. /*添加绿色闪光按钮*/
  26. function sg_lv($atts$content = null) {
  27.     extract(shortcode_atts(array(
  28.         "href" => 'http://'
  29.     ) , $atts));
  30.     return '<a class="sgbtn_lv" href="' . $href . '" target="_blank" rel="nofollow">' . $content . '</a>';
  31. }
  32. add_shortcode('sgbtn_lv', 'sg_lv');

使用方法:

在文章编辑时插入以下代码即可,注意修改下括号

  1. {sgbtn_blue href='链接地址']链接标题[/sgbtn_blue}    /*蓝色闪光*/
  2. {sgbtn_red href='链接地址']链接标题[/sgbtn_red}    /*红色闪光*/
  3. {sgbtn_orange href='链接地址']链接标题[/sgbtn_orange}    /*橙色闪光*/
  4. {sgbtn_lv href='链接地址']链接标题[/sgbtn_lv}    /*绿色闪光*/

[sgbtn_red href='http://www.bootcss.com/p/buttons/']更多炫酷按钮点这里[/sgbtn_red]

相关推荐:

[bsy_insert_post ids=777]

版权声明:
作者:Mr Y
链接:https://www.99bsy.com/582.html
来源:小算草
文章版权归作者所有,未经允许请勿转载。

THE END
分享
二维码
< <上一篇
下一篇>>