Tag Archives: Wordpress

Super Category (multi-blog) Plugin Compatability List.

April 3, 2007 by aaron
To add a plugin to this list please leave a comment with: Plugin Name, url, status. If the plugin doesn’t work please say how it doesn’t work; this description can be technical — the plugin calls get_var(“XXXX”) which has no hook — or non-technical — the plugin shows super categories titles in its widget –, but please give it. Plugins that work without modification Ultimate Tag Warrior — tags.php will list all tags regardless of site, but individual tags will not list posts from other sites beneath them.
Read More ⟶

Super Category (multi-blog) plugin – V 0.8

April 2, 2007 by aaron
Unfortunately this is only for WordPress 2.1 The Super Category plugin allows you to have multiple websites running off of one install and one database (one set of tables). The websites can share content if you wish it, and can have different titles, descriptions and themes. This plugin is a true plugin: there are NO HACKS and NO THEME EDITS of any kind. The plugin works with any other plugins and themes that use WordPress’ built in APIs, and features modular functions that can even make other plugins that use custom queries work also.
Read More ⟶

Redirecting a large number of posts to their new WordPress permalinks.

April 25, 2007 by aaron
Add this to the VERY top of your theme’s 404 page. Change http://localhost/wordpress to your default wordpress folder. This just does posts and possibly pages that end in the id (with or without the trailing url) Categories etc will have to be done elsewhere or by hand. < ?php //Kinda obvious $rf = $_SERVER[&#039;REQUEST_URI&#039;]; $rf = explode(&#039;/&#039;,$rf); $last = count($rf); //Filter out regular 404 that arn&#039;t old urls if(is_numeric($rf[$last-1])){ $post_id = $rf[$last-1]; }elseif(is_numeric($rf[$last-2])){ $post_id = $rf[$last-2]; } // No sense loading WP if there isn&#039;t an id if ( $post_id ) { // Oh fine we will load wordpress define(&#039;WP_USE_THEMES&#039;, false); require(&#039;http://localhost/wordpress/wp-blog-header.php&#039;); $post = get_post($post_id); //Well hope it is the right post.
Read More ⟶

Super Category (multi-blog) Plugin Compatability List.

April 3, 2007 by aaron
To add a plugin to this list please leave a comment with: Plugin Name, url, status. If the plugin doesn’t work please say how it doesn’t work; this description can be technical — the plugin calls get_var(“XXXX”) which has no hook — or non-technical — the plugin shows super categories titles in its widget –, but please give it. Plugins that work without modification Ultimate Tag Warrior — tags.php will list all tags regardless of site, but individual tags will not list posts from other sites beneath them.
Read More ⟶

Super Category (multi-blog) plugin – V 0.8

April 2, 2007 by aaron
Unfortunately this is only for WordPress 2.1 The Super Category plugin allows you to have multiple websites running off of one install and one database (one set of tables). The websites can share content if you wish it, and can have different titles, descriptions and themes. This plugin is a true plugin: there are NO HACKS and NO THEME EDITS of any kind. The plugin works with any other plugins and themes that use WordPress’ built in APIs, and features modular functions that can even make other plugins that use custom queries work also.
Read More ⟶

Redirecting a large number of posts to their new WordPress permalinks.

April 25, 2007 by aaron
Add this to the VERY top of your theme’s 404 page. Change http://localhost/wordpress to your default wordpress folder. This just does posts and possibly pages that end in the id (with or without the trailing url) Categories etc will have to be done elsewhere or by hand. < ?php //Kinda obvious $rf = $_SERVER[&#039;REQUEST_URI&#039;]; $rf = explode(&#039;/&#039;,$rf); $last = count($rf); //Filter out regular 404 that arn&#039;t old urls if(is_numeric($rf[$last-1])){ $post_id = $rf[$last-1]; }elseif(is_numeric($rf[$last-2])){ $post_id = $rf[$last-2]; } // No sense loading WP if there isn&#039;t an id if ( $post_id ) { // Oh fine we will load wordpress define(&#039;WP_USE_THEMES&#039;, false); require(&#039;http://localhost/wordpress/wp-blog-header.php&#039;); $post = get_post($post_id); //Well hope it is the right post.
Read More ⟶