WP队列样式正确


WP enqueue style correctly?

好吧,所以我正在研究我的第一个wordpress主题,并查看其他人的代码以寻求帮助,我在header.php中发现了一些让我非常困惑的东西。我的问题是,为什么在注册style.css之前要注销它?这是最好的做法还是什么。

<?php
wp_deregister_style( 'style-css' ); /* Why? */
wp_register_style( 'style-css', get_stylesheet_uri() );
wp_enqueue_style( 'style-css' );
?>

那么,在注册和查询某个样式之前注销该样式是最佳做法吗?

多亏了Skatox,这只是糟糕的代码练习。应为:

<?php
wp_register_style( 'style-css', get_stylesheet_uri() );
wp_enqueue_style( 'style-css' );
?>

取消注册应该只用于插件和子主题,而不是主题本身!