我正在構建我的第一個WordPress主題,並且我堅持在網站上添加JavaScript。WordPress,添加自定義JS和Foundation js
我嘗試了幾種不同的方法將它直接添加到headhard hardcoaded和功能,但它的接縫我無法讓它工作。
下面是從的functions.php
<?php
function _sf_scripts() {
wp_enqueue_script('foundation-js', get_template_directory_uri().'
/js /foundation.min.js', array('jquery'), false, true);
wp_enqueue_script('foundation-init', get_template_directory_uri().'/js/foundation-orbit.js', array(), false, true);
wp_enqueue_script('menu-effect', get_template_directory_uri() . '/js/menu.js',
array(), '1.0.0', true);
}
add_action('wp_enqueue_scripts', '_sf_scripts');
?>
線如果有人能幫助我在這裏,我真的很感激,謝謝你!
頁眉PHP
<head>
<meta charset="<?php bloginfo('charset'); ?>">
<meta name="viewport" content="width=device-width">
<title><?php wp_title('|', true, 'right'); ?><?php bloginfo('name');?></title>
<meta name="description" content="<?php bloginfo('description');?>">
<link rel="stylesheet" href="<?php bloginfo('stylesheet_url');?>" />
<link href='http://fonts.googleapis.com/css?family=Open+Sans' rel='stylesheet' type='text/css'>
<link href='http://fonts.googleapis.com/css?family=Droid+Serif' rel='stylesheet' type='text/css'>
<?php wp_head();?>
</head>
有可能是在你的主題添加額外的JS文件..採取通過管理頁面一個很好看的選項。 – brdu