SEOPress - Version 5.7.2

Version Description

  • FIX Google Inspect URL in Content Analysis metabox
Download this release

Release Info

Developer rainbowgeek
Plugin Icon 128x128 SEOPress
Version 5.7.2
Comparing to
See all releases

Code changes from version 5.7.1 to 5.7.2

inc/admin/admin-features-list.php CHANGED
@@ -34,7 +34,7 @@
34
  ],
35
  'google-analytics' => [
36
  'title' => __('Analytics', 'wp-seopress'),
37
- 'desc' => __('Track everything about your visitors with Google Analytics / Matomo', 'wp-seopress'),
38
  'btn_primary' => admin_url('admin.php?page=seopress-google-analytics'),
39
  'filter' => 'seopress_remove_feature_google_analytics',
40
  ],
34
  ],
35
  'google-analytics' => [
36
  'title' => __('Analytics', 'wp-seopress'),
37
+ 'desc' => __('Track everything about your visitors with Google Analytics / Matomo / Microsoft Clarity', 'wp-seopress'),
38
  'btn_primary' => admin_url('admin.php?page=seopress-google-analytics'),
39
  'filter' => 'seopress_remove_feature_google_analytics',
40
  ],
inc/admin/blocks/insights.php CHANGED
@@ -124,11 +124,11 @@
124
  <?php _e('Core Web Vitals Assessment: ', 'wp-seopress'); ?>
125
 
126
  <?php if ($core_web_vitals_score === true) { ?>
127
- <span class="green"><?php _e('Passed', 'wp-seopress-pro'); ?></span>
128
  <?php } elseif ($core_web_vitals_score === null) { ?>
129
- <span class="red"><?php _e('No data found', 'wp-seopress-pro'); ?></span>
130
  <?php } else { ?>
131
- <span class="red"><?php _e('Failed', 'wp-seopress-pro'); ?></span>
132
  <?php } ?>
133
  </h3>
134
  <p><?php printf(__('Computed from the %s Core Web Vitals metrics over the latest 28-day collection period.', 'wp-seopress'), $cwv_svg); ?></p>
124
  <?php _e('Core Web Vitals Assessment: ', 'wp-seopress'); ?>
125
 
126
  <?php if ($core_web_vitals_score === true) { ?>
127
+ <span class="green"><?php _e('Passed', 'wp-seopress'); ?></span>
128
  <?php } elseif ($core_web_vitals_score === null) { ?>
129
+ <span class="red"><?php _e('No data found', 'wp-seopress'); ?></span>
130
  <?php } else { ?>
131
+ <span class="red"><?php _e('Failed', 'wp-seopress'); ?></span>
132
  <?php } ?>
133
  </h3>
134
  <p><?php printf(__('Computed from the %s Core Web Vitals metrics over the latest 28-day collection period.', 'wp-seopress'), $cwv_svg); ?></p>
