LPのheader.phpに以下の記載がありました。
一般的にこれはどう言ったCSSの出しわけをしていることが多いのでしょうか?
array("lp","lp2")
こちらがよくわかりません。
どこで定義してそうでしょうか。
ざっくりしてますが、何のためにしているのかが気になります。
php
1<?php if(is_page( array("lp","lp2"))) { ?> 2<link href="<?php bloginfo('template_url'); ?>/lp/common.css" rel="stylesheet" type="text/css" media="screen and (min-width: 1080px)"/> 3<link href="<?php bloginfo('template_url'); ?>/lp/tablet.css" rel="stylesheet" type="text/css" media="screen and (min-width: 767px) and (max-width: 1080px)"/> 4<link href="<?php bloginfo('template_url'); ?>/lp/sp.css" rel="stylesheet" type="text/css" media="screen and (max-width: 767px)" /> 5<?php } else { ?> 6<link href="<?php bloginfo('template_url'); ?>/css/common.css" rel="stylesheet" type="text/css" media="screen and (min-width: 1080px)"/> 7<link href="<?php bloginfo('template_url'); ?>/css/tablet.css" rel="stylesheet" type="text/css" media="screen and (min-width: 767px) and (max-width: 1080px)"/> 8<link href="<?php bloginfo('template_url'); ?>/css/sp.css" rel="stylesheet" type="text/css" media="screen and (max-width: 767px)" /> 9<?php } ?>
私の認識では
・PC用
・タブレット用
・SP用
の3パターンの出しわけで事足りると思っていたのですが、何故6パターンなのでしょうか?
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/03/30 11:58
2020/03/30 12:00
2020/03/30 12:06
2020/03/30 12:22