Version Description
- WordPress 3.8 compatibility.
Download this release
Release Info
Developer | freediver |
Plugin | SEO Friendly Images |
Version | 2.7.6 |
Comparing to | |
See all releases |
Code changes from version 2.7.5 to 2.7.6
- readme.txt +4 -1
- seo-friendly-images.php +2 -2
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.7
|
6 |
-
Tested up to:
|
7 |
Stable tag: trunk
|
8 |
|
9 |
SEO Friendly Images automatically adds alt and title attributes to all your images improving traffic from search engines.
|
@@ -23,6 +23,9 @@ If you like what I do in WordPress, you will also like [ManageWP](http://managew
|
|
23 |
|
24 |
== Changelog ==
|
25 |
|
|
|
|
|
|
|
26 |
= 2.7.5 =
|
27 |
* XSS and CSRF fixes
|
28 |
|
3 |
Donate link: https://www.networkforgood.org/donation/MakeDonation.aspx?ORGID2=920155875
|
4 |
Tags: seo, images, Post, admin, google
|
5 |
Requires at least: 2.7
|
6 |
+
Tested up to: 4.0
|
7 |
Stable tag: trunk
|
8 |
|
9 |
SEO Friendly Images automatically adds alt and title attributes to all your images improving traffic from search engines.
|
23 |
|
24 |
== Changelog ==
|
25 |
|
26 |
+
= 2.7.6 =
|
27 |
+
* WordPress 3.8 compatibility.
|
28 |
+
|
29 |
= 2.7.5 =
|
30 |
* XSS and CSRF fixes
|
31 |
|
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.7.
|
8 |
Author: Vladimir Prelovac
|
9 |
Author URI: http://www.prelovac.com/vladimir
|
10 |
|
@@ -15,7 +15,7 @@ To-Do:
|
|
15 |
Copyright 2008 Vladimir Prelovac vprelovac@gmail.com
|
16 |
|
17 |
*/
|
18 |
-
$seo_friendly_images_localversion="2.7.
|
19 |
$sfi_plugin_url = trailingslashit( get_bloginfo('wpurl') ).PLUGINDIR.'/'. dirname( plugin_basename(__FILE__) );
|
20 |
function seo_friendly_images_add_pages() {
|
21 |
add_options_page('SEO Friendly Images options', 'SEO Friendly Images', 'manage_options', __FILE__, 'seo_friendly_images_options_page');
|
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.7.6
|
8 |
Author: Vladimir Prelovac
|
9 |
Author URI: http://www.prelovac.com/vladimir
|
10 |
|
15 |
Copyright 2008 Vladimir Prelovac vprelovac@gmail.com
|
16 |
|
17 |
*/
|
18 |
+
$seo_friendly_images_localversion="2.7.6";
|
19 |
$sfi_plugin_url = trailingslashit( get_bloginfo('wpurl') ).PLUGINDIR.'/'. dirname( plugin_basename(__FILE__) );
|
20 |
function seo_friendly_images_add_pages() {
|
21 |
add_options_page('SEO Friendly Images options', 'SEO Friendly Images', 'manage_options', __FILE__, 'seo_friendly_images_options_page');
|