- WordPress 6.9.4 (es_ES) with Kadence theme - Homepage: Hero, La Asociación, Pilares, Beneficios, Eventos, Miembros, Hazte Miembro, Contacto - Brand identity: #13294b navy, #a12932 burgundy, #c69c48 gold - Fonts: Raleway (headings) + Source Sans 3 (body) + Lato (UI) - Plugins: Kadence Blocks, Polylang, Contact Form 7 - Custom CSS with full brand styling and responsive layout - HTTPS enforced via wp-config.php proxy detection
21 lines
526 B
PHP
21 lines
526 B
PHP
<?php declare( strict_types=1 );
|
|
|
|
namespace KadenceWP\KadenceBlocks\Traits;
|
|
|
|
use KadenceWP\KadenceBlocks\Optimizer\Optimizer_Provider;
|
|
|
|
trait Viewport_Trait {
|
|
|
|
/**
|
|
* Check if a mobile device is viewing this URL.
|
|
*
|
|
* @see Optimizer_Provider::register_mobile_override()
|
|
*
|
|
* @return bool
|
|
*/
|
|
private function is_mobile(): bool {
|
|
// phpcs:ignore WordPressVIPMinimum.Functions.RestrictedFunctions.wp_is_mobile_wp_is_mobile
|
|
return function_exists( 'jetpack_is_mobile' ) ? jetpack_is_mobile() : wp_is_mobile();
|
|
}
|
|
}
|