【发布时间】:2021-03-11 18:51:54
【问题描述】:
我想知道如何以正确的方式将 Bootstrap 集成到这个 Boilerplate 中。
这里有一些来自 public/Class-public.php 的代码
/**
* Register the JavaScript for the public-facing side of the site.
*
* @since 1.0.0
*/
public function enqueue_scripts() {
/**
* This function is provided for demonstration purposes only.
*
* An instance of this class should be passed to the run() function
* defined in Price_Hubble_Loader as all of the hooks are defined
* in that particular class.
*
* The Price_Hubble_Loader will then create the relationship
* between the defined hooks and the functions defined in this
* class.
*/
wp_enqueue_script( $this->plugin_name, plugin_dir_url( __FILE__ ) . 'js/pricepublic.js', array( 'jquery' ), $this->version, false );
}
【问题讨论】:
标签: wordpress twitter-bootstrap boilerplate