功能介绍

启用该功能之后浏览器滚动条会进行美化!

配置教程

首先利用宝塔或则FTP打开/inc/options下的admin-options.php文件把下面代码放在20行左右

  1. array(
  2. ‘id’ => ‘is_scrollbar’,
  3. ‘type’ => ‘switcher’,
  4. ‘title’ => ‘滚动条美化’,
  5. ‘label’ => ‘启用后PC端浏览器滚动条会进行美化’,
  6. ‘default’ => false,
  7. ),

最后在主题根目录下打开functions.php将以下代码放在最后即可

  1. //+———————————————————————-
  2. //| 滚动条美化
  3. //+———————————————————————-
  4. if(_cao(‘is_scrollbar’)){
  5. add_action(‘wp_footer’, function () {
  6. echo <<<EOT
  7. <link rel=‘stylesheet’ href=“https://van.ygit.net/wp-content/themes/van/assets/css/beautify/scrollbar.css”/>
  8. EOT;
  9. }, 100);
  10. }