Skip to content

Instantly share code, notes, and snippets.

@Olein-jp
Created June 8, 2018 01:58
Show Gist options
  • Save Olein-jp/37bf98e4dc4f8b2260967e15b106e462 to your computer and use it in GitHub Desktop.
Save Olein-jp/37bf98e4dc4f8b2260967e15b106e462 to your computer and use it in GitHub Desktop.
子テーマから親テーマのCSSを呼び出す
add_action( 'wp_enqueue_scripts', 'theme_enqueue_styles' );
function theme_enqueue_styles() {
wp_enqueue_style( 'parent-style', get_template_directory_uri() . '/style.css' );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment