Version Description
Download this release
Release Info
Developer | JohnLamansky |
Plugin | SEO Ultimate |
Version | 7.3.5 |
Comparing to | |
See all releases |
Code changes from version 7.3.4 to 7.3.5
- modules/opengraph/opengraph.php +1 -1
- plugin/class.seo-ultimate.php +2 -2
- readme.txt +8 -5
- seo-ultimate.php +4 -4
modules/opengraph/opengraph.php
CHANGED
@@ -77,7 +77,7 @@ class SU_OpenGraph extends SU_Module {
|
|
77 |
|
78 |
//Description
|
79 |
if (!($tags['og:description'] = $this->get_postmeta('og_description')))
|
80 |
-
if ($this->plugin->call_module_func('meta-descriptions', 'get_meta_desc', $meta_desc) && $meta_desc)
|
81 |
$tags['og:description'] = $meta_desc;
|
82 |
|
83 |
//URL
|
77 |
|
78 |
//Description
|
79 |
if (!($tags['og:description'] = $this->get_postmeta('og_description')))
|
80 |
+
if ($this->plugin->call_module_func('meta-descriptions', 'get_meta_desc', $meta_desc, false) && $meta_desc)
|
81 |
$tags['og:description'] = $meta_desc;
|
82 |
|
83 |
//URL
|
plugin/class.seo-ultimate.php
CHANGED
@@ -1446,7 +1446,7 @@ class SEO_Ultimate {
|
|
1446 |
* @param mixed $result Passed by reference. Set to the result of the function.
|
1447 |
* @return boolean Whether or not the function existed.
|
1448 |
*/
|
1449 |
-
function call_module_func($key, $function, &$result = null) {
|
1450 |
|
1451 |
//Wipe passed-by-reference variable clean
|
1452 |
$result = null;
|
@@ -1456,7 +1456,7 @@ class SEO_Ultimate {
|
|
1456 |
|
1457 |
if (isset($this->modules[$key]))
|
1458 |
$obj =& $this->modules[$key];
|
1459 |
-
elseif (isset($this->disabled_modules[$key]))
|
1460 |
$obj = $this->disabled_modules[$key];
|
1461 |
else
|
1462 |
return false;
|
1446 |
* @param mixed $result Passed by reference. Set to the result of the function.
|
1447 |
* @return boolean Whether or not the function existed.
|
1448 |
*/
|
1449 |
+
function call_module_func($key, $function, &$result = null, $call_even_if_disabled=true) {
|
1450 |
|
1451 |
//Wipe passed-by-reference variable clean
|
1452 |
$result = null;
|
1456 |
|
1457 |
if (isset($this->modules[$key]))
|
1458 |
$obj =& $this->modules[$key];
|
1459 |
+
elseif (isset($this->disabled_modules[$key]) && $call_even_if_disabled)
|
1460 |
$obj = $this->disabled_modules[$key];
|
1461 |
else
|
1462 |
return false;
|
readme.txt
CHANGED
@@ -3,7 +3,7 @@ Contributors: SEO Design Solutions, JohnLamansky
|
|
3 |
Tags: seo, SEO Ultimate, suite, google, yahoo, bing, search engines, admin, post, page, custom post types, categories, tags, terms, custom taxonomies, base, title, title tag, wp_title, meta, robots, noindex, nofollow, canonical, HTTP headers, 404, robots.txt, htaccess, slugs, url, anchor, more, link, excerpt, permalink, links, autolinks, code, footer, settings, redirect, 301, 302, 307, modules, uninstallable, reinstallable, downgradable, import, export, CSV, affiliate
|
4 |
Requires at least: 3.3
|
5 |
Tested up to: 3.4.1
|
6 |
-
Stable tag: 7.3.
|
7 |
|
8 |
This all-in-one SEO plugin gives you control over title tags, noindex, meta tags, slugs, canonical, autolinks, 404 errors, rich snippets, and more.
|
9 |
|
@@ -21,7 +21,7 @@ This all-in-one SEO plugin gives you control over title tags, noindex, meta tags
|
|
21 |
|
22 |
SEO Ultimate is an all-in-one [SEO](http://www.seodesignsolutions.com/) plugin with these powerful features:
|
23 |
|
24 |
-
* **Title Tag Rewriter**
|
25 |
* Out-of-the-box functionality puts your post titles at the beginning of the `<title>` tag for improved keyword SEO.
|
26 |
* Easily override the entire `<title>` tag contents for any individual post, page, attachment, category, post tag, or post format archive on your blog. Also supports custom post types and custom taxonomies.
|
27 |
* Customize your homepage's `<title>` tag.
|
@@ -127,7 +127,7 @@ SEO Ultimate is an all-in-one [SEO](http://www.seodesignsolutions.com/) plugin w
|
|
127 |
* Lets you output your Deeplink Juggernaut Footer Links in a widget
|
128 |
* The Siloed Categories widget makes it drag-and-drop-easy to construct siloed navigation on your site
|
129 |
|
130 |
-
* **Settings Monitor**
|
131 |
* Keep tabs on the SEO-friendliness of your site's settings with a dashboard of green/yellow/red indicators
|
132 |
|
133 |
* **Open Graph Integrator** -- NEW in Version 7.3
|
@@ -268,6 +268,9 @@ Frequently asked questions, settings help, and troubleshooting tips for SEO Ulti
|
|
268 |
|
269 |
== Changelog ==
|
270 |
|
|
|
|
|
|
|
271 |
= Version 7.3.4 (August 7, 2012) =
|
272 |
* Bugfix: Fixed bug that caused the Open Graph Type dropdown in the "SEO Settings" box to read "Video" by default (bug introduced in 7.3)
|
273 |
|
@@ -418,8 +421,8 @@ Frequently asked questions, settings help, and troubleshooting tips for SEO Ulti
|
|
418 |
|
419 |
= Version 6.6 (July 15, 2011) =
|
420 |
* New Module: SEO Ultimate Widgets
|
421 |
-
*
|
422 |
-
*
|
423 |
|
424 |
= Version 6.5.2 (July 13, 2011) =
|
425 |
* Bugfix: Restored access to the "Global" tab of Meta Robot Tags Editor (broke in 6.4)
|
3 |
Tags: seo, SEO Ultimate, suite, google, yahoo, bing, search engines, admin, post, page, custom post types, categories, tags, terms, custom taxonomies, base, title, title tag, wp_title, meta, robots, noindex, nofollow, canonical, HTTP headers, 404, robots.txt, htaccess, slugs, url, anchor, more, link, excerpt, permalink, links, autolinks, code, footer, settings, redirect, 301, 302, 307, modules, uninstallable, reinstallable, downgradable, import, export, CSV, affiliate
|
4 |
Requires at least: 3.3
|
5 |
Tested up to: 3.4.1
|
6 |
+
Stable tag: 7.3.5
|
7 |
|
8 |
This all-in-one SEO plugin gives you control over title tags, noindex, meta tags, slugs, canonical, autolinks, 404 errors, rich snippets, and more.
|
9 |
|
21 |
|
22 |
SEO Ultimate is an all-in-one [SEO](http://www.seodesignsolutions.com/) plugin with these powerful features:
|
23 |
|
24 |
+
* **Title Tag Rewriter**
|
25 |
* Out-of-the-box functionality puts your post titles at the beginning of the `<title>` tag for improved keyword SEO.
|
26 |
* Easily override the entire `<title>` tag contents for any individual post, page, attachment, category, post tag, or post format archive on your blog. Also supports custom post types and custom taxonomies.
|
27 |
* Customize your homepage's `<title>` tag.
|
127 |
* Lets you output your Deeplink Juggernaut Footer Links in a widget
|
128 |
* The Siloed Categories widget makes it drag-and-drop-easy to construct siloed navigation on your site
|
129 |
|
130 |
+
* **Settings Monitor**
|
131 |
* Keep tabs on the SEO-friendliness of your site's settings with a dashboard of green/yellow/red indicators
|
132 |
|
133 |
* **Open Graph Integrator** -- NEW in Version 7.3
|
268 |
|
269 |
== Changelog ==
|
270 |
|
271 |
+
= Version 7.3.5 (August 7, 2012) =
|
272 |
+
* Bugfix: Fixed PHP error that appeared when Open Graph Integrator was enabled but Meta Description Editor was disabled (bug introduced in 7.3)
|
273 |
+
|
274 |
= Version 7.3.4 (August 7, 2012) =
|
275 |
* Bugfix: Fixed bug that caused the Open Graph Type dropdown in the "SEO Settings" box to read "Video" by default (bug introduced in 7.3)
|
276 |
|
421 |
|
422 |
= Version 6.6 (July 15, 2011) =
|
423 |
* New Module: SEO Ultimate Widgets
|
424 |
+
* The new "Footer Links" widget lets you display your Deeplink Juggernaut Footer Links in a widgetized footer or sidebar
|
425 |
+
* The new "Siloed Categories" widget lets you create a navigation section that's siloed around a taxonomy of your choosing
|
426 |
|
427 |
= Version 6.5.2 (July 13, 2011) =
|
428 |
* Bugfix: Restored access to the "Global" tab of Meta Robot Tags Editor (broke in 6.4)
|
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, autolinks, 404 errors, rich snippets, and more.
|
6 |
-
Version: 7.3.
|
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 7.3.
|
16 |
* @link http://www.seodesignsolutions.com/wordpress-seo/ SEO Ultimate Homepage
|
17 |
*/
|
18 |
|
@@ -47,10 +47,10 @@ define('SU_MINIMUM_WP_VER', '3.2');
|
|
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', '7.3.
|
51 |
define('SU_AUTHOR', 'SEO Design Solutions');
|
52 |
define('SU_AUTHOR_URI', 'http://www.seodesignsolutions.com/');
|
53 |
-
define('SU_USER_AGENT', 'SeoUltimate/7.3.
|
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, autolinks, 404 errors, rich snippets, and more.
|
6 |
+
Version: 7.3.5
|
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 7.3.5
|
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', '7.3.5');
|
51 |
define('SU_AUTHOR', 'SEO Design Solutions');
|
52 |
define('SU_AUTHOR_URI', 'http://www.seodesignsolutions.com/');
|
53 |
+
define('SU_USER_AGENT', 'SeoUltimate/7.3.5');
|
54 |
|
55 |
/********** INCLUDES **********/
|
56 |
|