Version Description
- FIX Fatal error with Google Preview with some configurations
Download this release
Release Info
Developer | rainbowgeek |
Plugin | SEOPress |
Version | 3.8.5.1 |
Comparing to | |
See all releases |
Code changes from version 3.8.5 to 3.8.5.1
- readme.txt +3 -1
- seopress.php +3 -3
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.4
|
8 |
Requires PHP: 5.6
|
9 |
-
Stable tag: 3.8.5
|
10 |
License: GPLv2 or later
|
11 |
License URI: https://www.gnu.org/licenses/gpl-2.0.html
|
12 |
|
@@ -226,6 +226,8 @@ You're theme is probably using a deprecated function to handle the title. <a hre
|
|
226 |
7. Installation Wizard
|
227 |
|
228 |
== Changelog ==
|
|
|
|
|
229 |
= 3.8.5 =
|
230 |
* NEW Matomo tracking integration! 🎉
|
231 |
* NEW Twitter Preview! 🎉
|
6 |
Requires at least: 4.7+
|
7 |
Tested up to: 5.4
|
8 |
Requires PHP: 5.6
|
9 |
+
Stable tag: 3.8.5.1
|
10 |
License: GPLv2 or later
|
11 |
License URI: https://www.gnu.org/licenses/gpl-2.0.html
|
12 |
|
226 |
7. Installation Wizard
|
227 |
|
228 |
== Changelog ==
|
229 |
+
= 3.8.5.1 =
|
230 |
+
* FIX Fatal error with Google Preview with some configurations
|
231 |
= 3.8.5 =
|
232 |
* NEW Matomo tracking integration! 🎉
|
233 |
* NEW Twitter Preview! 🎉
|
seopress.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: SEOPress
|
4 |
Plugin URI: https://www.seopress.org/
|
5 |
Description: One of the best SEO plugins for WordPress.
|
6 |
-
Version: 3.8.5
|
7 |
Author: SEOPress
|
8 |
Author URI: https://www.seopress.org/
|
9 |
License: GPLv2
|
@@ -54,7 +54,7 @@ register_deactivation_hook(__FILE__, 'seopress_deactivation');
|
|
54 |
///////////////////////////////////////////////////////////////////////////////////////////////////
|
55 |
//Define
|
56 |
///////////////////////////////////////////////////////////////////////////////////////////////////
|
57 |
-
define( 'SEOPRESS_VERSION', '3.8.5' );
|
58 |
define( 'SEOPRESS_AUTHOR', 'Benjamin Denis' );
|
59 |
|
60 |
///////////////////////////////////////////////////////////////////////////////////////////////////
|
@@ -790,7 +790,7 @@ function seopress_remove_admin_bar() {
|
|
790 |
if ( current_user_can( 'edit_posts' ) ) {
|
791 |
if ( isset($_GET['no_admin_bar'] ) && '1' === $_GET['no_admin_bar'] ) {
|
792 |
add_filter( 'show_admin_bar', '__return_false' );
|
793 |
-
if (
|
794 |
add_action( 'template_redirect', 'seopress_get_oxygen_content' );
|
795 |
}
|
796 |
}
|
3 |
Plugin Name: SEOPress
|
4 |
Plugin URI: https://www.seopress.org/
|
5 |
Description: One of the best SEO plugins for WordPress.
|
6 |
+
Version: 3.8.5.1
|
7 |
Author: SEOPress
|
8 |
Author URI: https://www.seopress.org/
|
9 |
License: GPLv2
|
54 |
///////////////////////////////////////////////////////////////////////////////////////////////////
|
55 |
//Define
|
56 |
///////////////////////////////////////////////////////////////////////////////////////////////////
|
57 |
+
define( 'SEOPRESS_VERSION', '3.8.5.1' );
|
58 |
define( 'SEOPRESS_AUTHOR', 'Benjamin Denis' );
|
59 |
|
60 |
///////////////////////////////////////////////////////////////////////////////////////////////////
|
790 |
if ( current_user_can( 'edit_posts' ) ) {
|
791 |
if ( isset($_GET['no_admin_bar'] ) && '1' === $_GET['no_admin_bar'] ) {
|
792 |
add_filter( 'show_admin_bar', '__return_false' );
|
793 |
+
if (function_exists('ct_template_output')) { //disable for Oxygen
|
794 |
add_action( 'template_redirect', 'seopress_get_oxygen_content' );
|
795 |
}
|
796 |
}
|