SEOPress - Version 4.4.0.2

Version Description

(12/02/2021) = * FIX Homepage title

Download this release

Release Info

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

Code changes from version 4.4.0.1 to 4.4.0.2

inc/functions/options-titles-metas.php CHANGED
@@ -61,8 +61,6 @@ function seopress_titles_single_titles_option() {
61
  }
62
  }
63
 
64
-
65
-
66
  //Tax archives Titles
67
  function seopress_titles_tax_titles_option() {
68
  $queried_object = get_queried_object();
@@ -505,7 +503,7 @@ function seopress_titles_the_title() {
505
  return $seopress_titles_title_template;
506
  }
507
 
508
- if (apply_filters('seopress_old_pre_get_document_title', ! function_exists('seopress_get_service'))) {
509
  add_filter('pre_get_document_title', 'seopress_titles_the_title', 10);
510
  }
511
 
@@ -721,7 +719,7 @@ function seopress_titles_the_description() {
721
  }
722
  }
723
 
724
- if (apply_filters('seopress_old_wp_head_description', false)) {
725
  add_action('wp_head', 'seopress_titles_the_description', 1);
726
  }
727
 
61
  }
62
  }
63
 
 
 
64
  //Tax archives Titles
65
  function seopress_titles_tax_titles_option() {
66
  $queried_object = get_queried_object();
503
  return $seopress_titles_title_template;
504
  }
505
 
506
+ if (apply_filters('seopress_old_pre_get_document_title', true)) {
507
  add_filter('pre_get_document_title', 'seopress_titles_the_title', 10);
508
  }
509
 
719
  }
720
  }
721
 
722
+ if (apply_filters('seopress_old_wp_head_description', true)) {
723
  add_action('wp_head', 'seopress_titles_the_description', 1);
724
  }
725
 
readme.txt CHANGED
@@ -6,7 +6,7 @@ Tags: SEO, XML sitemap, meta title, open graph, content analysis, knowledge grap
6
  Requires at least: 4.7+
7
  Tested up to: 5.6
8
  Requires PHP: 5.6
9
- Stable tag: 4.4.0.1
10
  License: GPLv2 or later
11
  License URI: https://www.gnu.org/licenses/gpl-2.0.html
12
 
@@ -319,7 +319,9 @@ You're theme is probably using a deprecated function to handle the title. <a hre
319
  8. Installation Wizard
320
  9. Schemas metabox
321
 
322
- == Changelog ==
 
 
323
  = 4.4.0.1 (12/02/2021) =
324
  * FIX Fatal errors
325
  = 4.4 (10/02/2021) =
6
  Requires at least: 4.7+
7
  Tested up to: 5.6
8
  Requires PHP: 5.6
9
+ Stable tag: 4.4.0.2
10
  License: GPLv2 or later
11
  License URI: https://www.gnu.org/licenses/gpl-2.0.html
12
 
319
  8. Installation Wizard
320
  9. Schemas metabox
321
 
322
+ == Changelog ==
323
+ = 4.4.0.2 (12/02/2021) =
324
+ * FIX Homepage title
325
  = 4.4.0.1 (12/02/2021) =
326
  * FIX Fatal errors
327
  = 4.4 (10/02/2021) =
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: 4.4.0.1
8
  Author URI: https://www.seopress.org/
9
  License: GPLv2
10
  Text Domain: wp-seopress
@@ -55,7 +55,7 @@ register_deactivation_hook(__FILE__, 'seopress_deactivation');
55
  ///////////////////////////////////////////////////////////////////////////////////////////////////
56
  //Define
57
  ///////////////////////////////////////////////////////////////////////////////////////////////////
58
- define('SEOPRESS_VERSION', '4.4.0.1');
59
  define('SEOPRESS_AUTHOR', 'Benjamin Denis');
60
  define('SEOPRESS_PLUGIN_DIR_PATH', plugin_dir_path(__FILE__));
61
  define('SEOPRESS_TEMPLATE_DIR', SEOPRESS_PLUGIN_DIR_PATH . 'templates');
4
  Plugin URI: https://www.seopress.org/
