-- 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', '
This is a comment … \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); -- -------------------------------------------------------- -- -- 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:"… with a blockquote inside a blockquote
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 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:
\napi.wordpress.org service which then compares it to the plugin database and tells you whats the latest and greatest you can use.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$wpdb->prepare() way of doing SQL queries.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.
\nA 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.
\nThe 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:
\napi.wordpress.org service which then compares it to the plugin database and tells you whats the latest and greatest you can use.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$wpdb->prepare() way of doing SQL queries.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.
\nA 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.
\nMark 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.
\nPeter 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.
\nMark 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.
\nPeter 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:
\nIf 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:
\nIf 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.
\nAnd 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.
\nAnd 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.
\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 an extended upgrade guide are available.
\nThanks 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.
\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 an extended upgrade guide are available.
\nThanks 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.
\nStill 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.
\nStill 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.
\nSome of the features of 2.3 include plugin and core update notification, built-in tags support, faster javascript, and SEO-friendly URL redirection.
\nHowever 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.
\nSome of the features of 2.3 include plugin and core update notification, built-in tags support, faster javascript, and SEO-friendly URL redirection.
\nHowever 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.
\nOn 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.
\nOur 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.
\nAs always, we have upgrade instructions available and an extended upgrade guide.
\nThanks 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.
\nOn 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.
\nOur 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.
\nAs always, we have upgrade instructions available and an extended upgrade guide.
\nThanks 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.)
\nAt 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.
\nUpdate: 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.)
\nAt 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.
\nUpdate: 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. ![]()
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. ![]()
Classy wp_list_pages adds classes to the LI tags generated by WordPress f wp_list_pages() function.
\nCleaner 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.
\nTags4Page allows you to insert tags on pages.
\nWho’s Linking Me? shows backlinks to your blog from Technorati.
\nWordPress Upgrade Preflight Check attempts to check your other plugins and themes for problems that may cause errors when upgrading to WordPress 2.3.
\nWordShout 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.
\nCleaner 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.
\nTags4Page allows you to insert tags on pages.
\nWho’s Linking Me? shows backlinks to your blog from Technorati.
\nWordPress Upgrade Preflight Check attempts to check your other plugins and themes for problems that may cause errors when upgrading to WordPress 2.3.
\nWordShout 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.
\nEnlighten is a 2-column theme with customizable header image that comes in AJAX and non-AJAX flavors.
\nGenkiTheme is a 2- or 3-column, widget-ready theme.
\nPinkbird is the 3-column Bluebird theme modified for Pink for October.
\nSEO Streamliner is an SEO-ready theme.
\nTumble 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.
\nEnlighten is a 2-column theme with customizable header image that comes in AJAX and non-AJAX flavors.
\nGenkiTheme is a 2- or 3-column, widget-ready theme.
\nPinkbird is the 3-column Bluebird theme modified for Pink for October.
\nSEO Streamliner is an SEO-ready theme.
\nTumble 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.
\nThis 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.
\nThe download and more information are available on my WordPress Plugins page.
\nIf 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.
\nThis 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.
\nThe download and more information are available on my WordPress Plugins page.
\nIf 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.
\nThe 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.
\nWith 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?
\nIf 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.
\nThe 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.
\nWith 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?
\nIf 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.
\nThis 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.
\nWith 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.
\nThis 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.
\nWith 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.
\nFirst 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:
\nThe above should replace the “site search tags” found under almost all of Lorelle’s articles, and then some.
\nThe 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!
\nThe 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.
\nA 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.
\nSo, 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\nThree 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
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.
\nSo, 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.
\nFirst 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:
\nThe above should replace the “site search tags” found under almost all of Lorelle’s articles, and then some.
\nThe 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!
\nThe 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.
\nA 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.
\nSo, 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\nThree 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
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.
\nSo, 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:"| 01:12 | \nThis episode, we discuss the winners of the Weblog Tools Collection 2007 Plugin Competition | \n
| 02:10 | \nGrand 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 | \n
| 06:00 | \nSecond 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 | \n
| 10:13 | \nThird 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. | \n
| 15:25 | \nConsolation 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 | \n
| 24:03 | \nAaron, Lorelle and myself discuss where we’ll be and what what we’ll be doing in the coming weeks. | \n
| 01:12 | \nThis episode, we discuss the winners of the Weblog Tools Collection 2007 Plugin Competition | \n
| 02:10 | \nGrand 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 | \n
| 06:00 | \nSecond 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 | \n
| 10:13 | \nThird 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. | \n
| 15:25 | \nConsolation 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 | \n
| 24:03 | \nAaron, Lorelle and myself discuss where we’ll be and what what we’ll be doing in the coming weeks. | \n
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.
\nAs 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.
\nOnce 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.
\nWhen 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.
\nI 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.
\nIf 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.
\nIf 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.
\nIf 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.
\nThe 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\nIf 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..
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.
\nAs 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.
\nOnce 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.
\nWhen 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.
\nI 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.
\nIf 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.
\nIf 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.
\nIf 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.
\nThe 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\nIf 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..
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.
\nI’ll update this post with the status of each one as I update them.
\nI’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.
\nPlease 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
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.
\nI’ll update this post with the status of each one as I update them.
\nI’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.
\nPlease 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
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.
\nI 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.
\nI 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.
\nWordPress has traditionally been very lenient in the URLs that it will accept.
\nFor instance, say your blog is hosted on http://www.example.com/blog/.
\nYou can likely access the front page of your blog via these alternative URLs:
\nAnd those are just the “sane” ones. Try this one on for size:
\nThat’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:
\nThe following issues comprise the majority of incorrect alternative WordPress URLs.
\nSo, 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.
\nSince 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 canonical URL degeneration has a way of propogating. That is, Site A links to your site using a non-canonical URL. Then Site B see’s Site A’s link, and copy-pastes it into their blog. If you allow a non-canonical URL to stay in the address bar, people will use it. That usage is detrimental to your search engine ranking, and damages the web of links that makes up the Web. By redirecting to the canonical URL, we can help stop these errors from propagating, and at least generate 301 redirects for the errors that people may make when linking to your blog.
\nMy goal for WordPress 2.3 was to cover the majority of canonical URL issues that people have and make WordPress automatically redirect those requests to the correct (canonical) URL for that resource. Early tries at this functionality had issues with being too aggressive. I rewrote the functionality multiple times, until I settled upon the current incarnation. I’m quite happy with it.
\nIdeally, you shouldn’t even be aware of the feature. You might have issues, however, if you have enabled your own form of canonical URL redirection that isn’t redirecting the the URLs that WordPress thinks are the canonical version. For instance, if your blog is http://www.example.com/blog/ but you have a line in your .htaccess that redirects people to http://example.com/blog/, you’re not going to be able to access your site, as the two redirects will “fight” each other in an infinite loop until the browser gives up. You’ll also have issues if your server is generating a non-standard $_SERVER[''REQUEST_URI''] value. For this reason, the feature has been disabled for IIS. WordPress can set a correct $_SERVER[''REQUEST_URI''] for some IIS incarnations, but fails on others. This is an issue that I hope we’re able to fix in the future. That said, the vast majority of WordPress blogs are not running on IIS, so you’ll likely be fine.
If you’re having issues with infinite redirects, please open a ticket. And in the meantime, you can use this one-line plugin to disable the feature.
\nCanonical 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.
\nWordPress has traditionally been very lenient in the URLs that it will accept.
\nFor instance, say your blog is hosted on http://www.example.com/blog/.
\nYou can likely access the front page of your blog via these alternative URLs:
\nAnd those are just the “sane” ones. Try this one on for size:
\nThat’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:
\nThe following issues comprise the majority of incorrect alternative WordPress URLs.
\nSo, 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.
\nSince 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 canonical URL degeneration has a way of propogating. That is, Site A links to your site using a non-canonical URL. Then Site B see’s Site A’s link, and copy-pastes it into their blog. If you allow a non-canonical URL to stay in the address bar, people will use it. That usage is detrimental to your search engine ranking, and damages the web of links that makes up the Web. By redirecting to the canonical URL, we can help stop these errors from propagating, and at least generate 301 redirects for the errors that people may make when linking to your blog.
\nMy goal for WordPress 2.3 was to cover the majority of canonical URL issues that people have and make WordPress automatically redirect those requests to the correct (canonical) URL for that resource. Early tries at this functionality had issues with being too aggressive. I rewrote the functionality multiple times, until I settled upon the current incarnation. I’m quite happy with it.
\nIdeally, you shouldn’t even be aware of the feature. You might have issues, however, if you have enabled your own form of canonical URL redirection that isn’t redirecting the the URLs that WordPress thinks are the canonical version. For instance, if your blog is http://www.example.com/blog/ but you have a line in your .htaccess that redirects people to http://example.com/blog/, you’re not going to be able to access your site, as the two redirects will “fight” each other in an infinite loop until the browser gives up. You’ll also have issues if your server is generating a non-standard $_SERVER[''REQUEST_URI''] value. For this reason, the feature has been disabled for IIS. WordPress can set a correct $_SERVER[''REQUEST_URI''] for some IIS incarnations, but fails on others. This is an issue that I hope we’re able to fix in the future. That said, the vast majority of WordPress blogs are not running on IIS, so you’ll likely be fine.
If you’re having issues with infinite redirects, please open a ticket. And in the meantime, you can use this one-line plugin to disable the feature.
\nWordPress 2.3 is now available.
\nI mention that because the current version of bbPress (version 0.8.2) is not compatible with WordPress 2.3 if you are loading both scripts at the same time. If you’re not loading both scripts at the same time, everything is fine.
\nA new version of bbPress will be coming out in a day or two as soon as we get done testing it, and that version will fully compatible with the latest version of WordPress once again.
";s:7:"pubdate";s:31:"Tue, 25 Sep 2007 01:51:34 +0000";s:2:"dc";a:1:{s:7:"creator";s:8:"mdawaffe";}s:7:"summary";s:550:"WordPress 2.3 is now available.
\nI mention that because the current version of bbPress (version 0.8.2) is not compatible with WordPress 2.3 if you are loading both scripts at the same time. If you’re not loading both scripts at the same time, everything is fine.
\nA new version of bbPress will be coming out in a day or two as soon as we get done testing it, and that version will fully compatible with the latest version of WordPress once again.
";}i:19;a:7:{s:5:"title";s:23:"Dev Blog: WordPress 2.3";s:4:"guid";s:54:"http://wordpress.org/development/2007/09/wordpress-23/";s:4:"link";s:54:"http://wordpress.org/development/2007/09/wordpress-23/";s:11:"description";s:4882:"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 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:
\napi.wordpress.org service which then compares it to the plugin database and tells you whats the latest and greatest you can use.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$wpdb->prepare() way of doing SQL queries.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.
\nA 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.
";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:7:"summary";s:4882:"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 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:
\napi.wordpress.org service which then compares it to the plugin database and tells you whats the latest and greatest you can use.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$wpdb->prepare() way of doing SQL queries.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.
\nA 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.
";}i:20;a:7:{s:5:"title";s:35:"Alex King: The Future of Share This";s:4:"guid";s:60:"http://alexking.org/blog/2007/09/24/the-future-of-share-this";s:4:"link";s:60:"http://alexking.org/blog/2007/09/24/the-future-of-share-this";s:11:"description";s:4353:"My Share This plugin for WordPress has proven to be very popular. It is being used on a number of high profile sites including Mashable.com, GigaOM, Web Worker Daily, AllThingsD.com and others. It’s a good example of a tool meeting a need. As you would expect, I wasn’t the only one trying to solve the sharing problem.
\nThere are many people approaching sharing from a variety of different perspectives, some with really great ideas beyond what are in the current Share This plug-in. That’s why I’m very pleased to announce that I am working with the good people at ShareThis to build a next generation sharing tool that continues everything that’s been started with my Share This plug-in.
\nWe first started talking a few months ago to discuss what the potential of us working together could lead to. I’ve been very impressed with the people at ShareThis. They have a great (and growing) team in place, and their attitude about “doing the right thing for the user” has really impressed me. Those factors and more made it an easy decision to want to work with them.
\nShare This is now the owner of the WordPress plugin code, along with the the stand-alone Share This widget code I created (that some folks are using with Drupal), and the Share Icon.
\nLet’s tackle the rest of the details in an O’Grady style Q & A…
\nI’ll try to answer any questions you have in the comments, and you can contact ShareThis directly with any questions you may have for them.\n
";s:7:"pubdate";s:31:"Mon, 24 Sep 2007 19:31:52 +0000";s:2:"dc";a:1:{s:7:"creator";s:4:"Alex";}s:7:"summary";s:4353:"My Share This plugin for WordPress has proven to be very popular. It is being used on a number of high profile sites including Mashable.com, GigaOM, Web Worker Daily, AllThingsD.com and others. It’s a good example of a tool meeting a need. As you would expect, I wasn’t the only one trying to solve the sharing problem.
\nThere are many people approaching sharing from a variety of different perspectives, some with really great ideas beyond what are in the current Share This plug-in. That’s why I’m very pleased to announce that I am working with the good people at ShareThis to build a next generation sharing tool that continues everything that’s been started with my Share This plug-in.
\nWe first started talking a few months ago to discuss what the potential of us working together could lead to. I’ve been very impressed with the people at ShareThis. They have a great (and growing) team in place, and their attitude about “doing the right thing for the user” has really impressed me. Those factors and more made it an easy decision to want to work with them.
\nShare This is now the owner of the WordPress plugin code, along with the the stand-alone Share This widget code I created (that some folks are using with Drupal), and the Share Icon.
\nLet’s tackle the rest of the details in an O’Grady style Q & A…
\nI’ll try to answer any questions you have in the comments, and you can contact ShareThis directly with any questions you may have for them.\n
";}i:21;a:7:{s:5:"title";s:19:"Dev Blog: New Faces";s:4:"guid";s:51:"http://wordpress.org/development/2007/09/new-faces/";s:4:"link";s:51:"http://wordpress.org/development/2007/09/new-faces/";s:11:"description";s:1397:"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.
\nMark 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.
\nPeter 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.
";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:7:"summary";s:1397:"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.
\nMark 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.
\nPeter 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.
";}i:22;a:7:{s:5:"title";s:58:"Weblog Tools Collection: WordPress Theme Releases for 9/24";s:4:"guid";s:86:"http://weblogtoolscollection.com/archives/2007/09/24/wordpress-theme-releases-for-924/";s:4:"link";s:86:"http://weblogtoolscollection.com/archives/2007/09/24/wordpress-theme-releases-for-924/";s:11:"description";s:1159:"Facebooked is a 3-column, widget-ready theme based on the social networking site.
\nLoopy Red is a 3-column, red theme.
\nLove is a 2-column, widget-ready theme that pays homage to WordPress.
\nPigments is a 2-column, blue-and-green theme.
\nPink for October is a 2-column theme with pink, black and white colors created for breast cancer awareness month in October.
\nRanting Daily is a 2-column, widget-ready theme.
\nSaur is a 3-column, widget-ready theme that features a random image, big search bar, and comment counter.
\nT1 is a nice-looking Tumblelog theme with styling classes for several different types of entry.
";s:7:"pubdate";s:31:"Mon, 24 Sep 2007 05:00:23 +0000";s:2:"dc";a:1:{s:7:"creator";s:11:"Jim Stitzel";}s:7:"summary";s:1159:"Facebooked is a 3-column, widget-ready theme based on the social networking site.
\nLoopy Red is a 3-column, red theme.
\nLove is a 2-column, widget-ready theme that pays homage to WordPress.
\nPigments is a 2-column, blue-and-green theme.
\nPink for October is a 2-column theme with pink, black and white colors created for breast cancer awareness month in October.
\nRanting Daily is a 2-column, widget-ready theme.
\nSaur is a 3-column, widget-ready theme that features a random image, big search bar, and comment counter.
\nT1 is a nice-looking Tumblelog theme with styling classes for several different types of entry.
";}i:23;a:7:{s:5:"title";s:59:"Weblog Tools Collection: WordPress Plugin Releases for 9/24";s:4:"guid";s:87:"http://weblogtoolscollection.com/archives/2007/09/24/wordpress-plugin-releases-for-924/";s:4:"link";s:87:"http://weblogtoolscollection.com/archives/2007/09/24/wordpress-plugin-releases-for-924/";s:11:"description";s:1628:"Configurable Tag Cloud is a WordPress 2.3 widget that gives you a very nice set of configurable options for your sidebar tag cloud.
\nGlobal Post Password enables you to set a global password for all your password-protected posts, and switch password protection on or off from the writing screen with just one click.
\nHeadspace 2 manages meta-data and handles a wide range of SEO tasks, including tagging your posts, creating custom titles and descriptions that improve your page ranking, changing the theme or run disabled plugins on specific pages, and a whole lot more.
\nPage Category Plus is a WordPress 2.3 plugin that allows for pages to be assigned categories in the same manner as posts.
\nWordPress 2.3 Related Posts will generate a list of related posts via WordPress 2.3 tags.
\nTag Suggest Thing is another tagging plugin for WordPress 2.3 that adds a box to the sidebar that will send a request to the Yahoo! term extraction API to get a collection of (possibly) related terms.
\nwp-cron Dashboard Display lets you see what cron jobs are scheduled for your WordPress installation.
";s:7:"pubdate";s:31:"Mon, 24 Sep 2007 05:00:19 +0000";s:2:"dc";a:1:{s:7:"creator";s:11:"Jim Stitzel";}s:7:"summary";s:1628:"Configurable Tag Cloud is a WordPress 2.3 widget that gives you a very nice set of configurable options for your sidebar tag cloud.
\nGlobal Post Password enables you to set a global password for all your password-protected posts, and switch password protection on or off from the writing screen with just one click.
\nHeadspace 2 manages meta-data and handles a wide range of SEO tasks, including tagging your posts, creating custom titles and descriptions that improve your page ranking, changing the theme or run disabled plugins on specific pages, and a whole lot more.
\nPage Category Plus is a WordPress 2.3 plugin that allows for pages to be assigned categories in the same manner as posts.
\nWordPress 2.3 Related Posts will generate a list of related posts via WordPress 2.3 tags.
\nTag Suggest Thing is another tagging plugin for WordPress 2.3 that adds a box to the sidebar that will send a request to the Yahoo! term extraction API to get a collection of (possibly) related terms.
\nwp-cron Dashboard Display lets you see what cron jobs are scheduled for your WordPress installation.
";}i:24;a:7:{s:5:"title";s:33:"Matt: San Francisco Upgrade Party";s:4:"guid";s:60:"http://photomatt.net/2007/09/22/san-francisco-upgrade-party/";s:4:"link";s:60:"http://photomatt.net/2007/09/22/san-francisco-upgrade-party/";s:11:"description";s:131:"I’m hosting a WordPress 2.3 upgrade party on Wednesday the 26th.
";s:7:"pubdate";s:31:"Sat, 22 Sep 2007 18:25:54 +0000";s:2:"dc";a:1:{s:7:"creator";s:4:"Matt";}s:7:"summary";s:131:"I’m hosting a WordPress 2.3 upgrade party on Wednesday the 26th.
";}i:25;a:7:{s:5:"title";s:53:"Dougal Campbell: Tags and Categories in WordPress 2.3";s:4:"guid";s:74:"http://dougal.gunters.org/blog/2007/09/22/tags-and-categories-in-wordpress";s:4:"link";s:74:"http://dougal.gunters.org/blog/2007/09/22/tags-and-categories-in-wordpress";s:11:"description";s:855:"\nSince the upcoming WordPress 2.3 release will debut the new tagging system, I thought I''d take some time to address what it means to use "tags" versus using "categories". These things mean different things to different people, as it''s really just a matter of how you want to use them. But let''s examine what tags and categories are, how they are similar, how they are different, and why you might choose to use one system over the other, or use them together.\n
\n (more...)";s:7:"pubdate";s:31:"Sat, 22 Sep 2007 15:15:52 +0000";s:2:"dc";a:1:{s:7:"creator";s:6:"Dougal";}s:7:"summary";s:855:"\nSince the upcoming WordPress 2.3 release will debut the new tagging system, I thought I''d take some time to address what it means to use "tags" versus using "categories". These things mean different things to different people, as it''s really just a matter of how you want to use them. But let''s examine what tags and categories are, how they are similar, how they are different, and why you might choose to use one system over the other, or use them together.\n
\n (more...)";}i:26;a:7:{s:5:"title";s:27:"Dev Blog: Preparing for 2.3";s:4:"guid";s:58:"http://wordpress.org/development/2007/09/preparing-for-23/";s:4:"link";s:58:"http://wordpress.org/development/2007/09/preparing-for-23/";s:11:"description";s:1692:"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:
\nIf you have any other ideas put them on your blog and pingback this post.
";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:7:"summary";s:1692:"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:
\nIf you have any other ideas put them on your blog and pingback this post.
";}i:27;a:7:{s:5:"title";s:63:"Weblog Tools Collection: AirPress: Video Blog from your Desktop";s:4:"guid";s:91:"http://weblogtoolscollection.com/archives/2007/09/22/airpress-video-blog-from-your-desktop/";s:4:"link";s:91:"http://weblogtoolscollection.com/archives/2007/09/22/airpress-video-blog-from-your-desktop/";s:11:"description";s:1105:"AirPress: This post has been sitting in draft for some time, waiting for me to actually produce a video post but time has run away from me. AirPress is an Adobe Integrated Runtime (AIR) based desktop blogging client that is still in beta but has a few cool features including video blogging right from the desktop with a simple webcam. At first glance I had thought that AirPress lets you post “webcam streaming” to your blog, which would have been tres cool (albeit very hard to manage) but I must have misunderstood the somewhat sparse instructions on the AirPress site. At this time, you can add flash, video, music, pictures etc through AirPress. I would have given them five thumbs up if they would have concentrated on media blogging instead of trying to be another desktop blogging client, but it definitely has potential but it also is buggy. Thanks David
";s:7:"pubdate";s:31:"Sat, 22 Sep 2007 06:00:38 +0000";s:2:"dc";a:1:{s:7:"creator";s:10:"Mark Ghosh";}s:7:"summary";s:1105:"AirPress: This post has been sitting in draft for some time, waiting for me to actually produce a video post but time has run away from me. AirPress is an Adobe Integrated Runtime (AIR) based desktop blogging client that is still in beta but has a few cool features including video blogging right from the desktop with a simple webcam. At first glance I had thought that AirPress lets you post “webcam streaming” to your blog, which would have been tres cool (albeit very hard to manage) but I must have misunderstood the somewhat sparse instructions on the AirPress site. At this time, you can add flash, video, music, pictures etc through AirPress. I would have given them five thumbs up if they would have concentrated on media blogging instead of trying to be another desktop blogging client, but it definitely has potential but it also is buggy. Thanks David
";}i:28;a:7:{s:5:"title";s:29:"Matt: Foundread Public Square";s:4:"guid";s:56:"http://photomatt.net/2007/09/21/foundread-public-square/";s:4:"link";s:56:"http://photomatt.net/2007/09/21/foundread-public-square/";s:11:"description";s:514:"Foundread, a great site for entrepreneurs from the GigaOM crew, has switched to WordPress.com from Public Square. Public Square is a CMS from Cucina Media that most famously powers the information architecture site Boxes and Arrows, which I believe was previously run on Drupal.
";s:7:"pubdate";s:31:"Sat, 22 Sep 2007 04:27:22 +0000";s:2:"dc";a:1:{s:7:"creator";s:4:"Matt";}s:7:"summary";s:514:"Foundread, a great site for entrepreneurs from the GigaOM crew, has switched to WordPress.com from Public Square. Public Square is a CMS from Cucina Media that most famously powers the information architecture site Boxes and Arrows, which I believe was previously run on Drupal.
";}i:29;a:7:{s:5:"title";s:20:"Matt: Blog Interview";s:4:"guid";s:47:"http://photomatt.net/2007/09/21/blog-interview/";s:4:"link";s:47:"http://photomatt.net/2007/09/21/blog-interview/";s:11:"description";s:196:"I was interviewed on Blog Interviewer, there’s audio with a transcription.
";s:7:"pubdate";s:31:"Sat, 22 Sep 2007 03:50:42 +0000";s:2:"dc";a:1:{s:7:"creator";s:4:"Matt";}s:7:"summary";s:196:"I was interviewed on Blog Interviewer, there’s audio with a transcription.
";}i:30;a:7:{s:5:"title";s:49:"Lorelle on WP: Tags Arrive on WordPress.com Blogs";s:4:"guid";s:74:"http://lorelle.wordpress.com/2007/09/21/tags-arrive-on-wordpresscom-blogs/";s:4:"link";s:74:"http://lorelle.wordpress.com/2007/09/21/tags-arrive-on-wordpresscom-blogs/";s:11:"description";s:13721:"
With the announcement of the built-in tag feature in the upcoming release of WordPress 2.3, I’ve been waiting for WordPress.com to get tags as we are the beta testers of the WordPress World. Well, today they arrived.

