添加子.css后,WP媒体库无法加载

时间:2016-04-15 15:47:48

标签: php html wordpress

在我把这个放在我的孩子主题的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文件工作正常。

有什么想法吗?

1 个答案:

答案 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 );