webp-converter-for-media
Last commit date
assets
3 years ago
includes
3 years ago
src
3 years ago
templates
3 years ago
vendor
3 years ago
vendor_prefixed
3 years ago
changelog.txt
3 years ago
readme.txt
3 years ago
webp-converter-for-media.php
3 years ago
webp-converter-for-media.php
18 lines
| 1 | <?php |
| 2 | |
| 3 | /** |
| 4 | * Plugin Name: Converter for Media |
| 5 | * Description: Speed up your website by using our WebP & AVIF Converter (formerly WebP Converter for Media). Serve WebP and AVIF images instead of standard formats JPEG, PNG and GIF just now! |
| 6 | * Version: 5.8.1 |
| 7 | * Author: matt plugins |
| 8 | * Author URI: https://url.mattplugins.com/converter-plugin-author-link |
| 9 | * Text Domain: webp-converter-for-media |
| 10 | * Network: true |
| 11 | */ |
| 12 | |
| 13 | require_once __DIR__ . '/vendor/autoload.php'; |
| 14 | |
| 15 | new WebpConverter\WebpConverter( |
| 16 | new WebpConverter\PluginInfo( __FILE__, '5.8.1' ) |
| 17 | ); |
| 18 |