| @@ -3,9 +3,9 @@ | ||
| 3 | 3 | /** |
| 4 | 4 | * Plugin Name: ThinkRank |
| 5 | 5 | * Plugin URI: https://thinkrank.ai/ |
| 6 | 6 | * Description: AI-native SEO plugin for WordPress. Automate and enhance your SEO with cutting-edge AI while maintaining editorial control. |
| 7 | - * Version: 2.6.0 | |
| 7 | + * Version: 2.7.0 | |
| 8 | 8 | * Author: WPDeveloper |
| 9 | 9 | * Author URI: https://wpdeveloper.com/ |
| 10 | 10 | * License: GPL v2 or later |
| 11 | 11 | * License URI: https://www.gnu.org/licenses/gpl-2.0.html |
| @@ -14,9 +14,9 @@ | ||
| 14 | 14 | * Requires at least: 6.0 |
| 15 | 15 | * Requires PHP: 7.4 |
| 16 | 16 | * |
| 17 | 17 | * @package ThinkRank |
| 18 | - * @version 2.6.0 | |
| 18 | + * @version 2.7.0 | |
| 19 | 19 | * @since 1.0.0 |
| 20 | 20 | */ |
| 21 | 21 | |
| 22 | 22 | declare(strict_types=1); |
| @@ -26,9 +26,9 @@ | ||
| 26 | 26 | exit; |
| 27 | 27 | } |
| 28 | 28 | |
| 29 | 29 | // Define plugin constants |
| 30 | -define('THINKRANK_VERSION', '2.6.0'); | |
| 30 | +define('THINKRANK_VERSION', '2.7.0'); | |
| 31 | 31 | define('THINKRANK_PLUGIN_FILE', __FILE__); |
| 32 | 32 | define('THINKRANK_PLUGIN_DIR', plugin_dir_path(__FILE__)); |
| 33 | 33 | define('THINKRANK_PLUGIN_URL', plugin_dir_url(__FILE__)); |
| 34 | 34 | define('THINKRANK_PLUGIN_BASENAME', plugin_basename(__FILE__)); |
| @@ -349,8 +349,13 @@ | ||
| 349 | 349 | 'frontend_seo' => new ThinkRank\Frontend\SEO_Manager(), |
| 350 | 350 | 'seo_notice' => new ThinkRank\Admin\SEO_Notice(), |
| 351 | 351 | 'search_visibility_notice' => new ThinkRank\Admin\Search_Visibility_Notice(), |
| 352 | 352 | 'performance_collector' => new ThinkRank\SEO\Performance_Data_Collector(), |
| 353 | + 'query_guard' => new ThinkRank\SEO\Query_Guard(), | |
| 354 | + 'feeds' => new ThinkRank\SEO\Feed_Manager(), | |
| 355 | + 'sitemap_stylesheet' => new ThinkRank\SEO\Sitemap_Stylesheet(), | |
| 356 | + 'oembed' => new ThinkRank\SEO\Oembed_Manager(), | |
| 357 | + 'content_visibility' => new ThinkRank\SEO\Content_Visibility(), | |
| 353 | 358 | 'instant_indexing' => new ThinkRank\SEO\Instant_Indexing_Manager(), |
| 354 | 359 | 'instant_indexing_reconciler' => new ThinkRank\SEO\Instant_Indexing_Reconciler(), |
| 355 | 360 | 'author_archives' => new ThinkRank\SEO\Author_Archives_Manager(), |
| 356 | 361 | 'seo_analyzer' => new ThinkRank\SEO\SEO_Analyzer(), |