Creating a Child Theme
-
I am trying to create a child theme following these directions.
Health Center Lite functions.php does not use a call to wp_enqueue_style() as the WP documentation states. When I use the generic function
add_action( 'wp_enqueue_scripts', 'enqueue_parent_styles' ); function enqueue_parent_styles() { wp_enqueue_style( 'parent-style', get_template_directory_uri().'/style.css' ); }
in the child theme’s functions.php some of the styles from my child theme are applied while others are not.
What am I missing?
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘Creating a Child Theme’ is closed to new replies.