以特定分辨率显示帖子

时间:2016-11-07 18:35:20

标签: php wordpress screen-resolution

我正在运行一个壁纸网站。我有不同分辨率的图像。我想用访问者的屏幕分辨率更改壁纸。就像有人通过手机访问一样,他只能看到手机的壁纸,或者如果有人通过笔记本电脑访问,那么它会检测屏幕并仅显示与他的屏幕相关的那些壁纸。 我试过以下代码,

<?php

if(!isset($_GET['screen_check']))
{
 echo "<script language='JavaScript'>
 document.location=\"$PHP_SELF?screen_check=done&Width=\"+screen.width+\+screen.height;
 </script>";
}
else 
{    
   if(isset($_GET['Width']>1024)) {
 function get_categories( $args = '' ) {
$defaults = array( 'taxonomy' => 'laptop' );
$args = wp_parse_args( $args, $defaults );

$taxonomy = $args['taxonomy'];
   if(($_GET['Width']>768)) {
 function get_categories( $args = '' ) {
$defaults = array( 'taxonomy' => 'ipad' );
$args = wp_parse_args( $args, $defaults );

$taxonomy = $args['taxonomy'];
 }
 else {
 function get_categories( $args = '' ) {
$defaults = array( 'taxonomy' => 'mobile' );
$args = wp_parse_args( $args, $defaults );

$taxonomy = $args['taxonomy'];;
 }
     }
}
?> 

任何帮助都会非常感激。 感谢

0 个答案:

没有答案