How/where to add additional stylesheet to WP
The WordPress API provides the functions wp_enqueue_style() and wp_enqueue_script() for including stylesheets and JavaScript. These functions should be used instead of hardcoding style or script tags within HTML. // Runs wpse_enqueue_styles() on the wp_enqueue_scripts() hook. // (Yes, we’re enqueuing a stylesheet here, but the proper hook is wp_enqueue_scripts. add_action( ‘wp_enqueue_scripts’, ‘wpse_enqueue_styles’ ); function wpse_enqueue_styles() { … Read more