Version Description
Download this release
Release Info
Developer | freediver |
Plugin | SEO Friendly Images |
Version | 2.3.2 |
Comparing to | |
See all releases |
Code changes from version 2.3.1 to 2.3.2
- i/paypal.gif +0 -0
- i/twit.png +0 -0
- readme.txt +4 -2
- seo-friendly-images.php +15 -16
i/paypal.gif
ADDED
Binary file
|
i/twit.png
ADDED
Binary file
|
readme.txt
CHANGED
@@ -3,7 +3,7 @@ Contributors: freediver
|
|
3 |
Donate link: https://www.networkforgood.org/donation/MakeDonation.aspx?ORGID2=920155875
|
4 |
Tags: seo, images, Post, admin, google
|
5 |
Requires at least: 2.0
|
6 |
-
Tested up to: 2.
|
7 |
Stable tag: trunk
|
8 |
|
9 |
SEO Friendly Images automatically adds alt and title attributes to all your images. Improves traffic from search results and makes the tags w3c/xHTML valid as well.
|
@@ -19,7 +19,9 @@ TITLE attribute play lesser role but is important for visitors as this text will
|
|
19 |
|
20 |
Changes
|
21 |
|
22 |
-
v2.3:
|
|
|
|
|
23 |
|
24 |
v2.2: Fixes an issue with poorly formatted img tag
|
25 |
|
3 |
Donate link: https://www.networkforgood.org/donation/MakeDonation.aspx?ORGID2=920155875
|
4 |
Tags: seo, images, Post, admin, google
|
5 |
Requires at least: 2.0
|
6 |
+
Tested up to: 2.7
|
7 |
Stable tag: trunk
|
8 |
|
9 |
SEO Friendly Images automatically adds alt and title attributes to all your images. Improves traffic from search results and makes the tags w3c/xHTML valid as well.
|
19 |
|
20 |
Changes
|
21 |
|
22 |
+
v2.3.2: WP 2.7 cleanup
|
23 |
+
|
24 |
+
v2.3.1: Fixes img formatting problem
|
25 |
|
26 |
v2.2: Fixes an issue with poorly formatted img tag
|
27 |
|
seo-friendly-images.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
Plugin Name: SEO Friendly Images
|
5 |
Plugin URI: http://www.prelovac.com/vladimir/wordpress-plugins/seo-friendly-images
|
6 |
Description: Automatically adds alt and title attributes to all your images. Improves traffic from search results and makes them W3C/xHTML valid as well.
|
7 |
-
Version: 2.3.
|
8 |
Author: Vladimir Prelovac
|
9 |
Author URI: http://www.prelovac.com/vladimir
|
10 |
|
@@ -16,7 +16,7 @@ Copyright 2008 Vladimir Prelovac vprelovac@gmail.com
|
|
16 |
|
17 |
*/
|
18 |
|
19 |
-
$seo_friendly_images_localversion="2.3.
|
20 |
$sfi_plugin_url = trailingslashit( get_bloginfo('wpurl') ).PLUGINDIR.'/'. dirname( plugin_basename(__FILE__) );
|
21 |
function seo_friendly_images_add_pages()
|
22 |
{
|
@@ -72,23 +72,22 @@ function seo_friendly_images_options_page()
|
|
72 |
|
73 |
echo <<<END
|
74 |
<div class="wrap" style="max-width:950px !important;">
|
75 |
-
<h2>SEO Friendly Images
|
76 |
|
77 |
<div id="poststuff" style="margin-top:10px;">
|
78 |
|
79 |
<div id="sideblock" style="float:right;width:220px;margin-left:10px;">
|
80 |
-
<
|
81 |
<div id="dbx-content" style="text-decoration:none;">
|
82 |
-
|
83 |
-
|
84 |
-
|
85 |
-
|
86 |
-
|
87 |
-
|
88 |
-
|
89 |
-
|
90 |
-
|
91 |
-
<p> <img src="$imgpath/idea.png"><a style="text-decoration:none;" href="http://www.prelovac.com/vladimir/services"> Need a WordPress Expert?</a></p>
|
92 |
</div>
|
93 |
</div>
|
94 |
|
@@ -97,7 +96,7 @@ function seo_friendly_images_options_page()
|
|
97 |
<div class="dbx-content">
|
98 |
<form name="sfiform" action="$action_url" method="post">
|
99 |
<input type="hidden" name="submitted" value="1" />
|
100 |
-
<
|
101 |
|
102 |
<p>SEO Friendly Images automatically adds alt and title attributes to all your images in all your posts specified by parameters below.</p>
|
103 |
<p>You can enter any text in the field including two special tags:</p>
|
@@ -143,7 +142,7 @@ Setting title attribute to "%name photo" will produce title="Ferrari photo"</p>
|
|
143 |
|
144 |
</div>
|
145 |
|
146 |
-
<h5>
|
147 |
</div>
|
148 |
END;
|
149 |
|
4 |
Plugin Name: SEO Friendly Images
|
5 |
Plugin URI: http://www.prelovac.com/vladimir/wordpress-plugins/seo-friendly-images
|
6 |
Description: Automatically adds alt and title attributes to all your images. Improves traffic from search results and makes them W3C/xHTML valid as well.
|
7 |
+
Version: 2.3.2
|
8 |
Author: Vladimir Prelovac
|
9 |
Author URI: http://www.prelovac.com/vladimir
|
10 |
|
16 |
|
17 |
*/
|
18 |
|
19 |
+
$seo_friendly_images_localversion="2.3.2";
|
20 |
$sfi_plugin_url = trailingslashit( get_bloginfo('wpurl') ).PLUGINDIR.'/'. dirname( plugin_basename(__FILE__) );
|
21 |
function seo_friendly_images_add_pages()
|
22 |
{
|
72 |
|
73 |
echo <<<END
|
74 |
<div class="wrap" style="max-width:950px !important;">
|
75 |
+
<h2>SEO Friendly Images</h2>
|
76 |
|
77 |
<div id="poststuff" style="margin-top:10px;">
|
78 |
|
79 |
<div id="sideblock" style="float:right;width:220px;margin-left:10px;">
|
80 |
+
<h2>Information</h2>
|
81 |
<div id="dbx-content" style="text-decoration:none;">
|
82 |
+
<img src="$imgpath/home.png"><a style="text-decoration:none;" href="http://www.prelovac.com/vladimir/wordpress-plugins/seo-image"> SEO Friendly Images Home</a><br /><br />
|
83 |
+
<img src="$imgpath/rate.png"><a style="text-decoration:none;" href="http://wordpress.org/extend/plugins/seo-image/"> Rate this plugin</a><br /><br />
|
84 |
+
<img src="$imgpath/help.png"><a style="text-decoration:none;" href="http://www.prelovac.com/vladimir/forum"> Support and Help</a><br />
|
85 |
+
<p >
|
86 |
+
<a style="text-decoration:none;" href="https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=2567254"><img src="$imgpath/paypal.gif"></a>
|
87 |
+
</p><br />
|
88 |
+
<img src="$imgpath/more.png"><a style="text-decoration:none;" href="http://www.prelovac.com/vladimir/wordpress-plugins"> Cool WordPress Plugins</a><br /><br />
|
89 |
+
<img src="$imgpath/twit.png"><a style="text-decoration:none;" href="http://twitter.com/vprelovac"> Follow updates on Twitter</a><br /><br />
|
90 |
+
<img src="$imgpath/idea.png"><a style="text-decoration:none;" href="http://www.prelovac.com/vladimir/services"> Need a WordPress Expert?</a>
|
|
|
91 |
</div>
|
92 |
</div>
|
93 |
|
96 |
<div class="dbx-content">
|
97 |
<form name="sfiform" action="$action_url" method="post">
|
98 |
<input type="hidden" name="submitted" value="1" />
|
99 |
+
<h2>General Options</h2>
|
100 |
|
101 |
<p>SEO Friendly Images automatically adds alt and title attributes to all your images in all your posts specified by parameters below.</p>
|
102 |
<p>You can enter any text in the field including two special tags:</p>
|
142 |
|
143 |
</div>
|
144 |
|
145 |
+
<h5>a plugin by <a href="http://www.prelovac.com/vladimir/">Vladimir Prelovac</a></h5>
|
146 |
</div>
|
147 |
END;
|
148 |
|