Version Description
Download this release
Release Info
Developer | JohnLamansky |
Plugin | SEO Ultimate |
Version | 7.5.1 |
Comparing to | |
See all releases |
Code changes from version 7.5 to 7.5.1
modules/404s/fofs-log.php
CHANGED
@@ -161,6 +161,7 @@ class SU_FofsLog extends SU_Module {
|
|
161 |
|
162 |
$this->clear_log_button();
|
163 |
|
|
|
164 |
$headers = $this->get_admin_table_columns();
|
165 |
$this->admin_wftable_start();
|
166 |
|
@@ -241,6 +242,7 @@ class SU_FofsLog extends SU_Module {
|
|
241 |
$this->update_setting('log', $the404s);
|
242 |
|
243 |
$this->admin_wftable_end();
|
|
|
244 |
|
245 |
$this->clear_log_button();
|
246 |
}
|
161 |
|
162 |
$this->clear_log_button();
|
163 |
|
164 |
+
echo "<div id='su-404s-log-table'>\n";
|
165 |
$headers = $this->get_admin_table_columns();
|
166 |
$this->admin_wftable_start();
|
167 |
|
242 |
$this->update_setting('log', $the404s);
|
243 |
|
244 |
$this->admin_wftable_end();
|
245 |
+
echo "</div>\n";
|
246 |
|
247 |
$this->clear_log_button();
|
248 |
}
|
modules/404s/fofs.css
CHANGED
@@ -28,7 +28,8 @@
|
|
28 |
}
|
29 |
|
30 |
#su-fofs .su-404s-clear-log {
|
31 |
-
|
|
|
32 |
}
|
33 |
|
34 |
#su-fofs .form-table input#max_log_size {
|
28 |
}
|
29 |
|
30 |
#su-fofs .su-404s-clear-log {
|
31 |
+
text-align: right;
|
32 |
+
padding: 0.5em 0;
|
33 |
}
|
34 |
|
35 |
#su-fofs .form-table input#max_log_size {
|
modules/internal-link-aliases/internal-link-aliases.php
CHANGED
@@ -80,7 +80,7 @@ class SU_InternalLinkAliases extends SU_Module {
|
|
80 |
$this->aliases_form($num_aliases, array(array()), false);
|
81 |
}
|
82 |
|
83 |
-
function aliases_form($start_id = 0, $aliases, $
|
84 |
|
85 |
//Set headers
|
86 |
$headers = array(
|
@@ -88,7 +88,7 @@ class SU_InternalLinkAliases extends SU_Module {
|
|
88 |
, 'alias-to' => __('Alias URL', 'seo-ultimate')
|
89 |
, 'alias-posts' => __('Only on This Post… (optional)', 'seo-ultimate')
|
90 |
);
|
91 |
-
if ($
|
92 |
|
93 |
//Begin table; output headers
|
94 |
$this->admin_wftable_start($headers);
|
@@ -111,6 +111,9 @@ class SU_InternalLinkAliases extends SU_Module {
|
|
111 |
$alias_dir = $this->get_setting('alias_dir', 'go', null, true);
|
112 |
$alias_url = get_bloginfo('url') . "/$alias_dir/$u_alias_to/";
|
113 |
|
|
|
|
|
|
|
114 |
$cells = array(
|
115 |
'alias-from' =>
|
116 |
$this->get_input_element('hidden', "alias_{$i}_id", $id)
|
@@ -119,11 +122,11 @@ class SU_InternalLinkAliases extends SU_Module {
|
|
119 |
<table><tr>
|
120 |
<td class='su-alias-to-dir'>/$alias_dir/</td>
|
121 |
<td class='su-alias-to-slug'>" . $this->get_input_element('textbox', "alias_{$i}_to", $alias['to']) . "</td>
|
122 |
-
|
123 |
</tr></table>"
|
124 |
, 'alias-posts' => $this->get_jlsuggest_box("alias_{$i}_posts", $jlsuggest_value, 'types=posttype')
|
125 |
);
|
126 |
-
if ($
|
127 |
$cells['alias-delete'] = $this->get_input_element('checkbox', "alias_{$i}_delete");
|
128 |
|
129 |
$this->table_row($cells, $i, 'alias');
|
80 |
$this->aliases_form($num_aliases, array(array()), false);
|
81 |
}
|
82 |
|
83 |
+
function aliases_form($start_id = 0, $aliases, $existing_item = true) {
|
84 |
|
85 |
//Set headers
|
86 |
$headers = array(
|
88 |
, 'alias-to' => __('Alias URL', 'seo-ultimate')
|
89 |
, 'alias-posts' => __('Only on This Post… (optional)', 'seo-ultimate')
|
90 |
);
|
91 |
+
if ($existing_item) $headers['alias-delete'] = __('Delete', 'seo-ultimate');
|
92 |
|
93 |
//Begin table; output headers
|
94 |
$this->admin_wftable_start($headers);
|
111 |
$alias_dir = $this->get_setting('alias_dir', 'go', null, true);
|
112 |
$alias_url = get_bloginfo('url') . "/$alias_dir/$u_alias_to/";
|
113 |
|
114 |
+
if ($existing_item)
|
115 |
+
$test_link = "<td class='su-alias-to-test'>[<a href='$alias_url' target='_blank'>" . __('Test', 'seo-ultimate') . "</a>]</td>";
|
116 |
+
|
117 |
$cells = array(
|
118 |
'alias-from' =>
|
119 |
$this->get_input_element('hidden', "alias_{$i}_id", $id)
|
122 |
<table><tr>
|
123 |
<td class='su-alias-to-dir'>/$alias_dir/</td>
|
124 |
<td class='su-alias-to-slug'>" . $this->get_input_element('textbox', "alias_{$i}_to", $alias['to']) . "</td>
|
125 |
+
$test_link
|
126 |
</tr></table>"
|
127 |
, 'alias-posts' => $this->get_jlsuggest_box("alias_{$i}_posts", $jlsuggest_value, 'types=posttype')
|
128 |
);
|
129 |
+
if ($existing_item)
|
130 |
$cells['alias-delete'] = $this->get_input_element('checkbox', "alias_{$i}_delete");
|
131 |
|
132 |
$this->table_row($cells, $i, 'alias');
|
modules/rich-snippets/rich-snippets.php
CHANGED
@@ -12,6 +12,7 @@ class SU_RichSnippets extends SU_Module {
|
|
12 |
var $apply_subproperty_markup_args = array();
|
13 |
|
14 |
function get_module_title() { return __('Rich Snippet Creator', 'seo-ultimate'); }
|
|
|
15 |
|
16 |
function get_admin_url($key = false) {
|
17 |
if ($key)
|
12 |
var $apply_subproperty_markup_args = array();
|
13 |
|
14 |
function get_module_title() { return __('Rich Snippet Creator', 'seo-ultimate'); }
|
15 |
+
function get_menu_title() { return false; }
|
16 |
|
17 |
function get_admin_url($key = false) {
|
18 |
if ($key)
|
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.3
|
5 |
Tested up to: 3.4.1
|
6 |
-
Stable tag: 7.5
|
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 |
|
@@ -279,6 +279,10 @@ Frequently asked questions, settings help, and troubleshooting tips for SEO Ulti
|
|
279 |
|
280 |
== Changelog ==
|
281 |
|
|
|
|
|
|
|
|
|
282 |
= Version 7.5 (August 9, 2012) =
|
283 |
* Feature: Open Graph Integrator now includes Twitter Card support
|
284 |
* Feature: Rich Snippet Creator now supports Place microdata
|
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.3
|
5 |
Tested up to: 3.4.1
|
6 |
+
Stable tag: 7.5.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 |
|
279 |
|
280 |
== Changelog ==
|
281 |
|
282 |
+
= Version 7.5.1 (August 9, 2012) =
|
283 |
+
* Bugfix: Removed blank Rich Snippet Creator admin page from the SEO menu
|
284 |
+
* Bugfix: Removed non-functional "Test" link from the "Add a New Alias" section of Link Mask Generator's admin page
|
285 |
+
|
286 |
= Version 7.5 (August 9, 2012) =
|
287 |
* Feature: Open Graph Integrator now includes Twitter Card support
|
288 |
* Feature: Rich Snippet Creator now supports Place microdata
|
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.5
|
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.5
|
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.5');
|
51 |
define('SU_AUTHOR', 'SEO Design Solutions');
|
52 |
define('SU_AUTHOR_URI', 'http://www.seodesignsolutions.com/');
|
53 |
-
define('SU_USER_AGENT', 'SeoUltimate/7.5');
|
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.5.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.5.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', '7.5.1');
|
51 |
define('SU_AUTHOR', 'SEO Design Solutions');
|
52 |
define('SU_AUTHOR_URI', 'http://www.seodesignsolutions.com/');
|
53 |
+
define('SU_USER_AGENT', 'SeoUltimate/7.5.1');
|
54 |
|
55 |
/********** INCLUDES **********/
|
56 |
|