PluginProbe ʕ •ᴥ•ʔ
Modern Image Formats / 1.0.1
Modern Image Formats v1.0.1
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
can-load.php 2 years ago fallback.js 3 years ago helper.php 3 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 3 years ago settings.php 3 years ago
can-load.php
12 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 return static function() {
10 return ! function_exists( 'wp_image_use_alternate_mime_types' );
11 };
12