-- phpMyAdmin SQL Dump -- version 2.10.3 -- http://www.phpmyadmin.net -- -- Host: localhost -- Generato il: 30 Set, 2007 at 04:42 PM -- Versione MySQL: 5.0.45 -- Versione PHP: 5.2.3 -- -- Database: `wptest` -- -- -------------------------------------------------------- -- -- Struttura della tabella `wp_categories` -- DROP TABLE IF EXISTS `wp_categories`; CREATE TABLE IF NOT EXISTS `wp_categories` ( `cat_ID` bigint(20) NOT NULL auto_increment, `cat_name` varchar(55) NOT NULL default '', `category_nicename` varchar(200) NOT NULL default '', `category_description` longtext NOT NULL, `category_parent` bigint(20) NOT NULL default '0', `category_count` bigint(20) NOT NULL default '0', `link_count` bigint(20) NOT NULL default '0', `posts_private` tinyint(1) NOT NULL default '0', `links_private` tinyint(1) NOT NULL default '0', PRIMARY KEY (`cat_ID`), KEY `category_nicename` (`category_nicename`) ) TYPE=MyISAM AUTO_INCREMENT=8 ; -- -- Dump dei dati per la tabella `wp_categories` -- INSERT INTO `wp_categories` (`cat_ID`, `cat_name`, `category_nicename`, `category_description`, `category_parent`, `category_count`, `link_count`, `posts_private`, `links_private`) VALUES (1, 'Uncategorized', 'uncategorized', '', 0, 8, 0, 0, 0), (2, 'Blogroll', 'blogroll', '', 0, 0, 0, 0, 0), (4, 'Test Category 1', 'test-category-1', '', 0, 0, 0, 0, 0), (5, 'Test Category 2', 'test-category-2', '', 0, 0, 0, 0, 0), (6, 'Child 1 of 2', 'child-1-of-2', '', 5, 1, 0, 0, 0), (7, 'Child 2 of 2', 'child-2-of-2', '', 5, 1, 0, 0, 0); -- -------------------------------------------------------- -- -- Struttura della tabella `wp_comments` -- DROP TABLE IF EXISTS `wp_comments`; CREATE TABLE IF NOT EXISTS `wp_comments` ( `comment_ID` bigint(20) unsigned NOT NULL auto_increment, `comment_post_ID` int(11) NOT NULL default '0', `comment_author` tinytext NOT NULL, `comment_author_email` varchar(100) NOT NULL default '', `comment_author_url` varchar(200) NOT NULL default '', `comment_author_IP` varchar(100) NOT NULL default '', `comment_date` datetime NOT NULL default '0000-00-00 00:00:00', `comment_date_gmt` datetime NOT NULL default '0000-00-00 00:00:00', `comment_content` text NOT NULL, `comment_karma` int(11) NOT NULL default '0', `comment_approved` enum('0','1','spam') NOT NULL default '1', `comment_agent` varchar(255) NOT NULL default '', `comment_type` varchar(20) NOT NULL default '', `comment_parent` bigint(20) NOT NULL default '0', `user_id` bigint(20) NOT NULL default '0', PRIMARY KEY (`comment_ID`), KEY `comment_approved` (`comment_approved`), KEY `comment_post_ID` (`comment_post_ID`) ) TYPE=MyISAM AUTO_INCREMENT=8 ; -- -- Dump dei dati per la tabella `wp_comments` -- INSERT INTO `wp_comments` (`comment_ID`, `comment_post_ID`, `comment_author`, `comment_author_email`, `comment_author_url`, `comment_author_IP`, `comment_date`, `comment_date_gmt`, `comment_content`, `comment_karma`, `comment_approved`, `comment_agent`, `comment_type`, `comment_parent`, `user_id`) VALUES (2, 5, 'WordPress » Blog Archive » A post with links and a page within', '', 'http://localhost/wp/?p=6', '127.0.0.1', '2007-09-30 16:19:32', '2007-09-30 14:19:32', '[...] Pages: About [...]', 0, '1', 'Incutio XML-RPC -- WordPress/2.2.1', 'pingback', 0, 0), (3, 12, 'John Doe', 'admin@localhost.com', 'http://localhost/', '127.0.0.1', '2007-09-30 16:24:16', '2007-09-30 14:24:16', 'This is a test comment', 0, '1', 'Mozilla/5.0 (Windows; U; Windows NT 5.1; it; rv:1.8.1.7) Gecko/20070914 Firefox/2.0.0.7', '', 0, 1), (4, 12, 'John Doe', 'admin@localhost.com', 'http://localhost/', '127.0.0.1', '2007-09-30 16:24:32', '2007-09-30 14:24:32', '
This is a test comment with a blockquote
', 0, '1', 'Mozilla/5.0 (Windows; U; Windows NT 5.1; it; rv:1.8.1.7) Gecko/20070914 Firefox/2.0.0.7', '', 0, 1), (5, 12, 'John Doe', 'admin@localhost.com', 'http://localhost/', '127.0.0.1', '2007-09-30 16:24:48', '2007-09-30 14:24:48', '\r\n\r\n', 0, '1', 'Mozilla/5.0 (Windows; U; Windows NT 5.1; it; rv:1.8.1.7) Gecko/20070914 Firefox/2.0.0.7', '', 0, 1), (6, 12, 'John Doe', 'admin@localhost.com', 'http://localhost/', '127.0.0.1', '2007-09-30 16:26:25', '2007-09-30 14:26:25', '
    \r\n
  1. List item
  2. \r\n
  3. List item 2
  4. \r\n
  5. List item 3
  6. \r\n
  7. List item 4
  8. \r\n
