Skip to content

Instantly share code, notes, and snippets.

@lifoolgh
Created October 29, 2017 16:40
Show Gist options
  • Save lifoolgh/9d78ecd6dfae6b7c14658d8b3ae96f32 to your computer and use it in GitHub Desktop.
Save lifoolgh/9d78ecd6dfae6b7c14658d8b3ae96f32 to your computer and use it in GitHub Desktop.
子テーマ用functions.php
<?php
add_action( 'wp_enqueue_scripts', 'theme_enqueue_styles' );
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'));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment