2016-08-17 10 views

答えて

1

はあなたのようなファイルをロードしようとすることはできます:彼らは、私はこちらのページからの完全なコードを貼り付けている

を変更していないタブをナビゲートするとき彼らは、しかし、(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そして、適切なフォルダにファイルを置きます。

+0

複数のファイルを追加するにはどうすればよいですか? – charlie

+0

関数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

+0

どのように私は私のすべての5つのファイルを含めるでしょうか。 3 .jsと2.css? – charlie

関連する問題