Seo Optimized Images - Version 1.4

Version Description

Added check for special characters in the post title.

Download this release

Release Info

Developer priyanshu.mittal
Plugin Icon 128x128 Seo Optimized Images
Version 1.4
Comparing to
See all releases

Code changes from version 1.3 to 1.4

readme.txt CHANGED
@@ -3,8 +3,8 @@ Contributors: priyanshu.mittal
3
  Donate link: http://www.webriti.com/
4
  Tags: seo, images, seo for images, alt , alt tag, alt attribute, traffic, title tag, traffic, title attribute, seo optimization, optimization, image optimization, cool seo,search engine optimized images, search engine optimization, seo friendly images,seo friendly images plugin, google search optimized images,search friendly
5
  Requires at least: 3.3+
6
- Tested up to: 4.3.1
7
- Stable tag: 1.3
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -44,7 +44,8 @@ In case you face any problem, contact us via the [Forums](https://wordpress.org/
44
 
45
 
46
  == Changelog ==
47
-
 
48
  = 1.3 =
49
  Fixed Image Name Issue.
50
  = 1.2 =
3
  Donate link: http://www.webriti.com/
4
  Tags: seo, images, seo for images, alt , alt tag, alt attribute, traffic, title tag, traffic, title attribute, seo optimization, optimization, image optimization, cool seo,search engine optimized images, search engine optimization, seo friendly images,seo friendly images plugin, google search optimized images,search friendly
5
  Requires at least: 3.3+
6
+ Tested up to: 4.4.1
7
+ Stable tag: 1.4
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
44
 
45
 
46
  == Changelog ==
47
+ = 1.4 =
48
+ Added check for special characters in the post title.
49
  = 1.3 =
50
  Fixed Image Name Issue.
51
  = 1.2 =
seo-optimized-images-settings.php CHANGED
@@ -1,8 +1,4 @@
1
  <?php
2
-
3
-
4
-
5
-
6
  $default_options_data = array (
7
 
8
 
1
  <?php
 
 
 
 
2
  $default_options_data = array (
3
 
4
 
seo-optimized-images.php CHANGED
@@ -4,7 +4,7 @@
4
  Plugin Name: SEO Optimized Images
5
  Plugin URI: http://webriti.com
6
  Description: The **SEO Optimized Images** plugin Seo Optmized Images Plugin lets you dynamically insert Seo Friendly alt attributes and title attributes to your Images . Simply activate the plugin, provide the pattern and you are ready to go.
7
- Version: 1.3
8
  Author: priyanshu.mittal
9
  Author URI: http://webriti.com
10
 
@@ -26,8 +26,8 @@ function soi_replace_tags ($content, $alt_text='',$title='')
26
  $title_text = $soi_options_array['soi_title_value'];
27
 
28
  // get the post title for later use
29
- $post_title = $post->post_title;
30
-
31
  // preapre the alt text
32
 
33
 
4
  Plugin Name: SEO Optimized Images
5
  Plugin URI: http://webriti.com
6
  Description: The **SEO Optimized Images** plugin Seo Optmized Images Plugin lets you dynamically insert Seo Friendly alt attributes and title attributes to your Images . Simply activate the plugin, provide the pattern and you are ready to go.
7
+ Version: 1.3.1
8
  Author: priyanshu.mittal
9
  Author URI: http://webriti.com
10
 
26
  $title_text = $soi_options_array['soi_title_value'];
27
 
28
  // get the post title for later use
29
+ $post_title = esc_attr($post->post_title);
30
+
31
  // preapre the alt text
32
 
33