PluginProbe ʕ •ᴥ•ʔ
Modern Image Formats / 1.0.5
Modern Image Formats v1.0.5
2.7.0 trunk 1.0.0 1.0.1 1.0.2 1.0.3 1.0.4 1.0.5 1.1.0 1.1.1 2.0.0 2.0.1 2.0.2 2.1.0 2.2.0 2.3.0 2.4.0 2.5.0 2.5.1 2.6.0 2.6.1
webp-uploads / can-load.php
webp-uploads Last commit date
.wordpress-org 2 years ago .gitattributes 2 years ago can-load.php 2 years ago fallback.js 3 years ago helper.php 2 years ago hooks.php 2 years ago image-edit.php 2 years ago load.php 2 years ago readme.txt 2 years ago rest-api.php 2 years ago settings.php 2 years ago
can-load.php
16 lines
1 <?php
2 /**
3 * Can load function to determine if WebP Uploads module is already merged in WordPress core.
4 *
5 * @since 1.3.0
6 * @package webp-uploads
7 */
8
9 if ( ! defined( 'ABSPATH' ) ) {
10 exit; // Exit if accessed directly.
11 }
12
13 return static function () {
14 return ! function_exists( 'wp_image_use_alternate_mime_types' );
15 };
16