admin管理员组

文章数量:1316532

<?php

function load_stylesheets(){
wp_register_style('sj', get_template_directory_uri() . "/sj.css", array(), 1.0, 'all');

wp_enqueue_style('sj');
}

add_action('wp_enqueue_scripts', 'load_stylesheets');

?>

my custom css which is named sj.css is not being loaded, why? This is located in my function.php file.`

本文标签: customizationwhy won39t my custom css load with the enqueue method or any other method