篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php 删除海狸生成器的'go to top'标记并使用我自己的标记进行修改。相关的知识,希望对你有一定的参考价值。
<?php
/**
* Removes markup for built-in scroll to top link
*
* Renders scroll to top button for wp_footer.
*
*/
add_action( 'wp_head', 'dgs_remove_go_to_top' );
add_action( 'wp_footer', 'dgs_remove_go_to_top' );
function dgs_remove_go_to_top(){
remove_action( 'wp_footer', 'FLTheme::go_to_top' );
echo '<a href="#" id="fl-to-top" style="text-indent:-9999px;"><i class="fa fa-chevron-up" style="text-indent:0;"></i>Scroll Back to the Top of This Page</a>';
}
以上是关于php 删除海狸生成器的'go to top'标记并使用我自己的标记进行修改。的主要内容,如果未能解决你的问题,请参考以下文章