', 0, '1', 'Mozilla/5.0 (Windows; U; Windows NT 5.1; it; rv:1.8.1.7) Gecko/20070914 Firefox/2.0.0.7', '', 0, 1), (7, 12, 'John Doe', 'admin@localhost.com', 'http://localhost/', '127.0.0.1', '2007-09-30 16:26:54', '2007-09-30 14:26:54', '
This is a comment … \r\n
… with a blockquote inside a blockquote
', 0, '1', 'Mozilla/5.0 (Windows; U; Windows NT 5.1; it; rv:1.8.1.7) Gecko/20070914 Firefox/2.0.0.7', '', 0, 1); -- -------------------------------------------------------- -- -- Struttura della tabella `wp_link2cat` -- DROP TABLE IF EXISTS `wp_link2cat`; CREATE TABLE IF NOT EXISTS `wp_link2cat` ( `rel_id` bigint(20) NOT NULL auto_increment, `link_id` bigint(20) NOT NULL default '0', `category_id` bigint(20) NOT NULL default '0', PRIMARY KEY (`rel_id`), KEY `link_id` (`link_id`,`category_id`) ) TYPE=MyISAM AUTO_INCREMENT=10 ; -- -- Dump dei dati per la tabella `wp_link2cat` -- INSERT INTO `wp_link2cat` (`rel_id`, `link_id`, `category_id`) VALUES (9, 8, 2); -- -------------------------------------------------------- -- -- Struttura della tabella `wp_links` -- DROP TABLE IF EXISTS `wp_links`; CREATE TABLE IF NOT EXISTS `wp_links` ( `link_id` bigint(20) NOT NULL auto_increment, `link_url` varchar(255) NOT NULL default '', `link_name` varchar(255) NOT NULL default '', `link_image` varchar(255) NOT NULL default '', `link_target` varchar(25) NOT NULL default '', `link_category` bigint(20) NOT NULL default '0', `link_description` varchar(255) NOT NULL default '', `link_visible` enum('Y','N') NOT NULL default 'Y', `link_owner` int(11) NOT NULL default '1', `link_rating` int(11) NOT NULL default '0', `link_updated` datetime NOT NULL default '0000-00-00 00:00:00', `link_rel` varchar(255) NOT NULL default '', `link_notes` mediumtext NOT NULL, `link_rss` varchar(255) NOT NULL default '', PRIMARY KEY (`link_id`), KEY `link_category` (`link_category`), KEY `link_visible` (`link_visible`) ) TYPE=MyISAM AUTO_INCREMENT=9 ; -- -- Dump dei dati per la tabella `wp_links` -- -- -------------------------------------------------------- -- -- Struttura della tabella `wp_options` -- DROP TABLE IF EXISTS `wp_options`; CREATE TABLE IF NOT EXISTS `wp_options` ( `option_id` bigint(20) NOT NULL auto_increment, `blog_id` int(11) NOT NULL default '0', `option_name` varchar(64) NOT NULL default '', `option_can_override` enum('Y','N') NOT NULL default 'Y', `option_type` int(11) NOT NULL default '1', `option_value` longtext NOT NULL, `option_width` int(11) NOT NULL default '20', `option_height` int(11) NOT NULL default '8', `option_description` tinytext NOT NULL, `option_admin_level` int(11) NOT NULL default '1', `autoload` enum('yes','no') NOT NULL default 'yes', PRIMARY KEY (`option_id`,`blog_id`,`option_name`), KEY `option_name` (`option_name`) ) TYPE=MyISAM AUTO_INCREMENT=101 ; -- -- Dump dei dati per la tabella `wp_options` -- INSERT INTO `wp_options` (`option_id`, `blog_id`, `option_name`, `option_can_override`, `option_type`, `option_value`, `option_width`, `option_height`, `option_description`, `option_admin_level`, `autoload`) VALUES (1, 0, 'siteurl', 'Y', 1, 'http://localhost/wp', 20, 8, 'WordPress web address', 1, 'yes'), (2, 0, 'blogname', 'Y', 1, 'WordPress', 20, 8, 'Blog title', 1, 'yes'), (3, 0, 'blogdescription', 'Y', 1, 'Just another WordPress blog', 20, 8, 'Short tagline', 1, 'yes'), (66, 0, 'wp_user_roles', 'Y', 1, 'a:5:{s:13:"administrator";a:2:{s:4:"name";s:13:"Administrator";s:12:"capabilities";a:47:{s:13:"switch_themes";b:1;s:11:"edit_themes";b:1;s:16:"activate_plugins";b:1;s:12:"edit_plugins";b:1;s:10:"edit_users";b:1;s:10:"edit_files";b:1;s:14:"manage_options";b:1;s:17:"moderate_comments";b:1;s:17:"manage_categories";b:1;s:12:"manage_links";b:1;s:12:"upload_files";b:1;s:6:"import";b:1;s:15:"unfiltered_html";b:1;s:10:"edit_posts";b:1;s:17:"edit_others_posts";b:1;s:20:"edit_published_posts";b:1;s:13:"publish_posts";b:1;s:10:"edit_pages";b:1;s:4:"read";b:1;s:8:"level_10";b:1;s:7:"level_9";b:1;s:7:"level_8";b:1;s:7:"level_7";b:1;s:7:"level_6";b:1;s:7:"level_5";b:1;s:7:"level_4";b:1;s:7:"level_3";b:1;s:7:"level_2";b:1;s:7:"level_1";b:1;s:7:"level_0";b:1;s:17:"edit_others_pages";b:1;s:20:"edit_published_pages";b:1;s:13:"publish_pages";b:1;s:12:"delete_pages";b:1;s:19:"delete_others_pages";b:1;s:22:"delete_published_pages";b:1;s:12:"delete_posts";b:1;s:19:"delete_others_posts";b:1;s:22:"delete_published_posts";b:1;s:20:"delete_private_posts";b:1;s:18:"edit_private_posts";b:1;s:18:"read_private_posts";b:1;s:20:"delete_private_pages";b:1;s:18:"edit_private_pages";b:1;s:18:"read_private_pages";b:1;s:12:"delete_users";b:1;s:12:"create_users";b:1;}}s:6:"editor";a:2:{s:4:"name";s:6:"Editor";s:12:"capabilities";a:34:{s:17:"moderate_comments";b:1;s:17:"manage_categories";b:1;s:12:"manage_links";b:1;s:12:"upload_files";b:1;s:15:"unfiltered_html";b:1;s:10:"edit_posts";b:1;s:17:"edit_others_posts";b:1;s:20:"edit_published_posts";b:1;s:13:"publish_posts";b:1;s:10:"edit_pages";b:1;s:4:"read";b:1;s:7:"level_7";b:1;s:7:"level_6";b:1;s:7:"level_5";b:1;s:7:"level_4";b:1;s:7:"level_3";b:1;s:7:"level_2";b:1;s:7:"level_1";b:1;s:7:"level_0";b:1;s:17:"edit_others_pages";b:1;s:20:"edit_published_pages";b:1;s:13:"publish_pages";b:1;s:12:"delete_pages";b:1;s:19:"delete_others_pages";b:1;s:22:"delete_published_pages";b:1;s:12:"delete_posts";b:1;s:19:"delete_others_posts";b:1;s:22:"delete_published_posts";b:1;s:20:"delete_private_posts";b:1;s:18:"edit_private_posts";b:1;s:18:"read_private_posts";b:1;s:20:"delete_private_pages";b:1;s:18:"edit_private_pages";b:1;s:18:"read_private_pages";b:1;}}s:6:"author";a:2:{s:4:"name";s:6:"Author";s:12:"capabilities";a:10:{s:12:"upload_files";b:1;s:10:"edit_posts";b:1;s:20:"edit_published_posts";b:1;s:13:"publish_posts";b:1;s:4:"read";b:1;s:7:"level_2";b:1;s:7:"level_1";b:1;s:7:"level_0";b:1;s:12:"delete_posts";b:1;s:22:"delete_published_posts";b:1;}}s:11:"contributor";a:2:{s:4:"name";s:11:"Contributor";s:12:"capabilities";a:5:{s:10:"edit_posts";b:1;s:4:"read";b:1;s:7:"level_1";b:1;s:7:"level_0";b:1;s:12:"delete_posts";b:1;}}s:10:"subscriber";a:2:{s:4:"name";s:10:"Subscriber";s:12:"capabilities";a:2:{s:4:"read";b:1;s:7:"level_0";b:1;}}}', 20, 8, '', 1, 'yes'), (5, 0, 'users_can_register', 'Y', 1, '', 20, 8, '', 1, 'yes'), (6, 0, 'admin_email', 'Y', 1, 'admin@localhost', 20, 8, '', 1, 'yes'), (7, 0, 'start_of_week', 'Y', 1, '1', 20, 8, '', 1, 'yes'), (8, 0, 'use_balanceTags', 'Y', 1, '0', 20, 8, '', 1, 'yes'), (9, 0, 'use_smilies', 'Y', 1, '1', 20, 8, '', 1, 'yes'), (10, 0, 'require_name_email', 'Y', 1, '1', 20, 8, '', 1, 'yes'), (11, 0, 'comments_notify', 'Y', 1, '1', 20, 8, '', 1, 'yes'), (12, 0, 'posts_per_rss', 'Y', 1, '10', 20, 8, '', 1, 'yes'), (13, 0, 'rss_excerpt_length', 'Y', 1, '50', 20, 8, '', 1, 'yes'), (14, 0, 'rss_use_excerpt', 'Y', 1, '0', 20, 8, '', 1, 'yes'), (15, 0, 'mailserver_url', 'Y', 1, 'mail.example.com', 20, 8, '', 1, 'yes'), (16, 0, 'mailserver_login', 'Y', 1, 'login@example.com', 20, 8, '', 1, 'yes'), (17, 0, 'mailserver_pass', 'Y', 1, 'password', 20, 8, '', 1, 'yes'), (18, 0, 'mailserver_port', 'Y', 1, '110', 20, 8, '', 1, 'yes'), (19, 0, 'default_category', 'Y', 1, '1', 20, 8, '', 1, 'yes'), (20, 0, 'default_comment_status', 'Y', 1, 'open', 20, 8, '', 1, 'yes'), (21, 0, 'default_ping_status', 'Y', 1, 'open', 20, 8, '', 1, 'yes'), (22, 0, 'default_pingback_flag', 'Y', 1, '1', 20, 8, '', 1, 'yes'), (23, 0, 'default_post_edit_rows', 'Y', 1, '10', 20, 8, '', 1, 'yes'), (24, 0, 'posts_per_page', 'Y', 1, '10', 20, 8, '', 1, 'yes'), (25, 0, 'what_to_show', 'Y', 1, 'posts', 20, 8, '', 1, 'yes'), (26, 0, 'date_format', 'Y', 1, 'F j, Y', 20, 8, '', 1, 'yes'), (27, 0, 'time_format', 'Y', 1, 'g:i a', 20, 8, '', 1, 'yes'), (28, 0, 'links_updated_date_format', 'Y', 1, 'F j, Y g:i a', 20, 8, '', 1, 'yes'), (29, 0, 'links_recently_updated_prepend', 'Y', 1, '', 20, 8, '', 1, 'yes'), (30, 0, 'links_recently_updated_append', 'Y', 1, '', 20, 8, '', 1, 'yes'), (31, 0, 'links_recently_updated_time', 'Y', 1, '120', 20, 8, '', 1, 'yes'), (32, 0, 'comment_moderation', 'Y', 1, '0', 20, 8, '', 1, 'yes'), (33, 0, 'moderation_notify', 'Y', 1, '1', 20, 8, '', 1, 'yes'), (34, 0, 'permalink_structure', 'Y', 1, '', 20, 8, '', 1, 'yes'), (35, 0, 'gzipcompression', 'Y', 1, '0', 20, 8, '', 1, 'yes'), (36, 0, 'hack_file', 'Y', 1, '0', 20, 8, '', 1, 'yes'), (37, 0, 'blog_charset', 'Y', 1, 'UTF-8', 20, 8, '', 1, 'yes'), (38, 0, 'moderation_keys', 'Y', 1, '', 20, 8, '', 1, 'no'), (39, 0, 'active_plugins', 'Y', 1, 'a:0:{}', 20, 8, '', 1, 'yes'), (40, 0, 'home', 'Y', 1, 'http://localhost/wp', 20, 8, '', 1, 'yes'), (41, 0, 'category_base', 'Y', 1, '', 20, 8, '', 1, 'yes'), (42, 0, 'ping_sites', 'Y', 1, 'http://rpc.pingomatic.com/', 20, 8, '', 1, 'yes'), (43, 0, 'advanced_edit', 'Y', 1, '0', 20, 8, '', 1, 'yes'), (44, 0, 'comment_max_links', 'Y', 1, '2', 20, 8, '', 1, 'yes'), (45, 0, 'gmt_offset', 'Y', 1, '2', 20, 8, '', 1, 'yes'), (46, 0, 'default_email_category', 'Y', 1, '1', 20, 8, 'Posts by email go to this category', 1, 'yes'), (47, 0, 'recently_edited', 'Y', 1, '', 20, 8, '', 1, 'no'), (48, 0, 'use_linksupdate', 'Y', 1, '0', 20, 8, '', 1, 'yes'), (49, 0, 'template', 'Y', 1, 'default', 20, 8, '', 1, 'yes'), (50, 0, 'stylesheet', 'Y', 1, 'default', 20, 8, '', 1, 'yes'), (51, 0, 'comment_whitelist', 'Y', 1, '1', 20, 8, '', 1, 'yes'), (94, 0, 'page_uris', 'Y', 1, 'a:1:{s:5:"about";i:5;}', 20, 8, '', 1, 'yes'), (53, 0, 'blacklist_keys', 'Y', 1, '', 20, 8, '', 1, 'no'), (54, 0, 'comment_registration', 'Y', 1, '', 20, 8, '', 1, 'yes'), (55, 0, 'rss_language', 'Y', 1, 'en', 20, 8, '', 1, 'yes'), (56, 0, 'html_type', 'Y', 1, 'text/html', 20, 8, '', 1, 'yes'), (57, 0, 'use_trackback', 'Y', 1, '0', 20, 8, '', 1, 'yes'), (58, 0, 'default_role', 'Y', 1, 'subscriber', 20, 8, '', 1, 'yes'), (59, 0, 'db_version', 'Y', 1, '5183', 20, 8, '', 1, 'yes'), (60, 0, 'uploads_use_yearmonth_folders', 'Y', 1, '1', 20, 8, '', 1, 'yes'), (61, 0, 'upload_path', 'Y', 1, 'wp-content/uploads', 20, 8, '', 1, 'yes'), (62, 0, 'secret', 'Y', 1, 'c1a0ecb8bdff8dbf45fcde865200da99', 20, 8, '', 1, 'yes'), (63, 0, 'blog_public', 'Y', 1, '1', 20, 8, '', 1, 'yes'), (64, 0, 'default_link_category', 'Y', 1, '2', 20, 8, '', 1, 'yes'), (65, 0, 'show_on_front', 'Y', 1, 'posts', 20, 8, '', 1, 'yes'), (68, 0, 'rss_0ff4b43bd116a9d8720d689c80e7dfd4', 'Y', 1, 'O:9:"MagpieRSS":19:{s:6:"parser";i:0;s:12:"current_item";a:0:{}s:5:"items";a:10:{i:0;a:12:{s:5:"title";s:13:"WordPress 2.3";s:4:"link";s:54:"http://wordpress.org/development/2007/09/wordpress-23/";s:8:"comments";s:63:"http://wordpress.org/development/2007/09/wordpress-23/#comments";s:7:"pubdate";s:31:"Tue, 25 Sep 2007 01:22:54 +0000";s:2:"dc";a:1:{s:7:"creator";s:4:"Matt";}s:8:"category";s:66:"DevelopmentReleasestaggingtaxonomyupdate notificationwordpress 2.3";s:4:"guid";s:54:"http://wordpress.org/development/2007/09/wordpress-23/";s:11:"description";s:379:"I’m thrilled to announce that Version 2.3 “Dexter” of WordPress is now ready for the world. This release includes native tagging support, plugin update notification, URL handling improvements, and much more. This release is named for the great tenor saxophonist Dexter Gordon.\nThe entire team is really proud of this release, and I’m happy that this [...]";s:7:"content";a:1:{s:7:"encoded";s:4883:"

I’m thrilled to announce that Version 2.3 “Dexter” of WordPress is now ready for the world. This release includes native tagging support, plugin update notification, URL handling improvements, and much more. This release is named for the great tenor saxophonist Dexter Gordon.

\n

The entire team is really proud of this release, and I’m happy that this is our second on-time release under our new development schedule. The grand experiment of a more agile WordPress with significant features in the hands of users more often is working. I could write a blog post about each new feature, but I’ll try to be brief:

\n
    \n
  1. Native tagging support allows you to use tags in addition to categories on your posts, if you so choose. We’ve included importers for the Ultimate Tag Warrior, Jerome’s Keywords, Simple Tags, and Bunny’s Technorati Tag plugins so if you’ve already been using a tagging plugin you can bring your data into the new system. The tagging system is also wicked-fast, so your host won’t mind.
  2. \n
  3. Our new update notification lets you know when there is a new release of WordPress or when any of the plugins you use has an update available. It works by sending your blog URL, plugins, and version information to our new api.wordpress.org service which then compares it to the plugin database and tells you whats the latest and greatest you can use.
  4. \n
  5. We’ve cleaned up URLs a bunch in a feature we call canonical URLs which does things like enforce your no-www preference, redirect posts with changed slugs so a link never goes bad, redirect URLs that get cut off in emails on similar to the correct post, and much more. This helps your users, and it also helps your search engine optimization, as search engines like for each page to be available in one canonical location. More info here.
  6. \n
  7. Our new pending review feature will be great for multi-author blogs. It allows authors to submit a post for review by an editor or administrator, where before they would just have to save a draft and hope someone noticed it.
  8. \n
  9. There is new advanced WYSIWYG functionality (we call it the kitchen sink button) that allows you to access some features of TinyMCE that were previously hidden.
  10. \n
\n

You’ll notice that two of those features are straight out of the most-voted for ideas list. That’s just the user facing stuff, if you’re a developer you’ll be interested in:

\n
    \n
  1. Full and complete Atom 1.0 support, including the publishing protocol.
  2. \n
  3. We’re using the new jQuery which is “800% faster.”
  4. \n
  5. Behind the user-facing tags system is a really kickass taxonomy system, which adds a ton of flexibility. It’s probably the biggest schema upgrade since version 1.5.
  6. \n
  7. The importers have been revamped to be more memory efficient, and you can now add an importer through a plugin.
  8. \n
  9. Through hooks and filters you can now override the update system, the dashboard RSS feeds, the feed parser, and tons more than you could in 2.2.
  10. \n
  11. The new $wpdb->prepare() way of doing SQL queries.
  12. \n
  13. Finally there were over 351 tickets in Trac closed for this release, with over a hundred people contributing. This is the polish, the hundreds of tiny bug fixes and features that make WordPress what it is.
  14. \n
