在我把这个放在我的孩子主题的functions.php之后,wordpress媒体库不会加载任何内容:
function custom_manage_styles_and_scripts() {
wp_register_style( 'custom-style', get_stylesheet_directory_uri() . '/css/custom-style.css', false, '1.0.0' );
wp_enqueue_style( 'custom-style' );
}
add_action( 'wp_enqueue_scripts', 'custom_manage_styles_and_scripts', 99 );
?>
子.css文件工作正常。
有什么想法吗?
答案 0 :(得分:0)
如果你只排队风格会怎么样?像这样:
function custom_manage_styles_and_scripts() {
wp_enqueue_style( 'custom-style', get_stylesheet_directory_uri() . '/css/custom-style.css', false, '1.0.0' );
}
add_action( 'wp_enqueue_scripts', 'custom_manage_styles_and_scripts', 99 );