webp-converter-for-media
Last commit date
assets
2 weeks ago
includes
2 weeks ago
src
2 weeks ago
templates
2 weeks ago
vendor
2 weeks ago
vendor_prefixed
2 weeks ago
changelog.txt
2 weeks ago
readme.txt
2 weeks ago
webp-converter-for-media.php
2 weeks 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.6.0 |
| 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.6.0' ) |
| 22 | ); |
| 23 |