Importing color stylesheet
Hi Dimitris,
I just saw this
thread and have a follow-up question. Using your code below, how can we also import the color stylesheet @import url("../vantage/styles/blue.css");
---
<?php
add_action( 'wp_enqueue_scripts', 'theme_enqueue_styles' );
function theme_enqueue_styles() {
wp_enqueue_style( 'parent-style', get_template_directory_uri() . '/style.css' );
wp_enqueue_style( 'child-style',
get_stylesheet_directory_uri() . '/style.css',
array('parent-style')
);
}