inc/admin/callbacks/InstantIndexing.php CHANGED
@@ -40,8 +40,8 @@ function seopress_instant_indexing_google_action_callback() {
40
  $options = get_option('seopress_instant_indexing_option_name');
41
 
42
  $actions = [
43
- 'URL_UPDATED' => __('Update URLs', 'wp-seopress-pro'),
44
- 'URL_DELETED' => esc_attr__('Remove URLs (URL must return a 404 or 410 status code or the page contains <meta name="robots" content="noindex" /> meta tag)', 'wp-seopress-pro'),
45
  ];
46
 
47
  foreach ($actions as $key => $value) { ?>
40
  $options = get_option('seopress_instant_indexing_option_name');
41
 
42
  $actions = [
43
+ 'URL_UPDATED' => __('Update URLs', 'wp-seopress'),
44
+ 'URL_DELETED' => esc_attr__('Remove URLs (URL must return a 404 or 410 status code or the page contains <meta name="robots" content="noindex" /> meta tag)', 'wp-seopress'),
45
  ];
46
 
47
  foreach ($actions as $key => $value) { ?>
inc/admin/metaboxes/admin-metaboxes-content-analysis-form.php CHANGED
@@ -11,7 +11,7 @@ $data_attr = seopress_metaboxes_init();
11
  data_id="<?php echo $data_attr['current_id']; ?>"
12
  data_origin="<?php echo $data_attr['origin']; ?>"
13
  data_tax="<?php echo $data_attr['data_tax']; ?>">
14
- <?php if (is_plugin_active('wp-seopress-pro/seopress-pro.php') && version_compare('SEOPRESS_PRO_VERSION', '5.7') >= 0) { ?>
15
  <ul class="wrap-ca-list">
16
  <li><a href="#seopress-ca-tabs-2"><?php _e('Overview', 'wp-seopress'); ?></a></li>
17
  <li><a href="#seopress-ca-tabs-1"><?php _e('Inspect with Google', 'wp-seopress'); ?></a></li>
@@ -116,7 +116,7 @@ $data_attr = seopress_metaboxes_init();
116
  seopress_get_service('RenderContentAnalysis')->render($analyzes, $seopress_analysis_data);
117
  } ?>
118
  </div>
119
- <?php if (is_plugin_active('wp-seopress-pro/seopress-pro.php') && version_compare('SEOPRESS_PRO_VERSION', '5.7') >= 0) { ?>
120
  <div id="seopress-ca-tabs-1">
121
  <?php if (function_exists('seopress_get_service') && !empty($data_attr['current_id'])) {
122
  seopress_get_service('RenderGSCInspectUrl')->render($data_attr['current_id']);
11
  data_id="<?php echo $data_attr['current_id']; ?>"
12
  data_origin="<?php echo $data_attr['origin']; ?>"
13
  data_tax="<?php echo $data_attr['data_tax']; ?>">
14
+ <?php if (is_plugin_active('wp-seopress-pro/seopress-pro.php') && version_compare(SEOPRESS_PRO_VERSION, '5.7') >= 0) { ?>
15
  <ul class="wrap-ca-list">
16
  <li><a href="#seopress-ca-tabs-2"><?php _e('Overview', 'wp-seopress'); ?></a></li>
17
  <li><a href="#seopress-ca-tabs-1"><?php _e('Inspect with Google', 'wp-seopress'); ?></a></li>
116
  seopress_get_service('RenderContentAnalysis')->render($analyzes, $seopress_analysis_data);
117
  } ?>
118
  </div>
119
+ <?php if (is_plugin_active('wp-seopress-pro/seopress-pro.php') && version_compare(SEOPRESS_PRO_VERSION, '5.7') >= 0) { ?>
120
  <div id="seopress-ca-tabs-1">
121
  <?php if (function_exists('seopress_get_service') && !empty($data_attr['current_id'])) {
122
  seopress_get_service('RenderGSCInspectUrl')->render($data_attr['current_id']);
inc/functions/options-instant-indexing.php CHANGED
@@ -134,13 +134,13 @@ function seopress_instant_indexing_fn($is_manual_submission = true, $permalink =
134
  //Prepare the URLS
135
  if ($is_manual_submission === true) {
136
  $urls = preg_split('/\r\n|\r|\n/', $urls);
137
- $x_source_info = 'https://www.seopress.org/5.7.1/true';
138
 
139
  $urls = array_slice($urls, 0, 100);
140
  } elseif ($is_manual_submission === false && !empty($permalink)) {
141
  $urls = null;
142
  $urls[] = $permalink;
143
- $x_source_info = 'https://www.seopress.org/5.7.1/false';
144
  }
145
 
146
  //Bing API
134
  //Prepare the URLS
135
  if ($is_manual_submission === true) {
136
  $urls = preg_split('/\r\n|\r|\n/', $urls);
137
+ $x_source_info = 'https://www.seopress.org/5.7.2/true';
138
 
139
  $urls = array_slice($urls, 0, 100);
140
  } elseif ($is_manual_submission === false && !empty($permalink)) {
141
  $urls = null;
142
  $urls[] = $permalink;
143
+ $x_source_info = 'https://www.seopress.org/5.7.2/false';
144
  }
145
 
146
  //Bing API
languages/wp-seopress.pot CHANGED
@@ -2,14 +2,14 @@
2
  # This file is distributed under the GPLv2.
3
  msgid ""
4
  msgstr ""
5
- "Project-Id-Version: SEOPress 5.7.1\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/wp-seopress\n"
7
  "Last-Translator: SEOPress Team <contact@seopress.org>\n"
8
  "Language-Team: SEOPress Team <contact@seopress.org>\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
- "POT-Creation-Date: 2022-05-18T08:39:59+00:00\n"
13
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
14
  "X-Generator: WP-CLI 2.6.0\n"
15
  "X-Domain: wp-seopress\n"
@@ -445,7 +445,7 @@ msgid "Open Graph, Twitter Card, Google Knowledge Graph and more..."
445
  msgstr ""
446
 
447
  #: inc/admin/admin-features-list.php:37
448
- msgid "Track everything about your visitors with Google Analytics / Matomo"
449
  msgstr ""
450
 
451
  #: inc/admin/admin-features-list.php:43
@@ -1053,6 +1053,18 @@ msgstr ""
1053
  msgid "Core Web Vitals Assessment: "
1054
  msgstr ""
1055
 
 
 
 
 
 
 
 
 
 
 
 
 
1056
  #: inc/admin/blocks/insights.php:134
1057
  msgid "Computed from the %s Core Web Vitals metrics over the latest 28-day collection period."
1058
  msgstr ""
@@ -2432,6 +2444,14 @@ msgstr ""
2432
  msgid "When sending an image file, automatically set the description based on the filename"
2433
  msgstr ""
2434
 
 
 
 
 
 
 
 
 
2435
  #: inc/admin/callbacks/InstantIndexing.php:95
2436
  msgid "Enter one URL per line to submit them to search engines (max 100 URLs)"
2437
  msgstr ""
2
  # This file is distributed under the GPLv2.
3
  msgid ""
4
  msgstr ""
5
+ "Project-Id-Version: SEOPress 5.7.2\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/wp-seopress\n"
7
  "Last-Translator: SEOPress Team <contact@seopress.org>\n"
8
  "Language-Team: SEOPress Team <contact@seopress.org>\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
+ "POT-Creation-Date: 2022-05-25T08:25:28+00:00\n"
13
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
14
  "X-Generator: WP-CLI 2.6.0\n"
15
  "X-Domain: wp-seopress\n"
445
  msgstr ""
446
 
447
  #: inc/admin/admin-features-list.php:37
448
+ msgid "Track everything about your visitors with Google Analytics / Matomo / Microsoft Clarity"
449
  msgstr ""
450
 
451
  #: inc/admin/admin-features-list.php:43
1053
  msgid "Core Web Vitals Assessment: "
1054
  msgstr ""
1055
 
1056
+ #: inc/admin/blocks/insights.php:127
1057
+ msgid "Passed"
1058
+ msgstr ""
1059
+
1060
+ #: inc/admin/blocks/insights.php:129
1061
+ msgid "No data found"
1062
+ msgstr ""
1063
+
1064
+ #: inc/admin/blocks/insights.php:131
1065
+ msgid "Failed"
1066
+ msgstr ""
1067
+
1068
  #: inc/admin/blocks/insights.php:134
1069
  msgid "Computed from the %s Core Web Vitals metrics over the latest 28-day collection period."
1070
  msgstr ""
2444
  msgid "When sending an image file, automatically set the description based on the filename"
2445
  msgstr ""
2446
 
2447
+ #: inc/admin/callbacks/InstantIndexing.php:43
2448
+ msgid "Update URLs"
2449
+ msgstr ""
2450
+
2451
+ #: inc/admin/callbacks/InstantIndexing.php:44
2452
+ msgid "Remove URLs (URL must return a 404 or 410 status code or the page contains <meta name=\"robots\" content=\"noindex\" /> meta tag)"
2453
+ msgstr ""
2454
+
2455
  #: inc/admin/callbacks/InstantIndexing.php:95
2456
  msgid "Enter one URL per line to submit them to search engines (max 100 URLs)"
2457
  msgstr ""
readme.txt CHANGED
@@ -1,12 +1,12 @@
1
  === SEOPress, on-site SEO ===
2
  Authors: rainbowgeek
3
- Contributors: rainbowgeek, gmulti, juliobox, maigret, mgris, vincentdubroeucq
4
  Donate link: https://www.seopress.org/
5
  Tags: SEO, schema, xml sitemap, redirection, meta title, open graph, content analysis, instant indexing, breadcrumbs, analytics, rich snippets, broken link
6
  Requires at least: 4.7+
7
  Tested up to: 6.0
8
  Requires PHP: 7.2
9
- Stable tag: 5.7.1
10
  License: GPLv2 or later
11
  License URI: https://www.gnu.org/licenses/gpl-2.0.html
12
 
@@ -362,6 +362,8 @@ You're theme is probably using a deprecated function to handle the title. <a hre
362
  12. Schema metabox
363
 
364
  == Changelog ==
 
 
365
  = 5.7.1 =
366
  * FIX JS for Insights and Documentation link
367
  * FIX Fatal error with automatic update (PRO)
1
  === SEOPress, on-site SEO ===
2
  Authors: rainbowgeek
3
+ Contributors: seopress, rainbowgeek, gmulti, juliobox, maigret, mgris, vincentdubroeucq
4
  Donate link: https://www.seopress.org/
5
  Tags: SEO, schema, xml sitemap, redirection, meta title, open graph, content analysis, instant indexing, breadcrumbs, analytics, rich snippets, broken link
6
  Requires at least: 4.7+
7
  Tested up to: 6.0
8
  Requires PHP: 7.2
9
+ Stable tag: 5.7.2
10
  License: GPLv2 or later
11
  License URI: https://www.gnu.org/licenses/gpl-2.0.html
12
 
362
  12. Schema metabox
363
 
364
  == Changelog ==
365
+ = 5.7.2 =
366
+ * FIX Google Inspect URL in Content Analysis metabox
367
  = 5.7.1 =
368
  * FIX JS for Insights and Documentation link
369
  * FIX Fatal error with automatic update (PRO)
seopress.php CHANGED
@@ -4,7 +4,7 @@ Plugin Name: SEOPress
4
  Plugin URI: https://www.seopress.org/
5
  Description: One of the best SEO plugins for WordPress.
6
  Author: SEOPress
7
- Version: 5.7.1
8
  Author URI: https://www.seopress.org/
9
  License: GPLv2
10
  Text Domain: wp-seopress
@@ -70,7 +70,7 @@ register_deactivation_hook(__FILE__, 'seopress_deactivation');
70
  ///////////////////////////////////////////////////////////////////////////////////////////////////
71
  //Define
72
  ///////////////////////////////////////////////////////////////////////////////////////////////////
73
- define('SEOPRESS_VERSION', '5.7.1');
74
  define('SEOPRESS_AUTHOR', 'Benjamin Denis');
75
  define('SEOPRESS_PLUGIN_DIR_PATH', plugin_dir_path(__FILE__));
76
  define('SEOPRESS_PLUGIN_DIR_URL', plugin_dir_url(__FILE__));
4
  Plugin URI: https://www.seopress.org/
5
  Description: One of the best SEO plugins for WordPress.
6
  Author: SEOPress
7
+ Version: 5.7.2
8
  Author URI: https://www.seopress.org/
9
  License: GPLv2
10
  Text Domain: wp-seopress
70
  ///////////////////////////////////////////////////////////////////////////////////////////////////
71
  //Define
72
  ///////////////////////////////////////////////////////////////////////////////////////////////////
73
+ define('SEOPRESS_VERSION', '5.7.2');
74
  define('SEOPRESS_AUTHOR', 'Benjamin Denis');
75
  define('SEOPRESS_PLUGIN_DIR_PATH', plugin_dir_path(__FILE__));
76
  define('SEOPRESS_PLUGIN_DIR_URL', plugin_dir_url(__FILE__));
vendor/composer/installed.json CHANGED
@@ -141,17 +141,17 @@
141
  },
142
  {
143
  "name": "google/apiclient-services",
144
- "version": "v0.249.0",
145
- "version_normalized": "0.249.0.0",
146
  "source": {
147
  "type": "git",
148
  "url": "https://github.com/googleapis/google-api-php-client-services.git",
149
- "reference": "95df14183356e45291e1c686cea57850281101db"
150
  },
151
  "dist": {
152
  "type": "zip",
153
- "url": "https://api.github.com/repos/googleapis/google-api-php-client-services/zipball/95df14183356e45291e1c686cea57850281101db",
154
- "reference": "95df14183356e45291e1c686cea57850281101db",
155
  "shasum": ""
156
  },
157
  "require": {
@@ -160,7 +160,7 @@
160
  "require-dev": {
161
  "phpunit/phpunit": "^5.7||^8.5.13"
162
  },
163
- "time": "2022-05-16T01:10:12+00:00",
164
  "type": "library",
165
  "installation-source": "dist",
166
  "autoload": {
@@ -182,7 +182,7 @@
182
  ],
183
  "support": {
184
  "issues": "https://github.com/googleapis/google-api-php-client-services/issues",
185
- "source": "https://github.com/googleapis/google-api-php-client-services/tree/v0.249.0"
186
  },
187
  "install-path": "../google/apiclient-services"
188
  },
141
  },
142
  {
143
  "name": "google/apiclient-services",
144
+ "version": "v0.250.0",
145
+ "version_normalized": "0.250.0.0",
146
  "source": {
147
  "type": "git",
148
  "url": "https://github.com/googleapis/google-api-php-client-services.git",
149
+ "reference": "3db4c0db2a5452e623b54f06dd993c432e6d6f8c"
150
  },
151
  "dist": {
152
  "type": "zip",
153
+ "url": "https://api.github.com/repos/googleapis/google-api-php-client-services/zipball/3db4c0db2a5452e623b54f06dd993c432e6d6f8c",
154
+ "reference": "3db4c0db2a5452e623b54f06dd993c432e6d6f8c",
155
  "shasum": ""
156
  },
157
  "require": {
160
  "require-dev": {
161
  "phpunit/phpunit": "^5.7||^8.5.13"
162
  },
163
+ "time": "2022-05-22T01:16:11+00:00",
164
  "type": "library",
165
  "installation-source": "dist",
166
  "autoload": {
182
  ],
183
  "support": {
184
  "issues": "https://github.com/googleapis/google-api-php-client-services/issues",
185
+ "source": "https://github.com/googleapis/google-api-php-client-services/tree/v0.250.0"
186
  },
187
  "install-path": "../google/apiclient-services"
188
  },
vendor/composer/installed.php CHANGED
@@ -5,7 +5,7 @@
5
  'type' => 'wordpress-plugin',
6
  'install_path' => __DIR__ . '/../../',
7
  'aliases' => array(),
8
- 'reference' => '28b00771b60f2cfbd91b3b527fb0edf80aea2b12',
9
  'name' => 'wp-seopress/wp-seopress',
10
  'dev' => false,
11
  ),
@@ -29,12 +29,12 @@
29
  'dev_requirement' => false,
30
  ),
31
  'google/apiclient-services' => array(
32
- 'pretty_version' => 'v0.249.0',
33
- 'version' => '0.249.0.0',
34
  'type' => 'library',
35
  'install_path' => __DIR__ . '/../google/apiclient-services',
36
  'aliases' => array(),
37
- 'reference' => '95df14183356e45291e1c686cea57850281101db',
38
  'dev_requirement' => false,
39
  ),
40
  'google/auth' => array(
@@ -202,7 +202,7 @@
202
  'type' => 'wordpress-plugin',
203
  'install_path' => __DIR__ . '/../../',
204
  'aliases' => array(),
205
- 'reference' => '28b00771b60f2cfbd91b3b527fb0edf80aea2b12',
206
  'dev_requirement' => false,
207
  ),
208
  ),
5
  'type' => 'wordpress-plugin',
6
  'install_path' => __DIR__ . '/../../',
7
  'aliases' => array(),
8
+ 'reference' => '993d3a296f8b0139778df3192789cc3187ee4992',
9
  'name' => 'wp-seopress/wp-seopress',
10
  'dev' => false,
11
  ),
29
  'dev_requirement' => false,
30
  ),
31
  'google/apiclient-services' => array(
32
+ 'pretty_version' => 'v0.250.0',
33
+ 'version' => '0.250.0.0',
34
  'type' => 'library',
35
  'install_path' => __DIR__ . '/../google/apiclient-services',
36
  'aliases' => array(),
37
+ 'reference' => '3db4c0db2a5452e623b54f06dd993c432e6d6f8c',
38
  'dev_requirement' => false,
39
  ),
40
  'google/auth' => array(
202
  'type' => 'wordpress-plugin',
203
  'install_path' => __DIR__ . '/../../',
204
  'aliases' => array(),
205
+ 'reference' => '993d3a296f8b0139778df3192789cc3187ee4992',
206
  'dev_requirement' => false,
207
  ),
208
  ),