At the bottom of your Write Post panel’s editing box, you will see a new form for Tags. The instructions say to list the tag words in the box, separated by commas. This allows you to include keyword tags and phrases such as wordpress tips, wordpress, i like wordpress, etc.
\n
The process, tips, and answers to questions regarding these new tags are found in the WordPress.com FAQ - The Difference Between Tags and Categories, which basically sums up these points:
\nHere are some things you might not want to hear:
\nI’ve already included tags on several posts to test them, but I cannot see them in this WordPress Theme. I’m still looking for them to appear, but I presume they will be in the post meta data area. Each WordPress Theme on WordPress.com must be modified to include the new tag features, so it may take a while to get around to the Sandbox Theme or your particular Theme.
\nFor a long time, I’ve been using a manual browser bookmarklet with my site search tags, and I’m not going to go through and remove them. If I like how these look and work, I’ll use these new tags. If not, I’m happy with my manual method.
\nFor those using my Tagging Bookmarklet for WordPress and WordPress.com Users, I will be updating that with tips on how to change the site search link to the new tag link, once I get a handle on how the new tags work.
\nThe new tag feature for full version WordPress users is in the upcoming release of WordPress 2.3, due this weekend. A couple of good tutorials on how to add WordPress 2.3 tags with the new tag sample tags to your WordPress Theme include How To Add Wordpress 2.3 Tags To Your Current Theme by Rich Gilchrest and WPDesigner - WordPress 2.3 Beta Review and Checklist.
\nIf you are currently using a tagging WordPress Plugin, your tags may not be “lost”. There are tag importer utilities in the new version of WordPress that covers Simple Tags, Jerome’s Keywords, Ultimate Tag Warrior, and Bunny’s Technorati Tags. I’m still waiting for news on tips and techniques for not using the new native tag feature, replacing it with one of the better tag WordPress Plugins, since the built-in version is very limited and there are better tagging Plugins available.
\nThere are new WordPress Plugins to add functionality and features to the new tag feature. Advanced Tag Entry WordPress Plugin and Click Tags WordPress Plugin improve the functions of the tags, and the WordPress 2.3 Related Posts Plugin uses the tags to create a list of related posts.
\nThe best part of finally seeing tagging on WordPress.com is that the 1 million plus users will be putting the tagging system through the ringer, testing it from all angles and trying to break it on their blogs. Even though it is just a few days before WordPress 2.3 is released, hopefully the feedback will help WordPress developers make sure that the new tag system will work better for everyone.
\nI’ve written a lot about the differences and similarities of tags and categories. I’ve listed some references below to help you understand them better.
\nCategories are your blog’s table of contents. Don’t remove them, thinking tags are a better option. They aren’t. Your posts must be categorized. Remove them and they will be categorized as “uncategorized”, something you do not want, trust me.
\nTags are like your blog’s index. They are keywords that represent the micro-categorization of your blog’s content. To work effectively, they need to be words that people search for, called search terms.
\nCategories are automatically marked as tags in WordPress. Theoretically, your blog doesn’t need tags. But many like the notion of breaking down the words that describe their content beyond categories, and tags offer that ability.
\nHere is more information on tags and categories:
\n

