微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

php – 在wordpress核心中加载css和js文件

我想在我的wordpress安装中包含bootstrap.我知道如何在主题中包含脚本和样式,但这不是我想要的.

我查看了wordpress核心文件,并尝试将bootstrap文件添加到script-loader.PHP文件中,但不会加载它们.有没有办法将这些文件添加wordpress核心加载的样式和脚本?

例如,我已将此行添加认的wordpress样式表/脚本加载器函数中:

$styles->add( 'bootstrap', "/includes/css/bootstrap$suffix.css" );
$scripts->add( 'bootstrap', "/includes/js/bootstrap$suffix.js", array( 'jquery' ) );

但这不行.

解决方法:

我会通过改变你当前主题中的functions.PHP来做到这一点.
您应该了解两个功能.第一个添加CSS.

wp_enqueue_style( $handle, $src, $deps, $ver, $media );

Documentation

第二个是添加JS

wp_enqueue_script( $handle, $src, $deps, $ver, $in_footer);

Documentation

wordpress一个关于如何做到这两点的基本文档:

Documentation

最终你会有这样的事情:

function add_theme_scripts() {
  wp_enqueue_style( 'style', get_stylesheet_uri() );

  wp_enqueue_style( 'slider', get_template_directory_uri() . '/css/slider.css', array(), '1.1', 'all');

  wp_enqueue_script( 'script', get_template_directory_uri() . '/js/script.js', array ( 'jquery' ), 1.1, true);

    if ( is_singular() && comments_open() && get_option( 'thread_comments' ) ) {
      wp_enqueue_script( 'comment-reply' );
    }
}
add_action( 'wp_enqueue_scripts', 'add_theme_scripts' );

祝好运!

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