\n

You can view the Codex for more information about the release and some screenshots. And of course the place to download is always the same. Before you upgrade you may want to check out our Preparing for 2.3 post and the list of compatible plugins on the Codex.

\n

A number of people are hosting upgrade parties around the world, including myself in San Francisco. If you are let me know and I’ll promote it on my blog.

\n";}s:3:"wfw";a:1:{s:10:"commentrss";s:59:"http://wordpress.org/development/2007/09/wordpress-23/feed/";}s:7:"summary";s:379:"I’m thrilled to announce that Version 2.3 “Dexter” of WordPress is now ready for the world. This release includes native tagging support, plugin update notification, URL handling improvements, and much more. This release is named for the great tenor saxophonist Dexter Gordon.\nThe entire team is really proud of this release, and I’m happy that this [...]";s:12:"atom_content";s:4883:"

I’m thrilled to announce that Version 2.3 “Dexter” of WordPress is now ready for the world. This release includes native tagging support, plugin update notification, URL handling improvements, and much more. This release is named for the great tenor saxophonist Dexter Gordon.

\n

The entire team is really proud of this release, and I’m happy that this is our second on-time release under our new development schedule. The grand experiment of a more agile WordPress with significant features in the hands of users more often is working. I could write a blog post about each new feature, but I’ll try to be brief:

\n
    \n
  1. Native tagging support allows you to use tags in addition to categories on your posts, if you so choose. We’ve included importers for the Ultimate Tag Warrior, Jerome’s Keywords, Simple Tags, and Bunny’s Technorati Tag plugins so if you’ve already been using a tagging plugin you can bring your data into the new system. The tagging system is also wicked-fast, so your host won’t mind.
  2. \n
  3. Our new update notification lets you know when there is a new release of WordPress or when any of the plugins you use has an update available. It works by sending your blog URL, plugins, and version information to our new api.wordpress.org service which then compares it to the plugin database and tells you whats the latest and greatest you can use.
  4. \n
  5. We’ve cleaned up URLs a bunch in a feature we call canonical URLs which does things like enforce your no-www preference, redirect posts with changed slugs so a link never goes bad, redirect URLs that get cut off in emails on similar to the correct post, and much more. This helps your users, and it also helps your search engine optimization, as search engines like for each page to be available in one canonical location. More info here.
  6. \n
  7. Our new pending review feature will be great for multi-author blogs. It allows authors to submit a post for review by an editor or administrator, where before they would just have to save a draft and hope someone noticed it.
  8. \n
  9. There is new advanced WYSIWYG functionality (we call it the kitchen sink button) that allows you to access some features of TinyMCE that were previously hidden.
  10. \n
\n

You’ll notice that two of those features are straight out of the most-voted for ideas list. That’s just the user facing stuff, if you’re a developer you’ll be interested in:

\n
    \n
  1. Full and complete Atom 1.0 support, including the publishing protocol.
  2. \n
  3. We’re using the new jQuery which is “800% faster.”
  4. \n
  5. Behind the user-facing tags system is a really kickass taxonomy system, which adds a ton of flexibility. It’s probably the biggest schema upgrade since version 1.5.
  6. \n
  7. The importers have been revamped to be more memory efficient, and you can now add an importer through a plugin.
  8. \n
  9. Through hooks and filters you can now override the update system, the dashboard RSS feeds, the feed parser, and tons more than you could in 2.2.
  10. \n
  11. The new $wpdb->prepare() way of doing SQL queries.
  12. \n
  13. Finally there were over 351 tickets in Trac closed for this release, with over a hundred people contributing. This is the polish, the hundreds of tiny bug fixes and features that make WordPress what it is.
  14. \n
\n

You can view the Codex for more information about the release and some screenshots. And of course the place to download is always the same. Before you upgrade you may want to check out our Preparing for 2.3 post and the list of compatible plugins on the Codex.

\n

A number of people are hosting upgrade parties around the world, including myself in San Francisco. If you are let me know and I’ll promote it on my blog.

\n";}i:1;a:12:{s:5:"title";s:9:"New Faces";s:4:"link";s:51:"http://wordpress.org/development/2007/09/new-faces/";s:8:"comments";s:60:"http://wordpress.org/development/2007/09/new-faces/#comments";s:7:"pubdate";s:31:"Mon, 24 Sep 2007 05:41:14 +0000";s:2:"dc";a:1:{s:7:"creator";s:4:"Matt";}s:8:"category";s:50:"DevelopmentMetamark jaquithpeter westwoodwordpress";s:4:"guid";s:51:"http://wordpress.org/development/2007/09/new-faces/";s:11:"description";s:332:"If you follow WordPress development closely you’ve probably noticed a few new faces around lately, or to be more accurate a few old faces who are taking on bigger roles in the community. I would like to take this opportunity to announce and publicly congratulate Mark Jaquith and Peter Westwood who have both become lead [...]";s:7:"content";a:1:{s:7:"encoded";s:1398:"

If you follow WordPress development closely you’ve probably noticed a few new faces around lately, or to be more accurate a few old faces who are taking on bigger roles in the community. I would like to take this opportunity to announce and publicly congratulate Mark Jaquith and Peter Westwood who have both become lead developers, the highest development honor on WordPress.org.

\n

Mark Jaquith has been using and contributing to WordPress since 2004. Mark especially enjoys watching people use WordPress to express themselves in areas of the world where free expression is suppressed. But, being a voracious consumer of information, he probably reads your cat blog too.

\n

Peter works as an Embedded Software Engineer developing a web-enabled BMS controller. Using WordPress since version 1.0.1, Peter spends his spare time triaging bugs on Trac and investigating new open source tools. When not at the computer Peter can often be found photographing flowers, animals and cars and listening to a wide variety of music.

\n";}s:3:"wfw";a:1:{s:10:"commentrss";s:56:"http://wordpress.org/development/2007/09/new-faces/feed/";}s:7:"summary";s:332:"If you follow WordPress development closely you’ve probably noticed a few new faces around lately, or to be more accurate a few old faces who are taking on bigger roles in the community. I would like to take this opportunity to announce and publicly congratulate Mark Jaquith and Peter Westwood who have both become lead [...]";s:12:"atom_content";s:1398:"

If you follow WordPress development closely you’ve probably noticed a few new faces around lately, or to be more accurate a few old faces who are taking on bigger roles in the community. I would like to take this opportunity to announce and publicly congratulate Mark Jaquith and Peter Westwood who have both become lead developers, the highest development honor on WordPress.org.

\n

Mark Jaquith has been using and contributing to WordPress since 2004. Mark especially enjoys watching people use WordPress to express themselves in areas of the world where free expression is suppressed. But, being a voracious consumer of information, he probably reads your cat blog too.

\n

Peter works as an Embedded Software Engineer developing a web-enabled BMS controller. Using WordPress since version 1.0.1, Peter spends his spare time triaging bugs on Trac and investigating new open source tools. When not at the computer Peter can often be found photographing flowers, animals and cars and listening to a wide variety of music.

\n";}i:2;a:12:{s:5:"title";s:17:"Preparing for 2.3";s:4:"link";s:58:"http://wordpress.org/development/2007/09/preparing-for-23/";s:8:"comments";s:67:"http://wordpress.org/development/2007/09/preparing-for-23/#comments";s:7:"pubdate";s:31:"Sat, 22 Sep 2007 10:00:30 +0000";s:2:"dc";a:1:{s:7:"creator";s:4:"Matt";}s:8:"category";s:4:"Meta";s:4:"guid";s:58:"http://wordpress.org/development/2007/09/preparing-for-23/";s:11:"description";s:288:"In just a few short days WordPress 2.3 will be coming out with tons of new features that (hopefully) will make you want to upgrade right away. Well while you have a bit of time over this lovely weekend, here are some things you can do to help yourself prepare for the big upgrade on [...]";s:7:"content";a:1:{s:7:"encoded";s:1693:"

In just a few short days WordPress 2.3 will be coming out with tons of new features that (hopefully) will make you want to upgrade right away. Well while you have a bit of time over this lovely weekend, here are some things you can do to help yourself prepare for the big upgrade on Monday:

\n\n

If you have any other ideas put them on your blog and pingback this post.

\n";}s:3:"wfw";a:1:{s:10:"commentrss";s:63:"http://wordpress.org/development/2007/09/preparing-for-23/feed/";}s:7:"summary";s:288:"In just a few short days WordPress 2.3 will be coming out with tons of new features that (hopefully) will make you want to upgrade right away. Well while you have a bit of time over this lovely weekend, here are some things you can do to help yourself prepare for the big upgrade on [...]";s:12:"atom_content";s:1693:"

In just a few short days WordPress 2.3 will be coming out with tons of new features that (hopefully) will make you want to upgrade right away. Well while you have a bit of time over this lovely weekend, here are some things you can do to help yourself prepare for the big upgrade on Monday:

\n\n

If you have any other ideas put them on your blog and pingback this post.

\n";}i:3;a:12:{s:5:"title";s:33:"WordPress 2.3 Release Candidate 1";s:4:"link";s:74:"http://wordpress.org/development/2007/09/wordpress-23-release-candidate-1/";s:8:"comments";s:83:"http://wordpress.org/development/2007/09/wordpress-23-release-candidate-1/#comments";s:7:"pubdate";s:31:"Wed, 19 Sep 2007 04:50:10 +0000";s:2:"dc";a:1:{s:7:"creator";s:4:"Ryan";}s:8:"category";s:8:"Releases";s:4:"guid";s:74:"http://wordpress.org/development/2007/09/wordpress-23-release-candidate-1/";s:11:"description";s:300:"The first release candidate for WordPress 2.3 is now available. We’ve spent the week since beta 3 fixing bugs and shaping RC1 into release candidate material. If you would like try RC1 and help us get 2.3 ready for its final release on Monday the 24th, download RC1 here and report any [...]";s:7:"content";a:1:{s:7:"encoded";s:871:"

The first release candidate for WordPress 2.3 is now available. We’ve spent the week since beta 3 fixing bugs and shaping RC1 into release candidate material. If you would like try RC1 and help us get 2.3 ready for its final release on Monday the 24th, download RC1 here and report any bugs you find. Although we consider this release candidate to be stable, keep in mind that this is still pre-release software. You may find some lingering bugs. Please back up your database before upgrading. If you have problems with RC1, you will not be able to revert back to your previous release without a database backup.

\n

And a big thanks to those of you who have been testing the betas and now the RC. Your efforts make 2.3 better for everyone.

\n";}s:3:"wfw";a:1:{s:10:"commentrss";s:79:"http://wordpress.org/development/2007/09/wordpress-23-release-candidate-1/feed/";}s:7:"summary";s:300:"The first release candidate for WordPress 2.3 is now available. We’ve spent the week since beta 3 fixing bugs and shaping RC1 into release candidate material. If you would like try RC1 and help us get 2.3 ready for its final release on Monday the 24th, download RC1 here and report any [...]";s:12:"atom_content";s:871:"

The first release candidate for WordPress 2.3 is now available. We’ve spent the week since beta 3 fixing bugs and shaping RC1 into release candidate material. If you would like try RC1 and help us get 2.3 ready for its final release on Monday the 24th, download RC1 here and report any bugs you find. Although we consider this release candidate to be stable, keep in mind that this is still pre-release software. You may find some lingering bugs. Please back up your database before upgrading. If you have problems with RC1, you will not be able to revert back to your previous release without a database backup.

\n

And a big thanks to those of you who have been testing the betas and now the RC. Your efforts make 2.3 better for everyone.

