1
樣式表我用媒體查詢在我的HTML,如果需要加載一個新的樣式表的網格。我可以翻譯這個在我的functions.php中工作嗎?WordPress的wp_enqueue與媒體查詢
wp_register_style('html5blank', get_template_directory_uri() . '/style.css', array(), '1.0', 'all');
wp_enqueue_style('html5blank'); // Enqueue it!
<link rel="stylesheet" href="<?php bloginfo('stylesheet_directory'); ?>/1140.css" type="text/css" media="all and (min-width: 1200px)" />
這比我想象的要簡單得多。非常感謝 – 2ne