All in One SEO Pack - Version 1.6.14.5

Version Description

Download this release

Release Info

Developer pbaylies
Plugin Icon 128x128 All in One SEO Pack
Version 1.6.14.5
Comparing to
See all releases

Code changes from version 1.6.14.4 to 1.6.14.5

aioseop.class.php CHANGED
@@ -2,7 +2,7 @@
2
 
3
  class All_in_One_SEO_Pack {
4
 
5
- var $version = "1.6.14.4";
6
 
7
  /** Max numbers of chars in auto-generated description */
8
  var $maximum_description_length = 160;
@@ -356,13 +356,17 @@ class All_in_One_SEO_Pack {
356
  $meta_string .= "$post_meta";
357
  }
358
 
359
- if ( is_singular() && !empty( $post ) && ( $googleplus = get_the_author_meta( 'googleplus', $post->post_author ) ) ) {
 
 
 
 
 
 
360
  $meta_string = '<link rel="author" href="' . $googleplus . '" />' . "\n" . $meta_string;
361
- }
362
 
363
- if ( is_home() && !empty( $aioseop_options['aiosp_google_publisher'] ) ) {
364
  $meta_string = '<link rel="publisher" href="' . $aioseop_options['aiosp_google_publisher'] . '" />' . "\n" . $meta_string;
365
- }
366
 
367
  if (is_home() && !empty($home_meta)) {
368
  if (isset($meta_string)) {
@@ -1528,25 +1532,14 @@ href="http://semperplugins.com/plugins/all-in-one-seo-pack-pro-version/"><?php _
1528
  <a href="http://semperfiwebdesign.com/headwayaio/" target="_blank"><img src="<?php echo AIOSEOP_PLUGIN_IMAGES_URL; ?>headwaybanner.png"></a>
1529
  </div>
1530
 
1531
- <div style="clear:both;">
1532
-
1533
-
1534
- <div style="float:left;background-color:white;padding:10px;border:1px solid #ddd;height:200px;margin: 2px 15px 2px 0px;">
1535
- <div style="width:423px;height:130px;">
1536
- <h3>Reliable WordPress Hosting</h3>
1537
- <p><a title="WebHostingHub.com" target="_blank"
1538
- href="http://ref.webhostinghub.com/scripts/click.php?ref_id=rsuog2&ad_id=54c8d95f">WebHostingHub.com</a>
1539
- is a true leader in WordPress hosting and configured for WordPress
1540
- blogs. Hub's account includes UNLIMITED Hosting, NO-DOWNTIME Transfer,
1541
- 24/7 U.S. Support & 90-Day FULL Money Back.<br />
1542
- Check our <a title="WebHostingHub reviews" target="_blank"
1543
- href="http://webhostingrating.com/companies/web-hosting-hub/">customer
1544
- reviews</a> at WebHostingRating.com.</p>
1545
  </div>
1546
- <a title="WebHostingHub.com" target="_blank"
1547
- href="http://ref.webhostinghub.com/scripts/click.php?ref_id=rsuog2&ad_id=54c8d95f"><img
1548
- src="<?php echo AIOSEOP_PLUGIN_IMAGES_URL; ?>hub_420_wordpress.png"
1549
- alt="WebHostingHub.com" width="420" height="53" border="0" /></a>
1550
  </div>
1551
 
1552
  <div style="float:left;background-color:white;padding:10px;border:1px solid #ddd;margin-top:2px;">
@@ -1560,20 +1553,6 @@ href="http://semperplugins.com/plugins/all-in-one-seo-pack-pro-version/"><?php _
1560
 
1561
  </div>
1562
 
1563
- <div style="clear:both;">
1564
-
1565
- <?php $themefuse_ab = ( mt_rand( 0, 1 ) ) ? 'a' : 'b'; ?>
1566
- <div style="float:left;background-color:white;margin-top:3px;">
1567
- <a title="ThemeFuse" target="_blank"
1568
- href="http://themefuse.com/wp-themes-shop/?plugin=all-in-one-seo-pack&v=<?php echo $themefuse_ab; ?>"><img
1569
- src="<?php echo AIOSEOP_PLUGIN_IMAGES_URL; ?>themefuse_banner_<?php echo $themefuse_ab; ?>.jpg"
1570
- alt="ThemeFuse" width="445" height="220" border="0" /></a>
1571
- </div>
1572
- </div>
1573
-
1574
-
1575
-
1576
-
1577
  <!--
1578
  <div style="float:left;background-color:white;padding: 10px 10px 10px 10px;border: 1px solid #ddd;">
1579
  <div style="width:365px;height:130px;">
@@ -2141,13 +2120,13 @@ _e('Choose which post types you want to have SEO columns on the edit.php screen.
2141
  <tr>
2142
  <th scope="row" style="text-align:right; vertical-align:top;">
2143
  <a style="cursor:pointer;" title="<?php _e('Click for Help!', 'all_in_one_seo_pack')?>" onclick="toggleVisibility('aiosp_google_publisher_tip');">
2144
- <?php _e('Google Plus Profile for Website:', 'all_in_one_seo_pack')?>
2145
  </td>
2146
  <td>
2147
  <input type="text" name="aiosp_google_publisher" value="<?php echo $aioseop_options['aiosp_google_publisher']; ?>" size="38"/>
2148
  <div style="max-width:500px; text-align:left; display:none" id="aiosp_google_publisher_tip">
2149
  <?php
2150
- _e('Enter your Google Plus Profile URL here to link your site\'s home page to Google Plus.', 'all_in_one_seo_pack');
2151
  ?>
2152
  </div>
2153
  </td>
2
 
3
  class All_in_One_SEO_Pack {
4
 
5
+ var $version = "1.6.14.5";
6
 
7
  /** Max numbers of chars in auto-generated description */
8
  var $maximum_description_length = 160;
356
  $meta_string .= "$post_meta";
357
  }
358
 
359
+ if ( !empty( $post ) )
360
+ $googleplus = get_the_author_meta( 'googleplus', $post->post_author );
361
+
362
+ if ( empty( $googleplus ) && !empty( $aioseop_options['aiosp_google_publisher'] ) )
363
+ $googleplus = $aioseop_options['aiosp_google_publisher'];
364
+
365
+ if ( is_singular() && ( $googleplus ) )
366
  $meta_string = '<link rel="author" href="' . $googleplus . '" />' . "\n" . $meta_string;
 
367
 
368
+ if ( is_home() && !empty( $aioseop_options['aiosp_google_publisher'] ) )
369
  $meta_string = '<link rel="publisher" href="' . $aioseop_options['aiosp_google_publisher'] . '" />' . "\n" . $meta_string;
 
370
 
371
  if (is_home() && !empty($home_meta)) {
372
  if (isset($meta_string)) {
1532
  <a href="http://semperfiwebdesign.com/headwayaio/" target="_blank"><img src="<?php echo AIOSEOP_PLUGIN_IMAGES_URL; ?>headwaybanner.png"></a>
1533
  </div>
1534
 
1535
+ <div style="clear:both;">
1536
+ <?php $themefuse_ab = ( mt_rand( 0, 1 ) ) ? 'a' : 'b'; ?>
1537
+ <div style="float:left;background-color:white;margin-top:3px;margin-right:15px;">
1538
+ <a title="ThemeFuse" target="_blank"
1539
+ href="http://themefuse.com/wp-themes-shop/?plugin=all-in-one-seo-pack&v=<?php echo $themefuse_ab; ?>"><img
1540
+ src="<?php echo AIOSEOP_PLUGIN_IMAGES_URL; ?>themefuse_banner_<?php echo $themefuse_ab; ?>.jpg"
1541
+ alt="ThemeFuse" width="445" height="220" border="0" /></a>
 
 
 
 
 
 
 
1542
  </div>
 
 
 
 
1543
  </div>
1544
 
1545
  <div style="float:left;background-color:white;padding:10px;border:1px solid #ddd;margin-top:2px;">
1553
 
1554
  </div>
1555
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1556
  <!--
1557
  <div style="float:left;background-color:white;padding: 10px 10px 10px 10px;border: 1px solid #ddd;">
1558
  <div style="width:365px;height:130px;">
2120
  <tr>
2121
  <th scope="row" style="text-align:right; vertical-align:top;">
2122
  <a style="cursor:pointer;" title="<?php _e('Click for Help!', 'all_in_one_seo_pack')?>" onclick="toggleVisibility('aiosp_google_publisher_tip');">
2123
+ <?php _e('Google Plus Profile Sitewide Default:', 'all_in_one_seo_pack')?>
2124
  </td>
2125
  <td>
2126
  <input type="text" name="aiosp_google_publisher" value="<?php echo $aioseop_options['aiosp_google_publisher']; ?>" size="38"/>
2127
  <div style="max-width:500px; text-align:left; display:none" id="aiosp_google_publisher_tip">
2128
  <?php
2129
+ _e('Enter your Google Plus Profile URL here to link your site\'s pages to Google Plus.', 'all_in_one_seo_pack');
2130
  ?>
2131
  </div>
2132
  </td>
all_in_one_seo_pack.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: All in One SEO Pack
4
  Plugin URI: http://semperfiwebdesign.com
5
  Description: Out-of-the-box SEO for your WordPress blog. <a href="options-general.php?page=all-in-one-seo-pack/aioseop.class.php">Options configuration panel</a> | <a href="http://wpplugins.com/plugin/50/all-in-one-seo-pack-pro-version">Upgrade to Pro Version</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&currency_code=USD&lc=US&bn=PP%2dDonationsBF&charset=UTF%2d8">Donate</a> | <a href="http://semperfiwebdesign.com/forum/" >Support</a> | <a href="https://www.amazon.com/wishlist/1NFQ133FNCOOA/ref=wl_web" target="_blank" title="Amazon Wish List">Amazon Wishlist</a>
6
- Version: 1.6.14.4
7
  Author: Michael Torbert
8
  Author URI: http://michaeltorbert.com
9
  */
@@ -30,11 +30,11 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
30
 
31
  /**
32
  * @package All-in-One-SEO-Pack
33
- * @version 1.6.14.4
34
  */
35
 
36
  if ( ! defined( 'AIOSEOP_VERSION' ) )
37
- define( 'AIOSEOP_VERSION', '1.6.14.4' );
38
 
39
  if ( ! defined( 'AIOSEOP_PLUGIN_DIR' ) )
40
  define( 'AIOSEOP_PLUGIN_DIR', plugin_dir_path( __FILE__ ) );
3
  Plugin Name: All in One SEO Pack
4
  Plugin URI: http://semperfiwebdesign.com
5
  Description: Out-of-the-box SEO for your WordPress blog. <a href="options-general.php?page=all-in-one-seo-pack/aioseop.class.php">Options configuration panel</a> | <a href="http://wpplugins.com/plugin/50/all-in-one-seo-pack-pro-version">Upgrade to Pro Version</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&currency_code=USD&lc=US&bn=PP%2dDonationsBF&charset=UTF%2d8">Donate</a> | <a href="http://semperfiwebdesign.com/forum/" >Support</a> | <a href="https://www.amazon.com/wishlist/1NFQ133FNCOOA/ref=wl_web" target="_blank" title="Amazon Wish List">Amazon Wishlist</a>
6
+ Version: 1.6.14.5
7
  Author: Michael Torbert
8
  Author URI: http://michaeltorbert.com
9
  */
30
 
31
  /**
32
  * @package All-in-One-SEO-Pack
33
+ * @version 1.6.14.5
34
  */
35
 
36
  if ( ! defined( 'AIOSEOP_VERSION' ) )
37
+ define( 'AIOSEOP_VERSION', '1.6.14.5' );
38
 
39
  if ( ! defined( 'AIOSEOP_PLUGIN_DIR' ) )
40
  define( 'AIOSEOP_PLUGIN_DIR', plugin_dir_path( __FILE__ ) );
images/hub_420_wordpress.png DELETED
Binary file
readme.txt CHANGED
@@ -3,7 +3,7 @@ Contributors: hallsofmontezuma
3
  Donate link: 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&currency_code=USD&lc=US&bn=PP%2dDonationsBF&charset=UTF%2d8
4
  Tags: seo, search engine optimization, google
5
  Requires at least: 3.0
6
- Tested up to: 3.3.2
7
  Stable tag: trunk
8
 
9
  WordPress SEO plugin to automatically optimize your Wordpress blog for Search Engines.
3
  Donate link: 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&currency_code=USD&lc=US&bn=PP%2dDonationsBF&charset=UTF%2d8
4
  Tags: seo, search engine optimization, google
5
  Requires at least: 3.0
6
+ Tested up to: 3.4
7
  Stable tag: trunk
8
 
9
  WordPress SEO plugin to automatically optimize your Wordpress blog for Search Engines.