webp-converter-for-media
Last commit date
assets
2 years ago
includes
2 years ago
src
2 years ago
templates
2 years ago
vendor
2 years ago
vendor_prefixed
2 years ago
changelog.txt
2 years ago
readme.txt
2 years ago
webp-converter-for-media.php
2 years ago
webp-converter-for-media.php
22 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 now! |
| 6 | * Version: 5.12.4 |
| 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 | if ( ! defined( 'ABSPATH' ) ) { |
| 14 | exit; |
| 15 | } |
| 16 | |
| 17 | require_once __DIR__ . '/vendor/autoload.php'; |
| 18 | |
| 19 | new WebpConverter\WebpConverter( |
| 20 | new WebpConverter\PluginInfo( __FILE__, '5.12.4' ) |
| 21 | ); |
| 22 |