Version Description
Download this release
Release Info
Developer | SEO Design Solutions |
Plugin | SEO Ultimate |
Version | 3.7.1 |
Comparing to | |
See all releases |
Code changes from version 3.7 to 3.7.1
- plugin/class.seo-ultimate.php +1 -21
- readme.txt +4 -1
- seo-ultimate.php +4 -4
plugin/class.seo-ultimate.php
CHANGED
@@ -1397,30 +1397,10 @@ class SEO_Ultimate {
|
|
1397 |
|
1398 |
//Only show the meta box if there are fields to show.
|
1399 |
if ($this->get_postmeta_fields($screen))
|
1400 |
-
add_meta_box('su_postmeta', __('SEO Settings', 'seo-ultimate'),
|
1401 |
}
|
1402 |
}
|
1403 |
|
1404 |
-
/**
|
1405 |
-
* Displays the inner contents of the post meta box when editing posts.
|
1406 |
-
*
|
1407 |
-
* @since 0.1
|
1408 |
-
* @uses show_postmeta_box()
|
1409 |
-
*/
|
1410 |
-
function show_post_postmeta_box() {
|
1411 |
-
$this->show_postmeta_box('post');
|
1412 |
-
}
|
1413 |
-
|
1414 |
-
/**
|
1415 |
-
* Displays the inner contents of the post meta box when editing Pages.
|
1416 |
-
*
|
1417 |
-
* @since 0.1
|
1418 |
-
* @uses show_postmeta_box()
|
1419 |
-
*/
|
1420 |
-
function show_page_postmeta_box() {
|
1421 |
-
$this->show_postmeta_box('page');
|
1422 |
-
}
|
1423 |
-
|
1424 |
/**
|
1425 |
* Displays the inner contents of the post meta box.
|
1426 |
*
|
1397 |
|
1398 |
//Only show the meta box if there are fields to show.
|
1399 |
if ($this->get_postmeta_fields($screen))
|
1400 |
+
add_meta_box('su_postmeta', __('SEO Settings', 'seo-ultimate'), create_function('', 'global $seo_ultimate; $seo_ultimate->show_postmeta_box("'.$screen.'");'), $screen, 'normal', 'high');
|
1401 |
}
|
1402 |
}
|
1403 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1404 |
/**
|
1405 |
* Displays the inner contents of the post meta box.
|
1406 |
*
|
readme.txt
CHANGED
@@ -3,7 +3,7 @@ Contributors: SEO Design Solutions
|
|
3 |
Tags: seo, SEO Ultimate, suite, google, yahoo, bing, search engines, admin, post, page, custom post types, categories, tags, terms, custom taxonomies, title, meta, robots, noindex, nofollow, canonical, 404, robots.txt, htaccess, slugs, url, anchor, more, link, excerpt, permalink, links, autolinks, code, footer, modules, uninstallable, reinstallable, downgradable, import, export, CSV
|
4 |
Requires at least: 2.8
|
5 |
Tested up to: 3.0
|
6 |
-
Stable tag: 3.7
|
7 |
|
8 |
This all-in-one SEO plugin gives you control over titles, noindex/nofollow, meta tags, slugs, canonical tags, "more" links, 404 errors, rich snippets, and more.
|
9 |
|
@@ -204,6 +204,9 @@ Frequently asked questions, settings help, and troubleshooting tips for SEO Ulti
|
|
204 |
|
205 |
== Changelog ==
|
206 |
|
|
|
|
|
|
|
207 |
= Version 3.7 (June 30, 2010) =
|
208 |
* Feature: "SEO Settings" box now added to editing screens for custom post types
|
209 |
* Bugfix: Fixed invalid HTML in the admin interfaces of Noindex Manager and Sharing Facilitator
|
3 |
Tags: seo, SEO Ultimate, suite, google, yahoo, bing, search engines, admin, post, page, custom post types, categories, tags, terms, custom taxonomies, title, meta, robots, noindex, nofollow, canonical, 404, robots.txt, htaccess, slugs, url, anchor, more, link, excerpt, permalink, links, autolinks, code, footer, modules, uninstallable, reinstallable, downgradable, import, export, CSV
|
4 |
Requires at least: 2.8
|
5 |
Tested up to: 3.0
|
6 |
+
Stable tag: 3.7.1
|
7 |
|
8 |
This all-in-one SEO plugin gives you control over titles, noindex/nofollow, meta tags, slugs, canonical tags, "more" links, 404 errors, rich snippets, and more.
|
9 |
|
204 |
|
205 |
== Changelog ==
|
206 |
|
207 |
+
= Version 3.7.1 (July 1, 2010) =
|
208 |
+
* Bugfix: Fixed fatal error on editor screens for custom post types
|
209 |
+
|
210 |
= Version 3.7 (June 30, 2010) =
|
211 |
* Feature: "SEO Settings" box now added to editing screens for custom post types
|
212 |
* Bugfix: Fixed invalid HTML in the admin interfaces of Noindex Manager and Sharing Facilitator
|
seo-ultimate.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: SEO Ultimate
|
4 |
Plugin URI: http://www.seodesignsolutions.com/wordpress-seo/
|
5 |
Description: This all-in-one SEO plugin gives you control over title tags, noindex/nofollow, meta tags, rich snippets, slugs, canonical tags, "more" links, 404 errors, rich snippets, and more.
|
6 |
-
Version: 3.7
|
7 |
Author: SEO Design Solutions
|
8 |
Author URI: http://www.seodesignsolutions.com/
|
9 |
Text Domain: seo-ultimate
|
@@ -12,7 +12,7 @@ Text Domain: seo-ultimate
|
|
12 |
/**
|
13 |
* The main SEO Ultimate plugin file.
|
14 |
* @package SeoUltimate
|
15 |
-
* @version 3.7
|
16 |
* @link http://www.seodesignsolutions.com/wordpress-seo/ SEO Ultimate Homepage
|
17 |
*/
|
18 |
|
@@ -47,10 +47,10 @@ define('SU_MINIMUM_WP_VER', '2.8');
|
|
47 |
//Reading plugin info from constants is faster than trying to parse it from the header above.
|
48 |
define('SU_PLUGIN_NAME', 'SEO Ultimate');
|
49 |
define('SU_PLUGIN_URI', 'http://www.seodesignsolutions.com/wordpress-seo/');
|
50 |
-
define('SU_VERSION', '3.7');
|
51 |
define('SU_AUTHOR', 'SEO Design Solutions');
|
52 |
define('SU_AUTHOR_URI', 'http://www.seodesignsolutions.com/');
|
53 |
-
define('SU_USER_AGENT', 'SeoUltimate/3.7');
|
54 |
|
55 |
/********** INCLUDES **********/
|
56 |
|
3 |
Plugin Name: SEO Ultimate
|
4 |
Plugin URI: http://www.seodesignsolutions.com/wordpress-seo/
|
5 |
Description: This all-in-one SEO plugin gives you control over title tags, noindex/nofollow, meta tags, rich snippets, slugs, canonical tags, "more" links, 404 errors, rich snippets, and more.
|
6 |
+
Version: 3.7.1
|
7 |
Author: SEO Design Solutions
|
8 |
Author URI: http://www.seodesignsolutions.com/
|
9 |
Text Domain: seo-ultimate
|
12 |
/**
|
13 |
* The main SEO Ultimate plugin file.
|
14 |
* @package SeoUltimate
|
15 |
+
* @version 3.7.1
|
16 |
* @link http://www.seodesignsolutions.com/wordpress-seo/ SEO Ultimate Homepage
|
17 |
*/
|
18 |
|
47 |
//Reading plugin info from constants is faster than trying to parse it from the header above.
|
48 |
define('SU_PLUGIN_NAME', 'SEO Ultimate');
|
49 |
define('SU_PLUGIN_URI', 'http://www.seodesignsolutions.com/wordpress-seo/');
|
50 |
+
define('SU_VERSION', '3.7.1');
|
51 |
define('SU_AUTHOR', 'SEO Design Solutions');
|
52 |
define('SU_AUTHOR_URI', 'http://www.seodesignsolutions.com/');
|
53 |
+
define('SU_USER_AGENT', 'SeoUltimate/3.7.1');
|
54 |
|
55 |
/********** INCLUDES **********/
|
56 |
|