added in melville_theme_styles function to enqueue the styles, removing an issue where they were affecting admin

This commit is contained in:
Jacob Haddon 2020-03-27 15:28:15 -04:00
parent 7705fa81c7
commit c03acb52aa

View File

@ -5,7 +5,11 @@
// enqueue styles
wp_enqueue_style( 'style', get_stylesheet_uri() );
function melville_theme_styles(){
wp_enqueue_style( 'style', get_stylesheet_uri() );
}
add_action( 'wp_enqueue_scripts', 'melville_theme_styles' );
//include 'plugins/drop-caps/wp_drop_caps.php';
if (!function_exists('arl_kottke_archives')) {