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' );

祝好运!

相关文章

我们有时候在定制WORDPRESS主题的时候,由于菜单样式的要求我...
很多朋友在做wordpree主题制作的时候会经常遇到一个问题,那...
wordpress后台的模块很多,但并不是每个都经常用到。介绍几段...
从WordPress4.2版本开始,如果我们在MYSQL5.1版本数据中导出...
很多网友会遇到这样一个问题,就是WordPress网站上传图片、附...
对于经常要在文章中出现代码的IT相关博客,安装一个代码高亮...