PluginProbe
SEO Engine – Smart SEO with AI, Schema & Redirection for WordPress / 0.9.3
SEO Engine – Smart SEO with AI, Schema & Redirection for WordPress v0.9.3
0.9.3 0.9.2 0.9.1 0.9.0 0.8.9 0.8.8 0.8.7 0.8.6 0.8.5 0.8.4 0.8.2 0.8.1 0.7.9 0.8.0 0.7.7 0.7.8 0.7.6 0.7.5 0.7.4 0.7.3 0.7.2 0.7.1 0.7.0 0.6.5 trunk All 87 releases
seo-engine / seo-engine.php

seo-engine.php in SEO Engine – Smart SEO with AI, Schema & Redirection for WordPress 0.9.3, at seo-engine.php

28 lines 812 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
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