All in One SEO Pack - Version 2.3.12.5

Version Description

Download this release

Release Info

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

Code changes from version 2.3.12.4 to 2.3.12.5

admin/aioseop_module_class.php CHANGED
@@ -1777,7 +1777,12 @@ if ( ! class_exists( 'All_in_One_SEO_Pack_Module' ) ) {
1777
  if ( ! empty( $this->pointers ) ) {
1778
  wp_enqueue_script( 'wp-pointer', false, array( 'jquery' ) );
1779
  }
1780
- wp_enqueue_media();
 
 
 
 
 
1781
  wp_enqueue_script( 'aioseop-module-script', AIOSEOP_PLUGIN_URL . 'js/modules/aioseop_module.js', array(), AIOSEOP_VERSION );
1782
  if ( ! empty( $this->script_data ) ) {
1783
  aioseop_localize_script_data();
1777
  if ( ! empty( $this->pointers ) ) {
1778
  wp_enqueue_script( 'wp-pointer', false, array( 'jquery' ) );
1779
  }
1780
+ global $post;
1781
+ if( !empty( $post->ID) ) {
1782
+ wp_enqueue_media( array( 'post' => $post->ID ) );
1783
+ }else{
1784
+ wp_enqueue_media();
1785
+ }
1786
  wp_enqueue_script( 'aioseop-module-script', AIOSEOP_PLUGIN_URL . 'js/modules/aioseop_module.js', array(), AIOSEOP_VERSION );
1787
  if ( ! empty( $this->script_data ) ) {
1788
  aioseop_localize_script_data();
admin/display/credits-content.php CHANGED
@@ -34,11 +34,11 @@
34
  <span class="title"><?php _e( 'Development Team', 'all-in-one-seo-pack' ); ?></span>
35
  </li>
36
  </ul>
37
-
38
  <h3 class="wp-people-group">&#x1f31f;<?php _e( 'Recent Rockstar Contributors', 'all-in-one-seo-pack' ); ?>&#x1f31f;</h3>
39
  <ul class="wp-people-group " id="wp-people-group-rockstars">
40
- /* translators: '%1$s' and '%2$s' are used as placeholders and turn the text in between into a clickable link */
41
- <li><?php printf( __('Want to see your name and picture here as a community developer? %1$sClick here%2$s to open an issue on GitHub to report a bug, request a feature or find an issue and submit code!', 'all-in-one-seo-pack'),
42
  '<a href="https://github.com/semperfiwebdesign/all-in-one-seo-pack" target="_blank">', '</a>'); ?>
43
  </li>
44
  <li class="wp-person" id="wp-person-dougalcampbell">
34
  <span class="title"><?php _e( 'Development Team', 'all-in-one-seo-pack' ); ?></span>
35
  </li>
36
  </ul>
37
+
38
  <h3 class="wp-people-group">&#x1f31f;<?php _e( 'Recent Rockstar Contributors', 'all-in-one-seo-pack' ); ?>&#x1f31f;</h3>
39
  <ul class="wp-people-group " id="wp-people-group-rockstars">
40
+ <li><?php /* translators: '%1$s' and '%2$s' are used as placeholders and turn the text in between into a clickable link */
41
+ printf( __('Want to see your name and picture here as a community developer? %1$sClick here%2$s to open an issue on GitHub to report a bug, request a feature or find an issue and submit code!', 'all-in-one-seo-pack'),
42
  '<a href="https://github.com/semperfiwebdesign/all-in-one-seo-pack" target="_blank">', '</a>'); ?>
43
  </li>
44
  <li class="wp-person" id="wp-person-dougalcampbell">
all_in_one_seo_pack.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: All In One SEO Pack
4
  Plugin URI: https://semperplugins.com/all-in-one-seo-pack-pro-version/
5
  Description: Out-of-the-box SEO for your WordPress blog. Features like XML Sitemaps, SEO for custom post types, SEO for blogs or business sites, SEO for ecommerce sites, and much more. More than 30 million downloads since 2007.
6
- Version: 2.3.12.4
7
  Author: Michael Torbert
8
  Author URI: https://semperplugins.com/all-in-one-seo-pack-pro-version/
9
  Text Domain: all-in-one-seo-pack
@@ -31,14 +31,14 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
31
  * The original WordPress SEO plugin.
32
  *
33
  * @package All-in-One-SEO-Pack
34
- * @version 2.3.12.4
35
  */
36
 
37
  if ( ! defined( 'AIOSEOPPRO' ) ) {
38
  define( 'AIOSEOPPRO', false );
39
  }
40
  if ( ! defined( 'AIOSEOP_VERSION' ) ) {
41
- define( 'AIOSEOP_VERSION', '2.3.12.4' );
42
  }
43
  global $aioseop_plugin_name;
44
  $aioseop_plugin_name = 'All in One SEO Pack';
3
  Plugin Name: All In One SEO Pack
4
  Plugin URI: https://semperplugins.com/all-in-one-seo-pack-pro-version/
5
  Description: Out-of-the-box SEO for your WordPress blog. Features like XML Sitemaps, SEO for custom post types, SEO for blogs or business sites, SEO for ecommerce sites, and much more. More than 30 million downloads since 2007.
6
+ Version: 2.3.12.5
7
  Author: Michael Torbert
8
  Author URI: https://semperplugins.com/all-in-one-seo-pack-pro-version/
9
  Text Domain: all-in-one-seo-pack
31
  * The original WordPress SEO plugin.
32
  *
33
  * @package All-in-One-SEO-Pack
34
+ * @version 2.3.12.5
35
  */
36
 
37
  if ( ! defined( 'AIOSEOPPRO' ) ) {
38
  define( 'AIOSEOPPRO', false );
39
  }
40
  if ( ! defined( 'AIOSEOP_VERSION' ) ) {
41
+ define( 'AIOSEOP_VERSION', '2.3.12.5' );
42
  }
43
  global $aioseop_plugin_name;
44
  $aioseop_plugin_name = 'All in One SEO Pack';
inc/aioseop_functions.php CHANGED
@@ -184,7 +184,7 @@ if ( ! function_exists( 'aioseop_mrt_pcolumns' ) ) {
184
  if ( ! function_exists( 'aioseop_admin_head' ) ) {
185
 
186
  function aioseop_admin_head() {
187
- wp_enqueue_script( 'aioseop_welcome_js', AIOSEOP_PLUGIN_URL . '/js/quickedit_functions.js', array( 'jquery' ), AIOSEOP_VERSION);
188
  ?>
189
  <style>
190
  .aioseop_edit_button {
184
  if ( ! function_exists( 'aioseop_admin_head' ) ) {
185
 
186
  function aioseop_admin_head() {
187
+ wp_enqueue_script( 'aioseop_welcome_js', AIOSEOP_PLUGIN_URL . 'js/quickedit_functions.js', array( 'jquery' ), AIOSEOP_VERSION);
188
  ?>
189
  <style>
190
  .aioseop_edit_button {
readme.txt CHANGED
@@ -4,7 +4,7 @@ Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=mrtor
4
  Tags: seo, all in one seo, google, twitter, page, image seo, social, search engine optimization, sitemap, WordPress SEO, meta, meta description, xml sitemap, google sitemap, sitemaps, robots meta, yahoo, bing, news sitemaps, multisite, canonical, nofollow, noindex, keywords, description, webmaster tools, google webmaster tools, google analytics
5
  Requires at least: 4.0
6
  Tested up to: 4.7
7
- Stable tag: 2.3.12.4
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
4
  Tags: seo, all in one seo, google, twitter, page, image seo, social, search engine optimization, sitemap, WordPress SEO, meta, meta description, xml sitemap, google sitemap, sitemaps, robots meta, yahoo, bing, news sitemaps, multisite, canonical, nofollow, noindex, keywords, description, webmaster tools, google webmaster tools, google analytics
5
  Requires at least: 4.0
6
  Tested up to: 4.7
7
+ Stable tag: 2.3.12.5
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10