子テーマのcssを読み込む WordPress

WordPressで子テーマ(Child Theme)を作っている際、独自のCSSを読み込みたい時があります。

その場合は

 

function my_theme_setup() {

wp_enqueue_style(‘my_css’, get_stylesheet_directory_uri() . ‘/assets/css/app.css’, false, ‘1.0’, ‘screen, projection’);
}

add_action( ‘after_setup_theme’, ‘my_theme_setup’ );

 

としてafter_setup_themeアクションの中で呼び出せば、head内にリンクを出力してくれます。

自分用メモでした。