diff --git a/projects/plugins/jetpack/changelog/update-og-tags-conflicting-plugins b/projects/plugins/jetpack/changelog/update-og-tags-conflicting-plugins new file mode 100644 index 0000000000000..7a3625d46be4c --- /dev/null +++ b/projects/plugins/jetpack/changelog/update-og-tags-conflicting-plugins @@ -0,0 +1,4 @@ +Significance: patch +Type: compat + +Open Graph Meta Tags: do not display Jetpack's tags when the SEOPress plugin is active. diff --git a/projects/plugins/jetpack/class.jetpack.php b/projects/plugins/jetpack/class.jetpack.php index 64501849deb3d..f0cc66d929424 100644 --- a/projects/plugins/jetpack/class.jetpack.php +++ b/projects/plugins/jetpack/class.jetpack.php @@ -258,7 +258,6 @@ class Jetpack { * * - All in One SEO Pack, All in one SEO Pack Pro * - WordPress SEO by Yoast, WordPress SEO Premium by Yoast - * - SEOPress, SEOPress Pro * * Plugin authors: If you'd like to prevent Jetpack's Open Graph tag generation in your plugin, you can do so via this filter: * add_filter( 'jetpack_enable_open_graph', '__return_false' ); @@ -303,6 +302,8 @@ class Jetpack { 'wp-facebook-like-send-open-graph-meta/wp-facebook-like-send-open-graph-meta.php', // WP Facebook Like Send & Open Graph Meta. 'wp-facebook-open-graph-protocol/wp-facebook-ogp.php', // WP Facebook Open Graph protocol. 'wp-ogp/wp-ogp.php', // WP-OGP. + 'wp-seopress/seopress.php', // SEOPress. + 'wp-seopress-pro/seopress-pro.php', // SEOPress Pro. 'zoltonorg-social-plugin/zosp.php', // Zolton.org Social Plugin. 'wp-fb-share-like-button/wp_fb_share-like_widget.php', // WP Facebook Like Button. 'open-graph-metabox/open-graph-metabox.php', // Open Graph Metabox. diff --git a/projects/plugins/social/changelog/update-og-tags-conflicting-plugins b/projects/plugins/social/changelog/update-og-tags-conflicting-plugins new file mode 100644 index 0000000000000..14169a9e5c0df --- /dev/null +++ b/projects/plugins/social/changelog/update-og-tags-conflicting-plugins @@ -0,0 +1,4 @@ +Significance: patch +Type: changed + +Open Graph Meta Tags: do not display Jetpack's tags when the SEOPress plugin is active. diff --git a/projects/plugins/social/src/class-meta-tags.php b/projects/plugins/social/src/class-meta-tags.php index ab3d2ee03fcef..efdba22a87275 100644 --- a/projects/plugins/social/src/class-meta-tags.php +++ b/projects/plugins/social/src/class-meta-tags.php @@ -61,6 +61,8 @@ class Meta_Tags { 'wp-facebook-like-send-open-graph-meta/wp-facebook-like-send-open-graph-meta.php', // WP Facebook Like Send & Open Graph Meta. 'wp-facebook-open-graph-protocol/wp-facebook-ogp.php', // WP Facebook Open Graph protocol. 'wp-ogp/wp-ogp.php', // WP-OGP. + 'wp-seopress/seopress.php', // SEOPress. + 'wp-seopress-pro/seopress-pro.php', // SEOPress Pro. 'zoltonorg-social-plugin/zosp.php', // Zolton.org Social Plugin. 'wp-fb-share-like-button/wp_fb_share-like_widget.php', // WP Facebook Like Button. 'open-graph-metabox/open-graph-metabox.php', // Open Graph Metabox.