Subscribe
Subscribe by EmailCopyright Lorelle VanFossen, member of the 9Rules Network, and author of Blogging Tips, What Bloggers Won’t Tell You About Blogging.\n
With the announcement of the built-in tag feature in the upcoming release of WordPress 2.3, I’ve been waiting for WordPress.com to get tags as we are the beta testers of the WordPress World. Well, today they arrived.

At the bottom of your Write Post panel’s editing box, you will see a new form for Tags. The instructions say to list the tag words in the box, separated by commas. This allows you to include keyword tags and phrases such as wordpress tips, wordpress, i like wordpress, etc.
\n
The process, tips, and answers to questions regarding these new tags are found in the WordPress.com FAQ - The Difference Between Tags and Categories, which basically sums up these points:
\nHere are some things you might not want to hear:
\nI’ve already included tags on several posts to test them, but I cannot see them in this WordPress Theme. I’m still looking for them to appear, but I presume they will be in the post meta data area. Each WordPress Theme on WordPress.com must be modified to include the new tag features, so it may take a while to get around to the Sandbox Theme or your particular Theme.
\nFor a long time, I’ve been using a manual browser bookmarklet with my site search tags, and I’m not going to go through and remove them. If I like how these look and work, I’ll use these new tags. If not, I’m happy with my manual method.
\nFor those using my Tagging Bookmarklet for WordPress and WordPress.com Users, I will be updating that with tips on how to change the site search link to the new tag link, once I get a handle on how the new tags work.
\nThe new tag feature for full version WordPress users is in the upcoming release of WordPress 2.3, due this weekend. A couple of good tutorials on how to add WordPress 2.3 tags with the new tag sample tags to your WordPress Theme include How To Add Wordpress 2.3 Tags To Your Current Theme by Rich Gilchrest and WPDesigner - WordPress 2.3 Beta Review and Checklist.
\nIf you are currently using a tagging WordPress Plugin, your tags may not be “lost”. There are tag importer utilities in the new version of WordPress that covers Simple Tags, Jerome’s Keywords, Ultimate Tag Warrior, and Bunny’s Technorati Tags. I’m still waiting for news on tips and techniques for not using the new native tag feature, replacing it with one of the better tag WordPress Plugins, since the built-in version is very limited and there are better tagging Plugins available.
\nThere are new WordPress Plugins to add functionality and features to the new tag feature. Advanced Tag Entry WordPress Plugin and Click Tags WordPress Plugin improve the functions of the tags, and the WordPress 2.3 Related Posts Plugin uses the tags to create a list of related posts.
\nThe best part of finally seeing tagging on WordPress.com is that the 1 million plus users will be putting the tagging system through the ringer, testing it from all angles and trying to break it on their blogs. Even though it is just a few days before WordPress 2.3 is released, hopefully the feedback will help WordPress developers make sure that the new tag system will work better for everyone.
\nI’ve written a lot about the differences and similarities of tags and categories. I’ve listed some references below to help you understand them better.
\nCategories are your blog’s table of contents. Don’t remove them, thinking tags are a better option. They aren’t. Your posts must be categorized. Remove them and they will be categorized as “uncategorized”, something you do not want, trust me.
\nTags are like your blog’s index. They are keywords that represent the micro-categorization of your blog’s content. To work effectively, they need to be words that people search for, called search terms.
\nCategories are automatically marked as tags in WordPress. Theoretically, your blog doesn’t need tags. But many like the notion of breaking down the words that describe their content beyond categories, and tags offer that ability.
\nHere is more information on tags and categories:
\n