5
  Description: One of the best SEO plugins for WordPress.
6
  Author: SEOPress
7
+ Version: 4.4.0.2
8
  Author URI: https://www.seopress.org/
9
  License: GPLv2
10
  Text Domain: wp-seopress
55
  ///////////////////////////////////////////////////////////////////////////////////////////////////
56
  //Define
57
  ///////////////////////////////////////////////////////////////////////////////////////////////////
58
+ define('SEOPRESS_VERSION', '4.4.0.2');
59
  define('SEOPRESS_AUTHOR', 'Benjamin Denis');
60
  define('SEOPRESS_PLUGIN_DIR_PATH', plugin_dir_path(__FILE__));
61
  define('SEOPRESS_TEMPLATE_DIR', SEOPRESS_PLUGIN_DIR_PATH . 'templates');
src/Actions/Front/Metas/DescriptionMeta.php CHANGED
@@ -21,7 +21,7 @@ class DescriptionMeta implements ExecuteHooksFrontend {
21
  }
22
 
23
  public function render() {
24
- if (apply_filters('seopress_old_wp_head_description', false)) {
25
  return;
26
  }
27
 
21
  }
22
 
23
  public function render() {
24
+ if (apply_filters('seopress_old_wp_head_description', true)) {
25
  return;
26
  }
27
 
src/Actions/Front/Metas/TitleMeta.php CHANGED
@@ -57,7 +57,7 @@ class TitleMeta implements ExecuteHooksFrontend {
57
  require_once SEOPRESS_PLUGIN_DIR_PATH . '/inc/functions/options-titles-metas.php';
58
  }
59
 
60
- if (apply_filters('seopress_old_pre_get_document_title', ! $defaultHook)) {
61
  return;
62
  }
63
 
57
  require_once SEOPRESS_PLUGIN_DIR_PATH . '/inc/functions/options-titles-metas.php';
58
  }
59
 
60
+ if (apply_filters('seopress_old_pre_get_document_title', true)) {
61
  return;
62
  }
63
 
vendor/composer/InstalledVersions.php CHANGED
@@ -29,7 +29,7 @@ private static $installed = array (
29
  'aliases' =>
30
  array (
31
  ),
32
- 'reference' => '5940d0d84205db6d574cd50d40ca93a4c553b4e4',
33
  'name' => 'wp-seopress/wp-seopress',
34
  ),
35
  'versions' =>
@@ -41,7 +41,7 @@ private static $installed = array (
41
  'aliases' =>
42
  array (
43
  ),
44
- 'reference' => '5940d0d84205db6d574cd50d40ca93a4c553b4e4',
45
  ),
46
  ),
47
  );
29
  'aliases' =>
30
  array (
31
  ),
32
+ 'reference' => '50b861746da52cbd9e3deec66c873db3d75fb782',
33
  'name' => 'wp-seopress/wp-seopress',
34
  ),
35
  'versions' =>
41
  'aliases' =>
42
  array (
43
  ),
44
+ 'reference' => '50b861746da52cbd9e3deec66c873db3d75fb782',
45
  ),
46
  ),
47
  );
vendor/composer/installed.php CHANGED
@@ -6,7 +6,7 @@
6
  'aliases' =>
7
  array (
8
  ),
9
- 'reference' => '5940d0d84205db6d574cd50d40ca93a4c553b4e4',
10
  'name' => 'wp-seopress/wp-seopress',
11
  ),
12
  'versions' =>
@@ -18,7 +18,7 @@
18
  'aliases' =>
19
  array (
20
  ),
21
- 'reference' => '5940d0d84205db6d574cd50d40ca93a4c553b4e4',
22
  ),
23
  ),
24
  );
6
  'aliases' =>
7
  array (
8
  ),
9
+ 'reference' => '50b861746da52cbd9e3deec66c873db3d75fb782',
10
  'name' => 'wp-seopress/wp-seopress',
11
  ),
12
  'versions' =>
18
  'aliases' =>
19
  array (
20
  ),
21
+ 'reference' => '50b861746da52cbd9e3deec66c873db3d75fb782',
22
  ),
23
  ),
24
  );