如何在WordPress RT-Theme 19 主题底部增加网站统计图标

  • A+
所属分类:网站和SEO

一般的网站统计在底部都会有一个图标。

WordPress RT-Theme 18 可以在底部的COPYRIGHT这里添加HTML代码,但是Wordpress RT-Theme 19取消了这个功能。

若需要增加这个功能需要修改functions.php,在版权文字后面添加代码如下:

You can put the following function to the end of your functions.php to add anything just after the copyright text;

add_filter( "footer_copyright_text", function( $copyright ){
ob_start();
?>

---------------- PUT YOUR CODE HERE 这里添加你都要的代码--------------------

<?php
$custom_code = ob_get_contents();
ob_end_clean();
return $copyright.$custom_code;
}, 10, 1 );

 

 

  • 我的微信
  • 这是我的微信扫一扫
  • weinxin
  • 我的微信公众号
  • 我的微信公众号扫一扫
  • weinxin

发表评论

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen: