Version Description
Download this release
Release Info
Developer | uberdose |
Plugin | All in One SEO Pack |
Version | 1.3.7.1 |
Comparing to | |
See all releases |
Code changes from version 1.3.7 to 1.3.7.1
- all_in_one_seo_pack.php +4 -4
all_in_one_seo_pack.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
Plugin Name: All in One SEO Pack
|
5 |
Plugin URI: http://wp.uberdose.com/2007/03/24/all-in-one-seo-pack/
|
6 |
Description: Out-of-the-box SEO for your Wordpress blog.
|
7 |
-
Version: 1.3.7
|
8 |
Author: uberdose
|
9 |
Author URI: http://wp.uberdose.com/
|
10 |
*/
|
@@ -28,7 +28,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
28 |
|
29 |
class All_in_One_SEO_Pack {
|
30 |
|
31 |
-
var $version = "1.3.7";
|
32 |
|
33 |
/** Max numbers of chars in auto-generated description */
|
34 |
var $maximum_description_length = 160;
|
@@ -456,7 +456,7 @@ class All_in_One_SEO_Pack {
|
|
456 |
$tags = get_the_tags($post->ID);
|
457 |
if ($tags && is_array($tags)) {
|
458 |
foreach ($tags as $tag) {
|
459 |
-
$keywords[] = $tag->name;
|
460 |
}
|
461 |
}
|
462 |
}
|
@@ -486,7 +486,7 @@ class All_in_One_SEO_Pack {
|
|
486 |
if (get_option('aiosp_use_categories') && !is_page()) {
|
487 |
$categories = get_the_category($post->ID);
|
488 |
foreach ($categories as $category) {
|
489 |
-
$keywords[] = $category->cat_name;
|
490 |
}
|
491 |
}
|
492 |
|
4 |
Plugin Name: All in One SEO Pack
|
5 |
Plugin URI: http://wp.uberdose.com/2007/03/24/all-in-one-seo-pack/
|
6 |
Description: Out-of-the-box SEO for your Wordpress blog.
|
7 |
+
Version: 1.3.7.1
|
8 |
Author: uberdose
|
9 |
Author URI: http://wp.uberdose.com/
|
10 |
*/
|
28 |
|
29 |
class All_in_One_SEO_Pack {
|
30 |
|
31 |
+
var $version = "1.3.7.1";
|
32 |
|
33 |
/** Max numbers of chars in auto-generated description */
|
34 |
var $maximum_description_length = 160;
|
456 |
$tags = get_the_tags($post->ID);
|
457 |
if ($tags && is_array($tags)) {
|
458 |
foreach ($tags as $tag) {
|
459 |
+
$keywords[] = $this->internationalize($tag->name);
|
460 |
}
|
461 |
}
|
462 |
}
|
486 |
if (get_option('aiosp_use_categories') && !is_page()) {
|
487 |
$categories = get_the_category($post->ID);
|
488 |
foreach ($categories as $category) {
|
489 |
+
$keywords[] = $this->internationalize($category->cat_name);
|
490 |
}
|
491 |
}
|
492 |
|