Version Description
Download this release
Release Info
Developer | uberdose |
Plugin | All in One SEO Pack |
Version | 1.2.3.6 |
Comparing to | |
See all releases |
Code changes from version 1.2.3.5 to 1.2.3.6
- all_in_one_seo_pack.php +9 -2
- readme.txt +3 -4
all_in_one_seo_pack.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
Plugin Name: All in One SEO Pack
|
5 |
Plugin URI: http://wp.uberdose.com/2007/03/24/all-in-one-seo-pack/
|
6 |
Description: Out-of-the-box SEO for your Wordpress blog.
|
7 |
-
Version: 1.2.3.
|
8 |
Author: uberdose
|
9 |
Author URI: http://wp.uberdose.com/
|
10 |
*/
|
@@ -28,7 +28,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
28 |
|
29 |
class All_in_One_SEO_Pack {
|
30 |
|
31 |
-
var $version = "1.2.3.
|
32 |
|
33 |
/**
|
34 |
* Number of words to be used (max) for generating an excerpt.
|
@@ -63,6 +63,13 @@ class All_in_One_SEO_Pack {
|
|
63 |
return;
|
64 |
}
|
65 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
66 |
global $wp_query;
|
67 |
$post = $wp_query->get_queried_object();
|
68 |
|
4 |
Plugin Name: All in One SEO Pack
|
5 |
Plugin URI: http://wp.uberdose.com/2007/03/24/all-in-one-seo-pack/
|
6 |
Description: Out-of-the-box SEO for your Wordpress blog.
|
7 |
+
Version: 1.2.3.6
|
8 |
Author: uberdose
|
9 |
Author URI: http://wp.uberdose.com/
|
10 |
*/
|
28 |
|
29 |
class All_in_One_SEO_Pack {
|
30 |
|
31 |
+
var $version = "1.2.3.6";
|
32 |
|
33 |
/**
|
34 |
* Number of words to be used (max) for generating an excerpt.
|
63 |
return;
|
64 |
}
|
65 |
|
66 |
+
// make the title rewrite as short as possible
|
67 |
+
$active_handlers = ob_list_handlers();
|
68 |
+
if (sizeof($active_handlers) > 0 && $active_handlers[sizeof($active_handlers) - 1] == 'All_in_One_SEO_Pack::output_callback_for_title') {
|
69 |
+
// if we don't land here there *could* be trouble with another plugin :(
|
70 |
+
ob_end_flush();
|
71 |
+
}
|
72 |
+
|
73 |
global $wp_query;
|
74 |
$post = $wp_query->get_queried_object();
|
75 |
|
readme.txt
CHANGED
@@ -18,8 +18,9 @@ Optimizes your Wordpress blog for Search Engines (Search Engine Optimization).
|
|
18 |
|
19 |
**[Download now!](http://downloads.wordpress.org/plugin/all-in-one-seo-pack.zip)**
|
20 |
|
21 |
-
* [Version History](http://wp.uberdose.com/2007/07/27/all-in-one-seo-pack-release-history/)
|
22 |
* [SEO Manual](http://wp.uberdose.com/2007/03/24/all-in-one-seo-pack/)
|
|
|
|
|
23 |
* [See what users are saying](http://wp.uberdose.com/2007/03/24/all-in-one-seo-pack/#comments)
|
24 |
* [Get Help](http://wp.uberdose.com/2007/03/24/all-in-one-seo-pack/#respond)
|
25 |
|
@@ -33,6 +34,4 @@ the top-level folder. Don't just upload all the php files and put them in `/wp-c
|
|
33 |
|
34 |
== Frequently Asked Questions ==
|
35 |
|
36 |
-
|
37 |
-
|
38 |
-
http://wp.uberdose.com/2007/03/24/all-in-one-seo-pack/#respond
|
18 |
|
19 |
**[Download now!](http://downloads.wordpress.org/plugin/all-in-one-seo-pack.zip)**
|
20 |
|
|
|
21 |
* [SEO Manual](http://wp.uberdose.com/2007/03/24/all-in-one-seo-pack/)
|
22 |
+
* [Version History](http://wp.uberdose.com/2007/07/27/all-in-one-seo-pack-release-history/)
|
23 |
+
* [FAQ](http://wp.uberdose.com/2007/07/11/all-in-one-seo-pack-faq/)
|
24 |
* [See what users are saying](http://wp.uberdose.com/2007/03/24/all-in-one-seo-pack/#comments)
|
25 |
* [Get Help](http://wp.uberdose.com/2007/03/24/all-in-one-seo-pack/#respond)
|
26 |
|
34 |
|
35 |
== Frequently Asked Questions ==
|
36 |
|
37 |
+
Please read these [FAQs](http://wp.uberdose.com/2007/07/11/all-in-one-seo-pack-faq/)
|
|
|
|