SEO Ultimate - Version 1.8.1

Version Description

Download this release

Release Info

Developer SEO Design Solutions
Plugin Icon 128x128 SEO Ultimate
Version 1.8.1
Comparing to
See all releases

Code changes from version 1.8 to 1.8.1

Files changed (3) hide show
  1. modules/class.su-module.php +29 -0
  2. readme.txt +8 -2
  3. seo-ultimate.php +4 -4
modules/class.su-module.php CHANGED
@@ -961,6 +961,35 @@ class SU_Module {
961
  echo "</table>\n";
962
  }
963
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
964
  /**
965
  * Outputs the HTML that begins an admin form group.
966
  *
961
  echo "</table>\n";
962
  }
963
 
964
+ /**
965
+ * Begins a "widefat" WordPress table.
966
+ *
967
+ * @since 1.8
968
+ *
969
+ * @param $headers Array of (CSS class => Internationalized column title)
970
+ */
971
+ function admin_wftable_start($headers) {
972
+ echo <<<STR
973
+ <table class="widefat" cellspacing="0">
974
+ <thead><tr>
975
+
976
+ STR;
977
+ foreach ($headers as $class => $header) {
978
+ $class = is_numeric($class) ? '' : " class='$class'";
979
+ echo "\t\t<th scope='col'$class>$header</th>\n";
980
+ }
981
+
982
+ echo <<<STR
983
+ </tr></thead>
984
+ <tbody>
985
+
986
+ STR;
987
+ }
988
+
989
+ function admin_wftable_end() {
990
+ echo "\t</tbody>\n</table>\n";
991
+ }
992
+
993
  /**
994
  * Outputs the HTML that begins an admin form group.
995
  *
readme.txt CHANGED
@@ -3,7 +3,7 @@ Contributors: SEO Design Solutions
3
  Tags: seo, google, yahoo, bing, search engines, admin, post, page, modules, title, meta, noindex, canonical, 404, robots.txt, htaccess, slugs, url, anchor, more, link, excerpt, permalink, links, autolinks
4
  Requires at least: 2.8
5
  Tested up to: 2.9
6
- Stable tag: 1.8
7
 
8
  This all-in-one SEO plugin gives you control over titles, noindex, meta data, slugs, canonical tags, "more" links, 404 error tracking, and more.
9
 
@@ -70,7 +70,7 @@ SEO Ultimate is an all-in-one [SEO](http://www.seodesignsolutions.com/) plugin w
70
  * Determine which of your webpages Google most strongly associates with the keywords you specify.
71
  * Use the information to determine ideal targets for incoming links or ideal sources of outgoing links.
72
 
73
- * **More Link Customizer** -- NEW in Version 1.8
74
  * Automatically link phrases in your posts/pages to given URLs
75
  * Use the power of anchor text to boost your internal ranking paradigm
76
 
@@ -581,6 +581,12 @@ Frequently asked questions, documentation, and troubleshooting tips for SEO Ulti
581
 
582
  == Changelog ==
583
 
 
 
 
 
 
 
584
  = Version 1.7.3 (March 11, 2010) =
585
  * Bugfix: Fixed variable name conflict introduced in 1.7.1 that disabled WordPress's plugin/theme editors
586
 
3
  Tags: seo, google, yahoo, bing, search engines, admin, post, page, modules, title, meta, noindex, canonical, 404, robots.txt, htaccess, slugs, url, anchor, more, link, excerpt, permalink, links, autolinks
4
  Requires at least: 2.8
5
  Tested up to: 2.9
6
+ Stable tag: 1.8.1
7
 
8
  This all-in-one SEO plugin gives you control over titles, noindex, meta data, slugs, canonical tags, "more" links, 404 error tracking, and more.
9
 
70
  * Determine which of your webpages Google most strongly associates with the keywords you specify.
71
  * Use the information to determine ideal targets for incoming links or ideal sources of outgoing links.
72
 
73
+ * **Deeplink Juggernaut** -- NEW in Version 1.8
74
  * Automatically link phrases in your posts/pages to given URLs
75
  * Use the power of anchor text to boost your internal ranking paradigm
76
 
581
 
582
  == Changelog ==
583
 
584
+ = Version 1.8.1 (March 28, 2010) =
585
+ * Bugfix: Fixed Deeplink Juggernaut error
586
+
587
+ = Version 1.8 (March 28, 2010) =
588
+ * Feature: Added Deeplink Juggernaut beta module
589
+
590
  = Version 1.7.3 (March 11, 2010) =
591
  * Bugfix: Fixed variable name conflict introduced in 1.7.1 that disabled WordPress's plugin/theme editors
592
 
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 titles, noindex, meta data, slugs, canonical tags, "more" links, 404 error tracking, and more.
6
- Version: 1.8
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 1.8
16
  * @link http://www.seodesignsolutions.com/wordpress-seo/ SEO Ultimate Homepage
17
  */
18
 
@@ -38,10 +38,10 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
38
  //Reading plugin info from constants is faster than trying to parse it from the header above.
39
  define("SU_PLUGIN_NAME", "SEO Ultimate");
40
  define("SU_PLUGIN_URI", "http://www.seodesignsolutions.com/wordpress-seo/");
41
- define("SU_VERSION", "1.8");
42
  define("SU_AUTHOR", "SEO Design Solutions");
43
  define("SU_AUTHOR_URI", "http://www.seodesignsolutions.com/");
44
- define("SU_USER_AGENT", "SeoUltimate/1.8");
45
 
46
  /********** INCLUDES **********/
47
 
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 titles, noindex, meta data, slugs, canonical tags, "more" links, 404 error tracking, and more.
6
+ Version: 1.8.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 1.8.1
16
  * @link http://www.seodesignsolutions.com/wordpress-seo/ SEO Ultimate Homepage
17
  */
18
 
38
  //Reading plugin info from constants is faster than trying to parse it from the header above.
39
  define("SU_PLUGIN_NAME", "SEO Ultimate");
40
  define("SU_PLUGIN_URI", "http://www.seodesignsolutions.com/wordpress-seo/");
41
+ define("SU_VERSION", "1.8.1");
42
  define("SU_AUTHOR", "SEO Design Solutions");
43
  define("SU_AUTHOR_URI", "http://www.seodesignsolutions.com/");
44
+ define("SU_USER_AGENT", "SeoUltimate/1.8.1");
45
 
46
  /********** INCLUDES **********/
47