\n";}i:4;a:12:{s:5:"title";s:20:"WordPress 2.3 Beta 3";s:4:"link";s:61:"http://wordpress.org/development/2007/09/wordpress-23-beta-3/";s:8:"comments";s:70:"http://wordpress.org/development/2007/09/wordpress-23-beta-3/#comments";s:7:"pubdate";s:31:"Tue, 11 Sep 2007 03:24:42 +0000";s:2:"dc";a:1:{s:7:"creator";s:4:"Ryan";}s:8:"category";s:8:"Releases";s:4:"guid";s:61:"http://wordpress.org/development/2007/09/wordpress-23-beta-3/";s:11:"description";s:311:"Beta 3, the third and final beta for WordPress 2.3, is now available. Many bugs have been fixed since the second beta, and we could use your help finding and fixing more bugs in preparation for the first Release Candidate due next Monday. The standard disclaimer for betas applies. Beta 3 is pre-release [...]";s:7:"content";a:1:{s:7:"encoded";s:644:"

Beta 3, the third and final beta for WordPress 2.3, is now available. Many bugs have been fixed since the second beta, and we could use your help finding and fixing more bugs in preparation for the first Release Candidate due next Monday. The standard disclaimer for betas applies. Beta 3 is pre-release software that is still being tested. If you would like try out Beta 3 and help report bugs, join the wp-testers mailing list and download beta 3 here.

\n";}s:3:"wfw";a:1:{s:10:"commentrss";s:66:"http://wordpress.org/development/2007/09/wordpress-23-beta-3/feed/";}s:7:"summary";s:311:"Beta 3, the third and final beta for WordPress 2.3, is now available. Many bugs have been fixed since the second beta, and we could use your help finding and fixing more bugs in preparation for the first Release Candidate due next Monday. The standard disclaimer for betas applies. Beta 3 is pre-release [...]";s:12:"atom_content";s:644:"

Beta 3, the third and final beta for WordPress 2.3, is now available. Many bugs have been fixed since the second beta, and we could use your help finding and fixing more bugs in preparation for the first Release Candidate due next Monday. The standard disclaimer for betas applies. Beta 3 is pre-release software that is still being tested. If you would like try out Beta 3 and help report bugs, join the wp-testers mailing list and download beta 3 here.

\n";}i:5;a:12:{s:5:"title";s:15:"WordPress 2.2.3";s:4:"link";s:55:"http://wordpress.org/development/2007/09/wordpress-223/";s:8:"comments";s:64:"http://wordpress.org/development/2007/09/wordpress-223/#comments";s:7:"pubdate";s:31:"Sat, 08 Sep 2007 03:00:04 +0000";s:2:"dc";a:1:{s:7:"creator";s:4:"Ryan";}s:8:"category";s:8:"Releases";s:4:"guid";s:55:"http://wordpress.org/development/2007/09/wordpress-223/";s:11:"description";s:331:"2.2.3 is a security and bug-fix release for the 2.2 series. Since this is a security release, we suggest you upgrade immediately. Two of the fixes are high priority.\nOn our Trac you can see the bugs closed and the files changed for 2.2.3.\nTo get 2.2.3, please see our download page.\nAs always, upgrade instructions including [...]";s:7:"content";a:1:{s:7:"encoded";s:900:"

2.2.3 is a security and bug-fix release for the 2.2 series. Since this is a security release, we suggest you upgrade immediately. Two of the fixes are high priority.

\n

On our Trac you can see the bugs closed and the files changed for 2.2.3.

\n

To get 2.2.3, please see our download page.

\n

As always, upgrade instructions including an extended upgrade guide are available.

\n

Thanks to Alexendar Concha, Aaron Newman, and xknown for identifying and helping us fix the security vulnerabilities.

\n";}s:3:"wfw";a:1:{s:10:"commentrss";s:60:"http://wordpress.org/development/2007/09/wordpress-223/feed/";}s:7:"summary";s:331:"2.2.3 is a security and bug-fix release for the 2.2 series. Since this is a security release, we suggest you upgrade immediately. Two of the fixes are high priority.\nOn our Trac you can see the bugs closed and the files changed for 2.2.3.\nTo get 2.2.3, please see our download page.\nAs always, upgrade instructions including [...]";s:12:"atom_content";s:900:"

2.2.3 is a security and bug-fix release for the 2.2 series. Since this is a security release, we suggest you upgrade immediately. Two of the fixes are high priority.

\n

On our Trac you can see the bugs closed and the files changed for 2.2.3.

\n

To get 2.2.3, please see our download page.

\n

As always, upgrade instructions including an extended upgrade guide are available.

\n

Thanks to Alexendar Concha, Aaron Newman, and xknown for identifying and helping us fix the security vulnerabilities.

\n";}i:6;a:12:{s:5:"title";s:20:"WordPress 2.3 Beta 2";s:4:"link";s:61:"http://wordpress.org/development/2007/09/wordpress-23-beta-2/";s:8:"comments";s:70:"http://wordpress.org/development/2007/09/wordpress-23-beta-2/#comments";s:7:"pubdate";s:31:"Tue, 04 Sep 2007 06:03:58 +0000";s:2:"dc";a:1:{s:7:"creator";s:12:"Mark Jaquith";}s:8:"category";s:11:"Development";s:4:"guid";s:61:"http://wordpress.org/development/2007/09/wordpress-23-beta-2/";s:11:"description";s:315:"WordPress 2.3 will be here before you know it! We’re putting out a beta release every Monday until WordPress 2.3 ships on September 24th. Today the second beta drops for your testing pleasure. We’ve fixed a bunch of bugs in the last week — thanks to everyone who participated! That said, [...]";s:7:"content";a:1:{s:7:"encoded";s:711:"

WordPress 2.3 will be here before you know it! We’re putting out a beta release every Monday until WordPress 2.3 ships on September 24th. Today the second beta drops for your testing pleasure. We’ve fixed a bunch of bugs in the last week — thanks to everyone who participated! That said, this is still rough code, so you should only test the beta if you are comfortable troubleshooting PHP issues, filing tickets, and backing up your blog’s data.

\n

Still want to play? Go ahead and join the wp-testers mailing list and download beta 2 here.

\n";}s:3:"wfw";a:1:{s:10:"commentrss";s:66:"http://wordpress.org/development/2007/09/wordpress-23-beta-2/feed/";}s:7:"summary";s:315:"WordPress 2.3 will be here before you know it! We’re putting out a beta release every Monday until WordPress 2.3 ships on September 24th. Today the second beta drops for your testing pleasure. We’ve fixed a bunch of bugs in the last week — thanks to everyone who participated! That said, [...]";s:12:"atom_content";s:711:"

WordPress 2.3 will be here before you know it! We’re putting out a beta release every Monday until WordPress 2.3 ships on September 24th. Today the second beta drops for your testing pleasure. We’ve fixed a bunch of bugs in the last week — thanks to everyone who participated! That said, this is still rough code, so you should only test the beta if you are comfortable troubleshooting PHP issues, filing tickets, and backing up your blog’s data.

\n

Still want to play? Go ahead and join the wp-testers mailing list and download beta 2 here.

\n";}i:7;a:12:{s:5:"title";s:20:"WordPress 2.3 Beta 1";s:4:"link";s:51:"http://wordpress.org/development/2007/08/23-beta-1/";s:8:"comments";s:60:"http://wordpress.org/development/2007/08/23-beta-1/#comments";s:7:"pubdate";s:31:"Tue, 28 Aug 2007 04:44:28 +0000";s:2:"dc";a:1:{s:7:"creator";s:4:"Matt";}s:8:"category";s:11:"Development";s:4:"guid";s:51:"http://wordpress.org/development/2007/08/23-beta-1/";s:11:"description";s:353:"The past 3 months we’ve been working feverishly on the next version of WordPress, 2.3. Today we’re releasing the first beta of 2.3 and we’re hoping the more adventurous and savvy among you will help us test it.\nSome of the features of 2.3 include plugin and core update notification, built-in tags support, faster javascript, and [...]";s:7:"content";a:1:{s:7:"encoded";s:809:"

The past 3 months we’ve been working feverishly on the next version of WordPress, 2.3. Today we’re releasing the first beta of 2.3 and we’re hoping the more adventurous and savvy among you will help us test it.

\n

Some of the features of 2.3 include plugin and core update notification, built-in tags support, faster javascript, and SEO-friendly URL redirection.

\n

However all of the new functionality is still very rough, so only test the beta if you are comfortable troubleshooting PHP issues, filing tickets, and backing up your data religiously. If you’re interested you can join the wp-testers mailing list and download the beta here.

\n";}s:3:"wfw";a:1:{s:10:"commentrss";s:56:"http://wordpress.org/development/2007/08/23-beta-1/feed/";}s:7:"summary";s:353:"The past 3 months we’ve been working feverishly on the next version of WordPress, 2.3. Today we’re releasing the first beta of 2.3 and we’re hoping the more adventurous and savvy among you will help us test it.\nSome of the features of 2.3 include plugin and core update notification, built-in tags support, faster javascript, and [...]";s:12:"atom_content";s:809:"

The past 3 months we’ve been working feverishly on the next version of WordPress, 2.3. Today we’re releasing the first beta of 2.3 and we’re hoping the more adventurous and savvy among you will help us test it.

\n

Some of the features of 2.3 include plugin and core update notification, built-in tags support, faster javascript, and SEO-friendly URL redirection.

\n

However all of the new functionality is still very rough, so only test the beta if you are comfortable troubleshooting PHP issues, filing tickets, and backing up your data religiously. If you’re interested you can join the wp-testers mailing list and download the beta here.

\n";}i:8;a:12:{s:5:"title";s:26:"WordPress 2.2.2 and 2.0.11";s:4:"link";s:64:"http://wordpress.org/development/2007/08/wordpress-222-and-2011/";s:8:"comments";s:73:"http://wordpress.org/development/2007/08/wordpress-222-and-2011/#comments";s:7:"pubdate";s:31:"Sun, 05 Aug 2007 06:22:25 +0000";s:2:"dc";a:1:{s:7:"creator";s:4:"Matt";}s:8:"category";s:8:"Releases";s:4:"guid";s:64:"http://wordpress.org/development/2007/08/wordpress-222-and-2011/";s:11:"description";s:323:"Today we have two security-related releases available for both users of our main 2.2 branch and the legacy 2.0 branch. As these releases include only security and minor bugfixes they should not cause any plugin or theme compatibility issues, so you have no good excuse not to upgrade.\nOn our Trac you can see the bugs [...]";s:7:"content";a:1:{s:7:"encoded";s:1393:"

Today we have two security-related releases available for both users of our main 2.2 branch and the legacy 2.0 branch. As these releases include only security and minor bugfixes they should not cause any plugin or theme compatibility issues, so you have no good excuse not to upgrade.

\n

On our Trac you can see the bugs closed for 2.2.2 and 2.0.11 to get more details about the problems fixed. With a little more Trac magic you can see all the changed files for 2.2.2 or 2.0.11.

\n

Our download page is always the best place to get the latest release, and our legacy page now has the latest in the 2.0 branch.

\n

As always, we have upgrade instructions available and an extended upgrade guide.

\n

Thanks to Alex C. and Benjamin Flesch for help with this release.

\n";}s:3:"wfw";a:1:{s:10:"commentrss";s:69:"http://wordpress.org/development/2007/08/wordpress-222-and-2011/feed/";}s:7:"summary";s:323:"Today we have two security-related releases available for both users of our main 2.2 branch and the legacy 2.0 branch. As these releases include only security and minor bugfixes they should not cause any plugin or theme compatibility issues, so you have no good excuse not to upgrade.\nOn our Trac you can see the bugs [...]";s:12:"atom_content";s:1393:"

Today we have two security-related releases available for both users of our main 2.2 branch and the legacy 2.0 branch. As these releases include only security and minor bugfixes they should not cause any plugin or theme compatibility issues, so you have no good excuse not to upgrade.

\n

On our Trac you can see the bugs closed for 2.2.2 and 2.0.11 to get more details about the problems fixed. With a little more Trac magic you can see all the changed files for 2.2.2 or 2.0.11.

\n

Our download page is always the best place to get the latest release, and our legacy page now has the latest in the 2.0 branch.

\n

As always, we have upgrade instructions available and an extended upgrade guide.

\n

Thanks to Alex C. and Benjamin Flesch for help with this release.

