You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
577 B
26 lines
577 B
<?php
|
|
|
|
use XTS\Metaboxes;
|
|
|
|
if ( ! defined( 'WOODMART_THEME_DIR' ) ) {
|
|
exit( 'No direct script access allowed' );
|
|
}
|
|
|
|
if ( ! function_exists( 'woodmart_wp_is_mobile' ) ) {
|
|
/**
|
|
* Filter page content.
|
|
*
|
|
* @param boolean $is_mobile Is mobile.
|
|
*
|
|
* @return string|void
|
|
*/
|
|
function woodmart_wp_is_mobile( $is_mobile ) {
|
|
if ( isset( $_SERVER['HTTP_USER_AGENT'] ) && strpos( $_SERVER['HTTP_USER_AGENT'], 'iPad' ) ) { // phpcs:ignore
|
|
$is_mobile = false;
|
|
}
|
|
|
|
return $is_mobile;
|
|
}
|
|
|
|
add_filter( 'wp_is_mobile', 'woodmart_wp_is_mobile' );
|
|
}
|
|
|