Đây ạk , m.n xem giùm
--------
<?php get_header(); ?>
<?php require_once 'get/Mobile_Detect.php';
$detect = new Mobile_Detect; ?>
<?php if(have_posts()) : ?>
<div class="tmenu">Cập nhật mới</div>
<?php if ( $detect->isMobile() ) { ?>
<?php while(have_posts()) : the_post(); ?>
<?php include('get/item.php');?>
<?php endwhile; ?>
<?php } else { ?>
<?php while(have_posts()) : the_post(); ?>
<?php include('get/pcitem.php');?>
<?php endwhile; ?>
<?php } ?>
<?php if (function_exists('wp_pagenavi')) wp_pagenavi(); ?>
<?php endif; ?>
<?php get_footer(); ?>
--------
--------
<?php get_header(); ?>
<?php require_once 'get/Mobile_Detect.php';
$detect = new Mobile_Detect; ?>
<?php if(have_posts()) : ?>
<div class="tmenu">Cập nhật mới</div>
<?php if ( $detect->isMobile() ) { ?>
<?php while(have_posts()) : the_post(); ?>
<?php include('get/item.php');?>
<?php endwhile; ?>
<?php } else { ?>
<?php while(have_posts()) : the_post(); ?>
<?php include('get/pcitem.php');?>
<?php endwhile; ?>
<?php } ?>
<?php if (function_exists('wp_pagenavi')) wp_pagenavi(); ?>
<?php endif; ?>
<?php get_footer(); ?>
--------