Subscribe
Subscribe by EmailCopyright Lorelle VanFossen, member of the 9Rules Network, and author of Blogging Tips, What Bloggers Won’t Tell You About Blogging.\nOne of the very first tasks I always perform on every new WordPress installation I do is to go into my user profile and turn off the visual WYSIWYG editor. I prefer to handle all my formatting markup myself because it gives me more control over the final product. The other day, Mark suggested that most ‘professional’ bloggers also prefer not to use the visual editor.
\nSo, the question I throw out to you, the reader, is this - which do you prefer to use, the visual editor or the basic editor, and why?
\nExtra credit: Do you use any formatting plugins for faster, easier, on-the-fly markup? If you use one of these plugins, why do you use that specific markup plugin? For instance, I use TextileWrapper on my own blog because I like how easy it is to add just a single character or two to a line or phrase to get the formatting I want. I originally used Text Control - and I still prefer - but it broke on a WordPress upgrade awhile back and is no longer being supported by the author, forcing me to find an alternative. TextileWrapper is an excellent plugin in its own right and continues to function well through each upgrade.
";s:7:"pubdate";s:31:"Fri, 21 Sep 2007 15:15:37 +0000";s:2:"dc";a:1:{s:7:"creator";s:11:"Jim Stitzel";}s:7:"summary";s:1252:"One of the very first tasks I always perform on every new WordPress installation I do is to go into my user profile and turn off the visual WYSIWYG editor. I prefer to handle all my formatting markup myself because it gives me more control over the final product. The other day, Mark suggested that most ‘professional’ bloggers also prefer not to use the visual editor.
\nSo, the question I throw out to you, the reader, is this - which do you prefer to use, the visual editor or the basic editor, and why?
\nExtra credit: Do you use any formatting plugins for faster, easier, on-the-fly markup? If you use one of these plugins, why do you use that specific markup plugin? For instance, I use TextileWrapper on my own blog because I like how easy it is to add just a single character or two to a line or phrase to get the formatting I want. I originally used Text Control - and I still prefer - but it broke on a WordPress upgrade awhile back and is no longer being supported by the author, forcing me to find an alternative. TextileWrapper is an excellent plugin in its own right and continues to function well through each upgrade.
";}i:32;a:7:{s:5:"title";s:54:"Weblog Tools Collection: Technorati Links by Day Graph";s:4:"guid";s:83:"http://weblogtoolscollection.com/archives/2007/09/21/technorati-links-by-day-graph/";s:4:"link";s:83:"http://weblogtoolscollection.com/archives/2007/09/21/technorati-links-by-day-graph/";s:11:"description";s:1031:"I had come upon this technique sometime ago but with the recent change in the way Technorati looks, I wanted to document the link since it still appears to work. You can use the following URI to generate a PNG with incoming links to your blog for a given period using Technorati. There does seem to be a maximum number of days Technorati keeps track of links and that number is less than 365, closer to 200. Just change the BlogURL value to the URI of your blog, and modify the size of the graph as you see fit for your blog or application.
\n\nhttp://www.technorati.com/chartimg?q=BlogURL&days=3600&width=460&height=200&type=url
I come up with the following graph for WeblogToolsCollection.com
\n";s:7:"pubdate";s:31:"Fri, 21 Sep 2007 12:45:27 +0000";s:2:"dc";a:1:{s:7:"creator";s:10:"Mark Ghosh";}s:7:"summary";s:1031:"I had come upon this technique sometime ago but with the recent change in the way Technorati looks, I wanted to document the link since it still appears to work. You can use the following URI to generate a PNG with incoming links to your blog for a given period using Technorati. There does seem to be a maximum number of days Technorati keeps track of links and that number is less than 365, closer to 200. Just change the BlogURL value to the URI of your blog, and modify the size of the graph as you see fit for your blog or application.
\n\nhttp://www.technorati.com/chartimg?q=BlogURL&days=3600&width=460&height=200&type=url
I come up with the following graph for WeblogToolsCollection.com
\n";}i:33;a:7:{s:5:"title";s:45:"Lorelle on WP: Heads Up News on WordPress 2.3";s:4:"guid";s:70:"http://lorelle.wordpress.com/2007/09/21/heads-up-news-on-wordpress-23/";s:4:"link";s:70:"http://lorelle.wordpress.com/2007/09/21/heads-up-news-on-wordpress-23/";s:11:"description";s:10052:"
In the most recent WordPress Wednesday News on the Blog Herald, I covered a ton of resources, news, tips, and WordPress Plugins for the upcoming release of WordPress 2.3, due September 24, currently still in beta testing. I wanted to share some of the news with you here.
In summary, tags will be built-in, and new Plugins and utilities for importing different Tag Plugins are being released. Changes to the database will break some WordPress Plugins that deal with tables for categories, so check the new WordPress 2.3 Plugin Compatibility List.
\nHere are some of the latest news announcements, tips, articles, reviews, and about the upcoming release of WordPress, one of the most anticipated releases in a long time:
\nI’m all a flutter about the new version. I was hoping that we’d see some of the new features on WordPress.com like tags, giving us a chance to test drive them, but many of these features you will see first i your full version upgrades.
\nAnd yes, like other major upgrades, some eggs will be broken, but I’m thrilled at some of the changes and willing to tolerate the breaks in order to get the benefits. Great work, WordPress development team and testers!
\n

