Version Description
- Fixed a bug with The Events Calendar plugin
- Fixed a bug with Facebook Instant Articles and RSS Feeds
Download this release
Release Info
Developer | PascalBajorat |
Plugin | PB SEO Friendly Images |
Version | 2.2.2 |
Comparing to | |
See all releases |
Code changes from version 2.2.1 to 2.2.2
- pb-seo-friendly-images.php +5 -2
- readme.txt +5 -1
pb-seo-friendly-images.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: PB SEO Friendly Images
|
4 |
Plugin URI: https://wordpress.org/extend/plugins/pb-seo-friendly-images/
|
5 |
Description: This plugin is a full-featured solution for SEO friendly images. Optimize "alt" and "title" attributes for all images and post thumbnails. This plugin helps you to improve your traffic from search engines.
|
6 |
-
Version: 2.2.
|
7 |
Author: Pascal Bajorat
|
8 |
Author URI: https://www.pascal-bajorat.com
|
9 |
Text Domain: pb-seo-friendly-images
|
@@ -39,7 +39,7 @@ if( !class_exists('pbSEOFriendlyImages') ):
|
|
39 |
class pbSEOFriendlyImages
|
40 |
{
|
41 |
public static $verMajor = '2.2';
|
42 |
-
public static $verMinor = '
|
43 |
|
44 |
public static $basename = false;
|
45 |
public static $userSettings = array();
|
@@ -231,6 +231,9 @@ if( !class_exists('pbSEOFriendlyImages') ):
|
|
231 |
if( empty($content) || !class_exists('DOMDocument') )
|
232 |
return $content;
|
233 |
|
|
|
|
|
|
|
234 |
$charset = DB_CHARSET || 'utf-8';
|
235 |
|
236 |
$document = new DOMDocument();
|
3 |
Plugin Name: PB SEO Friendly Images
|
4 |
Plugin URI: https://wordpress.org/extend/plugins/pb-seo-friendly-images/
|
5 |
Description: This plugin is a full-featured solution for SEO friendly images. Optimize "alt" and "title" attributes for all images and post thumbnails. This plugin helps you to improve your traffic from search engines.
|
6 |
+
Version: 2.2.2
|
7 |
Author: Pascal Bajorat
|
8 |
Author URI: https://www.pascal-bajorat.com
|
9 |
Text Domain: pb-seo-friendly-images
|
39 |
class pbSEOFriendlyImages
|
40 |
{
|
41 |
public static $verMajor = '2.2';
|
42 |
+
public static $verMinor = '2';
|
43 |
|
44 |
public static $basename = false;
|
45 |
public static $userSettings = array();
|
231 |
if( empty($content) || !class_exists('DOMDocument') )
|
232 |
return $content;
|
233 |
|
234 |
+
if( get_post_type() == 'tribe_events' )
|
235 |
+
return $content;
|
236 |
+
|
237 |
$charset = DB_CHARSET || 'utf-8';
|
238 |
|
239 |
$document = new DOMDocument();
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link: https://www.pascal-bajorat.com/spenden/
|
|
4 |
Tags: seo, images, Post, admin, google, attachment, optimize, photo, picture, image, media, photos, pictures, alt, title
|
5 |
Requires at least: 3.0
|
6 |
Tested up to: 4.8
|
7 |
-
Stable tag: 2.2.
|
8 |
License: GPLv3
|
9 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
10 |
|
@@ -42,6 +42,10 @@ If you have any questions or problems, you can ask me: [Pascal Bajorat - Webdesi
|
|
42 |
|
43 |
== Changelog ==
|
44 |
|
|
|
|
|
|
|
|
|
45 |
= 2.2.1 =
|
46 |
* Added "how it works" text
|
47 |
* Added "Changelog" button / link
|
4 |
Tags: seo, images, Post, admin, google, attachment, optimize, photo, picture, image, media, photos, pictures, alt, title
|
5 |
Requires at least: 3.0
|
6 |
Tested up to: 4.8
|
7 |
+
Stable tag: 2.2.2
|
8 |
License: GPLv3
|
9 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
10 |
|
42 |
|
43 |
== Changelog ==
|
44 |
|
45 |
+
= 2.2.2 =
|
46 |
+
* Fixed a bug with The Events Calendar plugin
|
47 |
+
* Fixed a bug with Facebook Instant Articles and RSS Feeds
|
48 |
+
|
49 |
= 2.2.1 =
|
50 |
* Added "how it works" text
|
51 |
* Added "Changelog" button / link
|