Version Description
Download this release
Release Info
| Developer | uberdose |
| Plugin | |
| Version | 1.3.7.9 |
| Comparing to | |
| See all releases | |
Code changes from version 1.3.7.8 to 1.3.7.9
- all_in_one_seo_pack-bg_BG.mo +0 -0
- all_in_one_seo_pack-de_DE.mo +0 -0
- all_in_one_seo_pack-tr_TR.mo +0 -0
- all_in_one_seo_pack.php +11 -3
all_in_one_seo_pack-bg_BG.mo
CHANGED
|
Binary file
|
all_in_one_seo_pack-de_DE.mo
CHANGED
|
Binary file
|
all_in_one_seo_pack-tr_TR.mo
CHANGED
|
Binary file
|
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;
|
|
@@ -210,12 +210,14 @@ class All_in_One_SEO_Pack {
|
|
| 210 |
echo $meta_string .= "$post_meta";
|
| 211 |
}
|
| 212 |
|
|
|
|
| 213 |
if (isset($aiosp_meta) && isset($aiosp_meta) && !empty($aiosp_meta)) {
|
| 214 |
if (isset($meta_string)) {
|
| 215 |
$meta_string .= "\n";
|
| 216 |
}
|
| 217 |
$meta_string .= "$aiosp_meta";
|
| 218 |
}
|
|
|
|
| 219 |
|
| 220 |
if ($meta_string != null) {
|
| 221 |
echo "$meta_string\n";
|
|
@@ -684,7 +686,7 @@ class All_in_One_SEO_Pack {
|
|
| 684 |
delete_post_meta($id, 'keywords');
|
| 685 |
delete_post_meta($id, 'description');
|
| 686 |
delete_post_meta($id, 'title');
|
| 687 |
-
delete_post_meta($id, 'aiosp_meta');
|
| 688 |
|
| 689 |
if (isset($keywords) && !empty($keywords)) {
|
| 690 |
add_post_meta($id, 'keywords', $keywords);
|
|
@@ -695,9 +697,11 @@ class All_in_One_SEO_Pack {
|
|
| 695 |
if (isset($title) && !empty($title)) {
|
| 696 |
add_post_meta($id, 'title', $title);
|
| 697 |
}
|
|
|
|
| 698 |
if (isset($aiosp_meta) && !empty($aiosp_meta)) {
|
| 699 |
add_post_meta($id, 'aiosp_meta', $aiosp_meta);
|
| 700 |
}
|
|
|
|
| 701 |
}
|
| 702 |
}
|
| 703 |
|
|
@@ -806,10 +810,12 @@ class All_in_One_SEO_Pack {
|
|
| 806 |
<th scope="row" style="text-align:right;"><?php _e('Keywords (comma separated):', 'all_in_one_seo_pack') ?></th>
|
| 807 |
<td><input value="<?php echo $keywords ?>" type="text" name="aiosp_keywords" size="80"/></td>
|
| 808 |
</tr>
|
|
|
|
| 809 |
<tr>
|
| 810 |
<th scope="row" style="text-align:right;"><?php _e('Additional META:', 'all_in_one_seo_pack') ?></th>
|
| 811 |
<td><input value="<?php echo $aiosp_meta ?>" type="text" name="aiosp_meta" size="80"/></td>
|
| 812 |
</tr>
|
|
|
|
| 813 |
</table>
|
| 814 |
<?php
|
| 815 |
}
|
|
@@ -855,10 +861,12 @@ class All_in_One_SEO_Pack {
|
|
| 855 |
<th scope="row" style="text-align:right;"><?php _e('Keywords (comma separated):', 'all_in_one_seo_pack') ?></th>
|
| 856 |
<td><input value="<?php echo $keywords ?>" type="text" name="aiosp_keywords" size="80" tabindex="1002"/></td>
|
| 857 |
</tr>
|
|
|
|
| 858 |
<tr>
|
| 859 |
<th scope="row" style="text-align:right;"><?php _e('Additional META:', 'all_in_one_seo_pack') ?></th>
|
| 860 |
<td><input value="<?php echo $aiosp_meta ?>" type="text" name="aiosp_meta" size="80"/></td>
|
| 861 |
</tr>
|
|
|
|
| 862 |
</table>
|
| 863 |
<?php
|
| 864 |
}
|
| 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.9
|
| 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.9";
|
| 32 |
|
| 33 |
/** Max numbers of chars in auto-generated description */
|
| 34 |
var $maximum_description_length = 160;
|
| 210 |
echo $meta_string .= "$post_meta";
|
| 211 |
}
|
| 212 |
|
| 213 |
+
/*
|
| 214 |
if (isset($aiosp_meta) && isset($aiosp_meta) && !empty($aiosp_meta)) {
|
| 215 |
if (isset($meta_string)) {
|
| 216 |
$meta_string .= "\n";
|
| 217 |
}
|
| 218 |
$meta_string .= "$aiosp_meta";
|
| 219 |
}
|
| 220 |
+
*/
|
| 221 |
|
| 222 |
if ($meta_string != null) {
|
| 223 |
echo "$meta_string\n";
|
| 686 |
delete_post_meta($id, 'keywords');
|
| 687 |
delete_post_meta($id, 'description');
|
| 688 |
delete_post_meta($id, 'title');
|
| 689 |
+
//delete_post_meta($id, 'aiosp_meta');
|
| 690 |
|
| 691 |
if (isset($keywords) && !empty($keywords)) {
|
| 692 |
add_post_meta($id, 'keywords', $keywords);
|
| 697 |
if (isset($title) && !empty($title)) {
|
| 698 |
add_post_meta($id, 'title', $title);
|
| 699 |
}
|
| 700 |
+
/*
|
| 701 |
if (isset($aiosp_meta) && !empty($aiosp_meta)) {
|
| 702 |
add_post_meta($id, 'aiosp_meta', $aiosp_meta);
|
| 703 |
}
|
| 704 |
+
*/
|
| 705 |
}
|
| 706 |
}
|
| 707 |
|
| 810 |
<th scope="row" style="text-align:right;"><?php _e('Keywords (comma separated):', 'all_in_one_seo_pack') ?></th>
|
| 811 |
<td><input value="<?php echo $keywords ?>" type="text" name="aiosp_keywords" size="80"/></td>
|
| 812 |
</tr>
|
| 813 |
+
<!--
|
| 814 |
<tr>
|
| 815 |
<th scope="row" style="text-align:right;"><?php _e('Additional META:', 'all_in_one_seo_pack') ?></th>
|
| 816 |
<td><input value="<?php echo $aiosp_meta ?>" type="text" name="aiosp_meta" size="80"/></td>
|
| 817 |
</tr>
|
| 818 |
+
-->
|
| 819 |
</table>
|
| 820 |
<?php
|
| 821 |
}
|
| 861 |
<th scope="row" style="text-align:right;"><?php _e('Keywords (comma separated):', 'all_in_one_seo_pack') ?></th>
|
| 862 |
<td><input value="<?php echo $keywords ?>" type="text" name="aiosp_keywords" size="80" tabindex="1002"/></td>
|
| 863 |
</tr>
|
| 864 |
+
<!--
|
| 865 |
<tr>
|
| 866 |
<th scope="row" style="text-align:right;"><?php _e('Additional META:', 'all_in_one_seo_pack') ?></th>
|
| 867 |
<td><input value="<?php echo $aiosp_meta ?>" type="text" name="aiosp_meta" size="80"/></td>
|
| 868 |
</tr>
|
| 869 |
+
-->
|
| 870 |
</table>
|
| 871 |
<?php
|
| 872 |
}
|
