我將bootstrap主題轉換爲wordpress。現在,我在加載引導腳本和樣式時遇到了問題。 這是我的functions.php如何在functions.php(wordpress)中加載引導腳本和樣式?
function wpbootstrap_scripts_with_jquery()
{
// Register the script like this for a theme:
wp_register_script('custom-script', get_template_directory_uri() . '/js/bootstrap.js', array('jquery'));
wp_enqueue_script('samplejs', get_template_directory_uri() . '/js/jquery.min.js', array(''));
wp_enqueue_script('samplejs', get_template_directory_uri() . '/js/clean-blog.min.js', array(''));
// For either a plugin or a theme, you can then enqueue the script:
wp_enqueue_script('custom-script');
}
add_action('wp_enqueue_scripts', 'wpbootstrap_scripts_with_jquery');
代碼,我加入這在我的頭
<?php wp_enqueue_script("jquery"); ?>
其他問題: 是什麼wp_register和wp_enqueue之間的區別? 請幫幫我。 Im初學者使用bootstrap。
非常感謝你@rnevius :)怎麼樣的風格? – akselrows 2014-10-27 09:02:58
我用更多的解釋編輯了我的答案。對於enqueueing樣式,可以使用'wp_enqueue_style'在相同的函數中以相同的方式包含它們。 – rnevius 2014-10-27 09:04:04
嗯。我嘗試了代碼,但效果仍然不起作用 – akselrows 2014-10-27 09:06:30