如何实现引导在WordPress插件样板正确?https://wppb.me/



我想知道如何将Bootstrap以正确的方式集成到这个样板中。

下面是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 );

}

您可以使用相同的wp_enqueue_script()函数并添加第一个参数作为处理程序,第二个参数作为这里的路径,我使用CDN路径为例。

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 Test_Loader as all of the hooks are defined
* in that particular class.
*
* The Test_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/test-public.js', array( 'jquery' ), $this->version, false );
wp_enqueue_script( 'bootstrap-js', 'https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js', array( 'jquery' ), '4.5.2', false );
}

最新更新