| 1 |
<?php |
| 2 |
/* |
| 3 |
Plugin Name: SEO Engine |
| 4 |
Plugin URI: https://meowapps.com |
| 5 |
Description: Made it through the SEO plugin wasteland? You've earned a coffee ☺️ Quietly powerful AI SEO that actually works. No bloat, just results. Enjoy! 💕 |
| 6 |
Version: 0.9.3 |
| 7 |
Author: Jordy Meow |
| 8 |
Author URI: https://jordymeow.com |
| 9 |
Text Domain: seo-engine |
| 10 |
|
| 11 |
Dual licensed under the MIT and GPL licenses: |
| 12 |
http://www.opensource.org/licenses/mit-license.php |
| 13 |
http://www.gnu.org/licenses/gpl.html |
| 14 |
*/ |
| 15 |
|
| 16 |
define( 'MWSEO_VERSION', '0.9.3' ); |
| 17 |
define( 'MWSEO_PREFIX', 'mwseo' ); |
| 18 |
define( 'MWSEO_DOMAIN', 'seo-engine' ); |
| 19 |
define( 'MWSEO_ENTRY', __FILE__ ); |
| 20 |
define( 'MWSEO_PATH', dirname( __FILE__ ) ); |
| 21 |
define( 'MWSEO_URL', plugin_dir_url( __FILE__ ) ); |
| 22 |
define( 'MWSEO_PRO', true ); |
| 23 |
define( 'MWSEO_ITEM_ID', 23019127 ); |
| 24 |
|
| 25 |
require_once( 'classes/init.php' ); |
| 26 |
|
| 27 |
?> |
| 28 |
|