這是functions.php文件編輯CSS媒體查詢在WordPress的
function javascript_file(){
//this is the second style sheet for media query in wordpress
wp_enqueue_style('container-css', get_stylesheet_directory_uri() . '/container.css',array(),null, 'only screen and (max-width:650px)');
wp_enqueue_style('container-css');
}
//applying action on this function
add_action('init','javascript_file');
在此,我將在WordPress的媒體查詢代碼的一部分, 的代碼在開發工具運作良好在瀏覽器中,但 當我把服務器的代碼開始搞亂了, 換句話說沒有用。
我選擇的尺寸是4英寸以上的屏幕。
我們需要一些細節......實際問題是什麼? CSS沒有加載...? – Random
css不加載意味着 –
有兩個文件,我做了加載CSS在不同的設備1> style.css的桌面2> container.css的移動。當m上傳主題的服務器style.css的代碼運行良好,但container.css將會失敗。換句話說不能加載 –