functions.php child theme twentyeleven linux07
This commit is contained in:
parent
1033bda2a1
commit
60cb62ce13
1 changed files with 8 additions and 0 deletions
8
functions.php
Normal file
8
functions.php
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
<?php
|
||||||
|
/* enqueue script for parent theme stylesheeet */
|
||||||
|
function childtheme_parent_styles() {
|
||||||
|
|
||||||
|
// enqueue style
|
||||||
|
wp_enqueue_style( 'parent', get_template_directory_uri().'/style.css' );
|
||||||
|
}
|
||||||
|
add_action( 'wp_enqueue_scripts', 'childtheme_parent_styles');
|
Loading…
Reference in a new issue