Child theme with more than 2 stylesheets
-
Hi everybody,
For the previous version (1.6.3), I had configured my child theme in function.php as you can see below and it worked fine.
Now that there are 2 stylesheets, I would like to know how to add the responsive.css to this.I hope someone can help me.
Thank you in advance!<?php add_action( 'wp_enqueue_scripts', 'theme_enqueue_styles' ); function theme_enqueue_styles() { wp_enqueue_style( 'parent-style', get_template_directory_uri() . '/style.css' ); } /* To modify the superfish-menu */ function child_scripts_styles() { wp_enqueue_style( 'superfish-menu', get_stylesheet_directory_uri() . '/lib/scripts/superfish-menu/css/superfish.css' ); } add_action( 'wp_enqueue_scripts', 'child_scripts_styles' ); ?>
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘Child theme with more than 2 stylesheets’ is closed to new replies.