| Server IP : 14.225.204.176 / Your IP : 216.73.216.6 Web Server : nginx/1.24.0 System : Linux nodejs-ybgk 6.8.0-40-generic #40-Ubuntu SMP PREEMPT_DYNAMIC Fri Jul 5 10:34:03 UTC 2024 x86_64 User : root ( 0) PHP Version : 8.1.34 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /var/www/html/php/zinisoft.net/wp-content/plugins/jetpack/modules/theme-tools/ |
Upload File : |
<?php
/**
* Loads the devicepx library which improves the resolution of gravatars and
* wordpress.com uploads on hi-res and zoomed browsers.
*
* This feature will only be activated for themes that declare their support.
* This can be done by adding code similar to the following during the
* 'after_setup_theme' action:
*
* add_theme_support( 'jetpack-devicepx' );
*
* @package automattic/jetpack
*/
/**
* Enqueue the devicepx JS library, if enabled. The feature must
* be enabled earlier during `after_setup_theme`.
*
* @uses current_theme_supports, add_action
*/
function jetpack_devicepx_init() {
if ( current_theme_supports( 'jetpack-devicepx' ) ) {
add_action( 'wp_enqueue_scripts', 'jetpack_devicepx_enqueue' );
add_action( 'customize_controls_enqueue_scripts', 'jetpack_devicepx_enqueue' );
add_action( 'admin_enqueue_scripts', 'jetpack_devicepx_enqueue' );
}
}
// Use a late priority to ensure that plugins and themes can enable or disable this feature.
add_action( 'init', 'jetpack_devicepx_init', 99 );
/**
* Enqueue the devicepx JS library.
*
* @uses wp_enqueue_script
*/
function jetpack_devicepx_enqueue() {
wp_enqueue_script( 'devicepx', 'https://s0.wp.com/wp-content/js/devicepx-jetpack.js', array(), gmdate( 'oW' ), true );
}