我想删除默认加载到214主题中的genericons css样式。
<link rel=\'stylesheet\' id=\'genericons-css\' href=\'http://ffwdconsulting.com/wp/wp-content/themes/twentyfourteen/genericons/genericons.css?ver=3.0.2\' type=\'text/css\' media=\'all\' />
我跟着How to remove CSS file in the header using Wordpress functions? 使用此代码:function dequeue_my_css() {
wp_dequeue_style(\'genericons-css\');
wp_deregister_style(\'genericons-css\');
}
add_action(\'wp_enqueue_scripts\',\'dequeue_my_css\');
但不起作用。指向css的链接仍然显示在标题中。