\n";}i:9;a:12:{s:5:"title";s:34:"New Shirts; International Shipping";s:4:"link";s:52:"http://wordpress.org/development/2007/07/new-shirts/";s:8:"comments";s:61:"http://wordpress.org/development/2007/07/new-shirts/#comments";s:7:"pubdate";s:31:"Sat, 21 Jul 2007 01:06:07 +0000";s:2:"dc";a:1:{s:7:"creator";s:4:"Matt";}s:8:"category";s:5:"Store";s:4:"guid";s:52:"http://wordpress.org/development/2007/07/new-shirts/";s:11:"description";s:326:"One of the biggest complaints when we originally launched our t-shirt store was that folks outside of the United States, which is the majority of our traffic, were unable to order them. Now you can! (And we have a new style available.)\nAt our official shop.wordpress.net you can order the new red t-shirt in either manly [...]";s:7:"content";a:1:{s:7:"encoded";s:822:"

One of the biggest complaints when we originally launched our t-shirt store was that folks outside of the United States, which is the majority of our traffic, were unable to order them. Now you can! (And we have a new style available.)

\n

At our official shop.wordpress.net you can order the new red t-shirt in either manly or girlie styles and they ship almost anywhere in the world. The shirts are high-quality American Apparel, and are screen-printed. Styles are available for a limited time, we’ll probably to about 2-3 a year, and once they’re gone the style will never be printed again.

\n

Update: Indigo the t-shirt company has a great post about the launch.

\n";}s:3:"wfw";a:1:{s:10:"commentrss";s:57:"http://wordpress.org/development/2007/07/new-shirts/feed/";}s:7:"summary";s:326:"One of the biggest complaints when we originally launched our t-shirt store was that folks outside of the United States, which is the majority of our traffic, were unable to order them. Now you can! (And we have a new style available.)\nAt our official shop.wordpress.net you can order the new red t-shirt in either manly [...]";s:12:"atom_content";s:822:"

One of the biggest complaints when we originally launched our t-shirt store was that folks outside of the United States, which is the majority of our traffic, were unable to order them. Now you can! (And we have a new style available.)

\n

At our official shop.wordpress.net you can order the new red t-shirt in either manly or girlie styles and they ship almost anywhere in the world. The shirts are high-quality American Apparel, and are screen-printed. Styles are available for a limited time, we’ll probably to about 2-3 a year, and once they’re gone the style will never be printed again.

\n

Update: Indigo the t-shirt company has a great post about the launch.

\n";}}s:7:"channel";a:7:{s:5:"title";s:26:"WordPress Development Blog";s:4:"link";s:32:"http://wordpress.org/development";s:11:"description";s:33:"WordPress development and updates";s:7:"pubdate";s:31:"Wed, 26 Sep 2007 07:35:05 +0000";s:9:"generator";s:27:"http://wordpress.org/?v=2.3";s:8:"language";s:2:"en";s:7:"tagline";s:33:"WordPress development and updates";}s:9:"textinput";a:0:{}s:5:"image";a:0:{}s:9:"feed_type";s:3:"RSS";s:12:"feed_version";s:3:"2.0";s:5:"stack";a:0:{}s:9:"inchannel";b:0;s:6:"initem";b:0;s:9:"incontent";b:0;s:11:"intextinput";b:0;s:7:"inimage";b:0;s:13:"current_field";s:0:"";s:17:"current_namespace";b:0;s:19:"_CONTENT_CONSTRUCTS";a:6:{i:0;s:7:"content";i:1;s:7:"summary";i:2;s:4:"info";i:3;s:5:"title";i:4;s:7:"tagline";i:5;s:9:"copyright";}s:13:"last_modified";s:31:"Wed, 26 Sep 2007 07:35:05 GMT\r\n";s:4:"etag";s:36:""6de44588c697372dd5d1481ebdec5946"\r\n";}', 20, 8, '', 1, 'no'), (69, 0, 'rss_0ff4b43bd116a9d8720d689c80e7dfd4_ts', 'Y', 1, '1191161387', 20, 8, '', 1, 'no'); INSERT INTO `wp_options` (`option_id`, `blog_id`, `option_name`, `option_can_override`, `option_type`, `option_value`, `option_width`, `option_height`, `option_description`, `option_admin_level`, `autoload`) VALUES (70, 0, 'rss_867bd5c64f85878d03a060509cd2f92c', 'Y', 1, 'O:9:"MagpieRSS":19:{s:6:"parser";i:0;s:12:"current_item";a:0:{}s:5:"items";a:50:{i:0;a:7:{s:5:"title";s:26:"Matt: WordPress.com Rising";s:4:"guid";s:52:"http://photomatt.net/2007/09/30/wordpresscom-rising/";s:4:"link";s:52:"http://photomatt.net/2007/09/30/wordpresscom-rising/";s:11:"description";s:744:"

WordPress.com is now the number #22 site in the US according to Quantcast, just ahead of craigslist.org. Moving up from there is going to be a lot harder as the US uniques get pretty big. Note that the numbers Quantcast uses for its top-list only includes blogs with “wordpress.com” in the URL. To see our aggregate stats which includes blogs with custom domains you have to look at the WordPress network page, which has us at 87 million global uniques in the past 30 days, up from 70 million just over a month ago.

";s:7:"pubdate";s:31:"Sun, 30 Sep 2007 12:16:32 +0000";s:2:"dc";a:1:{s:7:"creator";s:4:"Matt";}s:7:"summary";s:744:"

WordPress.com is now the number #22 site in the US according to Quantcast, just ahead of craigslist.org. Moving up from there is going to be a lot harder as the US uniques get pretty big. Note that the numbers Quantcast uses for its top-list only includes blogs with “wordpress.com” in the URL. To see our aggregate stats which includes blogs with custom domains you have to look at the WordPress network page, which has us at 87 million global uniques in the past 30 days, up from 70 million just over a month ago.

";}i:1;a:7:{s:5:"title";s:24:"Matt: Paris Meetup Today";s:4:"guid";s:51:"http://photomatt.net/2007/09/30/paris-meetup-today/";s:4:"link";s:51:"http://photomatt.net/2007/09/30/paris-meetup-today/";s:11:"description";s:787:"

Sorry for the short notice, but I lost track of time yesterday and we ended staying out pretty late. The Paris meetup today will be small and casual because of the late notice, but I’ll be at Cafe Beaubourg from 6-8pm with Tony Conrad of Sphere. We’ll try to sit in a visible location, I’ll be wearing a dark grey hoodie and jeans, and I’ll probably have my laptop out. :)

";s:7:"pubdate";s:31:"Sun, 30 Sep 2007 12:13:41 +0000";s:2:"dc";a:1:{s:7:"creator";s:4:"Matt";}s:7:"summary";s:787:"

Sorry for the short notice, but I lost track of time yesterday and we ended staying out pretty late. The Paris meetup today will be small and casual because of the late notice, but I’ll be at Cafe Beaubourg from 6-8pm with Tony Conrad of Sphere. We’ll try to sit in a visible location, I’ll be wearing a dark grey hoodie and jeans, and I’ll probably have my laptop out. :)

";}i:2;a:7:{s:5:"title";s:59:"Weblog Tools Collection: WordPress Plugin Releases for 9/28";s:4:"guid";s:87:"http://weblogtoolscollection.com/archives/2007/09/28/wordpress-plugin-releases-for-928/";s:4:"link";s:87:"http://weblogtoolscollection.com/archives/2007/09/28/wordpress-plugin-releases-for-928/";s:11:"description";s:1068:"

Classy wp_list_pages adds classes to the LI tags generated by WordPress f wp_list_pages() function.

\n

Cleaner Dashboard removes WordPress News and Other WordPress News from your dashboard and makes the dashboard sidebar more horizontal, with four columns instead of the default one.

\n

Tags4Page allows you to insert tags on pages.

\n

Who’s Linking Me? shows backlinks to your blog from Technorati.

\n

WordPress Upgrade Preflight Check attempts to check your other plugins and themes for problems that may cause errors when upgrading to WordPress 2.3.

\n

WordShout creates a live shoutbox, using AJAX as a backend.

";s:7:"pubdate";s:31:"Fri, 28 Sep 2007 05:00:16 +0000";s:2:"dc";a:1:{s:7:"creator";s:11:"Jim Stitzel";}s:7:"summary";s:1068:"

Classy wp_list_pages adds classes to the LI tags generated by WordPress f wp_list_pages() function.

\n

Cleaner Dashboard removes WordPress News and Other WordPress News from your dashboard and makes the dashboard sidebar more horizontal, with four columns instead of the default one.

\n

Tags4Page allows you to insert tags on pages.

\n

Who’s Linking Me? shows backlinks to your blog from Technorati.

\n

WordPress Upgrade Preflight Check attempts to check your other plugins and themes for problems that may cause errors when upgrading to WordPress 2.3.

\n

WordShout creates a live shoutbox, using AJAX as a backend.

";}i:3;a:7:{s:5:"title";s:58:"Weblog Tools Collection: WordPress Theme Releases for 9/28";s:4:"guid";s:86:"http://weblogtoolscollection.com/archives/2007/09/28/wordpress-theme-releases-for-928/";s:4:"link";s:86:"http://weblogtoolscollection.com/archives/2007/09/28/wordpress-theme-releases-for-928/";s:11:"description";s:858:"

Autumn is a 2-column theme with a very seasonal look.

\n

Enlighten is a 2-column theme with customizable header image that comes in AJAX and non-AJAX flavors.

\n

GenkiTheme is a 2- or 3-column, widget-ready theme.

\n

Pinkbird is the 3-column Bluebird theme modified for Pink for October.

\n

SEO Streamliner is an SEO-ready theme.

\n

Tumble Hybrid is another tumblelog theme built on Sandbox.

";s:7:"pubdate";s:31:"Fri, 28 Sep 2007 05:00:16 +0000";s:2:"dc";a:1:{s:7:"creator";s:11:"Jim Stitzel";}s:7:"summary";s:858:"

Autumn is a 2-column theme with a very seasonal look.

\n

Enlighten is a 2-column theme with customizable header image that comes in AJAX and non-AJAX flavors.

\n

GenkiTheme is a 2- or 3-column, widget-ready theme.

\n

Pinkbird is the 3-column Bluebird theme modified for Pink for October.

\n

SEO Streamliner is an SEO-ready theme.

\n

Tumble Hybrid is another tumblelog theme built on Sandbox.

";}i:4;a:7:{s:5:"title";s:40:"Matt: Paris and London WordPress Meetups";s:4:"guid";s:67:"http://photomatt.net/2007/09/27/paris-and-london-wordpress-meetups/";s:4:"link";s:67:"http://photomatt.net/2007/09/27/paris-and-london-wordpress-meetups/";s:11:"description";s:487:"

I’m going to be in Europe next week to speak at the Future of Web Apps in London, and I’ll be spending a few days in Paris beforehand. I’d love to meet up with WordPress-minded folks in both. Let’s do a Paris meetup on Sunday, September 30th and one in London on Tuesday the 2nd or Thursday the 4th. Leave a comment (with your email) if you can make it and we’ll nail down the details in the next day or two.

";s:7:"pubdate";s:31:"Thu, 27 Sep 2007 23:06:27 +0000";s:2:"dc";a:1:{s:7:"creator";s:4:"Matt";}s:7:"summary";s:487:"

I’m going to be in Europe next week to speak at the Future of Web Apps in London, and I’ll be spending a few days in Paris beforehand. I’d love to meet up with WordPress-minded folks in both. Let’s do a Paris meetup on Sunday, September 30th and one in London on Tuesday the 2nd or Thursday the 4th. Leave a comment (with your email) if you can make it and we’ll nail down the details in the next day or two.

";}i:5;a:7:{s:5:"title";s:23:"Alex King: Articles 1.2";s:4:"guid";s:47:"http://alexking.org/blog/2007/09/27/articles-12";s:4:"link";s:47:"http://alexking.org/blog/2007/09/27/articles-12";s:11:"description";s:982:"

I have released an update to my Articles plugin for WordPress that makes it compatible with WordPress 2.3.

\n

This plugin allows you to easily present a list of posts you select outside of your blog chronology. Very useful for featuring things that might otherwise slip into the nether regions of your archives. You can see it in action on my Articles page.

\n

The download and more information are available on my WordPress Plugins page.

\n

If you have any trouble with this, please open a thread in the WP Support Forums and send me the link.

\n";s:7:"pubdate";s:31:"Thu, 27 Sep 2007 16:54:04 +0000";s:2:"dc";a:1:{s:7:"creator";s:4:"Alex";}s:7:"summary";s:982:"

I have released an update to my Articles plugin for WordPress that makes it compatible with WordPress 2.3.

\n

This plugin allows you to easily present a list of posts you select outside of your blog chronology. Very useful for featuring things that might otherwise slip into the nether regions of your archives. You can see it in action on my Articles page.

\n

The download and more information are available on my WordPress Plugins page.

\n

If you have any trouble with this, please open a thread in the WP Support Forums and send me the link.

\n";}i:6;a:7:{s:5:"title";s:49:"Weblog Tools Collection: Blogs and the Mobile Web";s:4:"guid";s:78:"http://weblogtoolscollection.com/archives/2007/09/27/blogs-and-the-mobile-web/";s:4:"link";s:78:"http://weblogtoolscollection.com/archives/2007/09/27/blogs-and-the-mobile-web/";s:11:"description";s:5401:"

Five Reasons Why The Mobile Web Sucks and the counter arguments from Russell (warning, littered with expletives) made me think about blogs, mobile web and the proliferation of blogs on mobile phones and mobile browsers. Since I am closely involved with many of the technologies that are being bolstered or criticized on those posts, I have my own opinions about some of them.

\n
    \n
  1. Wireless carrier networks are SLOW: I am not so sure. Sprint has decent speeds and I can surf just fine on my phone or by using it as a modem. It is not as good as my 17 Mbps cable modem, but when I was stuck in a hospital and needed to call my parents in India using Skype via Sprint through my 755p, it worked like a charm. My VPN back to work and most surfing done over the phone was painless and got me through our crisis without loss of communications. The experience left me wishing (among other things) more sites and blogs used Alex’s Mobile Edition plugin including Weblog Tools Collection.
  2. \n
  3. Public WiFi access is a SCAM: Scam is too strong a word and quite misleading. Localized public WiFi has been successfully deployed over and over again. Airport WiFi, WiFi in smaller stores and shops, public arenas and other public locations work and work quite well. Citywide WiFi however runs into trouble. Some of my friends and co-workers own WiFi enabled phones such as the iPhone and the Sprint Mogul and they browse the web with aplomb on their phones.
  4. \n
  5. Sites aren’t formated for small screens: Yes and no. I say yes because more sites and blogs need to be mobile web enabled. I say no because Opera Mini and Blazer do a terrific job of making the large screen formatted sites so much easier to use and navigate. You really have to use these browsers in their present incarnations to know how far they have come. I regularly browse my favorites and answer emails from my phone during lunch.
  6. \n
  7. Mobile device screens are too small: Yes. But I would rather carry a phone and use it for all my web needs than carry a laptop (in addition to the phone) if I don’t have to.
  8. \n
  9. Advertising gets in the way: This point is completely lost on me.
  10. \n
\n

The real contention is how badly you want to browse the web over your phone and not how the mobile experience is not as good as that on your desktop or laptop. My father used to hate browsing the web on my phone but that was because he was averse to new technology and he had a hard time using it. However, since he has gotten interested in blogging, he wants to check his visitor stats and his email on my phone when we are traveling and that desire has helped him try to understand mobile browsing a little better. I suspect that a lot of the hoopla and complaining about the mobile web is done by people who have pre-conceived notions about the mobile technology and are not giving it a fair shot. Wireless, WiFi and mobile browsing technology has come a long way and much of it is due to dedicated, fanatical and enterprising professionals and technologists such as Russell.

\n

With that in mind, I did some research on mobile tools, plugins and themes for Wordpress. What have you done to your WordPress blog to make it accessible from mobile browsers? If having a mobile version was as simple as installing a plugin in WordPress, do you think that it would be worth having a mobile version of your site?

\n\n

If you use any other plugins that enhance the mobile experience on WordPress please let me know. Do you have a mobile edition of your WordPress blog?

";s:7:"pubdate";s:31:"Thu, 27 Sep 2007 16:00:10 +0000";s:2:"dc";a:1:{s:7:"creator";s:10:"Mark Ghosh";}s:7:"summary";s:5401:"

Five Reasons Why The Mobile Web Sucks and the counter arguments from Russell (warning, littered with expletives) made me think about blogs, mobile web and the proliferation of blogs on mobile phones and mobile browsers. Since I am closely involved with many of the technologies that are being bolstered or criticized on those posts, I have my own opinions about some of them.

\n
    \n
  1. Wireless carrier networks are SLOW: I am not so sure. Sprint has decent speeds and I can surf just fine on my phone or by using it as a modem. It is not as good as my 17 Mbps cable modem, but when I was stuck in a hospital and needed to call my parents in India using Skype via Sprint through my 755p, it worked like a charm. My VPN back to work and most surfing done over the phone was painless and got me through our crisis without loss of communications. The experience left me wishing (among other things) more sites and blogs used Alex’s Mobile Edition plugin including Weblog Tools Collection.
  2. \n
  3. Public WiFi access is a SCAM: Scam is too strong a word and quite misleading. Localized public WiFi has been successfully deployed over and over again. Airport WiFi, WiFi in smaller stores and shops, public arenas and other public locations work and work quite well. Citywide WiFi however runs into trouble. Some of my friends and co-workers own WiFi enabled phones such as the iPhone and the Sprint Mogul and they browse the web with aplomb on their phones.
  4. \n
  5. Sites aren’t formated for small screens: Yes and no. I say yes because more sites and blogs need to be mobile web enabled. I say no because Opera Mini and Blazer do a terrific job of making the large screen formatted sites so much easier to use and navigate. You really have to use these browsers in their present incarnations to know how far they have come. I regularly browse my favorites and answer emails from my phone during lunch.
  6. \n
  7. Mobile device screens are too small: Yes. But I would rather carry a phone and use it for all my web needs than carry a laptop (in addition to the phone) if I don’t have to.
  8. \n
  9. Advertising gets in the way: This point is completely lost on me.
  10. \n
\n

The real contention is how badly you want to browse the web over your phone and not how the mobile experience is not as good as that on your desktop or laptop. My father used to hate browsing the web on my phone but that was because he was averse to new technology and he had a hard time using it. However, since he has gotten interested in blogging, he wants to check his visitor stats and his email on my phone when we are traveling and that desire has helped him try to understand mobile browsing a little better. I suspect that a lot of the hoopla and complaining about the mobile web is done by people who have pre-conceived notions about the mobile technology and are not giving it a fair shot. Wireless, WiFi and mobile browsing technology has come a long way and much of it is due to dedicated, fanatical and enterprising professionals and technologists such as Russell.

\n

With that in mind, I did some research on mobile tools, plugins and themes for Wordpress. What have you done to your WordPress blog to make it accessible from mobile browsers? If having a mobile version was as simple as installing a plugin in WordPress, do you think that it would be worth having a mobile version of your site?

\n\n

If you use any other plugins that enhance the mobile experience on WordPress please let me know. Do you have a mobile edition of your WordPress blog?

";}i:7;a:7:{s:5:"title";s:14:"Matt: AirPress";s:4:"guid";s:41:"http://photomatt.net/2007/09/27/airpress/";s:4:"link";s:41:"http://photomatt.net/2007/09/27/airpress/";s:11:"description";s:101:"

AirPress looks like an interesting new blogging client.

";s:7:"pubdate";s:31:"Thu, 27 Sep 2007 10:36:58 +0000";s:2:"dc";a:1:{s:7:"creator";s:4:"Matt";}s:7:"summary";s:101:"

AirPress looks like an interesting new blogging client.

";}i:8;a:7:{s:5:"title";s:48:"Ryan Boren: WordPress 2.3 Delivered, 2.4 on Deck";s:4:"guid";s:70:"http://boren.nu/archives/2007/09/26/wordpress-23-delivered-24-on-deck/";s:4:"link";s:70:"http://boren.nu/archives/2007/09/26/wordpress-23-delivered-24-on-deck/";s:11:"description";s:1793:"

WordPress 2.3 arrived a couple days ago. Reception has been very positive, and most people seem pleased with it. As expected, plugin compatibility due to the schema changes caused some grief. Two very popular plugins that need to be upgraded when moving to 2.3 are Google Sitemaps and Extended Live Archives. If you have one of those plugins, please be sure to upgrade to the latest version.

\n

This being a major release with lots of changes, some little bugs have popped up. We’re fixing them as they come in and targeting them for an eventual 2.3.1 release. A release date for 2.3.1 has not yet been set, but we typically follow a major release with a “dot one” bug fix release within a month or so. You can watch the activity on the 2.3.1 milestone to see what bugs are being reported and fixed. If you have any problems with 2.3, please report them so we can get them fixed.

\n

With 2.3 done, we’ve started work on 2.4. This is the exciting phase of development where we get to work on new features, and 2.4 promises to have lots of new features. Whereas 2.3 had more of an infrastructure focus, 2.4 looks like it will focus on UI and user experience. I’m excited about the features being pitched for 2.4. There’ll be more on that as the feature list is finalized and the designs and code start to flow. For now I’ll leave you with the tease of cool things to come.

";s:7:"pubdate";s:31:"Thu, 27 Sep 2007 03:26:46 +0000";s:2:"dc";a:1:{s:7:"creator";s:4:"Ryan";}s:7:"summary";s:1793:"

WordPress 2.3 arrived a couple days ago. Reception has been very positive, and most people seem pleased with it. As expected, plugin compatibility due to the schema changes caused some grief. Two very popular plugins that need to be upgraded when moving to 2.3 are Google Sitemaps and Extended Live Archives. If you have one of those plugins, please be sure to upgrade to the latest version.

\n

This being a major release with lots of changes, some little bugs have popped up. We’re fixing them as they come in and targeting them for an eventual 2.3.1 release. A release date for 2.3.1 has not yet been set, but we typically follow a major release with a “dot one” bug fix release within a month or so. You can watch the activity on the 2.3.1 milestone to see what bugs are being reported and fixed. If you have any problems with 2.3, please report them so we can get them fixed.

\n

With 2.3 done, we’ve started work on 2.4. This is the exciting phase of development where we get to work on new features, and 2.4 promises to have lots of new features. Whereas 2.3 had more of an infrastructure focus, 2.4 looks like it will focus on UI and user experience. I’m excited about the features being pitched for 2.4. There’ll be more on that as the feature list is finalized and the designs and code start to flow. For now I’ll leave you with the tease of cool things to come.

";}i:9;a:7:{s:5:"title";s:42:"Wordlog: What’s Right with WordPress 2.3";s:4:"guid";s:69:"http://wordlog.com/archives/2007/09/26/whats-right-with-wordpress-23/";s:4:"link";s:69:"http://wordlog.com/archives/2007/09/26/whats-right-with-wordpress-23/";s:11:"description";s:4504:"

So WordPress 2.3 is out, and the release announcement is exciting to read.

\n

First off, in 2.3, WordPress gives us real Tags. Tags are not categories. I was really disappointed when WordPress.com started confusing categories for tags, and wrote about why Tags are not Categories. WordPress has finally come clean, and seen the light, and explained what’s what over at the Tags and Categories article at WordPress.com blog. Now to take it a step further in the right direction, it would help if everyone thought about how tags add value to a blog. Tag Clouds are cool, but they’re not the be-all and end-all of tagging. Here’s some great ways to use the tags you painstaking created by tagging individual posts:

\n
    \n
  1. Improve search results on blogs by searching for articles containing the search term(s) as tags.
  2. \n
  3. Provide an easy way to navigate the blog using Tag intersections, unions, and other common operations on sets. This would make it possible to find articles where your favorite blogger talks about two of your favorite things, or one thing and not another. The focus is on making information easier to find.
  4. \n
\n

The above should replace the “site search tags” found under almost all of Lorelle’s articles, and then some.

\n

The second step in the right direction is the removal of the links to developers’ blogs from the default blogroll. A lot of the old developers and volunteers have been inactive and non-contributing members for a long time now. Indeed, it was good to have a PageRank of 8 for my own blog, but I had the link to my blog removed about a year and a half ago when I decided to stop scaling down on my WordPress volunteer work. I did that because I thought that was a part of stepping down gracefully, and wasn’t too comfortable with going, “So who the heck is this ‘Carthik’ in my blogroll?,” long after I stopped contributing. Also, I wasn’t sure my contributions were at-par with those of some of the others who put in way more effort. It’s hard to decide where to draw the line with recognizing contributions to open source projects anyways. It’s better now since no one can point at finger at some old contributor profiting without contributing by means of selling text links on their blog now. Good job!

\n

The MovableType importer is no longer as memory hungry as it used to be. You can also add new importers by installing importer plugins. Very cool.

\n

A lot of the changes were from the most wanted changes/ideas proposed by users, and that is good news in itself. Now if only some of the other ideas are implemented, like searching in both “Posts” and “Pages” by default, instead of just in Posts.

\n

So, on a personal level, these are my thoughts about the changes in 2.3. The only small thing that irritates me are the new names in the db:

\n

Three new terms tables (schema) term_relationships, term_taxonomy, and terms support combined post categories, link categories, and the new tags. The tables, categories, link2cat, and link2post, are gone!\n

\n

I am yet to understand what “terms” are, what “taxonomy” is and what kind of relationships “term_relationships” describes. If these tables deal with categories, tags, and I assume, blogroll links, wouldn’t it better to have those terms in the db table name, instead of the term “term”? I wonder. The new db table names give away nothing about their intended purpose in the database. All three terms are brand new, never before seen in the WordPress world. I am sure there must have a good reason to name them thus, which I’d love to know more about.

\n

So, in your opinion, what’s wrong about WordPress 2.3?

";s:7:"pubdate";s:31:"Thu, 27 Sep 2007 00:10:07 +0000";s:2:"dc";a:1:{s:7:"creator";s:7:"Carthik";}s:7:"summary";s:4504:"

So WordPress 2.3 is out, and the release announcement is exciting to read.

\n

First off, in 2.3, WordPress gives us real Tags. Tags are not categories. I was really disappointed when WordPress.com started confusing categories for tags, and wrote about why Tags are not Categories. WordPress has finally come clean, and seen the light, and explained what’s what over at the Tags and Categories article at WordPress.com blog. Now to take it a step further in the right direction, it would help if everyone thought about how tags add value to a blog. Tag Clouds are cool, but they’re not the be-all and end-all of tagging. Here’s some great ways to use the tags you painstaking created by tagging individual posts:

\n
    \n
  1. Improve search results on blogs by searching for articles containing the search term(s) as tags.
  2. \n
  3. Provide an easy way to navigate the blog using Tag intersections, unions, and other common operations on sets. This would make it possible to find articles where your favorite blogger talks about two of your favorite things, or one thing and not another. The focus is on making information easier to find.
  4. \n
\n

The above should replace the “site search tags” found under almost all of Lorelle’s articles, and then some.

\n

The second step in the right direction is the removal of the links to developers’ blogs from the default blogroll. A lot of the old developers and volunteers have been inactive and non-contributing members for a long time now. Indeed, it was good to have a PageRank of 8 for my own blog, but I had the link to my blog removed about a year and a half ago when I decided to stop scaling down on my WordPress volunteer work. I did that because I thought that was a part of stepping down gracefully, and wasn’t too comfortable with going, “So who the heck is this ‘Carthik’ in my blogroll?,” long after I stopped contributing. Also, I wasn’t sure my contributions were at-par with those of some of the others who put in way more effort. It’s hard to decide where to draw the line with recognizing contributions to open source projects anyways. It’s better now since no one can point at finger at some old contributor profiting without contributing by means of selling text links on their blog now. Good job!

\n

The MovableType importer is no longer as memory hungry as it used to be. You can also add new importers by installing importer plugins. Very cool.

\n

A lot of the changes were from the most wanted changes/ideas proposed by users, and that is good news in itself. Now if only some of the other ideas are implemented, like searching in both “Posts” and “Pages” by default, instead of just in Posts.

\n

So, on a personal level, these are my thoughts about the changes in 2.3. The only small thing that irritates me are the new names in the db:

\n

Three new terms tables (schema) term_relationships, term_taxonomy, and terms support combined post categories, link categories, and the new tags. The tables, categories, link2cat, and link2post, are gone!\n

\n

I am yet to understand what “terms” are, what “taxonomy” is and what kind of relationships “term_relationships” describes. If these tables deal with categories, tags, and I assume, blogroll links, wouldn’t it better to have those terms in the db table name, instead of the term “term”? I wonder. The new db table names give away nothing about their intended purpose in the database. All three terms are brand new, never before seen in the WordPress world. I am sure there must have a good reason to name them thus, which I’d love to know more about.

\n

So, in your opinion, what’s wrong about WordPress 2.3?

";}i:10;a:7:{s:5:"title";s:28:"Matt: WordPress Plugin Stats";s:4:"guid";s:55:"http://photomatt.net/2007/09/26/wordpress-plugin-stats/";s:4:"link";s:55:"http://photomatt.net/2007/09/26/wordpress-plugin-stats/";s:11:"description";s:230:"

Our official WordPress plugin directory now lists some stats at the top, as of right now there are 1,021 active plugins and they’ve gotten 1,597,994 downloads. Wowza!

";s:7:"pubdate";s:31:"Wed, 26 Sep 2007 23:17:43 +0000";s:2:"dc";a:1:{s:7:"creator";s:4:"Matt";}s:7:"summary";s:230:"

Our official WordPress plugin directory now lists some stats at the top, as of right now there are 1,021 active plugins and they’ve gotten 1,597,994 downloads. Wowza!

";}i:11;a:7:{s:5:"title";s:41:"Weblog Tools Collection: BlogBackupOnline";s:4:"guid";s:70:"http://weblogtoolscollection.com/archives/2007/09/26/blogbackuponline/";s:4:"link";s:70:"http://weblogtoolscollection.com/archives/2007/09/26/blogbackuponline/";s:11:"description";s:1027:"

BlogBackupOnline: I found out about this service while reading through Leo Laporte’s latest post in which he talks about how he used BlogBackupOnline to import all old VOX posts from his old blog and restore them onto Wordpress. From their help PDF, Techrigy’s BlogBackupOnline allows users to create a full blog backup, schedule automatic daily backups, and restore or export a blog. The service is free for the first 50 MB (while in Beta) and backups can be scheduled and restores can be incremental. This service can be used to import blogs, restore single posts, export blogs from one platform into another among other features. Supported platforms include Blogger, WordPress, Friendster, LiveJournal, TypePad, Serendipity, Windows Live Spaces, Movable Type, Terapad, Vox and Multiply. A worthy tool indeed. Priced right, it could be a silent soldier that everyone depends upon.

";s:7:"pubdate";s:31:"Wed, 26 Sep 2007 21:35:43 +0000";s:2:"dc";a:1:{s:7:"creator";s:10:"Mark Ghosh";}s:7:"summary";s:1027:"

BlogBackupOnline: I found out about this service while reading through Leo Laporte’s latest post in which he talks about how he used BlogBackupOnline to import all old VOX posts from his old blog and restore them onto Wordpress. From their help PDF, Techrigy’s BlogBackupOnline allows users to create a full blog backup, schedule automatic daily backups, and restore or export a blog. The service is free for the first 50 MB (while in Beta) and backups can be scheduled and restores can be incremental. This service can be used to import blogs, restore single posts, export blogs from one platform into another among other features. Supported platforms include Blogger, WordPress, Friendster, LiveJournal, TypePad, Serendipity, Windows Live Spaces, Movable Type, Terapad, Vox and Multiply. A worthy tool indeed. Priced right, it could be a silent soldier that everyone depends upon.

";}i:12;a:7:{s:5:"title";s:81:"WordPress Podcast: Episode 30: Weblog Tools Collection Plugin Competition Winners";s:4:"guid";s:97:"http://wp-community.org/2007/09/26/episode-30-weblog-tools-collection-plugin-competition-winners/";s:4:"link";s:97:"http://wp-community.org/2007/09/26/episode-30-weblog-tools-collection-plugin-competition-winners/";s:11:"description";s:2391:"\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
01:12This episode, we discuss the winners of the Weblog Tools Collection 2007 Plugin Competition
02:10Grand prize winner: OneClick by Anirudh Sanjeev - OneClick is a WordPress Plugin and Firefox Extension combination that allows you to install WordPress plugins and themes from the Firefox browser with one click. Anirudh wins a Basic Dedicated Server for 6 months (Valued at $1,059) from Hostgator, $600 in cash and an 8 GB iPod Nano (or cash equivalent) from Imthiaz
06:00Second prize winner: MyDashboard by Barry - MyDashboard lets you customize your WordPress Dashboard and adds lots of cool gadgets. Barry wins a Swamp Hosting Plan for 1 year (Valued at $194.40) from Hostgator, an autographed copy of Lorelle’s new book, Blogging Tips and $300 in cash
10:13Third prize winner: WordPress Automatic Upgrade by Keith Dsouza - which lets you automatically upgrade WordPress from your admin interface with this plugin. Keith wins a Baby Hosting Plan for 1 year (Valued at $134.40) from Hostgator, a copy of Translator Pro 5.0 and $200 in cash.
15:25Consolation prize winner: Who Sees Ads by Ozh - Who Sees Ads is a wonderfully useful plugin that lets you determine who sees the ads on your blog. This plugin also shows promise as a sort of “blog scripting” engine. Ozh wins hosting from Pajama Mommy and a free 48″ wallhog from Wallhogs.com
24:03Aaron, Lorelle and myself discuss where we’ll be and what what we’ll be doing in the coming weeks.
";s:7:"pubdate";s:31:"Wed, 26 Sep 2007 12:40:02 +0000";s:2:"dc";a:1:{s:7:"creator";s:17:"Charles Stricklin";}s:7:"summary";s:2391:"\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
01:12This episode, we discuss the winners of the Weblog Tools Collection 2007 Plugin Competition
02:10Grand prize winner: OneClick by Anirudh Sanjeev - OneClick is a WordPress Plugin and Firefox Extension combination that allows you to install WordPress plugins and themes from the Firefox browser with one click. Anirudh wins a Basic Dedicated Server for 6 months (Valued at $1,059) from Hostgator, $600 in cash and an 8 GB iPod Nano (or cash equivalent) from Imthiaz
06:00Second prize winner: MyDashboard by Barry - MyDashboard lets you customize your WordPress Dashboard and adds lots of cool gadgets. Barry wins a Swamp Hosting Plan for 1 year (Valued at $194.40) from Hostgator, an autographed copy of Lorelle’s new book, Blogging Tips and $300 in cash
10:13Third prize winner: WordPress Automatic Upgrade by Keith Dsouza - which lets you automatically upgrade WordPress from your admin interface with this plugin. Keith wins a Baby Hosting Plan for 1 year (Valued at $134.40) from Hostgator, a copy of Translator Pro 5.0 and $200 in cash.
15:25Consolation prize winner: Who Sees Ads by Ozh - Who Sees Ads is a wonderfully useful plugin that lets you determine who sees the ads on your blog. This plugin also shows promise as a sort of “blog scripting” engine. Ozh wins hosting from Pajama Mommy and a free 48″ wallhog from Wallhogs.com
24:03Aaron, Lorelle and myself discuss where we’ll be and what what we’ll be doing in the coming weeks.
";}i:13;a:7:{s:5:"title";s:52:"WP Bits: Tip #6 : Enhancing WordPress administration";s:4:"guid";s:80:"http://wpbits.wordpress.com/2007/09/26/tip-6-enhancing-wordpress-administration/";s:4:"link";s:80:"http://wpbits.wordpress.com/2007/09/26/tip-6-enhancing-wordpress-administration/";s:11:"description";s:5116:"
This tip has been written by Karthik Kastury from dailyApps.net. dailyApps showcases the best of the Apps for different platforms and is a must read for all you software junkies out there. You can also find a host of tips to improve your productivity with review of various services and apps.

\n

If you are a long time Wordpress user like me, you surely know the obvious limitations that the WordPress backend has. There are far too many distractions in the Compose Section where you write the posts. Presence of Controls that you never use could become a nightmare to manage so it would be best if you would just remove them and use a stripped down version of the Compose Screen to manage your workflow better.

\n\n