Subscribe
Subscribe by Email\nCopyright Lorelle VanFossen, member of the 9Rules Network, and author of Blogging Tips, What Bloggers Won’t Tell You About Blogging.
\n
In the most recent WordPress Wednesday News on the Blog Herald, I covered a ton of resources, news, tips, and WordPress Plugins for the upcoming release of WordPress 2.3, due September 24, currently still in beta testing. I wanted to share some of the news with you here.
In summary, tags will be built-in, and new Plugins and utilities for importing different Tag Plugins are being released. Changes to the database will break some WordPress Plugins that deal with tables for categories, so check the new WordPress 2.3 Plugin Compatibility List.
\nHere are some of the latest news announcements, tips, articles, reviews, and about the upcoming release of WordPress, one of the most anticipated releases in a long time:
\nI’m all a flutter about the new version. I was hoping that we’d see some of the new features on WordPress.com like tags, giving us a chance to test drive them, but many of these features you will see first i your full version upgrades.
\nAnd yes, like other major upgrades, some eggs will be broken, but I’m thrilled at some of the changes and willing to tolerate the breaks in order to get the benefits. Great work, WordPress development team and testers!
\n

Subscribe
Subscribe by Email\nCopyright Lorelle VanFossen, member of the 9Rules Network, and author of Blogging Tips, What Bloggers Won’t Tell You About Blogging.
\nAaron offers a good overview of WordPress 2.3 in his 10 Things You Need to Know About WordPress 2.3 writeup.
";s:7:"pubdate";s:31:"Fri, 21 Sep 2007 03:54:47 +0000";s:2:"dc";a:1:{s:7:"creator";s:4:"Ryan";}s:7:"summary";s:276:"Aaron offers a good overview of WordPress 2.3 in his 10 Things You Need to Know About WordPress 2.3 writeup.
";}i:35;a:7:{s:5:"title";s:18:"Matt: CNET TV Live";s:4:"guid";s:45:"http://photomatt.net/2007/09/20/cnet-tv-live/";s:4:"link";s:45:"http://photomatt.net/2007/09/20/cnet-tv-live/";s:11:"description";s:112:"Sorry for the late notice, but I’ll be on CNET TV at 1 PM PST.
";s:7:"pubdate";s:31:"Thu, 20 Sep 2007 19:45:34 +0000";s:2:"dc";a:1:{s:7:"creator";s:4:"Matt";}s:7:"summary";s:112:"Sorry for the late notice, but I’ll be on CNET TV at 1 PM PST.
";}i:36;a:7:{s:5:"title";s:52:"Weblog Tools Collection: WP Theme Generator gets 2.3";s:4:"guid";s:80:"http://weblogtoolscollection.com/archives/2007/09/20/wp-theme-generator-gets-23/";s:4:"link";s:80:"http://weblogtoolscollection.com/archives/2007/09/20/wp-theme-generator-gets-23/";s:11:"description";s:292:"Wordpress Theme Generator: This latest update comes with 2.3 support and support for Tags as clouds and under each article as article tags. The code generated is now XHTML compliant and there are more colors to choose from. Via Email.
";s:7:"pubdate";s:31:"Thu, 20 Sep 2007 13:45:39 +0000";s:2:"dc";a:1:{s:7:"creator";s:10:"Mark Ghosh";}s:7:"summary";s:292:"Wordpress Theme Generator: This latest update comes with 2.3 support and support for Tags as clouds and under each article as article tags. The code generated is now XHTML compliant and there are more colors to choose from. Via Email.
";}i:37;a:7:{s:5:"title";s:35:"Ryan Boren: Tagging Plugins for 2.3";s:4:"guid";s:59:"http://boren.nu/archives/2007/09/19/tagging-plugins-for-23/";s:4:"link";s:59:"http://boren.nu/archives/2007/09/19/tagging-plugins-for-23/";s:11:"description";s:1043:"The new tagging feature in WordPress 2.3 was kept purposefully simple. We focused on providing infrastructure that cool tagging plugins could use. As noted by Weblog Tools Collection, there are already two tagging plugins that work with 2.3. Advanced Tag Entry and Click Tags are from regular WordPress contributors Jennifer Hodgdon and Andy Staines. Check these out if you want something a little fancier than what is built into 2.3.
\nWatching to see how plugin authors enhance tagging will be fun. Some of the most popular features added by plugins will likely wind up in 2.4. I like releasing something simple, letting plugin authors innovate and extend, and then pulling the best and most popular stuff into core WP.
";s:7:"pubdate";s:31:"Wed, 19 Sep 2007 21:01:54 +0000";s:2:"dc";a:1:{s:7:"creator";s:4:"Ryan";}s:7:"summary";s:1043:"The new tagging feature in WordPress 2.3 was kept purposefully simple. We focused on providing infrastructure that cool tagging plugins could use. As noted by Weblog Tools Collection, there are already two tagging plugins that work with 2.3. Advanced Tag Entry and Click Tags are from regular WordPress contributors Jennifer Hodgdon and Andy Staines. Check these out if you want something a little fancier than what is built into 2.3.
\nWatching to see how plugin authors enhance tagging will be fun. Some of the most popular features added by plugins will likely wind up in 2.4. I like releasing something simple, letting plugin authors innovate and extend, and then pulling the best and most popular stuff into core WP.
";}i:38;a:7:{s:5:"title";s:45:"Ryan Boren: WordPress 2.3 Release Candidate 1";s:4:"guid";s:69:"http://boren.nu/archives/2007/09/19/wordpress-23-release-candidate-1/";s:4:"link";s:69:"http://boren.nu/archives/2007/09/19/wordpress-23-release-candidate-1/";s:11:"description";s:557:"Release Candidate 1 of WordPress 2.3 was released last night. It was supposed to go out the night before, but I got caught up with some personal stuff. We postponed one day and used the extra time to get in a couple more bug fixes.
\nWe have less than a week until the final release of 2.3. Grab RC1 and help us shake out as many bugs as we can. 2.3 is a fairly big release and needs all of the testing it can get.
";s:7:"pubdate";s:31:"Wed, 19 Sep 2007 18:24:48 +0000";s:2:"dc";a:1:{s:7:"creator";s:4:"Ryan";}s:7:"summary";s:557:"Release Candidate 1 of WordPress 2.3 was released last night. It was supposed to go out the night before, but I got caught up with some personal stuff. We postponed one day and used the extra time to get in a couple more bug fixes.
\nWe have less than a week until the final release of 2.3. Grab RC1 and help us shake out as many bugs as we can. 2.3 is a fairly big release and needs all of the testing it can get.
";}i:39;a:7:{s:5:"title";s:58:"Weblog Tools Collection: Tagging Plugins for WordPress 2.3";s:4:"guid";s:86:"http://weblogtoolscollection.com/archives/2007/09/19/tagging-plugins-for-wordpress-23/";s:4:"link";s:86:"http://weblogtoolscollection.com/archives/2007/09/19/tagging-plugins-for-wordpress-23/";s:11:"description";s:757:"The final release of WordPress 2.3 with its native tagging functions is right around the corner, and there are already a few plugins floating around that will enhance tagging in WordPress 2.3. Here are two I’ve run across today:
\nThe final release of WordPress 2.3 with its native tagging functions is right around the corner, and there are already a few plugins floating around that will enhance tagging in WordPress 2.3. Here are two I’ve run across today:
\n\nAhoy! It''s time for Talk Like a Pirate Day again! Don''t forget to install my Text Filter Suite Plugin if you want to get your WordPress blog into the action.\n
";s:7:"pubdate";s:31:"Wed, 19 Sep 2007 14:11:34 +0000";s:2:"dc";a:1:{s:7:"creator";s:6:"Dougal";}s:7:"summary";s:497:"\nAhoy! It''s time for Talk Like a Pirate Day again! Don''t forget to install my Text Filter Suite Plugin if you want to get your WordPress blog into the action.\n
";}i:41;a:7:{s:5:"title";s:23:"Matt: Google Gadget Ads";s:4:"guid";s:50:"http://photomatt.net/2007/09/19/google-gadget-ads/";s:4:"link";s:50:"http://photomatt.net/2007/09/19/google-gadget-ads/";s:11:"description";s:194:"Google introduces Gadget Ads, includes open caching CDN proxy. I wonder how long that’ll last?
";s:7:"pubdate";s:31:"Wed, 19 Sep 2007 10:10:50 +0000";s:2:"dc";a:1:{s:7:"creator";s:4:"Matt";}s:7:"summary";s:194:"Google introduces Gadget Ads, includes open caching CDN proxy. I wonder how long that’ll last?
";}i:42;a:7:{s:5:"title";s:25:"Matt: Thunderbird is Back";s:4:"guid";s:52:"http://photomatt.net/2007/09/19/thunderbird-is-back/";s:4:"link";s:52:"http://photomatt.net/2007/09/19/thunderbird-is-back/";s:11:"description";s:371:"Mozilla’s new focus on Thunderbird, creating a new non-profit organization to develop it and seeding it with 3 million dollars. After the previous uncertainty, this is great news.
";s:7:"pubdate";s:31:"Wed, 19 Sep 2007 08:08:07 +0000";s:2:"dc";a:1:{s:7:"creator";s:4:"Matt";}s:7:"summary";s:371:"Mozilla’s new focus on Thunderbird, creating a new non-profit organization to develop it and seeding it with 3 million dollars. After the previous uncertainty, this is great news.
";}i:43;a:7:{s:5:"title";s:43:"Dev Blog: WordPress 2.3 Release Candidate 1";s:4:"guid";s:74:"http://wordpress.org/development/2007/09/wordpress-23-release-candidate-1/";s:4:"link";s:74:"http://wordpress.org/development/2007/09/wordpress-23-release-candidate-1/";s:11:"description";s:870:"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.
\nAnd 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.
";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:7:"summary";s:870:"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.
\nAnd 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.
";}i:44;a:7:{s:5:"title";s:59:"Weblog Tools Collection: WordPress Plugin Releases for 9/19";s:4:"guid";s:87:"http://weblogtoolscollection.com/archives/2007/09/19/wordpress-plugin-releases-for-919/";s:4:"link";s:87:"http://weblogtoolscollection.com/archives/2007/09/19/wordpress-plugin-releases-for-919/";s:11:"description";s:1014:"AskApache RewriteRules Viewer is a simple plugin that makes it easy for developers and code hackers to view the current WordPress RewriteRules at any time.
\nFutures Contract Plugin will display this month’s futures contract price on the sidebar of your blog. Prices are updated from the Chicago Board of Trade.
\nPicasaWebShow will display all or part of your Picasa album on your blog. EDITED for content, NSFW
Sub-page Links creates an automatic index of all sub-page (child, parent and sibling) links through a template tag in the page template.
\nUpcoming Events can receive iCalendar feeds from third party sites and display aggregated upcoming events from multiple feeds.
";s:7:"pubdate";s:31:"Wed, 19 Sep 2007 04:45:23 +0000";s:2:"dc";a:1:{s:7:"creator";s:11:"Jim Stitzel";}s:7:"summary";s:1014:"AskApache RewriteRules Viewer is a simple plugin that makes it easy for developers and code hackers to view the current WordPress RewriteRules at any time.
\nFutures Contract Plugin will display this month’s futures contract price on the sidebar of your blog. Prices are updated from the Chicago Board of Trade.
\nPicasaWebShow will display all or part of your Picasa album on your blog. EDITED for content, NSFW
Sub-page Links creates an automatic index of all sub-page (child, parent and sibling) links through a template tag in the page template.
\nUpcoming Events can receive iCalendar feeds from third party sites and display aggregated upcoming events from multiple feeds.
";}i:45;a:7:{s:5:"title";s:67:"Weblog Tools Collection: WP Plugins, Windows, Subversion and Extend";s:4:"guid";s:94:"http://weblogtoolscollection.com/archives/2007/09/18/wp-plugins-windows-subversion-and-extend/";s:4:"link";s:94:"http://weblogtoolscollection.com/archives/2007/09/18/wp-plugins-windows-subversion-and-extend/";s:11:"description";s:453:"How to Maintain Your WordPress Plugin from a Windows Workstation using Subversion: A step by step, illustrated set of instructions painstakingly put together by Roland on how to use Subversion on a Windows machine and use it to add your plugin(s) to the Wordpress Extend section. I love tutorials like this. Thanks Roland.
";s:7:"pubdate";s:31:"Tue, 18 Sep 2007 16:30:40 +0000";s:2:"dc";a:1:{s:7:"creator";s:10:"Mark Ghosh";}s:7:"summary";s:453:"How to Maintain Your WordPress Plugin from a Windows Workstation using Subversion: A step by step, illustrated set of instructions painstakingly put together by Roland on how to use Subversion on a Windows machine and use it to add your plugin(s) to the Wordpress Extend section. I love tutorials like this. Thanks Roland.
";}i:46;a:7:{s:5:"title";s:33:"Matt: Official Kilogram Prototype";s:4:"guid";s:60:"http://photomatt.net/2007/09/17/official-kilogram-prototype/";s:4:"link";s:60:"http://photomatt.net/2007/09/17/official-kilogram-prototype/";s:11:"description";s:199:"Official prototype of kilogram mysteriously losing weight. If I was kept at a chateau in a triple-locked safe I would too.
";s:7:"pubdate";s:31:"Tue, 18 Sep 2007 08:30:19 +0000";s:2:"dc";a:1:{s:7:"creator";s:4:"Matt";}s:7:"summary";s:199:"Official prototype of kilogram mysteriously losing weight. If I was kept at a chateau in a triple-locked safe I would too.
";}i:47;a:7:{s:5:"title";s:36:"Matt: WordCamp Melbourne and Hamburg";s:4:"guid";s:63:"http://photomatt.net/2007/09/17/wordcamp-melbourne-and-hamburg/";s:4:"link";s:63:"http://photomatt.net/2007/09/17/wordcamp-melbourne-and-hamburg/";s:11:"description";s:213:"There are WordCamps brewing in Melbourne in Australia and Hamburg in Germany. Cool!
";s:7:"pubdate";s:31:"Tue, 18 Sep 2007 08:30:19 +0000";s:2:"dc";a:1:{s:7:"creator";s:4:"Matt";}s:7:"summary";s:213:"There are WordCamps brewing in Melbourne in Australia and Hamburg in Germany. Cool!
";}i:48;a:7:{s:5:"title";s:27:"Akismet: Spam and Economics";s:4:"guid";s:54:"http://blog.akismet.com/2007/09/18/spam-and-economics/";s:4:"link";s:54:"http://blog.akismet.com/2007/09/18/spam-and-economics/";s:11:"description";s:215:"If you’re curious about some techniques of spammers and the intersection between economics and spam, check out this talk by Ross Anderson at Google:
\n\n
If you’re curious about some techniques of spammers and the intersection between economics and spam, check out this talk by Ross Anderson at Google:
\n\n
Did you know Volvo drivers have more wrecks? This great talk by Ross Anderson covers the fascinating intersection between economics and spam. One hour.
";s:7:"pubdate";s:31:"Tue, 18 Sep 2007 08:18:21 +0000";s:2:"dc";a:1:{s:7:"creator";s:4:"Matt";}s:7:"summary";s:233:"Did you know Volvo drivers have more wrecks? This great talk by Ross Anderson covers the fascinating intersection between economics and spam. One hour.
";}}s:7:"channel";a:5:{s:5:"title";s:16:"WordPress Planet";s:4:"link";s:28:"http://planet.wordpress.org/";s:8:"language";s:2:"en";s:11:"description";s:47:"WordPress Planet - http://planet.wordpress.org/";s:7:"tagline";s:47:"WordPress Planet - http://planet.wordpress.org/";}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:4:"etag";s:25:""1d9d2-46ffabfe-568c2a"\r\n";s:13:"last_modified";s:31:"Sun, 30 Sep 2007 14:00:30 GMT\r\n";}', 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 (71, 0, 'rss_867bd5c64f85878d03a060509cd2f92c_ts', 'Y', 1, '1191161390', 20, 8, '', 1, 'no'), (72, 0, 'rss_1b46d1977e1350667bd1e3fdd0c1a763', 'Y', 1, 'O:9:"MagpieRSS":17:{s:6:"parser";i:0;s:12:"current_item";a:0:{}s:5:"items";a:0:{}s:7:"channel";a:0:{}s:9:"textinput";a:0:{}s:5:"image";a:0:{}s:9:"feed_type";N;s:12:"feed_version";N;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";}}', 20, 8, '', 1, 'no'), (73, 0, 'rss_1b46d1977e1350667bd1e3fdd0c1a763_ts', 'Y', 1, '1191151378', 20, 8, '', 1, 'no'), (74, 0, 'sidebars_widgets', 'Y', 1, 'a:1:{s:13:"array_version";i:3;}', 20, 8, '', 1, 'yes'), (82, 0, 'cron', 'Y', 1, 'a:1:{s:7:"version";i:2;}', 20, 8, '', 1, 'yes'), (100, 0, 'category_children', 'Y', 1, 'a:1:{i:5;a:2:{i:0;s:1:"6";i:1;s:1:"7";}}', 20, 8, '', 1, 'yes'), (79, 0, 'wordpress_api_key', 'Y', 1, '45c665e40867', 20, 8, '', 1, 'yes'), (80, 0, 'akismet_discard_month', 'Y', 1, 'false', 20, 8, '', 1, 'yes'), (83, 0, 'doing_cron', 'Y', 1, '0', 20, 8, '', 1, 'yes'); -- -------------------------------------------------------- -- -- Struttura della tabella `wp_post2cat` -- DROP TABLE IF EXISTS `wp_post2cat`; CREATE TABLE IF NOT EXISTS `wp_post2cat` ( `rel_id` bigint(20) NOT NULL auto_increment, `post_id` bigint(20) NOT NULL default '0', `category_id` bigint(20) NOT NULL default '0', PRIMARY KEY (`rel_id`), KEY `post_id` (`post_id`,`category_id`) ) TYPE=MyISAM AUTO_INCREMENT=13 ; -- -- Dump dei dati per la tabella `wp_post2cat` -- INSERT INTO `wp_post2cat` (`rel_id`, `post_id`, `category_id`) VALUES (1, 1, 1), (2, 3, 1), (3, 4, 6), (4, 4, 7), (5, 5, 1), (6, 6, 1), (7, 7, 1), (8, 8, 1), (9, 9, 1), (10, 10, 1), (11, 11, 1), (12, 12, 1); -- -------------------------------------------------------- -- -- Struttura della tabella `wp_postmeta` -- DROP TABLE IF EXISTS `wp_postmeta`; CREATE TABLE IF NOT EXISTS `wp_postmeta` ( `meta_id` bigint(20) NOT NULL auto_increment, `post_id` bigint(20) NOT NULL default '0', `meta_key` varchar(255) default NULL, `meta_value` longtext, PRIMARY KEY (`meta_id`), KEY `post_id` (`post_id`), KEY `meta_key` (`meta_key`) ) TYPE=MyISAM AUTO_INCREMENT=30 ; -- -- Dump dei dati per la tabella `wp_postmeta` -- INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES (11, 5, '_wp_page_template', 'default'); -- -------------------------------------------------------- -- -- Struttura della tabella `wp_posts` -- DROP TABLE IF EXISTS `wp_posts`; CREATE TABLE IF NOT EXISTS `wp_posts` ( `ID` bigint(20) unsigned NOT NULL auto_increment, `post_author` bigint(20) NOT NULL default '0', `post_date` datetime NOT NULL default '0000-00-00 00:00:00', `post_date_gmt` datetime NOT NULL default '0000-00-00 00:00:00', `post_content` longtext NOT NULL, `post_title` text NOT NULL, `post_category` int(4) NOT NULL default '0', `post_excerpt` text NOT NULL, `post_status` enum('publish','draft','private','static','object','attachment','inherit','future') NOT NULL default 'publish', `comment_status` enum('open','closed','registered_only') NOT NULL default 'open', `ping_status` enum('open','closed') NOT NULL default 'open', `post_password` varchar(20) NOT NULL default '', `post_name` varchar(200) NOT NULL default '', `to_ping` text NOT NULL, `pinged` text NOT NULL, `post_modified` datetime NOT NULL default '0000-00-00 00:00:00', `post_modified_gmt` datetime NOT NULL default '0000-00-00 00:00:00', `post_content_filtered` text NOT NULL, `post_parent` bigint(20) NOT NULL default '0', `guid` varchar(255) NOT NULL default '', `menu_order` int(11) NOT NULL default '0', `post_type` varchar(20) NOT NULL default 'post', `post_mime_type` varchar(100) NOT NULL default '', `comment_count` bigint(20) NOT NULL default '0', PRIMARY KEY (`ID`), KEY `post_name` (`post_name`), KEY `type_status_date` (`post_type`,`post_status`,`post_date`,`ID`) ) TYPE=MyISAM AUTO_INCREMENT=13 ; -- -- Dump dei dati per la tabella `wp_posts` -- INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_category`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES (3, 1, '2007-09-30 16:13:46', '2007-09-30 14:13:46', 'Welcome to WordPress. This is your first post. Edit or delete it, then start blogging!', 'Hello world!', 0, '', 'publish', 'open', 'open', '', 'hello-world', '', '', '2007-09-30 16:13:46', '2007-09-30 14:13:46', '', 0, 'http://localhost/wp/?p=3', 0, 'post', '', 0), (4, 1, '2007-09-30 16:17:32', '2007-09-30 14:17:32', 'This is posted in the 2 child categories which sit under the parent category Test Category 2.\r\n\r\nLorem ipsum dolor sit amet, consectetuer adipiscing elit. Quisque sed felis. Aliquam sit amet felis. Mauris semper, velit semper laoreet dictum, quam diam dictum urna, nec placerat elit nisl in quam. Etiam augue pede, molestie eget, rhoncus at, convallis ut, eros. Aliquam pharetra. Nulla in tellus eget odio sagittis blandit. Maecenas at nisl. Nullam lorem mi, eleifend a, fringilla vel, semper at, ligula. Mauris eu wisi. Ut ante dui, aliquet nec, congue non, accumsan sit amet, lectus. Mauris et mauris. Duis sed massa id mauris pretium venenatis. Suspendisse cursus velit vel ligula. Mauris elit. Donec neque. Phasellus nec sapien quis pede facilisis suscipit. Aenean quis risus sit amet eros volutpat ullamcorper. Ut a mi. Etiam nulla. Mauris interdum.', 'An example of child categories', 0, '', 'publish', 'open', 'open', '', 'an-example-of-child-categories', '', '', '2007-09-30 16:17:32', '2007-09-30 14:17:32', '', 0, 'http://localhost/wp/?p=4', 0, 'post', '', 0), (5, 1, '2007-09-30 16:18:52', '2007-09-30 14:18:52', 'This is the standard about page with many features to come.\r\n\r\nEnjoy it.', 'About', 0, '', 'publish', 'open', 'open', '', 'about', '', '', '2007-09-30 16:18:52', '2007-09-30 14:18:52', '', 0, 'http://localhost/wp/?page_id=5', 0, 'page', '', 1), (6, 1, '2007-09-30 16:19:27', '2007-09-30 14:19:27', '
A link to the codex combined with a link to the theme viewer and perhaps a link to wordpress.org
\r\nPages: About
', 'A post with links and a page within', 0, '', 'publish', 'open', 'open', '', 'a-post-with-links-and-a-page-within', '', '\nhttp://localhost/wp/?page_id=5', '2007-09-30 16:20:16', '2007-09-30 14:20:16', '', 0, 'http://localhost/wp/?p=6', 0, 'post', '', 0), (8, 1, '2007-09-30 16:20:51', '2007-09-30 14:20:51', 'Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Quisque sed felis. Aliquam sit amet felis. Mauris semper, velit semper laoreet dictum, quam diam dictum urna, nec placerat elit nisl in quam. Etiam augue pede, molestie eget, rhoncus at, convallis ut, eros. Aliquam pharetra. Nulla in tellus eget odio sagittis blandit. Maecenas at nisl. Nullam lorem mi, eleifend a, fringilla vel, semper at, ligula. Mauris eu wisi. Ut ante dui, aliquet nec, congue non, accumsan sit amet, lectus. Mauris et mauris. Duis sed massa id mauris pretium venenatis. Suspendisse cursus velit vel ligula. Mauris elit. Donec neque. Phasellus nec sapien quis pede facilisis suscipit. Aenean quis risus sit amet eros volutpat ullamcorper. Ut a mi. Etiam nulla. Mauris interdum.\r\n\r\nLorem ipsum dolor sit amet, consectetuer adipiscing elit. Quisque sed felis. Aliquam sit amet felis. Mauris semper, velit semper laoreet dictum, quam diam dictum urna, nec placerat elit nisl in quam. Etiam augue pede, molestie eget, rhoncus at, convallis ut, eros. Aliquam pharetra. Nulla in tellus eget odio sagittis blandit. Maecenas at nisl. Nullam lorem mi, eleifend a, fringilla vel, semper at, ligula. Mauris eu wisi. Ut ante dui, aliquet nec, congue non, accumsan sit amet, lectus. Mauris et mauris. Duis sed massa id mauris pretium venenatis. Suspendisse cursus velit vel ligula. Mauris elit. Donec neque. Phasellus nec sapien quis pede facilisis suscipit. Aenean quis risus sit amet eros volutpat ullamcorper. Ut a mi. Etiam nulla. Mauris interdum.', 'How the ‘more’ tag works', 0, '', 'publish', 'open', 'open', '', 'how-the-%e2%80%98more%e2%80%99-tag-works', '', '', '2007-09-30 16:20:51', '2007-09-30 14:20:51', '', 0, 'http://localhost/wp/?p=8', 0, 'post', '', 0), (7, 1, '2007-09-30 16:19:56', '2007-09-30 14:19:56', '
A post with lists.\r\n\r\nUnordered List\r\n
A list of intelligence\r\n
Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Quisque sed felis. Aliquam sit amet felis. Mauris semper, velit semper laoreet dictum, quam diam dictum urna, nec placerat elit nisl in quam. Etiam augue pede, molestie eget, rhoncus at, convallis ut, eros. Aliquam pharetra. Nulla in tellus eget odio sagittis blandit. Maecenas at nisl. Nullam lorem mi, eleifend a, fringilla vel, semper at, ligula. Mauris eu wisi. Ut ante dui, aliquet nec, congue non, accumsan sit amet, lectus. Mauris et mauris. Duis sed massa id mauris pretium venenatis. Suspendisse cursus velit vel ligula. Mauris elit. Donec neque. Phasellus nec sapien quis pede facilisis suscipit. Aenean quis risus sit amet eros volutpat ullamcorper. Ut a mi. Etiam nulla. Mauris interdum.\r\n\r\nWith some blockquotes too of course…\r\n
Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Quisque sed felis. Aliquam sit amet felis. Mauris semper, velit semper laoreet dictum, quam diam dictum urna, nec placerat elit nisl in quam. Etiam augue pede, molestie eget, rhoncus at, convallis ut, eros. Aliquam pharetra. Nulla in tellus eget odio sagittis blandit. Maecenas at nisl. Nullam lorem mi, eleifend a, fringilla vel, semper at, ligula. Mauris eu wisi. Ut ante dui, aliquet nec, congue non, accumsan sit amet, lectus. Mauris et mauris. Duis sed massa id mauris pretium venenatis. Suspendisse cursus velit vel ligula. Mauris elit. Donec neque. Phasellus nec sapien quis pede facilisis suscipit. Aenean quis risus sit amet eros volutpat ullamcorper. Ut a mi. Etiam nulla. Mauris interdum.\r\nand a suggestion by Steve Cooley for a blockquote within a blockquote:\r\n
Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Quisque sed felis. Aliquam sit amet felis. Mauris semper, velit semper laoreet dictum, quam diam dictum urna, nec placerat elit nisl in quam. Etiam augue pede, molestie eget, rhoncus at, convallis ut, eros. Aliquam pharetra.\r\n', 'Blockquotes galore', 0, '', 'publish', 'open', 'open', '', 'blockquotes-galore', '', '', '2007-09-30 16:22:27', '2007-09-30 14:22:27', '', 0, 'http://localhost/wp/?p=11', 0, 'post', '', 0), (12, 1, '2007-09-30 16:22:48', '2007-09-30 14:22:48', 'This is a blockquote within a blockquote\r\nNulla in tellus eget odio sagittis blandit. Maecenas at nisl. Nullam lorem mi, eleifend a, fringilla vel, semper at, ligula. Mauris eu wisi. Ut ante dui, aliquet nec, congue non, accumsan sit amet, lectus. Mauris et mauris. Duis sed massa id mauris pretium venenatis. Suspendisse cursus velit vel ligula. Mauris elit. Donec neque. Phasellus nec sapien quis pede facilisis suscipit. Aenean quis risus sit amet eros volutpat ullamcorper. Ut a mi. Etiam nulla. Mauris interdum.
Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Quisque sed felis. Aliquam sit amet felis. Mauris semper, velit semper laoreet dictum, quam diam dictum urna, nec placerat elit nisl in quam. Etiam augue pede, molestie eget, rhoncus at, convallis ut, eros. Aliquam pharetra. Nulla in tellus eget odio sagittis blandit. Maecenas at nisl. Nullam lorem mi, eleifend a, fringilla vel, semper at, ligula. Mauris eu wisi. Ut ante dui, aliquet nec, congue non, accumsan sit amet, lectus. Mauris et mauris. Duis sed massa id mauris pretium venenatis. Suspendisse cursus velit vel ligula. Mauris elit. Donec neque. Phasellus nec sapien quis pede facilisis suscipit. Aenean quis risus sit amet eros volutpat ullamcorper. Ut a mi. Etiam nulla. Mauris interdum.', 'An image in a post', 0, '', 'publish', 'open', 'open', '', 'an-image-in-a-post', '', '', '2007-09-30 16:23:59', '2007-09-30 14:23:59', '', 0, 'http://localhost/wp/?p=12', 0, 'post', '', 5);
-- --------------------------------------------------------
--
-- Struttura della tabella `wp_usermeta`
--
DROP TABLE IF EXISTS `wp_usermeta`;
CREATE TABLE IF NOT EXISTS `wp_usermeta` (
`umeta_id` bigint(20) NOT NULL auto_increment,
`user_id` bigint(20) NOT NULL default '0',
`meta_key` varchar(255) default NULL,
`meta_value` longtext,
PRIMARY KEY (`umeta_id`),
KEY `user_id` (`user_id`),
KEY `meta_key` (`meta_key`)
) TYPE=MyISAM AUTO_INCREMENT=8 ;
--
-- Dump dei dati per la tabella `wp_usermeta`
--
INSERT INTO `wp_usermeta` (`umeta_id`, `user_id`, `meta_key`, `meta_value`) VALUES
(1, 1, 'nickname', 'theAdmin'),
(2, 1, 'rich_editing', 'true'),
(3, 1, 'wp_capabilities', 'a:1:{s:13:"administrator";b:1;}'),
(4, 1, 'wp_user_level', '10'),
(5, 1, 'first_name', 'John'),
(6, 1, 'last_name', 'Doe'),
(7, 1, 'wp_autosave_draft_ids', 'a:10:{i:-1191161602;i:3;i:-1191161782;i:4;i:-1191161909;i:5;i:-1191161852;i:6;i:-1191161968;i:7;i:-1191161996;i:8;i:-1191162052;i:9;i:-1191162083;i:10;i:-1191162125;i:11;i:-1191162147;i:12;}');
-- --------------------------------------------------------
--
-- Struttura della tabella `wp_users`
--
DROP TABLE IF EXISTS `wp_users`;
CREATE TABLE IF NOT EXISTS `wp_users` (
`ID` bigint(20) unsigned NOT NULL auto_increment,
`user_login` varchar(60) NOT NULL default '',
`user_pass` varchar(64) NOT NULL default '',
`user_nicename` varchar(50) NOT NULL default '',
`user_email` varchar(100) NOT NULL default '',
`user_url` varchar(100) NOT NULL default '',
`user_registered` datetime NOT NULL default '0000-00-00 00:00:00',
`user_activation_key` varchar(60) NOT NULL default '',
`user_status` int(11) NOT NULL default '0',
`display_name` varchar(250) NOT NULL default '',
PRIMARY KEY (`ID`),
KEY `user_login_key` (`user_login`)
) TYPE=MyISAM AUTO_INCREMENT=2 ;
--
-- Dump dei dati per la tabella `wp_users`
--
INSERT INTO `wp_users` (`ID`, `user_login`, `user_pass`, `user_nicename`, `user_email`, `user_url`, `user_registered`, `user_activation_key`, `user_status`, `display_name`) VALUES
(1, 'admin', '6579e96f76baa00787a28653876c6127', 'admin', 'admin@localhost.com', 'http://localhost/', '2007-09-30 11:16:28', '', 0, 'John Doe');