Version Description
Download this release
Release Info
Developer | JohnLamansky |
Plugin | SEO Ultimate |
Version | 7.6.1 |
Comparing to | |
See all releases |
Code changes from version 7.6 to 7.6.1
- modules/autolinks/content-autolinks.php +8 -4
- readme.txt +4 -1
- seo-ultimate.php +4 -4
modules/autolinks/content-autolinks.php
CHANGED
@@ -282,7 +282,7 @@ class SU_ContentAutolinks extends SU_Module {
|
|
282 |
$dampen_sitewide_lpa = sustr::preg_filter('0-9', strval($_POST["link_{$i}_dampen_sitewide_lpa"]));
|
283 |
$dampen_sitewide_lpa = ($dampen_sitewide_lpa === '') ? false : intval($dampen_sitewide_lpa);
|
284 |
|
285 |
-
$sitewide_lpa = sustr::preg_filter('0-9', strval($_POST["link_{$i}_sitewide_lpa"]));
|
286 |
$sitewide_lpa = ($sitewide_lpa === '') ? false : intval($sitewide_lpa);
|
287 |
|
288 |
$target = empty($_POST["link_{$i}_target"]) ? 'self' : 'blank';
|
@@ -333,7 +333,7 @@ class SU_ContentAutolinks extends SU_Module {
|
|
333 |
$headers['link-anchor'] = __('Anchor Text', 'seo-ultimate');
|
334 |
$headers['link-to'] = __('Destination', 'seo-ultimate');
|
335 |
$headers['link-title'] = __('Title Attribute <em>(optional)</em>', 'seo-ultimate');
|
336 |
-
if ($this->get_setting('
|
337 |
$headers['link-dampen-sitewide-lpa'] = __('Dampener', 'seo-ultimate');
|
338 |
if ($this->legacy_sitewide_lpa_in_use)
|
339 |
$headers['link-sitewide-lpa'] = __('Site Cap', 'seo-ultimate');
|
@@ -365,13 +365,17 @@ class SU_ContentAutolinks extends SU_Module {
|
|
365 |
$cells['link-to'] = $this->get_jlsuggest_box("link_{$i}_to", $jlsuggest_box_params);
|
366 |
$cells['link-title'] = $this->get_input_element('textbox', "link_{$i}_title", $link['title']);
|
367 |
|
368 |
-
if ($this->get_setting('
|
369 |
$cells['link-dampen-sitewide-lpa'] = $this->get_input_element('textbox', "link_{$i}_dampen_sitewide_lpa", $link['dampen_sitewide_lpa'], $default_dampen_sitewide_lpa) . '%';
|
|
|
|
|
|
|
|
|
370 |
|
371 |
if ($this->legacy_sitewide_lpa_in_use)
|
372 |
$cells['link-sitewide-lpa'] = $this->get_input_element('textbox', "link_{$i}_sitewide_lpa", $link['sitewide_lpa']);
|
373 |
|
374 |
-
$cells['link-options']
|
375 |
$this->get_input_element('checkbox', "link_{$i}_nofollow", $link['nofollow'], str_replace(' ', ' ', __('Nofollow', 'seo-ultimate')))
|
376 |
.'<br />'
|
377 |
.$this->get_input_element('checkbox', "link_{$i}_target", $link['target'] == 'blank', str_replace(' ', ' ', __('New window', 'seo-ultimate')));
|
282 |
$dampen_sitewide_lpa = sustr::preg_filter('0-9', strval($_POST["link_{$i}_dampen_sitewide_lpa"]));
|
283 |
$dampen_sitewide_lpa = ($dampen_sitewide_lpa === '') ? false : intval($dampen_sitewide_lpa);
|
284 |
|
285 |
+
$sitewide_lpa = isset($_POST["link_{$i}_sitewide_lpa"]) ? sustr::preg_filter('0-9', strval($_POST["link_{$i}_sitewide_lpa"])) : '';
|
286 |
$sitewide_lpa = ($sitewide_lpa === '') ? false : intval($sitewide_lpa);
|
287 |
|
288 |
$target = empty($_POST["link_{$i}_target"]) ? 'self' : 'blank';
|
333 |
$headers['link-anchor'] = __('Anchor Text', 'seo-ultimate');
|
334 |
$headers['link-to'] = __('Destination', 'seo-ultimate');
|
335 |
$headers['link-title'] = __('Title Attribute <em>(optional)</em>', 'seo-ultimate');
|
336 |
+
if ($this->get_setting('enable_perlink_dampen_sitewide_lpa', false, null, true) || $this->legacy_sitewide_lpa_in_use)
|
337 |
$headers['link-dampen-sitewide-lpa'] = __('Dampener', 'seo-ultimate');
|
338 |
if ($this->legacy_sitewide_lpa_in_use)
|
339 |
$headers['link-sitewide-lpa'] = __('Site Cap', 'seo-ultimate');
|
365 |
$cells['link-to'] = $this->get_jlsuggest_box("link_{$i}_to", $jlsuggest_box_params);
|
366 |
$cells['link-title'] = $this->get_input_element('textbox', "link_{$i}_title", $link['title']);
|
367 |
|
368 |
+
if ($this->get_setting('enable_perlink_dampen_sitewide_lpa', false, null, true) || $this->legacy_sitewide_lpa_in_use) {
|
369 |
$cells['link-dampen-sitewide-lpa'] = $this->get_input_element('textbox', "link_{$i}_dampen_sitewide_lpa", $link['dampen_sitewide_lpa'], $default_dampen_sitewide_lpa) . '%';
|
370 |
+
$cells['link-options'] = '';
|
371 |
+
} else {
|
372 |
+
$cells['link-options'] = $this->get_input_element('hidden', "link_{$i}_dampen_sitewide_lpa", $link['dampen_sitewide_lpa'], $default_dampen_sitewide_lpa);
|
373 |
+
}
|
374 |
|
375 |
if ($this->legacy_sitewide_lpa_in_use)
|
376 |
$cells['link-sitewide-lpa'] = $this->get_input_element('textbox', "link_{$i}_sitewide_lpa", $link['sitewide_lpa']);
|
377 |
|
378 |
+
$cells['link-options'] .=
|
379 |
$this->get_input_element('checkbox', "link_{$i}_nofollow", $link['nofollow'], str_replace(' ', ' ', __('Nofollow', 'seo-ultimate')))
|
380 |
.'<br />'
|
381 |
.$this->get_input_element('checkbox', "link_{$i}_target", $link['target'] == 'blank', str_replace(' ', ' ', __('New window', 'seo-ultimate')));
|
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, Open Graph, og, microdata, Facebook, Twitter, Schema.org
|
4 |
Requires at least: 3.5
|
5 |
Tested up to: 3.5
|
6 |
-
Stable tag: 7.6
|
7 |
|
8 |
This all-in-one SEO plugin gives you control over title tags, noindex, meta tags, Open Graph, slugs, canonical, autolinks, 404 errors, rich snippets, and more.
|
9 |
|
@@ -244,6 +244,9 @@ Frequently asked questions, settings help, and troubleshooting tips for SEO Ulti
|
|
244 |
|
245 |
== Changelog ==
|
246 |
|
|
|
|
|
|
|
247 |
= Version 7.6 (December 31, 2012) =
|
248 |
* Feature: Open Graph Integrator now lets you output W3C-valid XHTML or HTML5 instead of the non-validating code prescribed by Open Graph and Twitter
|
249 |
* Improvement: Deeplink Juggernaut's "Site Cap" feauture has been replaced with a more efficient "Dampener" feature
|
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, Open Graph, og, microdata, Facebook, Twitter, Schema.org
|
4 |
Requires at least: 3.5
|
5 |
Tested up to: 3.5
|
6 |
+
Stable tag: 7.6.1
|
7 |
|
8 |
This all-in-one SEO plugin gives you control over title tags, noindex, meta tags, Open Graph, slugs, canonical, autolinks, 404 errors, rich snippets, and more.
|
9 |
|
244 |
|
245 |
== Changelog ==
|
246 |
|
247 |
+
= Version 7.6.1 (January 1, 2013) =
|
248 |
+
* Bugfix: Fixed a bug that prevented the "Dampener" column from appearing on the Deeplink Juggernaut Content Links tab
|
249 |
+
|
250 |
= Version 7.6 (December 31, 2012) =
|
251 |
* Feature: Open Graph Integrator now lets you output W3C-valid XHTML or HTML5 instead of the non-validating code prescribed by Open Graph and Twitter
|
252 |
* Improvement: Deeplink Juggernaut's "Site Cap" feauture has been replaced with a more efficient "Dampener" feature
|
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.6
|
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.6
|
16 |
* @link http://www.seodesignsolutions.com/wordpress-seo/ SEO Ultimate Homepage
|
17 |
*/
|
18 |
|
@@ -48,10 +48,10 @@ define('SU_MINIMUM_WP_VER', '3.3');
|
|
48 |
//Reading plugin info from constants is faster than trying to parse it from the header above.
|
49 |
define('SU_PLUGIN_NAME', 'SEO Ultimate');
|
50 |
define('SU_PLUGIN_URI', 'http://www.seodesignsolutions.com/wordpress-seo/');
|
51 |
-
define('SU_VERSION', '7.6');
|
52 |
define('SU_AUTHOR', 'SEO Design Solutions');
|
53 |
define('SU_AUTHOR_URI', 'http://www.seodesignsolutions.com/');
|
54 |
-
define('SU_USER_AGENT', 'SeoUltimate/7.6');
|
55 |
|
56 |
/********** INCLUDES **********/
|
57 |
|
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.6.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 7.6.1
|
16 |
* @link http://www.seodesignsolutions.com/wordpress-seo/ SEO Ultimate Homepage
|
17 |
*/
|
18 |
|
48 |
//Reading plugin info from constants is faster than trying to parse it from the header above.
|
49 |
define('SU_PLUGIN_NAME', 'SEO Ultimate');
|
50 |
define('SU_PLUGIN_URI', 'http://www.seodesignsolutions.com/wordpress-seo/');
|
51 |
+
define('SU_VERSION', '7.6.1');
|
52 |
define('SU_AUTHOR', 'SEO Design Solutions');
|
53 |
define('SU_AUTHOR_URI', 'http://www.seodesignsolutions.com/');
|
54 |
+
define('SU_USER_AGENT', 'SeoUltimate/7.6.1');
|
55 |
|
56 |
/********** INCLUDES **********/
|
57 |
|