mirror of
https://gh.wpcy.net/https://github.com/wp-cli/scaffold-command.git
synced 2026-04-29 23:01:24 +08:00
12 lines
420 B
Text
12 lines
420 B
Text
<?php
|
|
|
|
add_action( 'wp_enqueue_scripts', '{{parent_theme_function_safe}}_parent_theme_enqueue_styles' );
|
|
|
|
function {{parent_theme_function_safe}}_parent_theme_enqueue_styles() {
|
|
wp_enqueue_style( '{{parent_theme}}-style', get_template_directory_uri() . '/style.css' );
|
|
wp_enqueue_style( '{{slug}}-style',
|
|
get_stylesheet_directory_uri() . '/style.css',
|
|
array( '{{parent_theme}}-style' )
|
|
);
|
|
|
|
}
|