反之 wp_enqueue_style讓我們加入樣式檔。
你可以寫法functions.php做全域的載入或至到外掛模組與佈景主題裡面做客製化的載入唷
範例
以下範例教你怎麼加入bootstrap框架function reg_scripts() {
wp_enqueue_style( 'bootstrapstyle', get_template_directory_uri() . '/css/bootstrap.min.css' );
wp_enqueue_style( 'bootstrapthemestyle', get_template_directory_uri() . '/css/bootstrap-theme.min.css' );
wp_enqueue_script( 'bootstrap-script', get_template_directory_uri() . '/js/bootstrap.min.js', array(), true );
}
add_action('wp_enqueue_scripts', 'reg_scripts');
參考
- https://digwp.com/2009/06/including-jquery-in-wordpress-the-right-way/
- http://stackoverflow.com/questions/26583978/how-to-load-bootstrap-script-and-style-in-functions-php-wordpress
- https://codex.wordpress.org/zh-cn:%E5%87%BD%E6%95%B0%E5%8F%82%E8%80%83/wp_enqueue_script
沒有留言:
張貼留言
留個話吧:)