Child theme approach
-
Hi, I found it quite difficult to create a child theme, but do have a working version by adding the following to my child theme’s function.php file.
function theme_styles() { wp_enqueue_style( 'child-theme-styles', get_stylesheet_uri() ); } add_action('wp_enqueue_scripts', 'theme_styles', 99);
I’m not sure if this is the proper way to do it, but thought it would be helpful to include in the documentation.
If there is a better way to go about this please advise.
Thanks,
John
The page I need help with: [log in to see the link]
Viewing 4 replies - 1 through 4 (of 4 total)
Viewing 4 replies - 1 through 4 (of 4 total)
- The topic ‘Child theme approach’ is closed to new replies.