PluginProbe ʕ •ᴥ•ʔ
Converter for Media – Optimize images | Convert WebP & AVIF / 6.5.2
Converter for Media – Optimize images | Convert WebP & AVIF v6.5.2
6.6.1 6.6.0 trunk 1.0.0 1.0.1 1.0.2 1.0.3 1.0.4 1.0.5 1.0.6 1.0.7 1.0.8 1.0.9 1.1.0 1.1.1 1.1.2 1.2.0 1.2.1 1.2.2 1.2.3 1.2.4 1.2.5 1.2.6 1.2.7 1.3.0 1.3.1 1.4.0 1.4.1 1.4.2 1.4.3 1.4.4 1.4.5 1.4.6 1.5.0 1.5.1 1.6.0 2.0.0 2.0.1 2.1.0 2.1.1 2.1.2 2.1.3 2.2.0 2.3.0 2.4.0 3.0.0 3.0.1 3.0.3 3.0.4 3.0.5 3.0.6 3.0.7 3.0.8 3.1.0 3.1.1 3.2.0 3.2.1 3.2.2 3.2.3 3.2.4 4.0.0 4.0.1 4.0.2 4.0.3 4.0.4 4.0.5 4.1.0 4.1.1 4.1.2 4.2.0 4.2.1 4.2.2 4.2.3 4.2.4 4.3.0 4.3.1 4.3.2 4.3.3 4.3.4 4.3.5 4.3.6 4.4.0 4.4.1 4.5.0 4.5.1 5.0.0 5.0.1 5.1.0 5.10.0 5.10.1 5.11.0 5.11.1 5.11.2 5.11.3 5.11.4 5.11.5 5.12.0 5.12.1 5.12.2 5.12.3 5.12.4 5.12.5 5.13.0 5.13.1 5.2.0 5.2.1 5.2.2 5.2.3 5.2.4 5.3.0 5.3.1 5.4.0 5.4.1 5.4.2 5.5.0 5.5.1 5.6.0 5.6.1 5.6.2 5.6.3 5.6.4 5.7.0 5.7.1 5.8.0 5.8.1 5.8.2 5.8.3 5.8.4 5.8.5 5.8.6 5.9.0 5.9.1 5.9.2 5.9.3 5.9.4 5.9.5 5.9.6 6.0.0 6.1.0 6.1.1 6.1.2 6.1.3 6.2.0 6.2.1 6.2.2 6.2.3 6.2.4 6.3.0 6.3.1 6.3.2 6.4.0 6.5.0 6.5.2 6.5.3 6.5.4 6.5.5 6.5.6
webp-converter-for-media / webp-converter-for-media.php
webp-converter-for-media Last commit date
assets 5 months ago includes 5 months ago src 5 months ago templates 5 months ago vendor 5 months ago vendor_prefixed 5 months ago changelog.txt 5 months ago readme.txt 5 months ago webp-converter-for-media.php 5 months ago
webp-converter-for-media.php
23 lines
1 <?php
2
3 /**
4 * Plugin Name: Converter for Media
5 * Plugin URI: https://mattplugins.com/products/webp-converter-for-media-pro
6 * Description: Speed up your website by using our WebP & AVIF Converter. Optimize images and serve WebP and AVIF images instead of standard formats!
7 * Version: 6.5.2
8 * Author: matt plugins
9 * Author URI: https://url.mattplugins.com/converter-plugin-author-link
10 * Text Domain: webp-converter-for-media
11 * Network: true
12 */
13
14 if ( ! defined( 'ABSPATH' ) ) {
15 exit;
16 }
17
18 require_once __DIR__ . '/vendor/autoload.php';
19
20 new WebpConverter\WebpConverter(
21 new WebpConverter\PluginInfo( __FILE__, '6.5.2' )
22 );
23