Version Description
Fixed Image Name Issue.
Download this release
Release Info
Developer | priyanshu.mittal |
Plugin | Seo Optimized Images |
Version | 1.3 |
Comparing to | |
See all releases |
Code changes from version 1.2 to 1.3
- readme.txt +4 -2
- seo-optimized-images.php +4 -3
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
|
7 |
-
Stable tag: 1.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -45,6 +45,8 @@ In case you face any problem, contact us via the [Forums](https://wordpress.org/
|
|
45 |
|
46 |
== Changelog ==
|
47 |
|
|
|
|
|
48 |
= 1.2 =
|
49 |
1. Added support to show post categores in title and alt image attributes.
|
50 |
= 1.1 =
|
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 |
|
45 |
|
46 |
== Changelog ==
|
47 |
|
48 |
+
= 1.3 =
|
49 |
+
Fixed Image Name Issue.
|
50 |
= 1.2 =
|
51 |
1. Added support to show post categores in title and alt image attributes.
|
52 |
= 1.1 =
|
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.
|
8 |
Author: priyanshu.mittal
|
9 |
Author URI: http://webriti.com
|
10 |
|
@@ -97,8 +97,9 @@ function soi_replace_tags ($content, $alt_text='',$title='')
|
|
97 |
}
|
98 |
}
|
99 |
|
100 |
-
|
101 |
-
|
|
|
102 |
|
103 |
// Replace the Values for alt tag
|
104 |
|
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 |
|
97 |
}
|
98 |
}
|
99 |
|
100 |
+
/// fetch the values of alt and title tags from the option panel
|
101 |
+
$alt_text = $soi_options_array['soi_alt_value'];
|
102 |
+
$title_text = $soi_options_array['soi_title_value'];
|
103 |
|
104 |
// Replace the Values for alt tag
|
105 |
|