webp-converter-for-media
Last commit date
app
6 years ago
public
6 years ago
resources
6 years ago
vendor
6 years ago
.gitignore
6 years ago
composer.json
6 years ago
package-lock.json
6 years ago
package.json
6 years ago
readme.txt
6 years ago
webp-converter-for-media.php
6 years ago
webpack.mix.js
6 years ago
webp-converter-for-media.php
19 lines
| 1 | <?php |
| 2 | |
| 3 | /* |
| 4 | Plugin Name: WebP Converter for Media |
| 5 | Description: Speed up your website by serving WebP images instead of standard formats JPEG, PNG and GIF. |
| 6 | Version: 1.2.0 |
| 7 | Author: Mateusz Gbiorczyk |
| 8 | Author URI: https://gbiorczyk.pl/ |
| 9 | Text Domain: webp-converter |
| 10 | */ |
| 11 | |
| 12 | define('WEBPC_VERSION', '1.2.0'); |
| 13 | define('WEBPC_FILE', __FILE__); |
| 14 | define('WEBPC_NAME', plugin_basename(__FILE__)); |
| 15 | define('WEBPC_PATH', plugin_dir_path(__FILE__)); |
| 16 | define('WEBPC_URL', plugin_dir_url(__FILE__)); |
| 17 | |
| 18 | require_once __DIR__ . '/vendor/autoload.php'; |
| 19 | new WebpConverter\WebpConverter(); |