- WP Super Cache enabled (PHP mode, gzip, Nginx compatible) - Autoptimize: CSS/HTML minification + deferred JS + Google Fonts optimization - Cookie Notice: GDPR/LOPD banner styled with brand colors (navy/burgundy/gold) - Legal pages: Aviso Legal, Política de Privacidad, Política de Cookies (ES) - MU-plugin: custom footer with legal links + Cloud Host credit - Footer: copyright, legal nav, Hosted & Maintained by Cloud Host (cloudhost.es) - Security: X-Frame-Options, X-Content-Type, Referrer-Policy headers - Security: XML-RPC disabled, REST user enumeration blocked - Performance: emoji scripts removed, post revisions limited to 3
40 lines
1.2 KiB
PHP
40 lines
1.2 KiB
PHP
<?php
|
|
/**
|
|
* Utility functions for device detection.
|
|
*
|
|
* Since WPSC doesn't use an autoloader or composer, this is a simple copy/paste of the package
|
|
* as of November 11, 2025.
|
|
*
|
|
* @package automattic/jetpack-device-detection
|
|
*/
|
|
|
|
namespace Automattic\WPSC\Device_Detection;
|
|
|
|
// Check if the function is already defined, in case someone bypassed the autoloader or something
|
|
// to get the two classes from different copies of the package.
|
|
if ( ! function_exists( __NAMESPACE__ . '\\wp_unslash' ) ) {
|
|
|
|
/**
|
|
* A wrapper for WordPress's `wp_unslash()`.
|
|
*
|
|
* Even though PHP itself dropped the option to add slashes to superglobals a decade ago,
|
|
* WordPress still does it through some misguided extreme backwards compatibility. 🙄
|
|
*
|
|
* If WordPress's function exists, assume it needs to be called.
|
|
* Else if on WordPress.com, do a simplified version because we're running really early.
|
|
* Else, assume it's not needed.
|
|
*
|
|
* @param string $value String of data to unslash.
|
|
* @return string Possibly unslashed $value.
|
|
*/
|
|
function wp_unslash( $value ) {
|
|
if ( function_exists( '\\wp_unslash' ) ) {
|
|
return \wp_unslash( $value );
|
|
} elseif ( defined( 'IS_WPCOM' ) && IS_WPCOM ) {
|
|
return stripslashes( $value );
|
|
} else {
|
|
return $value;
|
|
}
|
|
}
|
|
}
|