Version Description
Download this release
Release Info
Developer | uberdose |
Plugin | All in One SEO Pack |
Version | 1.2.8.5 |
Comparing to | |
See all releases |
Code changes from version 1.2.8.4 to 1.2.8.5
- all_in_one_seo_pack.php +13 -2
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.2.8.
|
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.2.8.
|
32 |
|
33 |
/**
|
34 |
* Max numbers of chars in auto-generated description.
|
@@ -413,6 +413,15 @@ class All_in_One_SEO_Pack {
|
|
413 |
if (isset($keywords_i) && !empty($keywords_i)) {
|
414 |
$keywords[] = $keywords_i;
|
415 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
416 |
}
|
417 |
}
|
418 |
}
|
@@ -675,6 +684,8 @@ href="http://wp.uberdose.com/2007/07/27/all-in-one-seo-pack-release-history/"><p
|
|
675 |
href="http://wp.uberdose.com/2007/07/11/all-in-one-seo-pack-faq/"><?php _e('FAQ', 'all_in_one_seo_pack') ?></a>
|
676 |
| <a target="_blank" title="<?php _e('All in One SEO Plugin Feedback', 'all_in_one_seo_pack') ?>"
|
677 |
href="http://wp.uberdose.com/2007/03/24/all-in-one-seo-pack/#respond"><?php _e('Feedback', 'all_in_one_seo_pack') ?></a>
|
|
|
|
|
678 |
</p>
|
679 |
<form name="dofollow" action="" method="post">
|
680 |
<table>
|
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.2.8.5
|
8 |
Author: uberdose
|
9 |
Author URI: http://wp.uberdose.com/
|
10 |
*/
|
28 |
|
29 |
class All_in_One_SEO_Pack {
|
30 |
|
31 |
+
var $version = "1.2.8.5";
|
32 |
|
33 |
/**
|
34 |
* Max numbers of chars in auto-generated description.
|
413 |
if (isset($keywords_i) && !empty($keywords_i)) {
|
414 |
$keywords[] = $keywords_i;
|
415 |
}
|
416 |
+
|
417 |
+
// autometa
|
418 |
+
$autometa = stripslashes(get_post_meta($post->ID, "autometa", true));
|
419 |
+
if (isset($autometa)) {
|
420 |
+
$autometa_array = explode(' ', $autometa);
|
421 |
+
foreach ($autometa_array as $e) {
|
422 |
+
$keywords[] = $e;
|
423 |
+
}
|
424 |
+
}
|
425 |
}
|
426 |
}
|
427 |
}
|
684 |
href="http://wp.uberdose.com/2007/07/11/all-in-one-seo-pack-faq/"><?php _e('FAQ', 'all_in_one_seo_pack') ?></a>
|
685 |
| <a target="_blank" title="<?php _e('All in One SEO Plugin Feedback', 'all_in_one_seo_pack') ?>"
|
686 |
href="http://wp.uberdose.com/2007/03/24/all-in-one-seo-pack/#respond"><?php _e('Feedback', 'all_in_one_seo_pack') ?></a>
|
687 |
+
| <a target="_blank" title="<?php _e('All in One SEO Plugin Translations', 'all_in_one_seo_pack') ?>"
|
688 |
+
href="http://wp.uberdose.com/2007/10/02/translations-for-all-in-one-seo-pack/"><?php _e('Translations', 'all_in_one_seo_pack') ?></a>
|
689 |
</p>
|
690 |
<form name="dofollow" action="" method="post">
|
691 |
<table>
|