Version Description
Download this release
Release Info
Developer | hallsofmontezuma |
Plugin | All in One SEO Pack |
Version | 1.5.7 |
Comparing to | |
See all releases |
Code changes from version 1.5.6 to 1.5.7
- all_in_one_seo_pack.php +22 -9
all_in_one_seo_pack.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
Plugin Name: All in One SEO Pack
|
5 |
Plugin URI: http://semperfiwebdesign.com
|
6 |
Description: Out-of-the-box SEO for your Wordpress blog. <a href="options-general.php?page=all-in-one-seo-pack/all_in_one_seo_pack.php">Options configuration panel</a> | <a href="https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=mrtorbert%40gmail%2ecom&item_name=All%20In%20One%20SEO%20Pack&item_number=Support%20Open%20Source&no_shipping=0&no_note=1&tax=0¤cy_code=USD&lc=US&bn=PP%2dDonationsBF&charset=UTF%2d8">Donate</a> | <a href="http://semperfiwebdesign.com/documentation/all-in-one-seo-pack/all-in-one-seo-faq/" >Support</a>
|
7 |
-
Version: 1.5.
|
8 |
Author: Michael Torbert
|
9 |
Author URI: http://michaeltorbert.com
|
10 |
*/
|
@@ -485,7 +485,7 @@ if ( ! defined( 'WP_PLUGIN_DIR' ) )
|
|
485 |
|
486 |
class All_in_One_SEO_Pack {
|
487 |
|
488 |
-
var $version = "1.5.
|
489 |
|
490 |
/** Max numbers of chars in auto-generated description */
|
491 |
var $maximum_description_length = 160;
|
@@ -583,9 +583,21 @@ class All_in_One_SEO_Pack {
|
|
583 |
}
|
584 |
|
585 |
function init() {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
586 |
if (function_exists('load_plugin_textdomain')) {
|
587 |
load_plugin_textdomain('all_in_one_seo_pack', WP_PLUGIN_DIR . '/all-in-one-seo-pack');
|
588 |
}
|
|
|
|
|
589 |
}
|
590 |
|
591 |
function is_static_front_page() {
|
@@ -1720,18 +1732,19 @@ class All_in_One_SEO_Pack {
|
|
1720 |
<p>
|
1721 |
<?php _e("This is version ", 'all_in_one_seo_pack') ?><?php _e("$this->version ", 'all_in_one_seo_pack') ?>
|
1722 |
<a target="_blank" title="<?php _e('All in One SEO Plugin Release History', 'all_in_one_seo_pack')?>"
|
1723 |
-
href="http://semperfiwebdesign.com/documentation/all-in-one-seo-pack/all-in-one-seo-pack-release-history/"><?php _e("
|
1724 |
</a>
|
1725 |
| <a target="_blank" title="<?php _e('FAQ', 'all_in_one_seo_pack') ?>"
|
1726 |
href="http://semperfiwebdesign.com/documentation/all-in-one-seo-pack/all-in-one-seo-faq/"><?php _e('FAQ', 'all_in_one_seo_pack') ?></a>
|
1727 |
-
| <a target="_blank" title="<?php _e('All in One SEO Plugin
|
1728 |
-
href="http://semperfiwebdesign.com/portfolio/wordpress/wordpress-plugins/
|
1729 |
| <a target="_blank" title="<?php _e('All in One SEO Plugin Translations', 'all_in_one_seo_pack') ?>"
|
1730 |
href="http://semperfiwebdesign.com/documentation/all-in-one-seo-pack/translations-for-all-in-one-seo-pack/"><?php _e('Translations', 'all_in_one_seo_pack') ?></a>
|
1731 |
-
|
1732 |
-
|
1733 |
-
|
1734 |
-
|
|
|
1735 |
</p>
|
1736 |
<p>
|
1737 |
<?php
|
4 |
Plugin Name: All in One SEO Pack
|
5 |
Plugin URI: http://semperfiwebdesign.com
|
6 |
Description: Out-of-the-box SEO for your Wordpress blog. <a href="options-general.php?page=all-in-one-seo-pack/all_in_one_seo_pack.php">Options configuration panel</a> | <a href="https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=mrtorbert%40gmail%2ecom&item_name=All%20In%20One%20SEO%20Pack&item_number=Support%20Open%20Source&no_shipping=0&no_note=1&tax=0¤cy_code=USD&lc=US&bn=PP%2dDonationsBF&charset=UTF%2d8">Donate</a> | <a href="http://semperfiwebdesign.com/documentation/all-in-one-seo-pack/all-in-one-seo-faq/" >Support</a>
|
7 |
+
Version: 1.5.7
|
8 |
Author: Michael Torbert
|
9 |
Author URI: http://michaeltorbert.com
|
10 |
*/
|
485 |
|
486 |
class All_in_One_SEO_Pack {
|
487 |
|
488 |
+
var $version = "1.5.7";
|
489 |
|
490 |
/** Max numbers of chars in auto-generated description */
|
491 |
var $maximum_description_length = 160;
|
583 |
}
|
584 |
|
585 |
function init() {
|
586 |
+
if (function_exists('load_plugin_textdomain')) {
|
587 |
+
if ( !defined('WP_PLUGIN_DIR') ) {
|
588 |
+
load_plugin_textdomain('all_in_one_seo_pack', str_replace( ABSPATH, '', dirname(__FILE__)));
|
589 |
+
} else {
|
590 |
+
load_plugin_textdomain('all_in_one_seo_pack', false, dirname(plugin_basename(__FILE__)));
|
591 |
+
}
|
592 |
+
}
|
593 |
+
|
594 |
+
|
595 |
+
/*
|
596 |
if (function_exists('load_plugin_textdomain')) {
|
597 |
load_plugin_textdomain('all_in_one_seo_pack', WP_PLUGIN_DIR . '/all-in-one-seo-pack');
|
598 |
}
|
599 |
+
*/
|
600 |
+
|
601 |
}
|
602 |
|
603 |
function is_static_front_page() {
|
1732 |
<p>
|
1733 |
<?php _e("This is version ", 'all_in_one_seo_pack') ?><?php _e("$this->version ", 'all_in_one_seo_pack') ?>
|
1734 |
<a target="_blank" title="<?php _e('All in One SEO Plugin Release History', 'all_in_one_seo_pack')?>"
|
1735 |
+
href="http://semperfiwebdesign.com/documentation/all-in-one-seo-pack/all-in-one-seo-pack-release-history/"><?php _e("Changelog", 'all_in_one_seo_pack')?>
|
1736 |
</a>
|
1737 |
| <a target="_blank" title="<?php _e('FAQ', 'all_in_one_seo_pack') ?>"
|
1738 |
href="http://semperfiwebdesign.com/documentation/all-in-one-seo-pack/all-in-one-seo-faq/"><?php _e('FAQ', 'all_in_one_seo_pack') ?></a>
|
1739 |
+
| <a target="_blank" title="<?php _e('All in One SEO Plugin Support Forum', 'all_in_one_seo_pack') ?>"
|
1740 |
+
href="http://semperfiwebdesign.com/portfolio/wordpress/wordpress-plugins/forum/"><?php _e('Support', 'all_in_one_seo_pack') ?></a>
|
1741 |
| <a target="_blank" title="<?php _e('All in One SEO Plugin Translations', 'all_in_one_seo_pack') ?>"
|
1742 |
href="http://semperfiwebdesign.com/documentation/all-in-one-seo-pack/translations-for-all-in-one-seo-pack/"><?php _e('Translations', 'all_in_one_seo_pack') ?></a>
|
1743 |
+
<br /><br />
|
1744 |
+
<a target="_blank" title="<?php echo 'Donate' ?>"
|
1745 |
+
href="https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=mrtorbert%40gmail%2ecom&item_name=All%20In%20One%20SEO%20Pack&item_number=Support%20Open%20Source&no_shipping=0&no_note=1&tax=0¤cy_code=USD&lc=US&bn=PP%2dDonationsBF&charset=UTF%2d8"><img src="https://www.paypal.com/en_US/i/btn/btn_donateCC_LG.gif" width="100px" alt="Donate" /><?php //echo 'Donate' ?></a>
|
1746 |
+
| <a target="_blank" title="<?php _e('Follow us on', 'all_in_one_seo_pack') ?>"
|
1747 |
+
href="http://twitter.com/michaeltorbert/"><?php _e('Follow us on ', 'all_in_one_seo_pack') ?><img src="http://static.twitter.com/images/twitter_logo.png" alt="<?php _e('Twitter', 'all_in_one_seo_pack') ?>" width="70px" /></a>
|
1748 |
</p>
|
1749 |
<p>
|
1750 |
<?php
|