Plugin Directory

Changeset 844829

Timestamp:
01/24/2014 09:54:46 PM (11 years ago)
Author:
pbaylies
Message:

Bugfix release, fixes for UA Tracking, Social Meta Descriptions, Sitemap Post Counts

Location:
all-in-one-seo-pack
Files:
1 added
11 edited
44 copied

Legend:

Unmodified
Added
Removed
  • all-in-one-seo-pack/tags/2.1.3/aioseop_class.php

    r844828 r844829  
    17261726        function recordOutboundLink(link, category, action) {
    17271727        <?php if ( !empty( $aioseop_options['aiosp_ga_use_universal_analytics'] ) ) { ?>
    1728             ga(category, action);
     1728            ga(category, action);
    17291729        <?php }
    17301730              if ( empty( $aioseop_options['aiosp_ga_use_universal_analytics'] ) ) {    ?>
  • all-in-one-seo-pack/tags/2.1.3/aioseop_opengraph.php

    r844828 r844829  
    325325               
    326326                if ( empty( $description ) && $first_page && ( !empty( $this->options['aiosp_opengraph_generate_descriptions'] ) ) )
    327                     $description = $aiosp->trim_excerpt_without_filters( $aiosp->internationalize( $post->post_content ), 1000 );
     327                    $description = $aiosp->trim_excerpt_without_filters( $aiosp->internationalize( ), 1000 );
    328328               
    329329                if ( empty($description) && $first_page ) $description = get_bloginfo('description');
     
    357357           
    358358            if ( !empty( $description ) )
    359                 $description = $aiosp->trim_excerpt_without_filters( $aiosp->internationalize( $description ), 1000 );
     359                $description = $aiosp->trim_excerpt_without_filters( $aiosp->internationalize( ), 1000 );
    360360           
    361361            /* Data Validation */
  • all-in-one-seo-pack/tags/2.1.3/aioseop_sitemap.php

    r844828 r844829  
    14141414        /** Return post counts using wp_count_posts(). **/
    14151415        function get_all_post_counts( $args ) {
    1416             $post_counts = null;
     1416            $post_counts = ;
    14171417            $status = 'inherit';
    14181418            if ( !empty( $args['post_status'] ) ) $status = $args['post_status'];
     
    14221422                        $args['post_type'] = array_shift( $args['post_type'] );
    14231423                    $count = (Array)wp_count_posts( $args['post_type'] );
    1424                     $post_counts = $count[$status];
     1424                    $post_counts = $count[$status];
    14251425                } else
    14261426                    foreach( $args['post_type'] as $post_type ) {
  • all-in-one-seo-pack/tags/2.1.3/all_in_one_seo_pack.php

    r844828 r844829  
    44Plugin URI: http://semperfiwebdesign.com
    55Description: Out-of-the-box SEO for your WordPress blog. <a href="admin.php?page=all-in-one-seo-pack/aioseop_class.php">Options configuration panel</a> | <a href="http://semperplugins.com/plugins/all-in-one-seo-pack-pro-version/?loc=plugins" target="_blank">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://semperplugins.com/support/" >Support</a> |  <a href="https://www.amazon.com/wishlist/1NFQ133FNCOOA/ref=wl_web" target="_blank" title="Amazon Wish List">Amazon Wishlist</a>
    6 Version: 2.1.2
     6Version: 2.1.
    77Author: Michael Torbert
    88Author URI: http://michaeltorbert.com
     
    3131/**
    3232 * @package All-in-One-SEO-Pack
    33  * @version 2.1.2
     33 * @version 2.1.
    3434 */
    3535
    3636if ( ! defined( 'AIOSEOP_VERSION' ) )
    37     define( 'AIOSEOP_VERSION', '2.1.2' );
     37    define( 'AIOSEOP_VERSION', '2.1.' );
    3838
    3939if ( ! defined( 'AIOSEOP_PLUGIN_DIR' ) ) {
  • all-in-one-seo-pack/tags/2.1.3/readme.txt

    r844828 r844829  
    44Tags: all in one, all in one seo, all in one seo pack, seo, search engine optimization, google
    55Requires at least: 3.3
    6 Tested up to: 3.8
     6Tested up to: 3.8
    77Stable tag: trunk
    88
  • all-in-one-seo-pack/trunk/aioseop_class.php

    r832533 r844829  
    17261726        function recordOutboundLink(link, category, action) {
    17271727        <?php if ( !empty( $aioseop_options['aiosp_ga_use_universal_analytics'] ) ) { ?>
    1728             ga(category, action);
     1728            ga(category, action);
    17291729        <?php }
    17301730              if ( empty( $aioseop_options['aiosp_ga_use_universal_analytics'] ) ) {    ?>
  • all-in-one-seo-pack/trunk/aioseop_opengraph.php

    r832533 r844829  
    325325               
    326326                if ( empty( $description ) && $first_page && ( !empty( $this->options['aiosp_opengraph_generate_descriptions'] ) ) )
    327                     $description = $aiosp->trim_excerpt_without_filters( $aiosp->internationalize( $post->post_content ), 1000 );
     327                    $description = $aiosp->trim_excerpt_without_filters( $aiosp->internationalize( ), 1000 );
    328328               
    329329                if ( empty($description) && $first_page ) $description = get_bloginfo('description');
     
    357357           
    358358            if ( !empty( $description ) )
    359                 $description = $aiosp->trim_excerpt_without_filters( $aiosp->internationalize( $description ), 1000 );
     359                $description = $aiosp->trim_excerpt_without_filters( $aiosp->internationalize( ), 1000 );
    360360           
    361361            /* Data Validation */
  • all-in-one-seo-pack/trunk/aioseop_sitemap.php

    r825760 r844829  
    14141414        /** Return post counts using wp_count_posts(). **/
    14151415        function get_all_post_counts( $args ) {
    1416             $post_counts = null;
     1416            $post_counts = ;
    14171417            $status = 'inherit';
    14181418            if ( !empty( $args['post_status'] ) ) $status = $args['post_status'];
     
    14221422                        $args['post_type'] = array_shift( $args['post_type'] );
    14231423                    $count = (Array)wp_count_posts( $args['post_type'] );
    1424                     $post_counts = $count[$status];
     1424                    $post_counts = $count[$status];
    14251425                } else
    14261426                    foreach( $args['post_type'] as $post_type ) {
  • all-in-one-seo-pack/trunk/all_in_one_seo_pack.php

    r832533 r844829  
    44Plugin URI: http://semperfiwebdesign.com
    55Description: Out-of-the-box SEO for your WordPress blog. <a href="admin.php?page=all-in-one-seo-pack/aioseop_class.php">Options configuration panel</a> | <a href="http://semperplugins.com/plugins/all-in-one-seo-pack-pro-version/?loc=plugins" target="_blank">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://semperplugins.com/support/" >Support</a> |  <a href="https://www.amazon.com/wishlist/1NFQ133FNCOOA/ref=wl_web" target="_blank" title="Amazon Wish List">Amazon Wishlist</a>
    6 Version: 2.1.2
     6Version: 2.1.
    77Author: Michael Torbert
    88Author URI: http://michaeltorbert.com
     
    3131/**
    3232 * @package All-in-One-SEO-Pack
    33  * @version 2.1.2
     33 * @version 2.1.
    3434 */
    3535
    3636if ( ! defined( 'AIOSEOP_VERSION' ) )
    37     define( 'AIOSEOP_VERSION', '2.1.2' );
     37    define( 'AIOSEOP_VERSION', '2.1.' );
    3838
    3939if ( ! defined( 'AIOSEOP_PLUGIN_DIR' ) ) {
  • all-in-one-seo-pack/trunk/readme.txt

    r825760 r844829  
    44Tags: all in one, all in one seo, all in one seo pack, seo, search engine optimization, google
    55Requires at least: 3.3
    6 Tested up to: 3.8
     6Tested up to: 3.8
    77Stable tag: trunk
    88
Note: See TracChangeset for help on using the changeset viewer.