0
WordPressの子テーマでテンプレートを作成し、Bootstrap v3.0.3 .jsファイルへのリンクも含まれています。このファイルも自分のサイトでホストされています。Wordpressの子テーマテンプレートが外部のjquery/javascript関数と連携しない
ポップアップモーダルはうまくいきますが、jqueryタブはうまくいきません。 http://pastebin.com/JdikDe0W
WordPressの子テーマでテンプレートを作成し、Bootstrap v3.0.3 .jsファイルへのリンクも含まれています。このファイルも自分のサイトでホストされています。Wordpressの子テーマテンプレートが外部のjquery/javascript関数と連携しない
ポップアップモーダルはうまくいきますが、jqueryタブはうまくいきません。 http://pastebin.com/JdikDe0W
はあなたのようなファイルをロードしようとすることはできます:彼らは、私はこちらのページからの完全なコードを貼り付けている
を変更していないタブをナビゲートするとき彼らは、しかし、(bootstrap.cssを使用して)表示されます
この?
function theme_enqueue_styles() {
wp_enqueue_style('parent-style', get_template_directory_uri() . '/style.css');
wp_enqueue_style('child-style', get_stylesheet_directory_uri() . '/style.css', array($parent_style));
}
add_action('wp_enqueue_scripts', 'theme_enqueue_styles');
function wpdocs_theme_name_scripts() {
wp_enqueue_style('style-name', get_stylesheet_uri());
wp_enqueue_script('script-name', get_template_directory_uri() . '/js/vanja-script.js', array(), '1.0.0', true);
}
add_action('wp_enqueue_scripts', 'wpdocs_theme_name_scripts');
これらは、外観セクションのfunctions.php内に配置します。ここにスクリーンショットがあります:http://screencast.com/t/Krzc1wf7Yそして、適切なフォルダにファイルを置きます。
複数のファイルを追加するにはどうすればよいですか? – charlie
関数wpdocs_theme_name_scripts(){ wp_enqueue_script( 'スクリプト名'、get_template_directory_uri()。 '/js/vanja-script.js'、array()、 '1.0.0'、true); \t wp_enqueue_style( 'child-style2'、get_stylesheet_directory_uri()。 '/style2.css'); } – Vcasso
どのように私は私のすべての5つのファイルを含めるでしょうか。 3 .jsと2.css? – charlie