| @@ -1,21 +1,25 @@ | ||
| 1 | 1 | <?php |
| 2 | 2 | /** |
| 3 | 3 | * Module Name: SEO Tools |
| 4 | - * Module Description: Better results on search engines and social media. | |
| 4 | + * Module Description: Optimize titles, meta descriptions, and social previews for better search results. | |
| 5 | 5 | * Sort Order: 35 |
| 6 | 6 | * Recommendation Order: 15 |
| 7 | 7 | * First Introduced: 4.4 |
| 8 | - * Requires Connection: Yes | |
| 8 | + * Requires Connection: No | |
| 9 | 9 | * Requires User Connection: No |
| 10 | 10 | * Auto Activate: No |
| 11 | 11 | * Module Tags: Social, Appearance |
| 12 | 12 | * Feature: Traffic |
| 13 | - * Additional Search Queries: search engine optimization, social preview, meta description, custom title format | |
| 13 | + * Additional Search Queries: search engine optimization, social preview, meta description, custom title format, seo, sitemap, open graph, search engine, title tag | |
| 14 | 14 | * |
| 15 | 15 | * @package automattic/jetpack |
| 16 | 16 | */ |
| 17 | 17 | |
| 18 | +if ( ! defined( 'ABSPATH' ) ) { | |
| 19 | + exit( 0 ); | |
| 20 | +} | |
| 21 | + | |
| 18 | 22 | // Suppress SEO Tools output if any of the following plugins is active. |
| 19 | 23 | $jetpack_seo_conflicting_plugins = array( |
| 20 | 24 | 'wordpress-seo/wp-seo.php', |
| 21 | 25 | 'wordpress-seo-premium/wp-seo-premium.php', |
| @@ -44,5 +48,8 @@ | ||
| 44 | 48 | /** This filter is documented in modules/seo-tools/class-jetpack-seo-utils.php */ |
| 45 | 49 | if ( ! apply_filters( 'jetpack_disable_seo_tools', false ) ) { |
| 46 | 50 | require_once __DIR__ . '/seo-tools/class-jetpack-seo.php'; |
| 47 | 51 | new Jetpack_SEO(); |
| 52 | + | |
| 53 | + require_once __DIR__ . '/seo-tools/class-jetpack-seo-admin-columns.php'; | |
| 54 | + Jetpack_SEO_Admin_Columns::init(); | |
| 48 | 55 | } |