As I mentioned before there are far too many items in the compose screen that I normally don’t use. There is stuff like Password Protection, Excerpt, Custom Fields, Discussion Options, Bookmarklets, Author controls etc. which I am sure majority of WordPress Users don’t really use. So if you are one of them go ahead and add Clutter Free to your ever growing list of WordPress plugins.

\n

Once you have activated Clutter Free go the Users Sections and select all the options that you need. Save the settings and “Boom!” as Steve Jobs would say, your Compose screen now loads a tad faster.

\n\n

When it comes to the Rich Text Editor things are definitely easy for the average to publish a new post. But in case you are a power user like me then you would want to Disable the Rich Text Editor Screen that has a few annoyances, such as being slow and standing in the way of embedding code provided by Youtube and other services.

\n

I would put my money on the Simple Text Editor that is extremely powerful in terms of what it can do. To disable the Rich Text Editor follow these steps. Go to the Users Section in your admin. Scroll to the bottom and uncheck the option that Says “Use the visual rich editor when writing”. The only Downside is that you will have to learn some basic HTML before you can use the Rich Text Editor.

\n\n

If you are long time WordPress user you will know how useful Quicktags really are (Quicktags are those buttons with tags at the top of the editor). Just about anything is possible with Quicktags. The default Wordpress install comes with a few quick tags like <strong>, <li>, <ul> etc. But you might want to add a few more tags to this list so that you don’t have to type them over and over again while you are writing your post. I have some more tags in my Write screen like <span> which I regularly use.

\n

If all the talk above sounded a little too geekish for you. Here is the simplified version of what you have to do. Just download the WP-AddQuickTag plugin and install it. Select Add Quicktags under the Options menu and add all the tags that you wish to include. Note that you need to have Rich Text Editor disabled to make Quicktags work for you.

\n\n

If you are a Firefox User you definately should install Greasemonkey. There are many scripts that can improve your workflow. One of the scripts that I am using is Akismet Auntie Spam which changes the skin of the Akismet spambox page for WordPress admins and allows to download all spam at once, compress spam to make it more scanable and completely compresses obvious spam. Turns checking spam into a 10 minute per week activity.

\n\n

The default layout of the WordPress Admin can be confusing at times. It shows all signs of being extremely cluttered. You have to click through a maze of buttons to do something, and the most important thing surely is that it is not really good to look at. In case you are one of those who have got bored of the default layout for WordPress Admin then its time for you to download WP-Admin Tiger 3 that completely changes the look and feel of the WordPress admin.

\n

If you like this post please consider subscribing to the dailyApps feed. You will find dailyApps an enjoyable read. And yeah make sure you tell me if these tips have helped you or not..

\n
";s:7:"pubdate";s:31:"Wed, 26 Sep 2007 07:52:28 +0000";s:2:"dc";a:1:{s:7:"creator";s:13:"coolkarthik88";}s:7:"summary";s:5116:"
This tip has been written by Karthik Kastury from dailyApps.net. dailyApps showcases the best of the Apps for different platforms and is a must read for all you software junkies out there. You can also find a host of tips to improve your productivity with review of various services and apps.

\n

If you are a long time Wordpress user like me, you surely know the obvious limitations that the WordPress backend has. There are far too many distractions in the Compose Section where you write the posts. Presence of Controls that you never use could become a nightmare to manage so it would be best if you would just remove them and use a stripped down version of the Compose Screen to manage your workflow better.

\n\n

As I mentioned before there are far too many items in the compose screen that I normally don’t use. There is stuff like Password Protection, Excerpt, Custom Fields, Discussion Options, Bookmarklets, Author controls etc. which I am sure majority of WordPress Users don’t really use. So if you are one of them go ahead and add Clutter Free to your ever growing list of WordPress plugins.

\n

Once you have activated Clutter Free go the Users Sections and select all the options that you need. Save the settings and “Boom!” as Steve Jobs would say, your Compose screen now loads a tad faster.

\n\n

When it comes to the Rich Text Editor things are definitely easy for the average to publish a new post. But in case you are a power user like me then you would want to Disable the Rich Text Editor Screen that has a few annoyances, such as being slow and standing in the way of embedding code provided by Youtube and other services.

\n

I would put my money on the Simple Text Editor that is extremely powerful in terms of what it can do. To disable the Rich Text Editor follow these steps. Go to the Users Section in your admin. Scroll to the bottom and uncheck the option that Says “Use the visual rich editor when writing”. The only Downside is that you will have to learn some basic HTML before you can use the Rich Text Editor.

\n\n

If you are long time WordPress user you will know how useful Quicktags really are (Quicktags are those buttons with tags at the top of the editor). Just about anything is possible with Quicktags. The default Wordpress install comes with a few quick tags like <strong>, <li>, <ul> etc. But you might want to add a few more tags to this list so that you don’t have to type them over and over again while you are writing your post. I have some more tags in my Write screen like <span> which I regularly use.

\n

If all the talk above sounded a little too geekish for you. Here is the simplified version of what you have to do. Just download the WP-AddQuickTag plugin and install it. Select Add Quicktags under the Options menu and add all the tags that you wish to include. Note that you need to have Rich Text Editor disabled to make Quicktags work for you.

\n\n

If you are a Firefox User you definately should install Greasemonkey. There are many scripts that can improve your workflow. One of the scripts that I am using is Akismet Auntie Spam which changes the skin of the Akismet spambox page for WordPress admins and allows to download all spam at once, compress spam to make it more scanable and completely compresses obvious spam. Turns checking spam into a 10 minute per week activity.

\n\n

The default layout of the WordPress Admin can be confusing at times. It shows all signs of being extremely cluttered. You have to click through a maze of buttons to do something, and the most important thing surely is that it is not really good to look at. In case you are one of those who have got bored of the default layout for WordPress Admin then its time for you to download WP-Admin Tiger 3 that completely changes the look and feel of the WordPress admin.

\n

If you like this post please consider subscribing to the dailyApps feed. You will find dailyApps an enjoyable read. And yeah make sure you tell me if these tips have helped you or not..

\n
";}i:14;a:7:{s:5:"title";s:17:"Matt: Leo Laporte";s:4:"guid";s:44:"http://photomatt.net/2007/09/26/leo-laporte/";s:4:"link";s:44:"http://photomatt.net/2007/09/26/leo-laporte/";s:11:"description";s:162:"

I missed it at the time, but Leo Laporte has switched to WordPress as his primary blogging platform.

";s:7:"pubdate";s:31:"Wed, 26 Sep 2007 07:25:27 +0000";s:2:"dc";a:1:{s:7:"creator";s:4:"Matt";}s:7:"summary";s:162:"

I missed it at the time, but Leo Laporte has switched to WordPress as his primary blogging platform.

";}i:15;a:7:{s:5:"title";s:45:"Alex King: WordPress 2.3 Plugin Compatibility";s:4:"guid";s:69:"http://alexking.org/blog/2007/09/25/wordpress-23-plugin-compatibility";s:4:"link";s:69:"http://alexking.org/blog/2007/09/25/wordpress-23-plugin-compatibility";s:11:"description";s:2346:"

Yes, I realize a lot of my plugins need some adjustment before they are WordPress 2.3 compatible. Unfortunately, I have a lot of plugins to update and it will take a little time to get through them all.

\n

I’ll update this post with the status of each one as I update them.

\n\n

I’ll get new releases out to either fix issues or reflect WordPress 2.3 compatibility in the README files over the next few days/weeks.

\n

Please only report issues that you see in plugins that have been listed as tested for 2.3. Reporting that a plugin works/does not work is not helpful at this time and your comment will be removed. Sorry, I’ve had to close comments on this post instead.\n

";s:7:"pubdate";s:31:"Tue, 25 Sep 2007 18:22:30 +0000";s:2:"dc";a:1:{s:7:"creator";s:4:"Alex";}s:7:"summary";s:2346:"

Yes, I realize a lot of my plugins need some adjustment before they are WordPress 2.3 compatible. Unfortunately, I have a lot of plugins to update and it will take a little time to get through them all.

\n

I’ll update this post with the status of each one as I update them.

\n\n

I’ll get new releases out to either fix issues or reflect WordPress 2.3 compatibility in the README files over the next few days/weeks.

\n

Please only report issues that you see in plugins that have been listed as tested for 2.3. Reporting that a plugin works/does not work is not helpful at this time and your comment will be removed. Sorry, I’ve had to close comments on this post instead.\n

";}i:16;a:7:{s:5:"title";s:58:"Weblog Tools Collection: Upgrading to WordPress 2.3 Dexter";s:4:"guid";s:86:"http://weblogtoolscollection.com/archives/2007/09/25/upgrading-to-wordpress-23-dexter/";s:4:"link";s:86:"http://weblogtoolscollection.com/archives/2007/09/25/upgrading-to-wordpress-23-dexter/";s:11:"description";s:3097:"

Now that WordPress 2.3 Dexter has been released, it is time for everyone to upgrade and check out what the hoopla is all about. Just as in the WordPress 2.3 pre-release coverage, there are a lot of really good resources that discuss preparing your blog for it to be ready for the 2.3 upgrade. Since there is a bigger (relative term, bigger than upgrades in recent memory) chance that many of your plugins and themes might stop working with this new version, checking compatibility and making sure that everything will work as expected is even more important. Here are some resources that might help you make that leap.

\n\n

I will keep this post open for editing throughout the day. If you ran into a particular problem upgrading your blog to Wordpress 2.3 and think that others could benefit from your experience, please leave a comment or contact me.

";s:7:"pubdate";s:31:"Tue, 25 Sep 2007 11:30:34 +0000";s:2:"dc";a:1:{s:7:"creator";s:10:"Mark Ghosh";}s:7:"summary";s:3097:"

Now that WordPress 2.3 Dexter has been released, it is time for everyone to upgrade and check out what the hoopla is all about. Just as in the WordPress 2.3 pre-release coverage, there are a lot of really good resources that discuss preparing your blog for it to be ready for the 2.3 upgrade. Since there is a bigger (relative term, bigger than upgrades in recent memory) chance that many of your plugins and themes might stop working with this new version, checking compatibility and making sure that everything will work as expected is even more important. Here are some resources that might help you make that leap.

\n\n

I will keep this post open for editing throughout the day. If you ran into a particular problem upgrading your blog to Wordpress 2.3 and think that others could benefit from your experience, please leave a comment or contact me.

";}i:17;a:7:{s:5:"title";s:43:"Mark Jaquith: WordPress 2.3: Canonical URLs";s:4:"guid";s:72:"http://markjaquith.wordpress.com/2007/09/25/wordpress-23-canonical-urls/";s:4:"link";s:72:"http://markjaquith.wordpress.com/2007/09/25/wordpress-23-canonical-urls/";s:11:"description";s:6063:"

Canonical URLs is one of the features that I worked on for WordPress 2.3 It’s sort of a geeky concept, but the end result has benefits that a non-geek can appreciate, so I’m going to break it down for you.

\n

WordPress has traditionally been very lenient in the URLs that it will accept.

\n

For instance, say your blog is hosted on http://www.example.com/blog/.

\n

You can likely access the front page of your blog via these alternative URLs:

\n\n

And those are just the “sane” ones. Try this one on for size:

\n\n

That’s the front page. We have additional issues for other views. For example, consider if you are using “fancy” permalinks and have a post up at http://www.example.com/blog/2007/09/17/dont-tase-me-bro/ with a post ID of 17. The following alternative URLs will work:

\n\n

The following issues comprise the majority of incorrect alternative WordPress URLs.

\n\n

So, what’s the problem with this? The URLs are all showing the exact same content, so why should it matter? Well, search engines can’t assume that all of these alternative URLs represent the same resource. So they don’t automatically get condensed into a single resource. As a result, you can actually end up competing against yourself in search engine rankings. So to avoid confuse search engines and to consolidate your rankings for your content, there should only be one URL for a resource. We call this URL the canonical URL. Canonical means “standard” or “authoritative.” It’s the one that WordPress generates, and it’s the one that you want everyone to use.

\n

Since version 2.2, WordPress-generated rules have been very well standardized. I personally invested a lot of time making sure things like trailing slashes were consistently standardized. So that’s one piece of the puzzle — making sure that WordPress isn’t working against you by generating non-canonical URLs. But of course, you can’t control who links to you, and third parties can make errors when typing or copy-pasting your URLs. This canonic