PluginProbe
Yoast SEO – Advanced SEO with real-time guidance and built-in AI / 28.5
Yoast SEO – Advanced SEO with real-time guidance and built-in AI v28.5
28.5 28.4 28.3 28.2 28.1 28.0 27.9 27.8 27.7 27.6 27.5 trunk 18.0 18.1 18.2 18.3 18.4 18.4.1 18.5 18.5.1 18.6 18.7 18.8 18.9 19.0 All 129 releases
← All changes | src/config/conflicting-plugins.php +5 -5 18.228.5 View file →
@@ -6,9 +6,9 @@
6 6 * Conflicting_Plugins class that holds all known conflicting plugins.
7 7 */
8 8 class Conflicting_Plugins {
9 9
10 - const OPEN_GRAPH_PLUGINS = [
10 + public const OPEN_GRAPH_PLUGINS = [
11 11 '2-click-socialmedia-buttons/2-click-socialmedia-buttons.php',
12 12 // 2 Click Social Media Buttons.
13 13 'add-link-to-facebook/add-link-to-facebook.php', // Add Link to Facebook.
14 14 'add-meta-tags/add-meta-tags.php', // Add Meta Tags.
@@ -48,9 +48,9 @@
48 48 'wp-ogp/wp-ogp.php', // WP-OGP.
49 49 'zoltonorg-social-plugin/zosp.php', // Zolton.org Social Plugin.
50 50 ];
51 51
52 - const XML_SITEMAPS_PLUGINS = [
52 + public const XML_SITEMAPS_PLUGINS = [
53 53 'google-sitemap-plugin/google-sitemap-plugin.php',
54 54 // Google Sitemap (BestWebSoft).
55 55 'xml-sitemaps/xml-sitemaps.php',
56 56 // XML Sitemaps (Denis de Bernardy and Mike Koepke).
@@ -81,9 +81,9 @@
81 81 'rps-sitemap-generator/rps-sitemap-generator.php',
82 82 // RPS Sitemap Generator (redpixelstudios).
83 83 ];
84 84
85 - const CLOAKING_PLUGINS = [
85 + public const CLOAKING_PLUGINS = [
86 86 'rs-head-cleaner/rs-head-cleaner.php',
87 87 // RS Head Cleaner Plus https://wordpress.org/plugins/rs-head-cleaner/.
88 88 'rs-head-cleaner-lite/rs-head-cleaner-lite.php',
89 89 // RS Head Cleaner Lite https://wordpress.org/plugins/rs-head-cleaner-lite/.
@@ -88,9 +88,9 @@
88 88 'rs-head-cleaner-lite/rs-head-cleaner-lite.php',
89 89 // RS Head Cleaner Lite https://wordpress.org/plugins/rs-head-cleaner-lite/.
90 90 ];
91 91
92 - const SEO_PLUGINS = [
92 + public const SEO_PLUGINS = [
93 93 'all-in-one-seo-pack/all_in_one_seo_pack.php', // All in One SEO Pack.
94 94 'seo-ultimate/seo-ultimate.php', // SEO Ultimate.
95 95 'seo-by-rank-math/rank-math.php', // Rank Math.
96 96 ];
@@ -104,8 +104,8 @@
104 104 return \array_merge(
105 105 self::OPEN_GRAPH_PLUGINS,
106 106 self::XML_SITEMAPS_PLUGINS,
107 107 self::CLOAKING_PLUGINS,
108 - self::SEO_PLUGINS
108 + self::SEO_PLUGINS,
109 109 );
110 110 }
111 111 }