canonical-urls
2 months ago
carousel
4 weeks ago
comment-likes
6 months ago
comments
4 weeks ago
custom-post-types
3 months ago
external-media
6 months ago
google-fonts
4 months ago
gravatar
5 years ago
infinite-scroll
4 weeks ago
likes
5 months ago
markdown
6 months ago
memberships
1 month ago
photon-cdn
1 month ago
plugin-search
4 weeks ago
post-by-email
6 months ago
related-posts
3 months ago
scan
2 months ago
seo-tools
2 months ago
sharedaddy
4 weeks ago
shortcodes
3 weeks ago
simple-payments
6 months ago
site-icon
6 months ago
sitemaps
6 months ago
stats
5 months ago
subscriptions
4 weeks ago
theme-tools
3 months ago
tiled-gallery
6 months ago
verification-tools
6 months ago
videopress
2 months ago
widget-visibility
6 months ago
widgets
4 weeks ago
woocommerce-analytics
1 month ago
wordads
1 month ago
wpcom-tos
5 months ago
account-protection.php
1 month ago
blaze.php
6 months ago
blocks.php
6 months ago
canonical-urls.php
3 months ago
carousel.php
6 months ago
comment-likes.php
6 months ago
comments.php
2 months ago
contact-form.php
6 months ago
copy-post.php
4 months ago
custom-content-types.php
1 month ago
google-fonts.php
1 month ago
gravatar-hovercards.php
1 month ago
infinite-scroll.php
6 months ago
json-api.php
6 months ago
latex.php
6 months ago
likes.php
4 weeks ago
markdown.php
6 months ago
module-extras.php
6 months ago
module-headings.php
1 month ago
module-info.php
3 months ago
monitor.php
6 months ago
notes.php
5 months ago
photon-cdn.php
6 months ago
photon.php
6 months ago
plugin-search.php
4 weeks ago
post-by-email.php
1 month ago
post-list.php
6 months ago
protect.php
1 month ago
publicize.php
6 months ago
related-posts.php
1 month ago
search.php
6 months ago
seo-tools.php
6 months ago
sharedaddy.php
3 months ago
shortcodes.php
6 months ago
shortlinks.php
6 months ago
simple-payments.php
6 months ago
sitemaps.php
6 months ago
sso.php
6 months ago
stats.php
5 months ago
subscriptions.php
4 weeks ago
theme-tools.php
6 months ago
tiled-gallery.php
6 months ago
vaultpress.php
6 months ago
verification-tools.php
1 month ago
videopress.php
6 months ago
waf.php
6 months ago
widget-visibility.php
6 months ago
widgets.php
6 months ago
woocommerce-analytics.php
6 months ago
wordads.php
6 months ago
wpcom-reader.php
3 months ago
wpgroho.js
1 year ago
seo-tools.php
53 lines
| 1 | <?php |
| 2 | /** |
| 3 | * Module Name: SEO Tools |
| 4 | * Module Description: Optimize titles, meta descriptions, and social previews for better search results. |
| 5 | * Sort Order: 35 |
| 6 | * Recommendation Order: 15 |
| 7 | * First Introduced: 4.4 |
| 8 | * Requires Connection: No |
| 9 | * Requires User Connection: No |
| 10 | * Auto Activate: No |
| 11 | * Module Tags: Social, Appearance |
| 12 | * Feature: Traffic |
| 13 | * Additional Search Queries: search engine optimization, social preview, meta description, custom title format |
| 14 | * |
| 15 | * @package automattic/jetpack |
| 16 | */ |
| 17 | |
| 18 | if ( ! defined( 'ABSPATH' ) ) { |
| 19 | exit( 0 ); |
| 20 | } |
| 21 | |
| 22 | // Suppress SEO Tools output if any of the following plugins is active. |
| 23 | $jetpack_seo_conflicting_plugins = array( |
| 24 | 'wordpress-seo/wp-seo.php', |
| 25 | 'wordpress-seo-premium/wp-seo-premium.php', |
| 26 | 'all-in-one-seo-pack/all_in_one_seo_pack.php', |
| 27 | 'all-in-one-seo-pack-pro/all_in_one_seo_pack.php', |
| 28 | 'seo-by-rank-math/rank-math.php', |
| 29 | 'autodescription/autodescription.php', |
| 30 | 'slim-seo/slim-seo.php', |
| 31 | 'wp-seopress/seopress.php', |
| 32 | 'wp-seopress-pro/seopress-pro.php', |
| 33 | 'seo-key/seo-key.php', |
| 34 | 'seo-key-pro/seo-key.php', |
| 35 | ); |
| 36 | |
| 37 | foreach ( $jetpack_seo_conflicting_plugins as $seo_plugin ) { |
| 38 | if ( Jetpack::is_plugin_active( $seo_plugin ) ) { |
| 39 | // Disable all custom meta tags that SEO tools manages. |
| 40 | add_filter( 'jetpack_disable_seo_tools', '__return_true' ); |
| 41 | |
| 42 | // Also disable default meta tags. |
| 43 | add_filter( 'jetpack_seo_meta_tags_enabled', '__return_false' ); |
| 44 | break; |
| 45 | } |
| 46 | } |
| 47 | |
| 48 | /** This filter is documented in modules/seo-tools/class-jetpack-seo-utils.php */ |
| 49 | if ( ! apply_filters( 'jetpack_disable_seo_tools', false ) ) { |
| 50 | require_once __DIR__ . '/seo-tools/class-jetpack-seo.php'; |
| 51 | new Jetpack_SEO(); |
| 52 | } |
| 53 |