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 |