2013-10-11 69 views
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)" /> 

回答

3

wp_enqueue_style()在WordPress的食品,特別是最後一個參數具有與CSS媒體做。

wp_enqueue_style('html5blank', false, array(), false, 'all and (min-width: 1200px)'); 
+0

這比我想象的要簡單得多。非常感謝 – 2ne