PluginProbe
Jetpack – WP Security, Backup, Speed, & Growth / 16.3-a.1
Jetpack – WP Security, Backup, Speed, & Growth v16.3-a.1
16.3-a.3 16.3-a.1 16.2 16.2-beta 12.0.3 12.1.3 12.2.3 12.3.2 12.4.2 12.5.2 12.6.4 12.7.3 12.8.3 12.9.5 13.0.2 13.1.5 13.2.4 13.3.3 13.4.5 13.5.2 13.6.2 13.7.2 13.8.3 13.9.2 14.0.1 All 504 releases
← All changes | modules/seo-tools.php +10 -3 12.7.316.3-a.1 View file →
@@ -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 }