SEO Friendly Images - Version 2.3.1

Version Description

Download this release

Release Info

Developer freediver
Plugin Icon 128x128 SEO Friendly Images
Version 2.3.1
Comparing to
See all releases

Code changes from version 2.3 to 2.3.1

Files changed (8) hide show
  1. cafe.gif +0 -0
  2. help.png +0 -0
  3. home.png +0 -0
  4. idea.png +0 -0
  5. more.png +0 -0
  6. p1.png +0 -0
  7. readme.txt +3 -1
  8. seo-friendly-images.php +4 -4
cafe.gif ADDED
Binary file
help.png ADDED
Binary file
home.png ADDED
Binary file
idea.png ADDED
Binary file
more.png ADDED
Binary file
p1.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.5.1
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.
@@ -27,6 +27,8 @@ v2.0: Fixed compability issue with WordPress 2.5.1 and included %category replac
27
 
28
  v1.1: Fixed quotes in title bug
29
 
 
 
30
  == Installation ==
31
 
32
  1. Upload the whole plugin folder to your /wp-content/plugins/ folder.
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.6.3
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.
27
 
28
  v1.1: Fixed quotes in title bug
29
 
30
+ Plugin by Vladimir Prelovac. Need <a href="http://www.prelovac.com/vladimir/services">WordPress SEO Service</a>?
31
+
32
  == Installation ==
33
 
34
  1. Upload the whole plugin folder to your /wp-content/plugins/ folder.
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
  {
@@ -80,7 +80,7 @@ function seo_friendly_images_options_page()
80
  <h3>Information</h3>
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/help.png"><a style="text-decoration:none;" href="http://www.prelovac.com/vladimir/wordpress-plugins/seo-image#comments"> Suggest a Feature</a><br /><br />
84
  <img src="$imgpath/rate.png"><a style="text-decoration:none;" href="http://wordpress.org/extend/plugins/seo-image/"> Rate SEO Friendly Images</a><br /><br />
85
  <img src="$imgpath/more.png"><a style="text-decoration:none;" href="http://www.prelovac.com/vladimir/wordpress-plugins"> My WordPress Plugins</a><br /><br />
86
  <br />
@@ -198,7 +198,7 @@ function seo_friendly_images_process($matches) {
198
 
199
  $titletext_rep=str_replace("_", " ", $titletext_rep);
200
  $titletext_rep=str_replace("-", " ", $titletext_rep);
201
- $titletext_rep=ucwords(strtolower($titletext_rep));
202
 
203
 
204
 
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.1
8
  Author: Vladimir Prelovac
9
  Author URI: http://www.prelovac.com/vladimir
10
 
16
 
17
  */
18
 
19
+ $seo_friendly_images_localversion="2.3.1";
20
  $sfi_plugin_url = trailingslashit( get_bloginfo('wpurl') ).PLUGINDIR.'/'. dirname( plugin_basename(__FILE__) );
21
  function seo_friendly_images_add_pages()
22
  {
80
  <h3>Information</h3>
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/help.png"><a style="text-decoration:none;" href="http://www.prelovac.com/vladimir/forum"> Plugin Forums</a><br /><br />
84
  <img src="$imgpath/rate.png"><a style="text-decoration:none;" href="http://wordpress.org/extend/plugins/seo-image/"> Rate SEO Friendly Images</a><br /><br />
85
  <img src="$imgpath/more.png"><a style="text-decoration:none;" href="http://www.prelovac.com/vladimir/wordpress-plugins"> My WordPress Plugins</a><br /><br />
86
  <br />
198
 
199
  $titletext_rep=str_replace("_", " ", $titletext_rep);
200
  $titletext_rep=str_replace("-", " ", $titletext_rep);
201
+ //$titletext_rep=ucwords(strtolower($titletext_rep));
202
 
203
 
204