Files
2023-06-22 13:33:25 +08:00

14 lines
411 B
PHP

<?php
defined('IN_TS') or die('Access Denied.');
//回到顶部插件
function gotop_html(){
echo '<script type="text/javascript" src="'.SITE_URL.'plugins/pubs/gotop/jquery.goToTop.js"></script>';
}
function gotop_css(){
echo '<link href="'.SITE_URL.'plugins/pubs/gotop/style.css" rel="stylesheet" type="text/css" />';
}
addAction('pub_footer', 'gotop_html');
addAction('pub_header_top', 'gotop_css');