Instaldeco_Web/db/instaldeco.sql
david 2c3370bf39 Cambios
git-svn-id: https://192.168.0.254/svn/Proyectos.Instaldeco_Web/trunk@10 d4ca0941-a869-4c45-9eab-2e1fd2dd58c0
2011-10-23 18:55:43 +00:00

1549 lines
484 KiB
SQL
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

-- phpMyAdmin SQL Dump
-- version 3.4.5
-- http://www.phpmyadmin.net
--
-- Servidor: localhost
-- Tiempo de generación: 23-10-2011 a las 18:51:11
-- Versión del servidor: 5.5.16
-- Versión de PHP: 5.3.8
SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO";
SET time_zone = "+00:00";
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8 */;
--
-- Base de datos: `instaldeco`
--
-- --------------------------------------------------------
--
-- Estructura de tabla para la tabla `wp_commentmeta`
--
CREATE TABLE IF NOT EXISTS `wp_commentmeta` (
`meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`comment_id` bigint(20) unsigned NOT NULL DEFAULT '0',
`meta_key` varchar(255) DEFAULT NULL,
`meta_value` longtext,
PRIMARY KEY (`meta_id`),
KEY `comment_id` (`comment_id`),
KEY `meta_key` (`meta_key`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Estructura de tabla para la tabla `wp_comments`
--
CREATE TABLE IF NOT EXISTS `wp_comments` (
`comment_ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`comment_post_ID` bigint(20) unsigned 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` varchar(20) NOT NULL DEFAULT '1',
`comment_agent` varchar(255) NOT NULL DEFAULT '',
`comment_type` varchar(20) NOT NULL DEFAULT '',
`comment_parent` bigint(20) unsigned NOT NULL DEFAULT '0',
`user_id` bigint(20) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (`comment_ID`),
KEY `comment_approved` (`comment_approved`),
KEY `comment_post_ID` (`comment_post_ID`),
KEY `comment_approved_date_gmt` (`comment_approved`,`comment_date_gmt`),
KEY `comment_date_gmt` (`comment_date_gmt`),
KEY `comment_parent` (`comment_parent`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=2 ;
--
-- Volcado de datos para la tabla `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
(1, 1, 'Sr WordPress', '', 'http://wordpress.org/', '', '2011-09-23 17:04:51', '2011-09-23 17:04:51', 'Hola, esto es un comentario.<br /> Para borrar un comentario sólo tienes que entrar y ver los comentarios de la entrada. Entonces tendrás la opción de editar o borrar.', 0, '1', '', '', 0, 0);
-- --------------------------------------------------------
--
-- Estructura de tabla para la tabla `wp_links`
--
CREATE TABLE IF NOT EXISTS `wp_links` (
`link_id` bigint(20) unsigned 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_description` varchar(255) NOT NULL DEFAULT '',
`link_visible` varchar(20) NOT NULL DEFAULT 'Y',
`link_owner` bigint(20) unsigned 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_visible` (`link_visible`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=8 ;
--
-- Volcado de datos para la tabla `wp_links`
--
INSERT INTO `wp_links` (`link_id`, `link_url`, `link_name`, `link_image`, `link_target`, `link_description`, `link_visible`, `link_owner`, `link_rating`, `link_updated`, `link_rel`, `link_notes`, `link_rss`) VALUES
(1, 'http://codex.wordpress.org/', 'Documentation', '', '', '', 'Y', 1, 0, '0000-00-00 00:00:00', '', '', ''),
(2, 'http://wordpress.org/news/', 'WordPress Blog', '', '', '', 'Y', 1, 0, '0000-00-00 00:00:00', '', '', 'http://wordpress.org/news/feed/'),
(3, 'http://wordpress.org/extend/ideas/', 'Suggest Ideas', '', '', '', 'Y', 1, 0, '0000-00-00 00:00:00', '', '', ''),
(4, 'http://wordpress.org/support/', 'Support Forum', '', '', '', 'Y', 1, 0, '0000-00-00 00:00:00', '', '', ''),
(5, 'http://wordpress.org/extend/plugins/', 'Plugins', '', '', '', 'Y', 1, 0, '0000-00-00 00:00:00', '', '', ''),
(6, 'http://wordpress.org/extend/themes/', 'Themes', '', '', '', 'Y', 1, 0, '0000-00-00 00:00:00', '', '', ''),
(7, 'http://planet.wordpress.org/', 'WordPress Planet', '', '', '', 'Y', 1, 0, '0000-00-00 00:00:00', '', '', '');
-- --------------------------------------------------------
--
-- Estructura de tabla para la tabla `wp_options`
--
CREATE TABLE IF NOT EXISTS `wp_options` (
`option_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`blog_id` int(11) NOT NULL DEFAULT '0',
`option_name` varchar(64) NOT NULL DEFAULT '',
`option_value` longtext NOT NULL,
`autoload` varchar(20) NOT NULL DEFAULT 'yes',
PRIMARY KEY (`option_id`),
UNIQUE KEY `option_name` (`option_name`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=327 ;
--
-- Volcado de datos para la tabla `wp_options`
--
INSERT INTO `wp_options` (`option_id`, `blog_id`, `option_name`, `option_value`, `autoload`) VALUES
(1, 0, 'siteurl', 'http://localhost/instaldeco/', 'yes'),
(2, 0, 'blogname', 'Instaldeco', 'yes'),
(3, 0, 'blogdescription', 'Servicios de Montaje y decoración', 'yes'),
(4, 0, 'users_can_register', '0', 'yes'),
(5, 0, 'admin_email', 'darranz@rodax-software.com', 'yes'),
(6, 0, 'start_of_week', '1', 'yes'),
(7, 0, 'use_balanceTags', '0', 'yes'),
(8, 0, 'use_smilies', '1', 'yes'),
(9, 0, 'require_name_email', '1', 'yes'),
(10, 0, 'comments_notify', '1', 'yes'),
(11, 0, 'posts_per_rss', '10', 'yes'),
(12, 0, 'rss_use_excerpt', '0', 'yes'),
(13, 0, 'mailserver_url', 'mail.example.com', 'yes'),
(14, 0, 'mailserver_login', 'login@example.com', 'yes'),
(15, 0, 'mailserver_pass', 'password', 'yes'),
(16, 0, 'mailserver_port', '110', 'yes'),
(17, 0, 'default_category', '1', 'yes'),
(18, 0, 'default_comment_status', 'open', 'yes'),
(19, 0, 'default_ping_status', 'open', 'yes'),
(20, 0, 'default_pingback_flag', '1', 'yes'),
(21, 0, 'default_post_edit_rows', '20', 'yes'),
(22, 0, 'posts_per_page', '10', 'yes'),
(23, 0, 'date_format', 'j F, Y', 'yes'),
(24, 0, 'time_format', 'G:i', 'yes'),
(25, 0, 'links_updated_date_format', 'j F, Y G:i', 'yes'),
(26, 0, 'links_recently_updated_prepend', '<em>', 'yes'),
(27, 0, 'links_recently_updated_append', '</em>', 'yes'),
(28, 0, 'links_recently_updated_time', '120', 'yes'),
(29, 0, 'comment_moderation', '0', 'yes'),
(30, 0, 'moderation_notify', '1', 'yes'),
(31, 0, 'permalink_structure', '/%year%/%monthnum%/%postname%/', 'yes'),
(32, 0, 'gzipcompression', '0', 'yes'),
(33, 0, 'hack_file', '0', 'yes'),
(34, 0, 'blog_charset', 'UTF-8', 'yes'),
(35, 0, 'moderation_keys', '', 'no'),
(36, 0, 'active_plugins', 'a:0:{}', 'yes'),
(37, 0, 'home', 'http://localhost/instaldeco/', 'yes'),
(38, 0, 'category_base', '', 'yes'),
(39, 0, 'ping_sites', 'http://rpc.pingomatic.com/', 'yes'),
(40, 0, 'advanced_edit', '0', 'yes'),
(41, 0, 'comment_max_links', '2', 'yes'),
(42, 0, 'gmt_offset', '1', 'yes'),
(43, 0, 'default_email_category', '1', 'yes'),
(44, 0, 'recently_edited', '', 'no'),
(45, 0, 'template', 'broadside', 'yes'),
(46, 0, 'stylesheet', 'broadside', 'yes'),
(47, 0, 'comment_whitelist', '1', 'yes'),
(48, 0, 'blacklist_keys', '', 'no'),
(49, 0, 'comment_registration', '0', 'yes'),
(50, 0, 'rss_language', 'en', 'yes'),
(51, 0, 'html_type', 'text/html', 'yes'),
(52, 0, 'use_trackback', '0', 'yes'),
(53, 0, 'default_role', 'subscriber', 'yes'),
(54, 0, 'db_version', '18226', 'yes'),
(55, 0, 'uploads_use_yearmonth_folders', '1', 'yes'),
(56, 0, 'upload_path', '', 'yes'),
(57, 0, 'blog_public', '1', 'yes'),
(58, 0, 'default_link_category', '2', 'yes'),
(59, 0, 'show_on_front', 'page', 'yes'),
(60, 0, 'tag_base', '', 'yes'),
(61, 0, 'show_avatars', '1', 'yes'),
(62, 0, 'avatar_rating', 'G', 'yes'),
(63, 0, 'upload_url_path', '', 'yes'),
(64, 0, 'thumbnail_size_w', '150', 'yes'),
(65, 0, 'thumbnail_size_h', '150', 'yes'),
(66, 0, 'thumbnail_crop', '1', 'yes'),
(67, 0, 'medium_size_w', '300', 'yes'),
(68, 0, 'medium_size_h', '300', 'yes'),
(69, 0, 'avatar_default', 'mystery', 'yes'),
(70, 0, 'enable_app', '0', 'yes'),
(71, 0, 'enable_xmlrpc', '0', 'yes'),
(72, 0, 'large_size_w', '1024', 'yes'),
(73, 0, 'large_size_h', '1024', 'yes'),
(74, 0, 'image_default_link_type', 'file', 'yes'),
(75, 0, 'image_default_size', '', 'yes'),
(76, 0, 'image_default_align', '', 'yes'),
(77, 0, 'close_comments_for_old_posts', '0', 'yes'),
(78, 0, 'close_comments_days_old', '14', 'yes'),
(79, 0, 'thread_comments', '1', 'yes'),
(80, 0, 'thread_comments_depth', '5', 'yes'),
(81, 0, 'page_comments', '0', 'yes'),
(82, 0, 'comments_per_page', '50', 'yes'),
(83, 0, 'default_comments_page', 'newest', 'yes'),
(84, 0, 'comment_order', 'asc', 'yes'),
(85, 0, 'sticky_posts', 'a:0:{}', 'yes'),
(86, 0, 'widget_categories', 'a:2:{i:2;a:4:{s:5:"title";s:0:"";s:5:"count";i:0;s:12:"hierarchical";i:0;s:8:"dropdown";i:0;}s:12:"_multiwidget";i:1;}', 'yes'),
(87, 0, 'widget_text', 'a:2:{i:2;a:0:{}s:12:"_multiwidget";i:1;}', 'yes'),
(88, 0, 'widget_rss', 'a:2:{i:2;a:0:{}s:12:"_multiwidget";i:1;}', 'yes'),
(89, 0, 'timezone_string', '', 'yes'),
(90, 0, 'embed_autourls', '1', 'yes'),
(91, 0, 'embed_size_w', '', 'yes'),
(92, 0, 'embed_size_h', '600', 'yes'),
(93, 0, 'page_for_posts', '17', 'yes'),
(94, 0, 'page_on_front', '11', 'yes'),
(95, 0, 'default_post_format', '0', 'yes'),
(96, 0, 'wp_user_roles', 'a:5:{s:13:"administrator";a:2:{s:4:"name";s:13:"Administrator";s:12:"capabilities";a:62:{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:17:"unfiltered_upload";b:1;s:14:"edit_dashboard";b:1;s:14:"update_plugins";b:1;s:14:"delete_plugins";b:1;s:15:"install_plugins";b:1;s:13:"update_themes";b:1;s:14:"install_themes";b:1;s:11:"update_core";b:1;s:10:"list_users";b:1;s:12:"remove_users";b:1;s:9:"add_users";b:1;s:13:"promote_users";b:1;s:18:"edit_theme_options";b:1;s:13:"delete_themes";b:1;s:6:"export";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;}}}', 'yes'),
(97, 0, 'widget_search', 'a:2:{i:2;a:1:{s:5:"title";s:0:"";}s:12:"_multiwidget";i:1;}', 'yes'),
(98, 0, 'widget_recent-posts', 'a:2:{i:2;a:2:{s:5:"title";s:0:"";s:6:"number";i:5;}s:12:"_multiwidget";i:1;}', 'yes'),
(99, 0, 'widget_recent-comments', 'a:2:{i:2;a:2:{s:5:"title";s:0:"";s:6:"number";i:5;}s:12:"_multiwidget";i:1;}', 'yes'),
(100, 0, 'widget_archives', 'a:2:{i:2;a:3:{s:5:"title";s:0:"";s:5:"count";i:0;s:8:"dropdown";i:0;}s:12:"_multiwidget";i:1;}', 'yes'),
(101, 0, 'widget_meta', 'a:2:{i:2;a:1:{s:5:"title";s:0:"";}s:12:"_multiwidget";i:1;}', 'yes'),
(102, 0, 'sidebars_widgets', 'a:2:{s:19:"wp_inactive_widgets";a:13:{i:0;s:7:"pages-2";i:1;s:10:"calendar-2";i:2;s:7:"links-2";i:3;s:6:"text-2";i:4;s:5:"rss-2";i:5;s:11:"tag_cloud-2";i:6;s:10:"nav_menu-2";i:7;s:8:"search-2";i:8;s:14:"recent-posts-2";i:9;s:17:"recent-comments-2";i:10;s:10:"archives-2";i:11;s:12:"categories-2";i:12;s:6:"meta-2";}s:13:"array_version";i:3;}', 'yes'),
(103, 0, 'cron', 'a:3:{i:1319432695;a:3:{s:16:"wp_version_check";a:1:{s:32:"40cd750bba9870f18aada2478b24840a";a:3:{s:8:"schedule";s:10:"twicedaily";s:4:"args";a:0:{}s:8:"interval";i:43200;}}s:17:"wp_update_plugins";a:1:{s:32:"40cd750bba9870f18aada2478b24840a";a:3:{s:8:"schedule";s:10:"twicedaily";s:4:"args";a:0:{}s:8:"interval";i:43200;}}s:16:"wp_update_themes";a:1:{s:32:"40cd750bba9870f18aada2478b24840a";a:3:{s:8:"schedule";s:10:"twicedaily";s:4:"args";a:0:{}s:8:"interval";i:43200;}}}i:1319475906;a:1:{s:19:"wp_scheduled_delete";a:1:{s:32:"40cd750bba9870f18aada2478b24840a";a:3:{s:8:"schedule";s:5:"daily";s:4:"args";a:0:{}s:8:"interval";i:86400;}}}s:7:"version";i:2;}', 'yes'),
(104, 0, '_transient_doing_cron', '1319389517', 'yes'),
(116, 0, '_site_transient_timeout_browser_4f512b96d61e54437d052ed0b03eb8c5', '1317402305', 'yes'),
(105, 0, '_site_transient_update_core', 'O:8:"stdClass":3:{s:7:"updates";a:2:{i:0;O:8:"stdClass":9:{s:8:"response";s:6:"latest";s:8:"download";s:49:"http://es.wordpress.org/wordpress-3.2.1-es_ES.zip";s:6:"locale";s:5:"es_ES";s:8:"packages";O:8:"stdClass":4:{s:4:"full";s:49:"http://es.wordpress.org/wordpress-3.2.1-es_ES.zip";s:10:"no_content";b:0;s:11:"new_bundled";b:0;s:7:"partial";b:0;}s:7:"current";s:5:"3.2.1";s:11:"php_version";s:5:"5.2.4";s:13:"mysql_version";s:3:"5.0";s:11:"new_bundled";s:3:"3.2";s:15:"partial_version";s:0:"";}i:1;O:8:"stdClass":9:{s:8:"response";s:6:"latest";s:8:"download";s:40:"http://wordpress.org/wordpress-3.2.1.zip";s:6:"locale";s:5:"en_US";s:8:"packages";O:8:"stdClass":4:{s:4:"full";s:40:"http://wordpress.org/wordpress-3.2.1.zip";s:10:"no_content";s:51:"http://wordpress.org/wordpress-3.2.1-no-content.zip";s:11:"new_bundled";s:52:"http://wordpress.org/wordpress-3.2.1-new-bundled.zip";s:7:"partial";b:0;}s:7:"current";s:5:"3.2.1";s:11:"php_version";s:5:"5.2.4";s:13:"mysql_version";s:3:"5.0";s:11:"new_bundled";s:3:"3.2";s:15:"partial_version";s:0:"";}}s:12:"last_checked";i:1319389518;s:15:"version_checked";s:5:"3.2.1";}', 'yes'),
(106, 0, '_site_transient_update_plugins', 'O:8:"stdClass":3:{s:12:"last_checked";i:1319380766;s:7:"checked";a:2:{s:19:"akismet/akismet.php";s:5:"2.5.3";s:9:"hello.php";s:3:"1.6";}s:8:"response";a:0:{}}', 'yes'),
(107, 0, 'widget_pages', 'a:2:{i:2;a:0:{}s:12:"_multiwidget";i:1;}', 'yes'),
(108, 0, 'widget_calendar', 'a:2:{i:2;a:0:{}s:12:"_multiwidget";i:1;}', 'yes'),
(109, 0, 'widget_links', 'a:2:{i:2;a:0:{}s:12:"_multiwidget";i:1;}', 'yes'),
(110, 0, 'widget_tag_cloud', 'a:2:{i:2;a:0:{}s:12:"_multiwidget";i:1;}', 'yes'),
(111, 0, 'widget_nav_menu', 'a:2:{i:2;a:0:{}s:12:"_multiwidget";i:1;}', 'yes'),
(112, 0, 'widget_widget_twentyeleven_ephemera', 'a:2:{i:2;a:0:{}s:12:"_multiwidget";i:1;}', 'yes'),
(302, 0, '_site_transient_timeout_theme_roots', '1319395629', 'yes'),
(303, 0, '_site_transient_theme_roots', 'a:3:{s:9:"broadside";s:7:"/themes";s:12:"twentyeleven";s:7:"/themes";s:9:"twentyten";s:7:"/themes";}', 'yes'),
(115, 0, '_site_transient_update_themes', 'O:8:"stdClass":3:{s:12:"last_checked";i:1319380768;s:7:"checked";a:3:{s:9:"broadside";s:3:"1.0";s:12:"twentyeleven";s:3:"1.2";s:9:"twentyten";s:3:"1.2";}s:8:"response";a:0:{}}', 'yes'),
(117, 0, '_site_transient_browser_4f512b96d61e54437d052ed0b03eb8c5', 'a:9:{s:8:"platform";s:7:"Windows";s:4:"name";s:7:"Firefox";s:7:"version";s:5:"6.0.2";s:10:"update_url";s:23:"http://www.firefox.com/";s:7:"img_src";s:50:"http://s.wordpress.org/images/browsers/firefox.png";s:11:"img_src_ssl";s:49:"https://wordpress.org/images/browsers/firefox.png";s:15:"current_version";s:1:"6";s:7:"upgrade";b:0;s:8:"insecure";b:0;}', 'yes'),
(118, 0, 'dashboard_widget_options', 'a:4:{s:25:"dashboard_recent_comments";a:1:{s:5:"items";i:5;}s:24:"dashboard_incoming_links";a:5:{s:4:"home";s:27:"http://localhost/instaldeco";s:4:"link";s:103:"http://blogsearch.google.com/blogsearch?scoring=d&partner=wordpress&q=link:http://localhost/instaldeco/";s:3:"url";s:136:"http://blogsearch.google.com/blogsearch_feeds?scoring=d&ie=utf-8&num=10&output=rss&partner=wordpress&q=link:http://localhost/instaldeco/";s:5:"items";i:10;s:9:"show_date";b:0;}s:17:"dashboard_primary";a:7:{s:4:"link";s:26:"http://wordpress.org/news/";s:3:"url";s:31:"http://wordpress.org/news/feed/";s:5:"title";s:22:"Blog oficial WordPress";s:5:"items";i:2;s:12:"show_summary";i:1;s:11:"show_author";i:0;s:9:"show_date";i:1;}s:19:"dashboard_secondary";a:7:{s:4:"link";s:28:"http://planet.wordpress.org/";s:3:"url";s:33:"http://planet.wordpress.org/feed/";s:5:"title";s:30:"Otras noticias sobre WordPress";s:5:"items";i:5;s:12:"show_summary";i:0;s:11:"show_author";i:0;s:9:"show_date";i:0;}}', 'yes'),
(201, 0, 'current_theme', 'Broadside', 'yes'),
(120, 0, 'can_compress_scripts', '1', 'yes'),
(241, 0, '_transient_timeout_feed_mod_57bc725ad6568758915363af670fd8bc', '1319424201', 'no'),
(242, 0, '_transient_feed_mod_57bc725ad6568758915363af670fd8bc', '1319381001', 'no'),
(320, 0, 'type_children', 'a:0:{}', 'yes'),
(219, 0, '_transient_timeout_feed_mod_d54818a85854ebcb9b5357c7d7c038bf', '1319424199', 'no'),
(220, 0, '_transient_feed_mod_d54818a85854ebcb9b5357c7d7c038bf', '1319380999', 'no'),
(221, 0, '_transient_timeout_dash_20494a3d90a6669585674ed0eb8dcd8f', '1319424199', 'no'),
(222, 0, '_transient_dash_20494a3d90a6669585674ed0eb8dcd8f', '<p>Este widget de escritorio consulta a la <a href="http://blogsearch.google.com/">Búsqueda de blogs de Google </a> de modo que cuando otro blog enlace a su sitio se mostrará aquí. No se ha encontrado ningún enlace entrante… aún. Está bien, no hay prisa.</p>\n', 'no'),
(235, 0, '_transient_timeout_feed_mod_867bd5c64f85878d03a060509cd2f92c', '1319424201', 'no'),
(236, 0, '_transient_feed_mod_867bd5c64f85878d03a060509cd2f92c', '1319381001', 'no'),
(237, 0, '_transient_timeout_dash_aa95765b5cc111c56d5993d476b1c2f0', '1319424201', 'no'),
(238, 0, '_transient_dash_aa95765b5cc111c56d5993d476b1c2f0', '<div class="rss-widget"><ul><li><a class=''rsswidget'' href=''http://wordpress.tv/2011/10/23/collin-condray-and-eric-huber-yin-and-yang-of-your-wordpress-site/'' title='' [&hellip;]''>WordPress.tv: Collin Condray and Eric Huber: Yin and Yang of Your WordPress Site</a></li><li><a class=''rsswidget'' href=''http://feedproxy.google.com/~r/weblogtoolscollection/UXMP/~3/UBnsK0psafg/'' title=''A few days ago, I mentioned that a responsive design was my favorite WordPress theme feature. Of course, I wouldnt be doing well to promote my favorite feature without at least pointing you in the right direction to learn how to do it yourself. Straight from WordCamp San Francisco 2011, heres Sara Cannon with a great presentation on responsive web design i [&hellip;]''>Weblog Tools Collection: WordPress and Responsive Web Design</a></li><li><a class=''rsswidget'' href=''http://wordpress.tv/2011/10/22/david-cook-setting-up-local-test-environments/'' title='' [&hellip;]''>WordPress.tv: David Cook: Setting up Local Test Environments</a></li><li><a class=''rsswidget'' href=''http://wordpress.tv/2011/10/22/catherine-winters-challenging-traditional-wordpress-design/'' title='' [&hellip;]''>WordPress.tv: Catherine Winters: Challenging Traditional WordPress Design</a></li><li><a class=''rsswidget'' href=''http://wordpress.tv/2011/10/22/tom-hapgood-embrace-the-mullet-css-is-the-party-in-the-back/'' title='' [&hellip;]''>WordPress.tv: Tom Hapgood: Embrace the Mullet: CSS is the Party in the Back</a></li></ul></div>', 'no'),
(239, 0, '_transient_timeout_feed_57bc725ad6568758915363af670fd8bc', '1319424201', 'no'),
(240, 0, '_transient_feed_57bc725ad6568758915363af670fd8bc', 'a:4:{s:5:"child";a:1:{s:0:"";a:1:{s:3:"rss";a:1:{i:0;a:6:{s:4:"data";s:3:"\n \n";s:7:"attribs";a:1:{s:0:"";a:1:{s:7:"version";s:3:"2.0";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:1:{s:0:"";a:1:{s:7:"channel";a:1:{i:0;a:6:{s:4:"data";s:72:"\n \n \n \n \n \n \n \n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:7:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:33:"WordPress Plugins » View: Newest";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:47:"http://wordpress.org/extend/plugins/browse/new/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:33:"WordPress Plugins » View: Newest";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"language";a:1:{i:0;a:5:{s:4:"data";s:5:"en-US";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Sun, 23 Oct 2011 14:37:33 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:9:"generator";a:1:{i:0;a:5:{s:4:"data";s:25:"http://bbpress.org/?v=1.1";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"item";a:15:{i:0;a:6:{s:4:"data";s:30:"\n \n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:38:"uwebic on "uWebic wordpress framework"";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:74:"http://wordpress.org/extend/plugins/uwebic-wordpress-framework/#post-31428";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Sun, 23 Oct 2011 09:43:23 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:42:"31428@http://wordpress.org/extend/plugins/";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:74:"A framework to ease up the process of developing new plugins for wordpress";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:6:"uwebic";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:1;a:6:{s:4:"data";s:30:"\n \n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:38:"iintensemedia on "1-Click Website SEO"";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:67:"http://wordpress.org/extend/plugins/1-click-website-seo/#post-31421";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Sun, 23 Oct 2011 05:49:42 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:42:"31421@http://wordpress.org/extend/plugins/";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:97:"One Click SEO Plugin Completely SEO Optimizes Your Website Posts and Pages in just 1 single click";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"iintensemedia";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:2;a:6:{s:4:"data";s:30:"\n \n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:36:"masdiblogs on "WP Ajax Contact Form"";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:68:"http://wordpress.org/extend/plugins/wp-ajax-contact-form/#post-31414";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Sat, 22 Oct 2011 19:27:24 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:42:"31414@http://wordpress.org/extend/plugins/";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:140:"WP Ajax Contact Form, also this plugin sends mail using ajax and gather email list, have options page, custom css and form design usability.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:10:"masdiblogs";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:3;a:6:{s:4:"data";s:30:"\n \n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:40:"RomeoBalta on "Blog Authors Description"";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:72:"http://wordpress.org/extend/plugins/blog-authors-description/#post-31411";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Sat, 22 Oct 2011 15:30:17 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:42:"31411@http://wordpress.org/extend/plugins/";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:103:"Shows information about blog authors in sidebar along with various social networks links and a picture.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:10:"RomeoBalta";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:4;a:6:{s:4:"data";s:30:"\n \n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:23:"lordspace on "DigiShop"";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:56:"http://wordpress.org/extend/plugins/digishop/#post-31239";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Tue, 18 Oct 2011 15:13:00 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:42:"31239@http://wordpress.org/extend/plugins/";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:102:"DigiShop plugin allows you to start selling your digital products such as e-books, reports in minutes.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:9:"lordspace";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:5;a:6:{s:4:"data";s:30:"\n \n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:51:"mfritzsche on "wunsch-index.de Wunschlisten Widget"";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:72:"http://wordpress.org/extend/plugins/wunsch-indexde-wishlists/#post-31412";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Sat, 22 Oct 2011 17:29:38 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:42:"31412@http://wordpress.org/extend/plugins/";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:150:"This widget allows you to add your wunsch-index.de wishlist to your blog. Simply enter the URL to your wishlist and all your wishes will be displayed.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:10:"mfritzsche";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:6;a:6:{s:4:"data";s:30:"\n \n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:31:"toryzen on "实时访客分析"";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:57:"http://wordpress.org/extend/plugins/siteinfor/#post-31398";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Sat, 22 Oct 2011 06:57:07 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:42:"31398@http://wordpress.org/extend/plugins/";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:137:"这个插件可以使你方便的加入SI实时分析代码实时了解并掌握您的博客中在线人数访问页面等情况。";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:7:"toryzen";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:7;a:6:{s:4:"data";s:30:"\n \n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:27:"Anthony on "Wrong Password"";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:67:"http://wordpress.org/extend/plugins/alex-wrong-password/#post-31399";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Sat, 22 Oct 2011 07:54:01 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:42:"31399@http://wordpress.org/extend/plugins/";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:150:"When someone gets a password wrong on your site, the administrator is emailed with the details that were entered. \nThe best way to get fast support i";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:7:"Anthony";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:8;a:6:{s:4:"data";s:30:"\n \n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:39:"redcocker on "TinyMCE Backslash Button"";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:72:"http://wordpress.org/extend/plugins/tinymce-backslash-button/#post-31373";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Fri, 21 Oct 2011 19:49:16 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:42:"31373@http://wordpress.org/extend/plugins/";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:148:"This plugin provides a TinyMCE button to enter backslash. Even when using Japanese or Korean font, backslash doesn&#039;t appear as Yen or Won mark.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:9:"redcocker";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:9;a:6:{s:4:"data";s:30:"\n \n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:37:"LizzyFin on "WP Latest Post Blogroll"";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:71:"http://wordpress.org/extend/plugins/wp-latest-post-blogroll/#post-31374";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Fri, 21 Oct 2011 20:01:01 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:42:"31374@http://wordpress.org/extend/plugins/";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:119:"The WP Latest Post Blogroll plugin creates a link with the most recent post title for each blog listed in the blogroll.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:8:"LizzyFin";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:10;a:6:{s:4:"data";s:30:"\n \n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:37:"cyberlobe on "Manage Post Expiration"";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:70:"http://wordpress.org/extend/plugins/manage-post-expiration/#post-31306";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Thu, 20 Oct 2011 07:16:31 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:42:"31306@http://wordpress.org/extend/plugins/";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:49:"Allows you to expires a post after Specified date";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:9:"cyberlobe";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:11;a:6:{s:4:"data";s:30:"\n \n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:39:"bolo1988 on "WordPress 淘宝客插件"";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:56:"http://wordpress.org/extend/plugins/taobaoke/#post-31396";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Sat, 22 Oct 2011 06:15:55 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:42:"31396@http://wordpress.org/extend/plugins/";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:105:"WordPress淘宝客插件能根据淘宝商品链接自动生成商品cps链接和掌柜店铺cps链接";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:8:"bolo1988";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:12;a:6:{s:4:"data";s:30:"\n \n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:36:"thydzik on "Slimbox2 with Slideshow"";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:67:"http://wordpress.org/extend/plugins/slimbox-2-slideshow/#post-31354";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Fri, 21 Oct 2011 12:59:23 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:42:"31354@http://wordpress.org/extend/plugins/";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:84:"Slimbox2 Slideshow is a WordPress plugin used to display Lightbox effects on images.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:7:"thydzik";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:13;a:6:{s:4:"data";s:30:"\n \n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:32:"oOXimOo on "TEN - Video catcher"";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:65:"http://wordpress.org/extend/plugins/ten-video-catcher/#post-31388";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Fri, 21 Oct 2011 23:06:22 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:42:"31388@http://wordpress.org/extend/plugins/";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:133:"TEN - Video Catcher allow to embed Youtube and Dailymotion videos easily. That&#039;s the lightest plugin you can find for Wordpress.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:7:"oOXimOo";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:14;a:6:{s:4:"data";s:30:"\n \n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:51:"Paperthin.de on "Progressbar (Edition for Readers)"";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:79:"http://wordpress.org/extend/plugins/progressbar-edition-for-readers/#post-31391";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Sat, 22 Oct 2011 00:20:01 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:42:"31391@http://wordpress.org/extend/plugins/";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:45:"This plugin indicates progress made on books.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:12:"Paperthin.de";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}}}s:27:"http://www.w3.org/2005/Atom";a:1:{s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:0:"";s:7:"attribs";a:1:{s:0:"";a:3:{s:4:"href";s:48:"http://wordpress.org/extend/plugins/rss/view/new";s:3:"rel";s:4:"self";s:4:"type";s:19:"application/rss+xml";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}}}}}}}}s:4:"type";i:128;s:7:"headers";a:8:{s:6:"server";s:5:"nginx";s:4:"date";s:29:"Sun, 23 Oct 2011 14:43:21 GMT";s:12:"content-type";s:23:"text/xml; charset=UTF-8";s:10:"connection";s:5:"close";s:4:"vary";s:15:"Accept-Encoding";s:13:"last-modified";s:19:"2011-10-23 09:43:23";s:14:"content-length";s:4:"7983";s:4:"x-nc";s:11:"HIT luv 139";}s:5:"build";s:14:"20090627192103";}', 'no'),
(217, 0, '_transient_timeout_feed_d54818a85854ebcb9b5357c7d7c038bf', '1319424199', 'no'),
(218, 0, '_transient_feed_d54818a85854ebcb9b5357c7d7c038bf', 'a:4:{s:5:"child";a:1:{s:0:"";a:1:{s:3:"rss";a:1:{i:0;a:6:{s:4:"data";s:4:"\n \n";s:7:"attribs";a:1:{s:0:"";a:1:{s:7:"version";s:3:"2.0";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:1:{s:0:"";a:1:{s:7:"channel";a:1:{i:0;a:6:{s:4:"data";s:33:"\n \n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:3:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:54:"link:http://localhost/instaldeco/ - Google Blog Search";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:91:"http://www.google.com/search?ie=utf-8&q=link:http://localhost/instaldeco/&tbm=blg&tbs=sbd:1";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:87:"Your search - <b>link:http://localhost/instaldeco/</b> - did not match any documents. ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:36:"http://a9.com/-/spec/opensearch/1.1/";a:3:{s:12:"totalResults";a:1:{i:0;a:5:{s:4:"data";s:1:"0";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:10:"startIndex";a:1:{i:0;a:5:{s:4:"data";s:1:"1";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:12:"itemsPerPage";a:1:{i:0;a:5:{s:4:"data";s:2:"10";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}}}}}}}}s:4:"type";i:128;s:7:"headers";a:8:{s:12:"content-type";s:28:"text/xml; charset=ISO-8859-1";s:4:"date";s:29:"Sun, 23 Oct 2011 14:43:18 GMT";s:7:"expires";s:2:"-1";s:13:"cache-control";s:18:"private, max-age=0";s:10:"set-cookie";a:2:{i:0;s:143:"PREF=ID=7c6094bfd0e001f0:FF=0:TM=1319380998:LM=1319380999:S=o93sJ-bIZ6qKGYhf; expires=Tue, 22-Oct-2013 14:43:19 GMT; path=/; domain=.google.com";i:1;s:212:"NID=52=fBUXJDX5XoNYTlmm_u5WsXhkHVY7No-kV7TGOlcuNv9wHsK2W2BXQ8H8nczaHDgFe3UI9x7Q-L_hV7q6ySwYeUNru1nCGgH8PlBBTBZX5JgHYf6tl3bOy-0GjdmKIAdC; expires=Mon, 23-Apr-2012 14:43:19 GMT; path=/; domain=.google.com; HttpOnly";}s:6:"server";s:3:"gws";s:16:"x-xss-protection";s:13:"1; mode=block";s:15:"x-frame-options";s:10:"SAMEORIGIN";}s:5:"build";s:14:"20090627192103";}', 'no'),
(223, 0, '_transient_timeout_feed_ac0b00fe65abe10e0c5b588f3ed8c7ca', '1319424200', 'no');
INSERT INTO `wp_options` (`option_id`, `blog_id`, `option_name`, `option_value`, `autoload`) VALUES
(224, 0, '_transient_feed_ac0b00fe65abe10e0c5b588f3ed8c7ca', 'a:4:{s:5:"child";a:1:{s:0:"";a:1:{s:3:"rss";a:1:{i:0;a:6:{s:4:"data";s:3:"\n\n\n";s:7:"attribs";a:1:{s:0:"";a:1:{s:7:"version";s:3:"2.0";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:1:{s:0:"";a:1:{s:7:"channel";a:1:{i:0;a:6:{s:4:"data";s:50:"\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:3:{s:0:"";a:7:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:14:"WordPress News";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:25:"http://wordpress.org/news";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:14:"WordPress News";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:13:"lastBuildDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Thu, 20 Oct 2011 05:20:18 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"language";a:1:{i:0;a:5:{s:4:"data";s:2:"en";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:9:"generator";a:1:{i:0;a:5:{s:4:"data";s:33:"http://wordpress.org/?v=3.3-beta2";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"item";a:10:{i:0;a:6:{s:4:"data";s:41:"\n \n \n \n \n \n \n\n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:5:{s:0:"";a:7:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:20:"WordPress 3.3 Beta 2";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:55:"http://wordpress.org/news/2011/10/wordpress-3-3-beta-2/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:64:"http://wordpress.org/news/2011/10/wordpress-3-3-beta-2/#comments";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Thu, 20 Oct 2011 02:39:28 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"category";a:1:{i:0;a:5:{s:4:"data";s:8:"Releases";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:33:"http://wordpress.org/news/?p=2080";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:344:"Changes since Beta 1: Updated the Blue theme Fixed IE7 and RTL support Improved flyout menu styling and fixed several glitches Finished the Pointers implementation Landed the dashboard Welcome box for new installs Improved contextual help styling Tweaked the admin bar a little more Fixed a bunch of bugs Consult the full change log  for [...]";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:10:"Ryan Boren";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:40:"http://purl.org/rss/1.0/modules/content/";a:1:{s:7:"encoded";a:1:{i:0;a:5:{s:4:"data";s:917:"<p>Changes since Beta 1:</p>\n<ul>\n<li>Updated the Blue theme</li>\n<li>Fixed IE7 and RTL support</li>\n<li>Improved flyout menu styling and fixed several glitches</li>\n<li>Finished the Pointers implementation</li>\n<li>Landed the dashboard Welcome box for new installs</li>\n<li>Improved contextual help styling</li>\n<li>Tweaked the admin bar a little more</li>\n<li>Fixed a bunch of bugs</li>\n</ul>\n<p>Consult the <a href="http://core.trac.wordpress.org/log/trunk/?action=stop_on_copy&amp;mode=stop_on_copy&amp;rev=&amp;stop_rev=18939&amp;limit=100">full change log</a>  for details, and see the <a href="http://wordpress.org/news/2011/10/wordpress-3-3-beta-1/">Beta 1 announcement</a> for information on how to help test Beta 2.</p>\n<blockquote><p>Welcome for the new &#8211;<br />\n3.3 at beta 2.<br />\n(IE7, woo!)</p></blockquote>\n<p>Download <a href="http://wordpress.org/wordpress-3.3-beta2.zip">3.3 Beta 2</a>.</p>\n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:36:"http://wellformedweb.org/CommentAPI/";a:1:{s:10:"commentRss";a:1:{i:0;a:5:{s:4:"data";s:60:"http://wordpress.org/news/2011/10/wordpress-3-3-beta-2/feed/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:38:"http://purl.org/rss/1.0/modules/slash/";a:1:{s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:1:"0";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:1;a:6:{s:4:"data";s:41:"\n \n \n \n \n \n \n\n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:5:{s:0:"";a:7:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:20:"WordPress 3.3 Beta 1";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:55:"http://wordpress.org/news/2011/10/wordpress-3-3-beta-1/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:64:"http://wordpress.org/news/2011/10/wordpress-3-3-beta-1/#comments";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Tue, 11 Oct 2011 00:22:35 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"category";a:1:{i:0;a:5:{s:4:"data";s:8:"Releases";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:33:"http://wordpress.org/news/?p=2071";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:301:"WordPress 3.3 is ready for beta testers. As always, this is software still in development and we dont recommend that you run it on a production site — set up a test site just to play with the new version. If you break it (find a bug), please report it, and if youre a developer, try to [...]";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:10:"Ryan Boren";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:40:"http://purl.org/rss/1.0/modules/content/";a:1:{s:7:"encoded";a:1:{i:0;a:5:{s:4:"data";s:1951:"<p>WordPress 3.3 is ready for beta testers.</p>\n<p>As always, this is software still in development and <strong>we dont recommend that you run it on a production site</strong> — set up a test site just to play with the new version. If you break it (find a bug), please report it, and if youre a developer, try to help us fix it.</p>\n<p>If all goes well, we hope to release WordPress 3.3 by the end of November. The more help we get with testing and fixing bugs, the sooner we will be able to release the final version. If you want to be a beta tester, you should check out the Codex article on <a title="Reporting Bugs for WordPress" href="http://codex.wordpress.org/Reporting_Bugs">how to report bugs</a>.</p>\n<p>Heres some of whats new:</p>\n<ul>\n<li>Media uploader</li>\n<li>Improved admin bar</li>\n<li>Fly out admin menus</li>\n</ul>\n<p>Remember, if you find something you think is a bug, report it! You can bring it up in the <a title="Alpha/Beta Support Forum" href="http://wordpress.org/support/forum/alphabeta">alpha/beta forum</a>, you can email it to the <a title="WP-testers mailing list info page" href="http://lists.automattic.com/mailman/listinfo/wp-testers">wp-testers list</a>, or if youve confirmed that other people are experiencing the same bug, you can report it on the <a title="WordPress Core Trac" href="http://core.trac.wordpress.org/">WordPress Core Trac</a>. (We recommend starting in the forum or on the mailing list.)</p>\n<p>Theme and plugin authors, if you havent been following the 3.3 development cycle, <strong>please start now</strong> so that you can update your themes and plugins to be compatible with the newest version of WordPress.</p>\n<p><a title="Download WordPress 3.3 Beta 1" href="http://wordpress.org/wordpress-3.3-beta1.zip">Download WordPress 3.3 Beta 1</a></p>\n<p>And now, haiku.</p>\n<p>Features almost done&#8230;</p>\n<p>3.3 at Beta 1.</p>\n<p>Test it now &#8212; have fun!</p>\n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:36:"http://wellformedweb.org/CommentAPI/";a:1:{s:10:"commentRss";a:1:{i:0;a:5:{s:4:"data";s:60:"http://wordpress.org/news/2011/10/wordpress-3-3-beta-1/feed/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:38:"http://purl.org/rss/1.0/modules/slash/";a:1:{s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:1:"0";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:2;a:6:{s:4:"data";s:56:"\n \n \n \n \n \n \n \n \n \n \n \n\n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:5:{s:0:"";a:7:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:32:"Software Freedom Day + Hackathon";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:65:"http://wordpress.org/news/2011/09/software-freedom-day-hackathon/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:74:"http://wordpress.org/news/2011/09/software-freedom-day-hackathon/#comments";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Thu, 15 Sep 2011 07:33:56 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"category";a:6:{i:0;a:5:{s:4:"data";s:9:"Community";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}i:1;a:5:{s:4:"data";s:11:"Development";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}i:2;a:5:{s:4:"data";s:6:"Events";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}i:3;a:5:{s:4:"data";s:7:"Testing";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}i:4;a:5:{s:4:"data";s:8:"WordCamp";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}i:5;a:5:{s:4:"data";s:7:"bughunt";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:33:"http://wordpress.org/news/?p=2058";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:359:"Saturday, September 17 is Software Freedom Day. To that end, a few announcements about this weekend&#8217;s hackathon and WordCamp Portland. 3.3 Hackathon WordPress 3.3 is about to hit feature freeze. This means it&#8217;s the last chance to squeeze in features that haven&#8217;t quite been finished, and enhancements and fixes that no one has had time [...]";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:10:"Jane Wells";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:40:"http://purl.org/rss/1.0/modules/content/";a:1:{s:7:"encoded";a:1:{i:0;a:5:{s:4:"data";s:3772:"<p>Saturday, September 17 is <a href="http://softwarefreedomday.org/">Software Freedom Day</a>. To that end, a few announcements about this weekend&#8217;s hackathon and <a href="2011.portland.wordcamp.org">WordCamp Portland</a>.</p>\n<h3>3.3 Hackathon</h3>\n<p>WordPress 3.3 is about to hit feature freeze. This means it&#8217;s the last chance to squeeze in features that haven&#8217;t quite been finished, and enhancements and fixes that no one has had time to address yet. Around this time, there are often dozens of tickets that have patches, but the patches have not been tested enough to be committed to core. Then the contributors who worked hard on the patches are disappointed that their code doesn&#8217;t make it into the current release. You can help us prevent this!</p>\n<p>This weekend, we&#8217;ll be running a <a href="http://core.trac.wordpress.org/report/13">has-patch needs-testing marathon</a> for the 3.3 milestone. Basically, we&#8217;re looking for people who can help test patches and/or refresh patches that need updating. Lead developers and core contributors will be hanging around in the #wordpress-dev channel on irc.freenode.net to answer questions as needed, and will be committing patches as they get enough verification. As you test the patches, report your findings on the trac tickets in question. If all developers who make a living working with WordPress helped out for even an hour or two this weekend, we could clear the 200 tickets or so that are in this situation. To make it fun, why not get together with other WordPress devs and have an in-person hackathon meetup?</p>\n<h3>WordCamp Portland</h3>\n<p>At WordCamp Portland this weekend, some of the WordPress core team will be in attendance, including me, Nacin, and Koop. In addition to giving presentations and participating in the unconference sessions, we&#8217;ll be involved with a couple of other cool things at WCPDX:</p>\n<ul>\n<li><strong>Hacker Room.</strong> There will be room set aside for people to work on core bugs and features slated for the 3.3 release. Hopefully PDX developers will hang out in here some of the time helping with the marathon.</li>\n<li><strong>Welcome Free Software Projects!</strong> Normally WordCamps are 100% focused on WordPress, but in light of Software Freedom Day, the WC PDX organizers, in conjunction with the WordPress Foundation, would like to extend an invitation to all free software projects to participate in WordCamp Portland. There are a couple of rooms set aside that can be used for unconference sessions and/or hacker rooms for other projects. It would be great to have local representatives from a bunch of projects there &#8212; almost a micro version of OS Bridge or OSCON &#8212; to maximize the free software love and cross-pollinate ideas. Developers from other projects are also welcome in the WP hackathon room if they&#8217;d like to pitch in. Saturday will also feature the Software Freedom Day Happy Hour at the end of sessions. For more information or to get your project involved, contact the event organizers via the <a href="http://2011.portland.wordcamp.org/">WordCamp Portland website</a> or email support at wordcamp dot org.</li>\n<li><strong>Usability Testing of 3.3 Alpha.</strong> As mentioned, we&#8217;re about to hit freeze, so we&#8217;ll be giving WordCamp Portland attendees a sneak peek at 3.3, seeing how they adjust to the new features, and getting feedback to help us with our last round of fixes before we get to Beta. There will be a signup sheet to participate.</li>\n</ul>\n<p>So, if you live it the Portland/Seattle area and haven&#8217;t already bought a ticket to attend WordCamp Portland, hurry up, as it&#8217;s going to be a great celebration of Software Freedom Day and WordPress.</p>\n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:36:"http://wellformedweb.org/CommentAPI/";a:1:{s:10:"commentRss";a:1:{i:0;a:5:{s:4:"data";s:70:"http://wordpress.org/news/2011/09/software-freedom-day-hackathon/feed/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:38:"http://purl.org/rss/1.0/modules/slash/";a:1:{s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:1:"0";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:3;a:6:{s:4:"data";s:47:"\n \n \n \n \n \n \n \n \n\n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:5:{s:0:"";a:7:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:23:"A Tale of Two WordCamps";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:58:"http://wordpress.org/news/2011/09/a-tale-of-two-wordcamps/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:67:"http://wordpress.org/news/2011/09/a-tale-of-two-wordcamps/#comments";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Wed, 14 Sep 2011 21:17:08 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"category";a:3:{i:0;a:5:{s:4:"data";s:9:"Community";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}i:1;a:5:{s:4:"data";s:6:"Events";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}i:2;a:5:{s:4:"data";s:8:"WordCamp";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:33:"http://wordpress.org/news/?p=2057";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:380:"This coming weekend, two WordCamps will be going on simultaneously &#8212; yep, it&#8217;s WordCamp season again! This weekend will be the first of many this autumn with multiple WordCamps. Tomorrow (not quite the weekend but close enough) is WordCamp Cape Town, and then this weekend, first-time WordCamp Albuquerque coincides with 4-time returning champ WordCamp Portland, [...]";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:10:"Jane Wells";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:40:"http://purl.org/rss/1.0/modules/content/";a:1:{s:7:"encoded";a:1:{i:0;a:5:{s:4:"data";s:3683:"<p>This coming weekend, two WordCamps will be going on simultaneously &#8212; yep, it&#8217;s <a href="http://wordcamp.org">WordCamp</a> season again! This weekend will be the first of many this autumn with multiple WordCamps. Tomorrow (not quite the weekend but close enough) is <a href="http://2011.capetown.wordcamp.org/">WordCamp Cape Town</a>, and then this weekend, first-time <a href="http://2011.albuquerque.wordcamp.org/">WordCamp Albuquerque</a> coincides with 4-time returning champ <a title="WCPDX" href="http://2011.portland.wordcamp.org">WordCamp Portland</a>, a cool juxtaposition of a more established local community with one that is just getting started. If you&#8217;re anywhere near the Portland area, you should try to attend. The <a title="WordPress Foundation" href="http://wordpressfoundation.org/">WordPress Foundation</a> will be sponsoring some special activities around <a href="http://softwarefreedomday.org/">Software Freedom Day</a>, and some members of the core team (me, Nacin, Koop) will be there.</p>\n<p>Is there a WordCamp coming up near you? Let&#8217;s find out!</p>\n<p>Sep 15: <a href="http://2011.capetown.wordcamp.org/">WordCamp Cape Town</a> <em>Cape Town, South Africa</em></p>\n<p>Sep 16-18: <a href="http://2011.albuquerque.wordcamp.org/">WordCamp Albuquerque</a> <em>Albuquerque, NM</em></p>\n<p>Sep 17-18: <a href="http://2011.portland.wordcamp.org/">WordCamp Portland</a> <em>Portland, OR</em></p>\n<p>Sep 24: <a href="http://2011.lisboa.wordcamp.org/">WordCamp Lisboa</a> <em>Lisboa, Portugal</em></p>\n<p>Sep 24: <a href="http://wordcamp.de/">WordCamp Germany</a> <em>Koln, Germany</em></p>\n<p>Sep 25: <a href="http://2011.sofia.wordcamp.org/">WordCamp Sofia</a> <em>Sofia, Bulgaria</em></p>\n<p>Oct 1: <a href="http://www.wordcamplouisville2011.org/">WordCamp Louisville</a> <em>Louisville, Kentucky</em></p>\n<p>Oct 8-9: <a href="http://2011.sevilla.wordcamp.org/">WordCamp Sevilla</a> <em>Seville, Spain</em></p>\n<div>\n<p>Oct 15-16: <a href="http://2011.jabalpur.wordcamp.org/">WordCamp Jabalpur</a> <em>Jabalpur, India</em></p>\n<p>Nov 5-6: <a href="http://2011.toronto.wordcamp.org/">WordCamp Toronto</a> <em>Toronto, ON</em></p>\n<p>Nov 5-6: <a href="http://2011.goldcoast.wordcamp.org/">WordCamp Gold Coast</a> <em>Gold Coast, Australia</em></p>\n<p>Nov 5-6: <a href="http://2011.philly.wordcamp.org/">WordCamp Philly</a> <em>Philadelphia, PA</em></p>\n<p>Nov 12: <a href="http://2011.caguas.wordcamp.org/">WordCamp Caguas</a> <em>Caguas, Puerto Rico</em></p>\n<p>Nov 12-13: <a href="http://2011.kenya.wordcamp.org/">WordCamp Kenya</a> <em>Nairobi, Kenya</em></p>\n<p>Nov 12-13: <a href="http://2011.detroit.wordcamp.org/">WordCamp Detroit</a> <em>Detroit, MI</em></p>\n<p>Nov 12: <a href="http://2011.richmond.wordcamp.org/">WordCamp Richmond</a> <em>Richmond, VA</em></p>\n<p>Nov 12-13: <a href="http://2011.denmark.wordcamp.org/">WordCamp Denmark</a> <em>Copenhagen, Denmark</em></p>\n<p>Dec 17: <a href="http://2011.vegas.wordcamp.org/">WordCamp Las Vegas</a> <em>Las Vegas, NV</em></p>\n<p>Feb 3-4 <a href="http://2012.atlanta.wordcamp.org/">WordCamp Atlanta</a> <em>Atlanta, GA</em></p>\n<p>There are also a number of WordCamps still in the early organizing stage that do not yet have dates set. These include: Ft. Wayne, IN; London, UK; Edmonton, Canada; Baku, Azerbaijan; Oslo, Norway; Sacramento, CA;  Birmingham, Alabama; Pittsburgh, PA; Omaha, NE; Orlando, FL; Tokyo, Japan; Paris, France; Zagreb, Croatia; Nashville, TN, Washington DC, Baltimore, MD; Bangkok, Thailand; Istanbul, Turkey.</p>\n<p>Hope to see you soon at a WordCamp near you!</p>\n<p><em><br />\n</em></p>\n</div>\n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:36:"http://wellformedweb.org/CommentAPI/";a:1:{s:10:"commentRss";a:1:{i:0;a:5:{s:4:"data";s:63:"http://wordpress.org/news/2011/09/a-tale-of-two-wordcamps/feed/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:38:"http://purl.org/rss/1.0/modules/slash/";a:1:{s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:1:"0";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:4;a:6:{s:4:"data";s:47:"\n \n \n \n \n \n \n \n \n\n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:5:{s:0:"";a:7:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:35:"Vote for WordPress Sessions at SXSW";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:58:"http://wordpress.org/news/2011/09/vote-for-wordpress-sxsw/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:67:"http://wordpress.org/news/2011/09/vote-for-wordpress-sxsw/#comments";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Fri, 02 Sep 2011 04:45:03 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"category";a:3:{i:0;a:5:{s:4:"data";s:9:"Community";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}i:1;a:5:{s:4:"data";s:11:"conferences";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}i:2;a:5:{s:4:"data";s:4:"sxsw";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:33:"http://wordpress.org/news/?p=2036";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:302:"Each year, members of the web community from around the world submit session proposals to the South by Southwest Interactive conference, an event that played a role in the birth of WordPress. We head to Austin every year, do a BBQ or throw a party, but despite the fact that almost 15% of the web [...]";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:10:"Jane Wells";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:40:"http://purl.org/rss/1.0/modules/content/";a:1:{s:7:"encoded";a:1:{i:0;a:5:{s:4:"data";s:6289:"<p>Each year, members of the web community from around the world submit session proposals to the <a href="http://sxsw.com/interactive">South by Southwest Interactive</a> conference, an event that played a role in the birth of WordPress. We head to Austin every year, do a BBQ or throw a party, but despite the fact that almost 15% of the web is powered by WordPress, there aren&#8217;t many sessions related to WordPress on the schedule. This year, more than 3200 proposals are competing for about 350 slots, and who has time to read through, vote, and comment on 3200 proposals? Out of those 3200+ proposals, only 8 relate to WordPress! I thought it would be handy to post a guide to the WordPressy proposals for SXSWi 2012, so that if you would like to check them out and vote on them it woud be fast and easy. Leaving a comment in addition to your thumbs up/down vote helps the staff and advisory board know which sessions are likely to have an interested audience, so make sure to leave comments on the sessions you think would be cool (remember, they also publish the podcasts afterward). Voting ends in about 24 hours, so if you want to weigh in, now&#8217;s the time. Thanks for helping spread the word!</p>\n<h4>WordPress-specific Sessions</h4>\n<p>This list is based on searching for &#8220;WordPress&#8221; in proposal titles, descriptions, and tags. Clicking the proposal title will take you to that page in the SXSW PanelPicker, where you can vote and comment. Names that are linked go to those people&#8217;s WordPress.org profiles.</p>\n<h3><a href="http://panelpicker.sxsw.com/ideas/view/9240">Blog Wars: Movable Type vs. WordPress Revisited</a></h3>\n<p><a href="http://profiles.wordpress.org/users/markjaquith/">Mark Jaquith</a>  WordPress Lead Developer<br />\nByrne Reese  Endevver<br />\nThese days people tend to pit us against Drupal rather than Movable Type, but looking back at the early rivalry and learning from the positive and negative aspects of it would be cool as we position ourselves in competition with new platforms. I like seeing Mark present at conferences, he always prepares well and does a good job. Though I&#8217;m guessing these guys will be all friendly and collaborative, I might take a nostalgia hit and imagine them in a fistfight just to liven things up. <img src=''http://wordpress.org/news/wp-includes/images/smilies/icon_smile.gif'' alt='':)'' class=''wp-smiley'' /> </p>\n<h3><a href="http://panelpicker.sxsw.com/ideas/view/13045">Designing WordPress</a></h3>\n<p><a href="http://profiles.wordpress.org/users/jane/">Jane Wells</a>  WordPress User Experience Lead<br />\nDisclosure: This is me! Balancing the desire for truly open and participatory design processes against the often more efficient and consistent results of a more curated design method is something we&#8217;ve been working on for the past year or so in WordPress core. I&#8217;d use the design process for several recent core features (like the UI refresh and internal linking) to illustrate the issues we&#8217;ve faced and the results we&#8217;ve achieved. </p>\n<h3><a href="http://panelpicker.sxsw.com/ideas/view/13800">Open Source Social Networking</a></h3>\n<p><a href="http://profiles.wordpress.org/users/johnjamesjacoby">John James Jacoby</a>  <a href="http://buddypress.org/">BuddyPress</a> Lead Developer<br />\nJ-trip (as John James Jacoby is fondly known by many in the community) is the lead dev for BuddyPress and the new bbPress plugin. He&#8217;s proposing a panel discussion among reps from several open source social network platforms. It&#8217;s always cool hearing more about BuddyPress, but it would be even cooler to figure out how it fits in with and/or stacks up against other platforms.</p>\n<h3><a href="http://panelpicker.sxsw.com/ideas/view/11333">Welcome to the Chaos the Distributed Workplace</a></h3>\n<p><a href="http://profiles.wordpress.org/users/nbachiyski">Nikolay Bachiyski</a>  WordPress Core Developer, <a href="http://blog.glotpress.org/">GlotPress</a> Lead Developer<br />\nLori McLeese  Automattic<br />\nThis one isn&#8217;t about WordPress per se, though using WordPress as a communication tool is one of the topics and Automattic is obviously a WordPress-based business. The main reason I think people should vote for this session is because Nikolay, core committing developer for internationalization and lead developer of GlotPress, our translation tool, is an awesome speaker. He is hysterically funny when he presents. I would bet money this presentation will involve a bear.</p>\n<h3><a href="http://panelpicker.sxsw.com/ideas/view/13304">Deploying WordPress: From Zero to Ninja</a></h3>\n<p><a href="http://profiles.wordpress.org/users/grantnorwood/">Grant Norwood</a>  Michael &amp; Susan Dell Foundation<br />\nWhen Mark Jaquith says a presentation on security and deployment is on his short list, I&#8217;m impressed. (He said it in the comments on the proposal.)</p>\n<h3><a href="http://panelpicker.sxsw.com/ideas/view/10221">Beyond the Theme &#8211; Using WordPress as an API</a></h3>\n<p><a href="http://profiles.wordpress.org/users/rocketwood">David Tufts</a>  kickpress.org<br />\nObviously a hot topic in the community right now, seems like a no-brainer to choose.</p>\n<h3><a href="http://panelpicker.sxsw.com/ideas/view/11653">Local Government Online: WordPress Beats Drupal</a></h3>\n<p>Jase Wilson  Luminopolis<br />\nThere was a presentation at WordCamp San Francisco this month on moving a news site from Drupal to WordPress. More and more the question comes up of which tool is best for various situations and requirements. And obviously getting government to use more open source software would be a cost-saver in these tough economic times.</p>\n<h3><a href="http://panelpicker.sxsw.com/ideas/view/9818">WordPress website built live in 45 minutes</a></h3>\n<p>Glenn Todd  Dvize Creative<br />\nLive walkthroughs are always fun, and help prove to the uninitiated how easy WordPress can be. </p>\n<p>So: go vote on these session proposals and help spread the WordPress love. If you know of any WordPress-related proposals that didn&#8217;t come up in my search, let me know in a comment and I&#8217;ll update this post. Thanks, and maybe we&#8217;ll see you in Austin in March!</p>\n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:36:"http://wellformedweb.org/CommentAPI/";a:1:{s:10:"commentRss";a:1:{i:0;a:5:{s:4:"data";s:63:"http://wordpress.org/news/2011/09/vote-for-wordpress-sxsw/feed/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:38:"http://purl.org/rss/1.0/modules/slash/";a:1:{s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:1:"0";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:5;a:6:{s:4:"data";s:44:"\n \n \n \n \n \n \n \n\n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:5:{s:0:"";a:7:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:17:"State of the Word";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:52:"http://wordpress.org/news/2011/08/state-of-the-word/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:61:"http://wordpress.org/news/2011/08/state-of-the-word/#comments";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Fri, 19 Aug 2011 15:32:04 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"category";a:2:{i:0;a:5:{s:4:"data";s:9:"Community";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}i:1;a:5:{s:4:"data";s:4:"Meta";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:33:"http://wordpress.org/news/?p=2019";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:307:"This has been an exciting year for WordPress. We&#8217;ve grown to power 14.7% of the top million websites in the world, up from 8.5%, and the latest data show 22 out of every 100 new active domains in the US are running WordPress. We also conducted our first ever user and developer survey, which got [...]";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:14:"Matt Mullenweg";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:40:"http://purl.org/rss/1.0/modules/content/";a:1:{s:7:"encoded";a:1:{i:0;a:5:{s:4:"data";s:2043:"<p>This has been an exciting year for WordPress. We&#8217;ve grown to power <strong>14.7% of the top million websites in the world</strong>, up from 8.5%, and the latest data show <strong>22 out of every 100 new active domains in the US are running WordPress</strong>.</p>\n<p>We also conducted our first ever user and developer survey, which got over 18,000 responses from all over the world:</p>\n<p><img src="http://michaelpick.files.wordpress.com/2011/08/sotw2011-final-046-0012.jpg?w=690" alt="" /></p>\n<p>We found a few interesting tidbits from the survey responses already, including that <strong>6,800 self-employed respondents were responsible for over 170,000 sites personally</strong>, and charged a median hourly rate of $50. In tough economic times, it&#8217;s heartening to see Open Source creating so many jobs. (If each site took only 3 hours to make, that&#8217;s $29.5M of work at the average hourly rate.)</p>\n<p>I talk about this data, and much more, in my State of the Word address which you <a href="http://wordpress.tv/2011/08/14/matt-mullenweg-state-of-the-word-2011/">can watch here</a>:</p>\n<p><embed src="http://v.wordpress.com/9ujY295r" type="application/x-shockwave-flash" width="600" height="337" allowscriptaccess="always" allowfullscreen="true" wmode="transparent"></embed></p>\n<p>We know there&#8217;s more good stuff hidden in there and we&#8217;re open sourcing and releasing the raw information behind it. If you&#8217;re a researcher and would like to dig into the anonymized survey data yourself, <a href="http://s.wordpress.org/resources/survey/wp2011-survey.tar.gz">you can grab it here</a>. (Careful, it&#8217;s a 9MB CSV.)</p>\n<p>There has never been a better time to be part of the WordPress community, and I want to thank each and every one of you for making it such a wonderful place to be. Now it&#8217;s time to get back to work, there&#8217;s still 85.3% of the web that needs help. <img src=''http://wordpress.org/news/wp-includes/images/smilies/icon_smile.gif'' alt='':)'' class=''wp-smiley'' /> </p>\n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:36:"http://wellformedweb.org/CommentAPI/";a:1:{s:10:"commentRss";a:1:{i:0;a:5:{s:4:"data";s:57:"http://wordpress.org/news/2011/08/state-of-the-word/feed/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:38:"http://purl.org/rss/1.0/modules/slash/";a:1:{s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:1:"0";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:6;a:6:{s:4:"data";s:44:"\n \n \n \n \n \n \n \n\n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:5:{s:0:"";a:7:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:23:"WordCamp SF Livestream!";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:57:"http://wordpress.org/news/2011/08/wordcamp-sf-livestream/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:66:"http://wordpress.org/news/2011/08/wordcamp-sf-livestream/#comments";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Fri, 12 Aug 2011 08:38:03 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"category";a:2:{i:0;a:5:{s:4:"data";s:9:"Community";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}i:1;a:5:{s:4:"data";s:8:"WordCamp";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:33:"http://wordpress.org/news/?p=2012";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:342:"The annual WordPress conference, WordCamp San Francisco, starts in fewer than 8 hours. The sold out event &#8212; three full days of programming for bloggers, developers, theme designers, and professional WordPress users &#8212; will be shared with more than 1,000 ticket holders from near and far. If you are one of the many people who [...]";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:10:"Jane Wells";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:40:"http://purl.org/rss/1.0/modules/content/";a:1:{s:7:"encoded";a:1:{i:0;a:5:{s:4:"data";s:2414:"<p>The annual WordPress conference, <a href="http://2011.sf.wordcamp.org/">WordCamp San Francisco</a>, starts in fewer than 8 hours. The sold out event &#8212; three full days of programming for bloggers, developers, theme designers, and professional WordPress users &#8212; will be shared with more than 1,000 ticket holders from near and far. If you are one of the many people who wanted to come but couldn&#8217;t swing the time off or travel expenses, you should <a href="http://2011.sf.wordcamp.org/get-tickets/">check out the livestream tickets that are for sale</a>. You can even get <a href="http://2011.sf.wordcamp.org/2011/08/11/the-swag-its-awesome/">a conference t-shirt</a> to commemorate your &#8220;virtual&#8221; participation.</p>\n<p><a href="http://2011.sf.wordcamp.org/speakers/">Speakers</a> include members of the WordPress core development team, leaders of WordPress-based businesses, hobbyists, and everything in between. Take a look at the schedules for <a href="http://2011.sf.wordcamp.org/program/friday-mission-bay/">Friday</a>, <a href="http://2011.sf.wordcamp.org/program/saturday-mission-bay/">Saturday</a>, and <a href="http://2011.sf.wordcamp.org/program/content-creators-sunday-mission-bay/">Sunday</a>, and if you see something that sounds interesting (how could you not?), buy a livestream ticket. The stream will start at 16:00 UTC on Friday, August 12.</p>\n<h3>Viewing Parties</h3>\n<p>Celebrate your own local WordPress community by calling together some friends and having a livestream viewing party. In the case of <a href="http://wordpress.meetup.com/">regular WordPress meetup groups</a>, if you do a viewing party we will have a process after #WCSF is over whereby attendees will be eligible to buy conference shirts if their meetup group organizer confirms viewing party attendance. </p>\n<p>Videos from all the recorded sessions will be posted for free on <a href="http://WordPress.tv">WordPress.tv</a> within a couple of weeks, but watching the livestream allows you to support <a href="http://wordcamp.org">WordCamp</a> while providing instant gratification. And let&#8217;s face it: the best part is that you&#8217;ll know what the heck people are talking about on Twitter using the hashtag <a href="https://twitter.com/#!/search/%23wcsf">#wcsf</a>. <img src=''http://wordpress.org/news/wp-includes/images/smilies/icon_smile.gif'' alt='':)'' class=''wp-smiley'' /> </p>\n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:36:"http://wellformedweb.org/CommentAPI/";a:1:{s:10:"commentRss";a:1:{i:0;a:5:{s:4:"data";s:62:"http://wordpress.org/news/2011/08/wordcamp-sf-livestream/feed/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:38:"http://purl.org/rss/1.0/modules/slash/";a:1:{s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:1:"0";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:7;a:6:{s:4:"data";s:44:"\n \n \n \n \n \n \n \n\n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:5:{s:0:"";a:7:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:23:"Best WordCamp Speakers?";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:57:"http://wordpress.org/news/2011/07/best-wordcamp-speakers/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:66:"http://wordpress.org/news/2011/07/best-wordcamp-speakers/#comments";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Sat, 16 Jul 2011 21:32:34 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"category";a:2:{i:0;a:5:{s:4:"data";s:9:"Community";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}i:1;a:5:{s:4:"data";s:8:"WordCamp";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:33:"http://wordpress.org/news/?p=2000";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:357:"As we complete speaker selection for the annual WordPress conference (a.k.a. WordCamp San Francisco), it&#8217;s clear that even though there were more than 200 speaker applications, many great WordCamp speakers did not apply. No fear! We will seek them out to make sure that WordCamp SF has a fantastic lineup, including people who didn&#8217;t apply [...]";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:10:"Jane Wells";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:40:"http://purl.org/rss/1.0/modules/content/";a:1:{s:7:"encoded";a:1:{i:0;a:5:{s:4:"data";s:1600:"<p>As we complete speaker selection for <a href="http://2011.sf.wordcamp.org/">the annual WordPress conference (a.k.a. WordCamp San Francisco)</a>, it&#8217;s clear that even though there were more than 200 speaker applications, many great WordCamp speakers did not apply. No fear! We will seek them out to make sure that WordCamp SF has a fantastic lineup, including people who didn&#8217;t apply (too shy? who knows?) but have wowed local crowds at previous WordCamps.</p>\n<p>This is about as basic a survey as there is. Tell us the three best WordCamp presentations you saw in the past year or so. For each, give the presenters name, the topic (exact title not necessary) and which WordCamp it was at (important).</p>\n<p>Example:</p>\n<p>1. Joe Shmoe, Using the Loop, WordCamp Sheboygan 2011<br />\n2. Jane Doe, Top 5 WordPress Plugins, WordCamp La Mancha 2010<br />\n3. Lee Smith, Your First Core Patch, WordCamp Atlantis 2011</p>\n<p>That&#8217;s it. We don&#8217;t need your name or any info at all, just your three top speaker votes. We&#8217;ll take a look at the people with the most votes, and consider them for WCSF if they&#8217;re not already in the application pool. Thanks for your help in making this year&#8217;s conference better and more WordPressy than ever. <img src=''http://wordpress.org/news/wp-includes/images/smilies/icon_smile.gif'' alt='':)'' class=''wp-smiley'' /> </p>\n<p><a href="http://wordcampcentral.polldaddy.com/s/best-2010-2011-wordcamp-speakers-so-far">Vote Now!</a></p>\n<p>P.S. <a href="http://2011.sf.wordcamp.org/get-tickets/">Have you bought your tickets yet</a>?</p>\n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:36:"http://wellformedweb.org/CommentAPI/";a:1:{s:10:"commentRss";a:1:{i:0;a:5:{s:4:"data";s:62:"http://wordpress.org/news/2011/07/best-wordcamp-speakers/feed/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:38:"http://purl.org/rss/1.0/modules/slash/";a:1:{s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:1:"0";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:8;a:6:{s:4:"data";s:41:"\n \n \n \n \n \n \n\n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:5:{s:0:"";a:7:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:15:"WordPress 3.2.1";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:50:"http://wordpress.org/news/2011/07/wordpress-3-2-1/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:59:"http://wordpress.org/news/2011/07/wordpress-3-2-1/#comments";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Tue, 12 Jul 2011 19:49:06 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"category";a:1:{i:0;a:5:{s:4:"data";s:8:"Releases";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:33:"http://wordpress.org/news/?p=1982";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:358:"After more than a million downloads of WordPress 3.2, we&#8217;re now releasing WordPress 3.2.1 into the wild. This maintenance release fixes a server incompatibility related to JSON that&#8217;s unfortunately affected some of you, as well as a few other fixes in the new dashboard design and the Twenty Eleven theme. If you&#8217;ve already updated to [...]";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:12:"Andrew Nacin";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:40:"http://purl.org/rss/1.0/modules/content/";a:1:{s:7:"encoded";a:1:{i:0;a:5:{s:4:"data";s:1129:"<p>After more than a million downloads of WordPress 3.2, we&#8217;re now releasing <a href="http://wordpress.org/download/">WordPress 3.2.1</a> into the wild. This maintenance release fixes a server incompatibility related to JSON that&#8217;s unfortunately affected some of you, as well as a few other fixes in the new dashboard design and the Twenty Eleven theme. If you&#8217;ve already updated to 3.2, then this update will be even faster than usual, thanks to the new feature in 3.2 that only updates files that have been changed, rather than replacing all the files in your installation.</p>\n<p>For a full list of fixes, view the <a href="http://core.trac.wordpress.org/log/branches/3.2/?rev=18436&amp;stop_rev=18398">changelog</a> the list of <a href="http://core.trac.wordpress.org/query?status=closed&amp;group=resolution&amp;milestone=3.2.1">tickets</a>. Our release haiku:</p>\n<p>JSON, the admin<br />\nA little bit tidier<br />\nEdge cases covered</p>\n<p><a href="http://wordpress.org/download/"><strong>Download 3.2.1</strong></a> or update now from the Dashboard → Updates menu in your site&#8217;s admin area.</p>\n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:36:"http://wellformedweb.org/CommentAPI/";a:1:{s:10:"commentRss";a:1:{i:0;a:5:{s:4:"data";s:55:"http://wordpress.org/news/2011/07/wordpress-3-2-1/feed/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:38:"http://purl.org/rss/1.0/modules/slash/";a:1:{s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:1:"0";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:9;a:6:{s:4:"data";s:41:"\n \n \n \n \n \n \n\n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:5:{s:0:"";a:7:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:27:"WordPress 3.2 now available";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:43:"http://wordpress.org/news/2011/07/gershwin/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:52:"http://wordpress.org/news/2011/07/gershwin/#comments";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Mon, 04 Jul 2011 21:07:06 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"category";a:1:{i:0;a:5:{s:4:"data";s:8:"Releases";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:33:"http://wordpress.org/news/?p=1924";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:329:"Here in the U.S. we are observing Independence Day, and I can&#8217;t think of a more fitting way to mark a day that celebrates freedom than by releasing more free software to help democratize publishing around the globe. I&#8217;m excited to announce that WordPress 3.2 is now available to the world, both as an update in [...]";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:14:"Matt Mullenweg";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:40:"http://purl.org/rss/1.0/modules/content/";a:1:{s:7:"encoded";a:1:{i:0;a:5:{s:4:"data";s:14127:"<p>Here in the U.S. we are observing Independence Day, and I can&#8217;t think of a more fitting way to mark a day that celebrates freedom than by releasing more free software to help democratize publishing around the globe. I&#8217;m excited to announce that WordPress 3.2 is now available to the world, both as an update in your dashboard and a <a href="http://wordpress.org/">download on WordPress.org</a>. Version 3.2 is our fifteenth major release of WordPress and comes just four months after 3.1 (which coincidentally just passed the 15 million download mark this morning), reflecting the growing speed of development in the WordPress community and our dedication to getting improvements in your hands as soon as possible. We&#8217;re dedicating this release to noted composer and pianist <a href="http://en.wikipedia.org/wiki/George_Gershwin">George Gershwin</a>.</p>\n<p><em>Before we get to the release, in anticipation of the State of the Word speech at the upcoming <a href="http://2011.sf.wordcamp.org/">WordCamp San Francisco</a> (the annual WordPress conference) we&#8217;re doing a survey or census of the WordPress world. If you have a moment, <a href="http://wpsurvey.polldaddy.com/s/wp-2011">please fill out this survey</a> and we&#8217;ll share what <em>we learn by </em>publishing the aggregate results in August.</em></p>\n<p>The focus for this release was <strong>making WordPress faster and lighter</strong>. The first thing you&#8217;ll notice when you log in to 3.2 is a <strong>refreshed dashboard design</strong> that tightens the typography, design, and code behind the admin. (Rhapsody in Grey?) If you&#8217;re starting a new blog, you&#8217;ll also appreciate the fully HTML5 <strong>new Twenty Eleven theme</strong>, fulfilling our plan to replace the default theme every year. Start writing your first post in our redesigned post editor and venture to the full-screen button in the editing toolbar to enter the new <strong>distraction-free writing or zen mode</strong>, my personal favorite feature of the release. All of the widgets, menus, buttons, and interface elements fade away to allow you to compose and edit your thoughts in a completely clean environment conducive to writing, but when your mouse strays to the top of the screen your most-used shortcuts are right there where you need them. (I like to press F11 to take my browser full-screen, getting rid of even the OS chrome.)</p>\n<p><embed src="http://v.wordpress.com/ac07H291" type="application/x-shockwave-flash" width="600" height="337" allowscriptaccess="always" allowfullscreen="true" wmode="transparent"></embed></p>\n<p>Under the hood there have been a number of improvements, not the least of which is the <strong>streamlining</strong> enabled by our <a href="http://wordpress.org/news/2010/07/eol-for-php4-and-mysql4/">previously announced plan</a> of retiring support for PHP4, older versions of MySQL, and legacy browsers like IE6, which allows us to take advantage of more features enabled by new technologies. The <strong>admin bar</strong> has a few more shortcuts to your most commonly-used actions. On the comment moderation screen, the new <strong>approve &amp; reply</strong> feature speeds up your conversation management. You&#8217;ll notice in your first update after 3.2 that we&#8217;ll only be updating the files that have changed with each new release instead of every file in your WordPress installation, which makes <strong>updates significantly faster on all hosting platforms</strong>. There are also some fun new theme features shown off by Twenty Eleven, like the ability to have multiple <strong>rotating header images</strong> to highlight all of your favorite photos.</p>\n<p>There is way more, like our new freedoms and credits screens (linked from your dashboard footer), so for the full story check out the <a href="http://codex.wordpress.org/Version_3.2">Codex page on 3.2</a> or the <a href="http://core.trac.wordpress.org/milestone/3.2">Trac milestone which includes the 400+ tickets closed in this release</a>.</p>\n<h3>A Community Effort</h3>\n<p>We now finally have a credits page inside of WordPress itself (though a cool revision is coming in 3.3), but for posterity let&#8217;s give a round of applause to these fine folks who contributed to 3.2:</p>\n<p><a href="http://profiles.wordpress.org/users/technosailor">Aaron Brazell</a>, <a href="http://profiles.wordpress.org/users/aaroncampbell">Aaron Campbell</a>, <a href="http://profiles.wordpress.org/users/jorbin">Aaron Jorbin</a>, <a href="http://profiles.wordpress.org/users/kawauso">Adam Harley</a>, <a href="http://profiles.wordpress.org/users/xknown">Alex Concha</a>, <a href="http://profiles.wordpress.org/users/ampt">ampt</a>, <a href="http://profiles.wordpress.org/users/nacin">Andrew Nacin</a>, <a href="http://profiles.wordpress.org/users/azaozz">Andrew Ozz</a>, <a href="http://profiles.wordpress.org/users/andrewryno">andrewryno</a>, <a href="http://profiles.wordpress.org/users/andy">andy</a>, <a href="http://profiles.wordpress.org/users/filosofo">Austin Matzko</a>, <a href="http://profiles.wordpress.org/users/benchapman">BenChapman</a>, <a href="http://profiles.wordpress.org/users/empireoflight">Ben Dunkle</a>, <a href="http://profiles.wordpress.org/users/bluntelk">bluntelk</a>, <a href="http://profiles.wordpress.org/users/boonebgorges">Boone Gorges</a>, <a href="http://profiles.wordpress.org/users/cnorris23">Brandon Allen</a>, <a href="http://profiles.wordpress.org/users/brandonburke">Brandon Burke</a>, <a href="http://profiles.wordpress.org/users/caspie">Caspie</a>, <a href="http://profiles.wordpress.org/users/cfinke">cfinke</a>, <a href="http://profiles.wordpress.org/users/charlesclarkson">charlesclarkson</a>, <a href="http://profiles.wordpress.org/users/chexee">chexee</a>, <a href="http://profiles.wordpress.org/users/coffee2code">coffee2code</a>, <a href="http://profiles.wordpress.org/users/scribu">Cristi Burcă</a>, <a href="http://profiles.wordpress.org/users/daniloercoli">daniloercoli</a>, <a href="http://profiles.wordpress.org/users/koopersmith">Daryl Koopersmith</a>, <a href="http://profiles.wordpress.org/users/dcowgill">David Cowgill</a>, <a href="http://profiles.wordpress.org/users/jdtrower">David Trower</a>, <a href="http://profiles.wordpress.org/users/demetris">demetris</a>, <a href="http://profiles.wordpress.org/users/devinreams">Devin Reams</a>, <a href="http://profiles.wordpress.org/users/dd32">Dion Hulse</a>, <a href="http://profiles.wordpress.org/users/dllh">dllh</a>, <a href="http://profiles.wordpress.org/users/ocean90">Dominik Schilling</a>, <a href="http://profiles.wordpress.org/users/dougwrites">Doug Provencio</a>, <a href="http://profiles.wordpress.org/users/dvwallin">dvwallin</a>, <a href="http://profiles.wordpress.org/users/cyberhobo">Dylan Kuhn</a>, <a href="http://profiles.wordpress.org/users/ericmann">Eric Mann</a>, <a href="http://profiles.wordpress.org/users/fabifott">fabifott</a>, <a href="http://profiles.wordpress.org/users/peaceablewhale">Franklin Tse</a>, <a href="http://profiles.wordpress.org/users/frumph">Frumph</a>, <a href="http://profiles.wordpress.org/users/garyc40">garyc40</a>, <a href="http://profiles.wordpress.org/users/blepoxp">Glenn Ansley</a>, <a href="http://profiles.wordpress.org/users/guyn">guyn</a>, <a href="http://profiles.wordpress.org/users/hakre">hakre</a>, <a href="http://profiles.wordpress.org/users/hebbet">hebbet</a>, <a href="http://profiles.wordpress.org/users/helenyhou">Helen Hou-Sandi</a>, <a href="http://profiles.wordpress.org/users/hew">hew</a>, <a href="http://profiles.wordpress.org/users/holizz">holizz</a>, <a href="http://profiles.wordpress.org/users/iandstewart">Ian Stewart</a>, <a href="http://profiles.wordpress.org/users/jacobwg">Jacob Gillespie</a>, <a href="http://profiles.wordpress.org/users/jane">Jane Wells</a>, <a href="http://profiles.wordpress.org/users/jayjdk">Jayjdk</a>, <a href="http://profiles.wordpress.org/users/jfarthing84">Jeff Farthing</a>, <a href="http://profiles.wordpress.org/users/jkudish">Joachim Kudish</a>, <a href="http://profiles.wordpress.org/users/joelhardi">joelhardi</a>, <a href="http://profiles.wordpress.org/users/johnbillion">John Blackbourn</a>, <a href="http://profiles.wordpress.org/users/aldenta">John Ford</a>, <a href="http://profiles.wordpress.org/users/johnjamesjacoby">John James Jacoby</a>, <a href="http://profiles.wordpress.org/users/johnonolan">JohnONolan</a>, <a href="http://profiles.wordpress.org/users/duck_">Jon Cave</a>, <a href="http://profiles.wordpress.org/users/joostdevalk">joostdevalk</a>, <a href="http://profiles.wordpress.org/users/koke">Jorge Bernal</a>, <a href="http://profiles.wordpress.org/users/josephscott">Joseph Scott</a>, <a href="http://profiles.wordpress.org/users/jtsternberg">Justin Sternberg</a>, <a href="http://profiles.wordpress.org/users/greenshady">Justin Tadlock</a>, <a href="http://profiles.wordpress.org/users/kevinb">kevinB</a>, <a href="http://profiles.wordpress.org/users/knutsp">Knut Sparhell</a>, <a href="http://profiles.wordpress.org/users/kovshenin">kovshenin</a>, <a href="http://profiles.wordpress.org/users/tenpura">Kuraishi</a>, <a href="http://profiles.wordpress.org/users/lancewillett">Lance Willett</a>, <a href="http://profiles.wordpress.org/users/linuxologos">linuxologos</a>, <a href="http://profiles.wordpress.org/users/lloydbudd">lloydbudd</a>, <a href="http://profiles.wordpress.org/users/ldebrouwer">Luc De Brouwer</a>, <a href="http://profiles.wordpress.org/users/marcis20">marcis20</a>, <a href="http://profiles.wordpress.org/users/markjaquith">Mark Jaquith</a>, <a href="http://profiles.wordpress.org/users/markmcwilliams">Mark McWilliams</a>, <a href="http://profiles.wordpress.org/users/tfnab">Martin Lormes</a>, <a href="http://profiles.wordpress.org/users/matveb">Matías Ventura</a>, <a href="http://profiles.wordpress.org/users/sivel">Matt Martz</a>, <a href="http://profiles.wordpress.org/users/iammattthomas">Matt Thomas</a>, <a href="http://profiles.wordpress.org/users/mattyrob">MattyRob</a>, <a href="http://profiles.wordpress.org/users/mcepl">mcepl</a>, <a href="http://profiles.wordpress.org/users/mdawaffe">mdawaffe</a>, <a href="http://profiles.wordpress.org/users/mfields">Michael Fields</a>, <a href="http://profiles.wordpress.org/users/michaelh">MichaelH</a>, <a href="http://profiles.wordpress.org/users/michaeltyson">michaeltyson</a>, <a href="http://profiles.wordpress.org/users/dh-shredder">Mike Schroder</a>, <a href="http://profiles.wordpress.org/users/dimadin/">Milan Dinić</a>, <a href="http://profiles.wordpress.org/users/mintindeed">mintindeed</a>, <a href="http://profiles.wordpress.org/users/mitchoyoshitaka">mitchoyoshitaka</a>, <a href="http://profiles.wordpress.org/users/batmoo">Mohammad Jangda</a>, <a href="http://profiles.wordpress.org/users/mrroundhill">mrroundhill</a>, <a href="http://profiles.wordpress.org/users/natecook">natecook</a>, <a href="http://profiles.wordpress.org/users/nathanrice">nathanrice</a>, <a href="http://profiles.wordpress.org/users/niallkennedy">Niall Kennedy</a>, <a href="http://profiles.wordpress.org/users/nickbohle">Nick Bohle</a>, <a href="http://profiles.wordpress.org/users/nbachiyski">Nikolay Bachiyski</a>, <a href="http://profiles.wordpress.org/users/nuxwin">nuxwin</a>, <a href="http://profiles.wordpress.org/users/otto42">Otto</a>, <a href="http://profiles.wordpress.org/users/pavelevap">pavelevap</a>, <a href="http://profiles.wordpress.org/users/petemall">pete.mall</a>, <a href="http://profiles.wordpress.org/users/westi">Peter Westwood</a>, <a href="http://profiles.wordpress.org/users/nprasath002">Prasath Nadarajah</a>, <a href="http://profiles.wordpress.org/users/ptahdunbar">Ptah Dunbar</a>, <a href="http://profiles.wordpress.org/users/bi0xid">Rafael Poveda</a>, <a href="http://profiles.wordpress.org/users/rahe">Rahe</a>, <a href="http://profiles.wordpress.org/users/ramiy">Ramiy</a>, <a href="http://profiles.wordpress.org/users/rasheed">Rasheed Bydousi</a>, <a href="http://profiles.wordpress.org/users/greuben">Reuben Gunday</a>, <a href="http://profiles.wordpress.org/users/miqrogroove">Robert Chapin</a>, <a href="http://profiles.wordpress.org/users/wpmuguru">Ron Rennick</a>, <a href="http://profiles.wordpress.org/users/rosshanney">Ross Hanney</a>, <a href="http://profiles.wordpress.org/users/ryan">Ryan Boren</a>, <a href="http://profiles.wordpress.org/users/ryanimel">Ryan Imel</a>, <a href="http://profiles.wordpress.org/users/zeo">Safirul Alredha</a>, <a href="http://profiles.wordpress.org/users/solarissmoke">Samir Shah</a>, <a href="http://profiles.wordpress.org/users/saracannon">saracannon</a>, <a href="http://profiles.wordpress.org/users/sbressler">sbressler</a>, <a href="http://profiles.wordpress.org/users/sergeybiryukov">Sergey Biryukov</a>, <a href="http://profiles.wordpress.org/users/shakenstirred">shakenstirred</a>, <a href="http://profiles.wordpress.org/users/sidharrell">Sidney Harrell</a>, <a href="http://profiles.wordpress.org/users/pross">Simon Prosser</a>, <a href="http://profiles.wordpress.org/users/sorich87">sorich87</a>, <a href="http://profiles.wordpress.org/users/szadok">szadok</a>, <a href="http://profiles.wordpress.org/users/tetele">tetele</a>, <a href="http://profiles.wordpress.org/users/tigertech">tigertech</a>, <a href="http://profiles.wordpress.org/users/trepmal">trepmal</a>, <a href="http://profiles.wordpress.org/users/utkarsh">Utkarsh Kukreti</a>, <a href="http://profiles.wordpress.org/users/valentinas">valentinas</a>, <a href="http://profiles.wordpress.org/users/webduo">webduo</a>, <a href="http://profiles.wordpress.org/users/xibe">Xavier Borderie</a>, <a href="http://profiles.wordpress.org/users/yoavf">Yoav Farhi</a>, <a href="http://profiles.wordpress.org/users/vanillalounge">Ze Fontainhas</a>, and <a href="http://profiles.wordpress.org/users/ziofix">ziofix</a>.</p>\n<p><strong>Bonus:</strong> On their WordPress.org profiles over 20,000 people have said they make their living from WordPress. Are you one of them? <a href="http://wpsurvey.polldaddy.com/s/wp-2011">Don&#8217;t forget to take a minute for our survey</a>.</p>\n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:36:"http://wellformedweb.org/CommentAPI/";a:1:{s:10:"commentRss";a:1:{i:0;a:5:{s:4:"data";s:48:"http://wordpress.org/news/2011/07/gershwin/feed/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:38:"http://purl.org/rss/1.0/modules/slash/";a:1:{s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:1:"0";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}}}s:27:"http://www.w3.org/2005/Atom";a:1:{s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:0:"";s:7:"attribs";a:1:{s:0:"";a:3:{s:4:"href";s:31:"http://wordpress.org/news/feed/";s:3:"rel";s:4:"self";s:4:"type";s:19:"application/rss+xml";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:44:"http://purl.org/rss/1.0/modules/syndication/";a:2:{s:12:"updatePeriod";a:1:{i:0;a:5:{s:4:"data";s:6:"hourly";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:15:"updateFrequency";a:1:{i:0;a:5:{s:4:"data";s:1:"1";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}}}}}}}}s:4:"type";i:128;s:7:"headers";a:8:{s:6:"server";s:5:"nginx";s:4:"date";s:29:"Sun, 23 Oct 2011 14:43:19 GMT";s:12:"content-type";s:23:"text/xml; charset=UTF-8";s:10:"connection";s:5:"close";s:4:"vary";s:15:"Accept-Encoding";s:10:"x-pingback";s:36:"http://wordpress.org/news/xmlrpc.php";s:13:"last-modified";s:29:"Thu, 20 Oct 2011 05:20:18 GMT";s:4:"x-nc";s:11:"HIT luv 139";}s:5:"build";s:14:"20090627192103";}', 'no');
INSERT INTO `wp_options` (`option_id`, `blog_id`, `option_name`, `option_value`, `autoload`) VALUES
(225, 0, '_transient_timeout_feed_mod_ac0b00fe65abe10e0c5b588f3ed8c7ca', '1319424200', 'no'),
(226, 0, '_transient_feed_mod_ac0b00fe65abe10e0c5b588f3ed8c7ca', '1319381000', 'no'),
(227, 0, '_transient_timeout_dash_4077549d03da2e451c8b5f002294ff51', '1319424200', 'no'),
(228, 0, '_transient_dash_4077549d03da2e451c8b5f002294ff51', '<div class="rss-widget"><ul><li><a class=''rsswidget'' href=''http://wordpress.org/news/2011/10/wordpress-3-3-beta-2/'' title=''Changes since Beta 1: Updated the Blue theme Fixed IE7 and RTL support Improved flyout menu styling and fixed several glitches Finished the Pointers implementation Landed the dashboard Welcome box for new installs Improved contextual help styling Tweaked the admin bar a little more Fixed a bunch of bugs Consult the full change log  for [&hellip;]''>WordPress 3.3 Beta 2</a> <span class="rss-date">20 octubre, 2011</span><div class=''rssSummary''>Changes since Beta 1: Updated the Blue theme Fixed IE7 and RTL support Improved flyout menu styling and fixed several glitches Finished the Pointers implementation Landed the dashboard Welcome box for new installs Improved contextual help styling Tweaked the admin bar a little more Fixed a bunch of bugs Consult the full change log  for [&hellip;]</div></li><li><a class=''rsswidget'' href=''http://wordpress.org/news/2011/10/wordpress-3-3-beta-1/'' title=''WordPress 3.3 is ready for beta testers. As always, this is software still in development and we dont recommend that you run it on a production site — set up a test site just to play with the new version. If you break it (find a bug), please report it, and if youre a developer, try to [&hellip;]''>WordPress 3.3 Beta 1</a> <span class="rss-date">11 octubre, 2011</span><div class=''rssSummary''>WordPress 3.3 is ready for beta testers. As always, this is software still in development and we dont recommend that you run it on a production site — set up a test site just to play with the new version. If you break it (find a bug), please report it, and if youre a developer, try to [&hellip;]</div></li></ul></div>', 'no'),
(229, 0, '_transient_timeout_feed_a5420c83891a9c88ad2a4f04584a5efc', '1319424200', 'no'),
(230, 0, '_transient_feed_a5420c83891a9c88ad2a4f04584a5efc', 'a:4:{s:5:"child";a:1:{s:0:"";a:1:{s:3:"rss";a:1:{i:0;a:6:{s:4:"data";s:3:"\n \n";s:7:"attribs";a:1:{s:0:"";a:1:{s:7:"version";s:3:"2.0";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:1:{s:0:"";a:1:{s:7:"channel";a:1:{i:0;a:6:{s:4:"data";s:72:"\n \n \n \n \n \n \n \n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:7:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:39:"WordPress Plugins » View: Most Popular";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:51:"http://wordpress.org/extend/plugins/browse/popular/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:39:"WordPress Plugins » View: Most Popular";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"language";a:1:{i:0;a:5:{s:4:"data";s:5:"en-US";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Sun, 23 Oct 2011 14:39:02 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:9:"generator";a:1:{i:0;a:5:{s:4:"data";s:25:"http://bbpress.org/?v=1.1";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"item";a:15:{i:0;a:6:{s:4:"data";s:30:"\n \n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:29:"Arne on "Google XML Sitemaps"";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:70:"http://wordpress.org/extend/plugins/google-sitemap-generator/#post-132";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Fri, 09 Mar 2007 22:31:32 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:40:"132@http://wordpress.org/extend/plugins/";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:105:"This plugin will generate a special XML sitemap which will help search engines to better index your blog.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:4:"Arne";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:1;a:6:{s:4:"data";s:30:"\n \n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:33:"uberdose on "All in One SEO Pack"";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:65:"http://wordpress.org/extend/plugins/all-in-one-seo-pack/#post-753";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Fri, 30 Mar 2007 20:08:18 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:40:"753@http://wordpress.org/extend/plugins/";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:92:"Automatically optimizes your Wordpress blog for Search Engines (Search Engine Optimization).";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:8:"uberdose";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:2;a:6:{s:4:"data";s:30:"\n \n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:30:"BraveNewCode Inc. on "WPtouch"";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:54:"http://wordpress.org/extend/plugins/wptouch/#post-5468";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Thu, 01 May 2008 04:58:09 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:41:"5468@http://wordpress.org/extend/plugins/";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:150:"WPtouch: A simple, powerful and elegant mobile theme for your website.\n\nWPtouch automatically transforms your WordPress blog into an iPhone applicatio";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:17:"BraveNewCode Inc.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:3;a:6:{s:4:"data";s:30:"\n \n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:49:"Joost de Valk on "Google Analytics for WordPress"";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:77:"http://wordpress.org/extend/plugins/google-analytics-for-wordpress/#post-2316";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Fri, 14 Sep 2007 12:15:27 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:41:"2316@http://wordpress.org/extend/plugins/";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:145:"Track your WordPress site easily and with lots of metadata: views per author &#38; category, automatic tracking of outbound clicks and pageviews.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Joost de Valk";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:4;a:6:{s:4:"data";s:30:"\n \n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:36:"Takayuki Miyoshi on "Contact Form 7"";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:61:"http://wordpress.org/extend/plugins/contact-form-7/#post-2141";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Thu, 02 Aug 2007 12:45:03 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:41:"2141@http://wordpress.org/extend/plugins/";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:54:"Just another contact form plugin. Simple but flexible.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:16:"Takayuki Miyoshi";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:5;a:6:{s:4:"data";s:30:"\n \n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:66:"eight7teen on "SexyBookmarks | email, bookmark, and share buttons"";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:60:"http://wordpress.org/extend/plugins/sexybookmarks/#post-9249";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Sun, 22 Feb 2009 11:30:11 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:41:"9249@http://wordpress.org/extend/plugins/";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:104:"Adds an attractive social bookmarking menu to your posts, pages, index, or any combination of the three.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:10:"eight7teen";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:6;a:6:{s:4:"data";s:30:"\n \n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:34:"flash gallery on "1 Flash Gallery"";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:63:"http://wordpress.org/extend/plugins/1-flash-gallery/#post-24163";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Thu, 03 Feb 2011 14:02:51 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:42:"24163@http://wordpress.org/extend/plugins/";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:146:"1 Flash Gallery is a Photo Gallery with slideshow function, many skins and powerfull admin to manage your image gallery without any program skills";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"flash gallery";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:7;a:6:{s:4:"data";s:30:"\n \n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:66:"mitcho (Michael ?? Erlewine) on "Yet Another Related Posts Plugin"";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:79:"http://wordpress.org/extend/plugins/yet-another-related-posts-plugin/#post-2769";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Wed, 02 Jan 2008 13:05:03 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:41:"2769@http://wordpress.org/extend/plugins/";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:133:"Display a list of related entries on your site and feeds based on a unique algorithm. Templating allows customization of the display.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:28:"mitcho (Michael ?? Erlewine)";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:8;a:6:{s:4:"data";s:30:"\n \n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:38:"Brian Colinger on "WordPress Importer"";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:66:"http://wordpress.org/extend/plugins/wordpress-importer/#post-18101";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Thu, 20 May 2010 17:42:45 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:42:"18101@http://wordpress.org/extend/plugins/";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:101:"Import posts, pages, comments, custom fields, categories, tags and more from a WordPress export file.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:14:"Brian Colinger";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:9;a:6:{s:4:"data";s:30:"\n \n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:30:"Alex Rabe on "NextGEN Gallery"";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:62:"http://wordpress.org/extend/plugins/nextgen-gallery/#post-1169";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Mon, 23 Apr 2007 20:08:06 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:41:"1169@http://wordpress.org/extend/plugins/";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:108:"NextGEN Gallery is a full integrated Image Gallery plugin for WordPress with dozens of options and features.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:9:"Alex Rabe";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:10;a:6:{s:4:"data";s:30:"\n \n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:42:"Mike Challis on "Fast Secure Contact Form"";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:63:"http://wordpress.org/extend/plugins/si-contact-form/#post-12636";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Thu, 27 Aug 2009 01:20:04 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:42:"12636@http://wordpress.org/extend/plugins/";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:131:"A super customizable contact form that lets your visitors send you email. Blocks all automated spammers. No templates to mess with.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:12:"Mike Challis";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:11;a:6:{s:4:"data";s:30:"\n \n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:28:"casibus on "ourSTATS Widget"";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:65:"http://wordpress.org/extend/plugins/ourstatsde-widget/#post-18282";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Sat, 29 May 2010 14:16:19 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:42:"18282@http://wordpress.org/extend/plugins/";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:51:"create a widget for the ourstats.de counter service";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:7:"casibus";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:12;a:6:{s:4:"data";s:30:"\n \n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:38:"mdawaffe on "Jetpack by WordPress.com"";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:55:"http://wordpress.org/extend/plugins/jetpack/#post-23862";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Thu, 20 Jan 2011 02:21:38 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:42:"23862@http://wordpress.org/extend/plugins/";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:104:"Supercharge your WordPress site with powerful features previously only available to WordPress.com users.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:8:"mdawaffe";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:13;a:6:{s:4:"data";s:30:"\n \n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:27:"Matt Mullenweg on "Akismet"";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:52:"http://wordpress.org/extend/plugins/akismet/#post-15";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Fri, 09 Mar 2007 22:11:30 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:39:"15@http://wordpress.org/extend/plugins/";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:98:"Akismet checks your comments against the Akismet web service to see if they look like spam or not.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:14:"Matt Mullenweg";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:14;a:6:{s:4:"data";s:30:"\n \n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:37:"Michael Torbert on "WP Security Scan"";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:63:"http://wordpress.org/extend/plugins/wp-security-scan/#post-4986";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Sat, 29 Mar 2008 20:05:44 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:41:"4986@http://wordpress.org/extend/plugins/";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:63:"Scans your WordPress installation for security vulnerabilities.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:15:"Michael Torbert";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}}}s:27:"http://www.w3.org/2005/Atom";a:1:{s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:0:"";s:7:"attribs";a:1:{s:0:"";a:3:{s:4:"href";s:52:"http://wordpress.org/extend/plugins/rss/view/popular";s:3:"rel";s:4:"self";s:4:"type";s:19:"application/rss+xml";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}}}}}}}}s:4:"type";i:128;s:7:"headers";a:8:{s:6:"server";s:5:"nginx";s:4:"date";s:29:"Sun, 23 Oct 2011 14:43:20 GMT";s:12:"content-type";s:23:"text/xml; charset=UTF-8";s:10:"connection";s:5:"close";s:4:"vary";s:15:"Accept-Encoding";s:13:"last-modified";s:19:"2007-03-09 22:31:32";s:14:"content-length";s:4:"7964";s:4:"x-nc";s:11:"HIT luv 139";}s:5:"build";s:14:"20090627192103";}', 'no'),
(231, 0, '_transient_timeout_feed_mod_a5420c83891a9c88ad2a4f04584a5efc', '1319424200', 'no'),
(232, 0, '_transient_feed_mod_a5420c83891a9c88ad2a4f04584a5efc', '1319381000', 'no'),
(233, 0, '_transient_timeout_feed_867bd5c64f85878d03a060509cd2f92c', '1319424201', 'no');
INSERT INTO `wp_options` (`option_id`, `blog_id`, `option_name`, `option_value`, `autoload`) VALUES
(234, 0, '_transient_feed_867bd5c64f85878d03a060509cd2f92c', 'a:4:{s:5:"child";a:1:{s:0:"";a:1:{s:3:"rss";a:1:{i:0;a:6:{s:4:"data";s:3:"\n\n\n";s:7:"attribs";a:1:{s:0:"";a:1:{s:7:"version";s:3:"2.0";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:1:{s:0:"";a:1:{s:7:"channel";a:1:{i:0;a:6:{s:4:"data";s:61:"\n \n \n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:1:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:16:"WordPress Planet";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:28:"http://planet.wordpress.org/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"language";a:1:{i:0;a:5:{s:4:"data";s:2:"en";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:47:"WordPress Planet - http://planet.wordpress.org/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"item";a:50:{i:0;a:6:{s:4:"data";s:13:"\n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:80:"WordPress.tv: Collin Condray and Eric Huber: Yin and Yang of Your WordPress Site";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:27:"http://wordpress.tv/?p=7429";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:97:"http://wordpress.tv/2011/10/23/collin-condray-and-eric-huber-yin-and-yang-of-your-wordpress-site/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:1793:"<div id="v-RRJCDXFT-1" class="video-player">\n</div>\n<br /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/7429/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/7429/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/wptv.wordpress.com/7429/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/wptv.wordpress.com/7429/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/wptv.wordpress.com/7429/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/wptv.wordpress.com/7429/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/wptv.wordpress.com/7429/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/wptv.wordpress.com/7429/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/wptv.wordpress.com/7429/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/wptv.wordpress.com/7429/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/wptv.wordpress.com/7429/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/wptv.wordpress.com/7429/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/wptv.wordpress.com/7429/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/wptv.wordpress.com/7429/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=7429&subd=wptv&ref=&feed=1" width="1" height="1" /><div><a href="http://wordpress.tv/2011/10/23/collin-condray-and-eric-huber-yin-and-yang-of-your-wordpress-site/"><img alt="yin and yang" src="http://videos.videopress.com/RRJCDXFT/yin-and-yang_std.original.jpg" width="160" height="120" /></a></div>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Sun, 23 Oct 2011 13:02:24 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:14:"wcfayetteville";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:1;a:6:{s:4:"data";s:13:"\n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:60:"Weblog Tools Collection: WordPress and Responsive Web Design";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:41:"http://weblogtoolscollection.com/?p=10609";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:73:"http://feedproxy.google.com/~r/weblogtoolscollection/UXMP/~3/UBnsK0psafg/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:859:"<p><a href="http://weblogtoolscollection.com/archives/2011/10/21/whats-your-favorite-theme-feature/">A few days ago</a>, I mentioned that a responsive design was my favorite <a href="http://wordpress.org/">WordPress</a> theme feature. Of course, I wouldn&#8217;t be doing well to promote my favorite feature without at least pointing you in the right direction to learn how to do it yourself.</p>\n<p>Straight from <a href="http://2011.sf.wordcamp.org/">WordCamp San Francisco 2011</a>, here&#8217;s <a href="http://sara-cannon.com/">Sara Cannon</a> with a great presentation on <a href="http://wordpress.tv/2011/09/07/sara-cannon-responsive-web-design-2/">responsive web design in WordPress</a>.</p>\n<div id="v-CRPE8yB1-1" class="video-player"></div>\n<img src="http://feeds.feedburner.com/~r/weblogtoolscollection/UXMP/~4/UBnsK0psafg" height="1" width="1" />";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Sun, 23 Oct 2011 13:00:05 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:5:"James";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:2;a:6:{s:4:"data";s:13:"\n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:60:"WordPress.tv: David Cook: Setting up Local Test Environments";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:27:"http://wordpress.tv/?p=7039";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:77:"http://wordpress.tv/2011/10/22/david-cook-setting-up-local-test-environments/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:1837:"<div id="v-DIxlrnos-1" class="video-player">\n</div>\n<br /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/7039/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/7039/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/wptv.wordpress.com/7039/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/wptv.wordpress.com/7039/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/wptv.wordpress.com/7039/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/wptv.wordpress.com/7039/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/wptv.wordpress.com/7039/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/wptv.wordpress.com/7039/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/wptv.wordpress.com/7039/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/wptv.wordpress.com/7039/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/wptv.wordpress.com/7039/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/wptv.wordpress.com/7039/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/wptv.wordpress.com/7039/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/wptv.wordpress.com/7039/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=7039&subd=wptv&ref=&feed=1" width="1" height="1" /><div><a href="http://wordpress.tv/2011/10/22/david-cook-setting-up-local-test-environments/"><img alt="David Cook: Setting Up Local Test Environments" src="http://videos.videopress.com/DIxlrnos/setting-up-local-test-environment_f9-1mbps_std.original.jpg" width="160" height="120" /></a></div>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Sun, 23 Oct 2011 03:15:17 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:10:"wcmontreal";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:3;a:6:{s:4:"data";s:13:"\n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:73:"WordPress.tv: Catherine Winters: Challenging Traditional WordPress Design";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:27:"http://wordpress.tv/?p=6963";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:90:"http://wordpress.tv/2011/10/22/catherine-winters-challenging-traditional-wordpress-design/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:1861:"<div id="v-wiVrz086-1" class="video-player">\n</div>\n<br /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/6963/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/6963/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/wptv.wordpress.com/6963/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/wptv.wordpress.com/6963/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/wptv.wordpress.com/6963/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/wptv.wordpress.com/6963/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/wptv.wordpress.com/6963/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/wptv.wordpress.com/6963/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/wptv.wordpress.com/6963/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/wptv.wordpress.com/6963/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/wptv.wordpress.com/6963/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/wptv.wordpress.com/6963/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/wptv.wordpress.com/6963/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/wptv.wordpress.com/6963/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=6963&subd=wptv&ref=&feed=1" width="1" height="1" /><div><a href="http://wordpress.tv/2011/10/22/catherine-winters-challenging-traditional-wordpress-design/"><img alt="Catherine Winters: Challenging Traditional WordPress Theme Design" src="http://videos.videopress.com/wiVrz086/2011-05-05_wordcamp_59660_2-5_500k_std.original.jpg" width="160" height="120" /></a></div>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Sat, 22 Oct 2011 19:04:27 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:11:"wcvancouver";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:4;a:6:{s:4:"data";s:13:"\n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:75:"WordPress.tv: Tom Hapgood: Embrace the Mullet: CSS is the Party in the Back";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:27:"http://wordpress.tv/?p=7426";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:91:"http://wordpress.tv/2011/10/22/tom-hapgood-embrace-the-mullet-css-is-the-party-in-the-back/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:1799:"<div id="v-uDUkkvrI-1" class="video-player">\n</div>\n<br /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/7426/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/7426/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/wptv.wordpress.com/7426/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/wptv.wordpress.com/7426/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/wptv.wordpress.com/7426/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/wptv.wordpress.com/7426/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/wptv.wordpress.com/7426/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/wptv.wordpress.com/7426/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/wptv.wordpress.com/7426/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/wptv.wordpress.com/7426/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/wptv.wordpress.com/7426/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/wptv.wordpress.com/7426/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/wptv.wordpress.com/7426/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/wptv.wordpress.com/7426/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=7426&subd=wptv&ref=&feed=1" width="1" height="1" /><div><a href="http://wordpress.tv/2011/10/22/tom-hapgood-embrace-the-mullet-css-is-the-party-in-the-back/"><img alt="Embrace the Mullet" src="http://videos.videopress.com/uDUkkvrI/embrace-the-mullet_std.original.jpg" width="160" height="120" /></a></div>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Sat, 22 Oct 2011 13:04:27 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:14:"wcfayetteville";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:5;a:6:{s:4:"data";s:13:"\n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:60:"Weblog Tools Collection: WordPress Plugin Releases for 10/22";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:41:"http://weblogtoolscollection.com/?p=10616";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:73:"http://feedproxy.google.com/~r/weblogtoolscollection/UXMP/~3/_okMNFDH5yw/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:1096:"<h3>New plugins</h3>\n<p><a href="http://wordpress.org/extend/plugins/wp-stats-live/"><strong>WP Stats Live</strong></a> allows you to see who&#8217;s online, what they&#8217;re reading, and where they came from in real time.</p>\n<h3>Updated plugins</h3>\n<p><a href="http://wordpress.org/extend/plugins/wp-syntaxhighlighter/"><strong>WP SyntaxHighlighter</strong></a> is a code syntax highlighter plugin.</p>\n<p><a href="http://wordpress.org/extend/plugins/wptouch/"><strong>WPtouch</strong></a> automatically transforms your WordPress blog into an iPhone application-style theme, complete with ajax loading articles and effects, when viewed from an iPhone, iPod touch, Android, Opera Mini, Palm Pre, Samsung touch and BlackBerry Storm/Torch mobile devices.</p>\n<p><a href="http://wordpress.org/extend/plugins/yet-another-related-posts-plugin/"><strong>Yet Another Related Posts Plugin</strong></a> displays a list of related entries on your site and feeds based on a unique algorithm.</p>\n<img src="http://feeds.feedburner.com/~r/weblogtoolscollection/UXMP/~4/_okMNFDH5yw" height="1" width="1" />";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Sat, 22 Oct 2011 13:00:14 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:5:"James";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:6;a:6:{s:4:"data";s:13:"\n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:71:"WordPress.tv: Jean-Francois Arsenault: Recettes Sociales pour WordPress";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:27:"http://wordpress.tv/?p=7040";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:88:"http://wordpress.tv/2011/10/21/jean-francois-arsenault-recettes-sociales-pour-wordpress/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:1858:"<div id="v-Vw0SAODC-1" class="video-player">\n</div>\n<br /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/7040/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/7040/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/wptv.wordpress.com/7040/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/wptv.wordpress.com/7040/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/wptv.wordpress.com/7040/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/wptv.wordpress.com/7040/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/wptv.wordpress.com/7040/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/wptv.wordpress.com/7040/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/wptv.wordpress.com/7040/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/wptv.wordpress.com/7040/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/wptv.wordpress.com/7040/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/wptv.wordpress.com/7040/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/wptv.wordpress.com/7040/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/wptv.wordpress.com/7040/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=7040&subd=wptv&ref=&feed=1" width="1" height="1" /><div><a href="http://wordpress.tv/2011/10/21/jean-francois-arsenault-recettes-sociales-pour-wordpress/"><img alt="Jean-Francois Arsenault: Recettes sociales pour WordPress" src="http://videos.videopress.com/Vw0SAODC/recettes-sociales-pour-wordpress_f9-1mbps_std.original.jpg" width="160" height="120" /></a></div>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Sat, 22 Oct 2011 03:12:15 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:10:"wcmontreal";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:7;a:6:{s:4:"data";s:13:"\n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:76:"WPTavern: WPWeekly Episode 116 WordPress And Drupal Founders Share Stage";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:31:"http://www.wptavern.com/?p=5688";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:134:"http://feedproxy.google.com/~r/WordpressTavern/~3/US5pijMoTy0/wpweekly-episode-116-%e2%80%93-wordpress-and-drupal-founders-share-stage";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:2190:"<p><img src="http://www.wptavern.com/wp-content/uploads/2009/02/wordpressweekly1.png" alt="wordpressweekly1" title="wordpressweekly1" width="120" height="120" class="alignright size-full wp-image-436" />This weeks edition of the show features a one hour presentation with the founders of Drupal and WordPress together on one stage to talk about Open Source. This presentation took place on October 6th through the 7th, 2011 at an event called Schipulcon which is a web marketing conference. Unfortunately due to audio problems, I had to cut out the first 5 minutes of the presentation so your ears don&#8217;t fall off. Special thanks goes out to Katie and the <a href="http://schipulcon.com/">Schipulcon group</a> for providing me this audio file as well as the permission to play it through the WordPress Weekly stream. The next live show is scheduled for Friday, October 28th at 9PM Eastern. </p>\n<h2>WPWeekly Meta:</h2>\n<p><strong>Subscribe To WPWeekly Via Itunes: </strong><a href="itpc://recordings.talkshoe.com/rss34224.xml" target="_blank">Click here to subscribe</a></p>\n<p><strong>Length Of Episode:</strong> 51 Minutes</p>\n<p><strong>Download The Show:</strong> <a href="http://recordings.talkshoe.com/TC-34224/TS-550344.mp3" target="_blank">WordPressWeeklyEpisode116.mp3</a></p>\n<p><strong>Listen To Episode #116:</strong><br />\n</p>\n\n\n<p>Related posts:<ol><li><a href="http://www.wptavern.com/drupal-and-wordpress-founders-share-the-same-stage" rel="bookmark" title="Permanent Link: Drupal And WordPress Founders Share The Same Stage">Drupal And WordPress Founders Share The Same Stage</a></li>\n<li><a href="http://www.wptavern.com/wpweekly-episode-23-%e2%80%93-back-from-the-dead" rel="bookmark" title="Permanent Link: WPWeekly Episode 23 Back From The Dead">WPWeekly Episode 23 Back From The Dead</a></li>\n<li><a href="http://www.wptavern.com/wpweekly-episode-115-%e2%80%93-wordpress-3-3-beta-1-edition" rel="bookmark" title="Permanent Link: WPWeekly Episode 115 WordPress 3.3. Beta 1 Edition">WPWeekly Episode 115 WordPress 3.3. Beta 1 Edition</a></li>\n</ol></p><img src="http://feeds.feedburner.com/~r/WordpressTavern/~4/US5pijMoTy0" height="1" width="1" />";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Fri, 21 Oct 2011 23:02:41 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:6:"Jeffro";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:8;a:6:{s:4:"data";s:13:"\n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:77:"WordPress.tv: Curtis McHale: Moving WordPress (bbPress, BuddyPress) to Mobile";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:27:"http://wordpress.tv/?p=6960";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:91:"http://wordpress.tv/2011/10/21/curtis-mchale-moving-wordpress-bbpress-buddypress-to-mobile/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:1838:"<div id="v-PIKlga5M-1" class="video-player">\n</div>\n<br /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/6960/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/6960/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/wptv.wordpress.com/6960/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/wptv.wordpress.com/6960/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/wptv.wordpress.com/6960/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/wptv.wordpress.com/6960/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/wptv.wordpress.com/6960/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/wptv.wordpress.com/6960/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/wptv.wordpress.com/6960/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/wptv.wordpress.com/6960/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/wptv.wordpress.com/6960/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/wptv.wordpress.com/6960/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/wptv.wordpress.com/6960/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/wptv.wordpress.com/6960/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=6960&subd=wptv&ref=&feed=1" width="1" height="1" /><div><a href="http://wordpress.tv/2011/10/21/curtis-mchale-moving-wordpress-bbpress-buddypress-to-mobile/"><img alt="Curtis McHale: Moving WordPress to Mobile" src="http://videos.videopress.com/PIKlga5M/2011-05-05_wordcamp_59660_1-6_500k_std.original.jpg" width="160" height="120" /></a></div>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Fri, 21 Oct 2011 19:09:58 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:11:"wcvancouver";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:9;a:6:{s:4:"data";s:13:"\n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:71:"WPTavern: Automattic Hires Philip Arthur Moore On As New Theme Wrangler";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:31:"http://www.wptavern.com/?p=5685";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:123:"http://feedproxy.google.com/~r/WordpressTavern/~3/8BEm_zxS7Wc/automattic-hires-philip-arthur-moore-on-as-new-theme-wrangler";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:1812:"<p>Philip Arthur Moore who previously worked for WordPress themeing company <a href="http://graphpaperpress.com/">Graph Paper Press</a> is now under employment by Automattic as a theme wrangler. Arthur has <a href="http://philiparthurmoore.com/2011/10/21/ive-joined-automattic-inc/">published a great story</a> on how he&#8217;s been able to reach this point in his life. </p>\n<blockquote><p>The first projects I completed for Automattic as a trial Theme Wrangler were .org to .com conversions of the WordPress themes Nishita and Bold Life5. The responses to them made me feel wonderful and I hope that a year from now I have many more theme conversions, as well as theme creations, under my belt at Automattic.</p></blockquote>\n<p>Congrats Philip, you&#8217;ve joined one heck of a company. By the way, if you&#8217;re reading this and thinking about applying for a job at Automattic, the good news is that <a href="http://automattic.com/work-with-us/">they&#8217;re hiring</a>. Just ignore the pictures of the Pier 38 Automattic Lounge as it&#8217;s <a href="http://techcrunch.com/2011/09/06/pier-38-shut-down/">no longer in existence</a>. </p>\n\n\n<p>Related posts:<ol><li><a href="http://www.wptavern.com/automattic-gets-a-new-systems-wrangler" rel="bookmark" title="Permanent Link: Automattic Gets A New Systems Wrangler">Automattic Gets A New Systems Wrangler</a></li>\n<li><a href="http://www.wptavern.com/name-your-dream-theme-team" rel="bookmark" title="Permanent Link: Name Your Dream Theme Team">Name Your Dream Theme Team</a></li>\n<li><a href="http://www.wptavern.com/automattic-sporting-haikus" rel="bookmark" title="Permanent Link: Automattic Sporting Haikus">Automattic Sporting Haikus</a></li>\n</ol></p><img src="http://feeds.feedburner.com/~r/WordpressTavern/~4/8BEm_zxS7Wc" height="1" width="1" />";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Fri, 21 Oct 2011 18:04:02 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:6:"Jeffro";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:10;a:6:{s:4:"data";s:13:"\n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:62:"Weblog Tools Collection: Whats Your Favorite Theme Feature?";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:41:"http://weblogtoolscollection.com/?p=10607";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:73:"http://feedproxy.google.com/~r/weblogtoolscollection/UXMP/~3/zpri8wLraBc/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:872:"<p>There are tons of <a href="http://wordpress.org/extend/themes/">free themes</a> available for <a href="http://wordpress.org/">WordPress</a>, and there are plenty of <a href="http://wordpress.org/extend/themes/commercial/">premium themes</a> too, but each theme comes with its own set of features. Some of these features are incredibly useful, some seem to be wasteful, and some can be duplicated with plugins, but what&#8217;s your favorite theme feature?</p>\n<p>I&#8217;m partial myself to themes which are responsive in design, like <a href="http://wordpress.org/extend/themes/twentyeleven">Twenty Eleven</a>, meaning that they are built to adapt to any screen size (even mobile devices). So, what theme features do you look for when selecting your theme?</p>\n<img src="http://feeds.feedburner.com/~r/weblogtoolscollection/UXMP/~4/zpri8wLraBc" height="1" width="1" />";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Fri, 21 Oct 2011 13:00:17 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:5:"James";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:11;a:6:{s:4:"data";s:13:"\n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:53:"WPTavern: WordPress.com Blogs To Get More Advertising";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:31:"http://www.wptavern.com/?p=5677";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:105:"http://feedproxy.google.com/~r/WordpressTavern/~3/d30p4ZUDNac/wordpress-com-blogs-to-get-more-advertising";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:3213:"<p><a href="http://www.wptavern.com/wp-content/uploads/2009/07/automatticlogo.png" rel="thumbnail"><img src="http://www.wptavern.com/wp-content/uploads/2009/07/automatticlogo-300x36.png" alt="Automattic Logo" title="automatticlogo" width="300" height="36" class="alignright size-medium wp-image-1872" /></a>Federated Media in partnership with Automattic has <a href="http://www.bizjournals.com/sanfrancisco/news/2011/10/19/federated-media-and-automattic-ink.html">signed a deal</a> to sell advertising to potentially 25 million websites spread across WordPress.com. This isn&#8217;t the first time the two have partnered up as FM and Automattic have been launching a series of websites for specific subjects such as FoodPress and <a href="http://www.wptavern.com/first-foodpress-now-ecopressed">EcoPress</a>. This deal presents Federated Media the opportunity to sell highly relevant advertising in mass. For example, Automattic most likely has details that allow them to know the best performing sites on specific subjects such as automotive, food, tech, etc. This data can be used to display relevant advertising from FM so that the content and the advertising are related to each other.</p>\n<p>One of the quotes I&#8217;m seeing attributed to Toni Schneider, CEO of Automattic rubs me the wrong way.</p>\n<blockquote><p>Automattics WordPress software supports 25 million blogs with a combined readership of 300 million unique visitors per month &#8212; a total of 15 percent of the web sites on the Internet, Schneider said.</p></blockquote>\n<p>First off, the only thing of Automattics&#8217; is WordPress.com. Secondly, while it seems like Toni is talking about 25 million blogs on WordPress.com, how can that be 15% of the internet? That&#8217;s like saying 15% of the internet calls WordPress.com home and I highly doubt that. The only way in which that makes sense is if you combine the sites using WordPress the self-hosted software and those hosted on WordPress.com. </p>\n<p>Based on the <a href="http://www.marketwatch.com/story/federated-media-publishing-partners-with-automattic-to-provide-exclusive-representation-for-wordpresscom-community-of-independent-publishers-2011-10-19">press release on MarketWatch</a>, the advertising will be <strong>Opt-In</strong>. One of the most important questions that has not been answered is how revenue sharing will work. One would hope that those who are creating the content will end up getting a small slice of the pie. If not, it&#8217;s a bad deal all the way around. </p>\n\n\n<p>Related posts:<ol><li><a href="http://www.wptavern.com/advertising-now-an-option-on-wptavern" rel="bookmark" title="Permanent Link: Advertising Now An Option On WPTavern">Advertising Now An Option On WPTavern</a></li>\n<li><a href="http://www.wptavern.com/first-foodpress-now-ecopressed" rel="bookmark" title="Permanent Link: First FoodPress Now EcoPressed">First FoodPress Now EcoPressed</a></li>\n<li><a href="http://www.wptavern.com/ad-block-plus-not-needed-here" rel="bookmark" title="Permanent Link: Ad Block Plus Not Needed Here">Ad Block Plus Not Needed Here</a></li>\n</ol></p><img src="http://feeds.feedburner.com/~r/WordpressTavern/~4/d30p4ZUDNac" height="1" width="1" />";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Thu, 20 Oct 2011 17:00:39 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:6:"Jeffro";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:12;a:6:{s:4:"data";s:13:"\n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:59:"WPTavern: A First For Automattic Investment In OwnLocal";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:31:"http://www.wptavern.com/?p=5673";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:107:"http://feedproxy.google.com/~r/WordpressTavern/~3/WfR0XD9RrGo/a-first-for-automattic-investment-in-ownlocal";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:2426:"<p><a href="http://www.wptavern.com/wp-content/uploads/2011/10/OwnLocalLogo.png" rel="thumbnail"><img src="http://www.wptavern.com/wp-content/uploads/2011/10/OwnLocalLogo.png" alt="OwnLocal Logo" title="OwnLocalLogo" width="212" height="63" class="alignright size-full wp-image-5674" /></a>Automattic which is the company behind WordPress.com and is usually the one being invested in has made an investment themselves in a company called <a href="http://ownlocal.com/">OwnLocal</a> based out of Austin, Texas. The company has existed since 2007 and is built around publications by providing the tools necessary for newspapers to own their local market, hence the name. Liz Gannes of AllThingsD was the <a href="http://allthingsd.com/20111019/the-company-behind-wordpress-invests-in-newspaper-toolmaker-ownlocal/">first to break the story</a> and managed to get this quote out of Matt regarding the investment.</p>\n<blockquote><p>Their approach is highly complementary to our own goals of making it easy for anyone in the world to have a beautiful Web site</p></blockquote>\n<p>It&#8217;s an interesting investment considering local newspapers appear to be dying by the day. But OwnLocal is doing so well that despite the total amount of 2 million dollars thus far in funding, they are currently supporting their staff of 20 based on the revenue they are generating. </p>\n<p><strong>Related But Not Required Reading:</strong><br />\n<a href="http://venturebeat.com/2011/10/19/ownlocal-funding-newspaper-revenue/">OwnLocal nabs new funding from Automattic to resurrect newspaper revenues</a><br />\n<a href="http://gigaom.com/2011/10/19/ownlocal-scores-funds-to-get-small-firms-online/">Ownlocal scores funds to get small firms online</a></p>\n\n\n<p>Related posts:<ol><li><a href="http://www.wptavern.com/when-will-automattic-be-acquired" rel="bookmark" title="Permanent Link: When Will Automattic Be Acquired?">When Will Automattic Be Acquired?</a></li>\n<li><a href="http://www.wptavern.com/automattic-almost-acquired-at-one-point" rel="bookmark" title="Permanent Link: Automattic ALMOST Acquired At One Point">Automattic ALMOST Acquired At One Point</a></li>\n<li><a href="http://www.wptavern.com/automattic-sporting-haikus" rel="bookmark" title="Permanent Link: Automattic Sporting Haikus">Automattic Sporting Haikus</a></li>\n</ol></p><img src="http://feeds.feedburner.com/~r/WordpressTavern/~4/WfR0XD9RrGo" height="1" width="1" />";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Thu, 20 Oct 2011 13:00:39 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:6:"Jeffro";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:13;a:6:{s:4:"data";s:13:"\n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:59:"Weblog Tools Collection: WordPress Theme Releases for 10/20";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:41:"http://weblogtoolscollection.com/?p=10618";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:73:"http://feedproxy.google.com/~r/weblogtoolscollection/UXMP/~3/IbQ0BKE4KiU/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:860:"<p><img class="alignnone size-full wp-image-10619" title="asokay" src="http://weblogtoolscollection.com/wp-content/uploads/2011/10/asokay.jpg" alt="" width="150" height="113" /></p>\n<p><a href="http://wordpress.org/extend/themes/asokay"><strong>Asokay</strong></a> is a full-featured but still simple and easy-to-use blog/website theme, built from the <a href="http://wordpress.org/extend/themes/toolbox">Toolbox</a> theme.</p>\n<p><img class="alignnone size-full wp-image-10620" title="matisse" src="http://weblogtoolscollection.com/wp-content/uploads/2011/10/matisse.jpg" alt="" width="150" height="113" /></p>\n<p><a href="http://wordpress.org/extend/themes/matisse"><strong>Matisse</strong></a> is a minimalistic two-column and fixed-width theme.</p>\n<img src="http://feeds.feedburner.com/~r/weblogtoolscollection/UXMP/~4/IbQ0BKE4KiU" height="1" width="1" />";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Thu, 20 Oct 2011 13:00:04 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:5:"James";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:14;a:6:{s:4:"data";s:13:"\n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:30:"Dev Blog: WordPress 3.3 Beta 2";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:33:"http://wordpress.org/news/?p=2080";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:55:"http://wordpress.org/news/2011/10/wordpress-3-3-beta-2/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:900:"<p>Changes since Beta 1:</p>\n<ul>\n<li>Updated the Blue theme</li>\n<li>Fixed IE7 and RTL support</li>\n<li>Improved flyout menu styling and fixed several glitches</li>\n<li>Finished the Pointers implementation</li>\n<li>Landed the dashboard Welcome box for new installs</li>\n<li>Improved contextual help styling</li>\n<li>Tweaked the admin bar a little more</li>\n<li>Fixed a bunch of bugs</li>\n</ul>\n<p>Consult the <a href="http://core.trac.wordpress.org/log/trunk/?action=stop_on_copy&mode=stop_on_copy&rev=&stop_rev=18939&limit=100">full change log</a>  for details, and see the <a href="http://wordpress.org/news/2011/10/wordpress-3-3-beta-1/">Beta 1 announcement</a> for information on how to help test Beta 2.</p>\n<blockquote><p>Welcome for the new &#8211;<br />\n3.3 at beta 2.<br />\n(IE7, woo!)</p></blockquote>\n<p>Download <a href="http://wordpress.org/wordpress-3.3-beta2.zip">3.3 Beta 2</a>.</p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Thu, 20 Oct 2011 02:39:28 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:10:"Ryan Boren";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:15;a:6:{s:4:"data";s:13:"\n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:47:"WPTavern: Chip Bennett Hits 1,000 Theme Reviews";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:31:"http://www.wptavern.com/?p=5668";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:98:"http://feedproxy.google.com/~r/WordpressTavern/~3/L4-YiPgPGKA/chip-bennett-hits-1000-theme-reviews";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:1598:"<p>Just a shout out and congratulations to Chip Bennett who <a href="https://twitter.com/#!/chip_bennett/status/125035043889479680">recently hit</a> the 1,000 theme reviews milestone. To see each one of his reviews, check out the <a href="http://themes.trac.wordpress.org/query?owner=chipbennett&status=closed&group=owner&max=5000&col=id&col=summary&col=status&col=type&col=priority&col=time&col=changetime&order=priority">ongoing list on Trac</a> for the theme repository. Thanks Chip and the rest of the review team for providing your time and knowledge to making the theme repository a better place. .</p>\n<p>If you want to learn more about the theme review team, you should <a href="http://www.wptavern.com/wpweekly-episode-106-%E2%80%93-the-theme-review-team">listen to episode 106 of WordPress weekly</a> where most of the episode centers around the topic. </p>\n\n\n<p>Related posts:<ol><li><a href="http://www.wptavern.com/wpweekly-episode-106-%e2%80%93-the-theme-review-team" rel="bookmark" title="Permanent Link: WPWeekly Episode 106 The Theme Review Team">WPWeekly Episode 106 The Theme Review Team</a></li>\n<li><a href="http://www.wptavern.com/theme-repository-now-over-1000-themes" rel="bookmark" title="Permanent Link: Theme Repository Now Over 1,000 Themes">Theme Repository Now Over 1,000 Themes</a></li>\n<li><a href="http://www.wptavern.com/name-your-dream-theme-team" rel="bookmark" title="Permanent Link: Name Your Dream Theme Team">Name Your Dream Theme Team</a></li>\n</ol></p><img src="http://feeds.feedburner.com/~r/WordpressTavern/~4/L4-YiPgPGKA" height="1" width="1" />";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Wed, 19 Oct 2011 22:00:56 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:6:"Jeffro";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:16;a:6:{s:4:"data";s:13:"\n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:29:"Matt: Programming and Writing";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:21:"http://ma.tt/?p=39629";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:45:"http://ma.tt/2011/10/programming-and-writing/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:2462:"<p>I really enjoyed this quote from <a href="http://inessential.com/">Brent Simmons</a> in <a href="http://daringfireball.net/2011/06/netnewswire_black_pixel">an interview with John Gruber</a>.</p>\n<div class="blockquote"><blockquote><p>Ive always thought of it this way: a good writer reads a lot of books. They see how other writers solve problems. They pay attention to whats happening now as much as they pay attention to the classics. Good writers are readers first, but eagle-eyed, careful readers.</p>\n<p>I think good developers are the same: they look at other apps. They “read” those apps, the problems they have and how they solve them. They notice trends, they notice new solutions, they notice when things work and when they dont.</p></blockquote></div>\n<p>&nbsp;</p>\n<p>It reminds me of some passages from a book I&#8217;m reading right now, <a href="http://www.amazon.com/dp/0385480016/">Bird by Bird by Anne Lamott</a>:</p>\n<div class="blockquote"><blockquote><p><img class="alignright" src="http://matt.files.wordpress.com/2011/10/bird-by-bird.jpeg?w=200" alt="Bird by Bird" width="200" height="308" />However, in the meantime, we are going to concentrate on writing itself, on how to become a better writer, because, for one thing, becoming a better writer is going to help you become a better reader, and that is the real payoff. [...]</p>\n<p>Writing can give you what having a baby can give you: it can get you to start paying attention, can help you soften, can wake you up. [...]</p>\n<p>Because for some of us, books are as important as almost anything else on earth. What a miracle it is that out of these small, flat, rigid squares of paper unfolds world after world after world, worlds that sing to you, comfort and quiet or excite you. Books help us understand who we are and how we are to behave. they show us what community and friendship mean; they show us how to live and die. They are full of all the things that you don&#8217;t get in real life &#8212; wonderful, lyrical language, for instance, right off the bat. And quality of attention: we may notice amazing details during the course of a day but we rarely let ourselves stop and really pay attention. An author makes you notice, makes you pay attention, and this is a great gift. My gratitude for good writing is unbounded; I&#8217;m grateful for it the way I&#8217;m grateful for the ocean.</p></blockquote></div>\n<p>That&#8217;s how I feel about software.</p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Wed, 19 Oct 2011 20:29:32 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:4:"Matt";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:17;a:6:{s:4:"data";s:13:"\n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:26:"Matt: Federated Media Deal";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:21:"http://ma.tt/?p=39627";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:42:"http://ma.tt/2011/10/federated-media-deal/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:478:"<p><a href="http://www.readwriteweb.com/archives/federated_media_wordpress.php">ReadWriteWeb covers the WordPress.com / Federated Media deal</a> which will give high-end bloggers access to run advertising from FM, which is significantly higher quality than alternatives like Google Adsense, which has been declining in quality and is no longer a great choice for bloggers. Proud to be part of the empowerment of the Independent Web, which is the dark matter of the internet.</p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Wed, 19 Oct 2011 20:25:16 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:4:"Matt";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:18;a:6:{s:4:"data";s:13:"\n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:28:"Matt: Investment in OwnLocal";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:21:"http://ma.tt/?p=39624";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:44:"http://ma.tt/2011/10/investment-in-ownlocal/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:264:"<p><a href="http://allthingsd.com/20111019/the-company-behind-wordpress-invests-in-newspaper-toolmaker-ownlocal/">Liz Gannes breaks the story that Automattic has made its first investment</a>, in newspaper toolmaker <a href="http://ownlocal.com/">OwnLocal</a>.</p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Wed, 19 Oct 2011 18:20:03 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:4:"Matt";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:19;a:6:{s:4:"data";s:13:"\n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:69:"WPTavern: Prevent Skype Overwriting Phone Numbers In WordPress Themes";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:31:"http://www.wptavern.com/?p=5666";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:121:"http://feedproxy.google.com/~r/WordpressTavern/~3/4czZcc2tZIg/prevent-skype-overwriting-phone-numbers-in-wordpress-themes";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:1250:"<p>I didn&#8217;t know this was an actual problem until I <a href="http://www.wpbeginner.com/wp-tutorials/how-to-fix-skype-overwriting-phone-numbers-in-wordpress-themes/">read the advice</a> on WPBeginner.com. Apparently, some WordPress themes can break when Skype changes a phone number into a number you can dial with Skype. The fix is a simple one liner that you add to the HEAD section of the theme. Personally, I don&#8217;t use Skype to call out and change my options to prevent the over riding phone numbers in the first place. </p>\n\n\n<p>Related posts:<ol><li><a href="http://www.wptavern.com/wordpress-themes-in-2009" rel="bookmark" title="Permanent Link: WordPress Themes In 2009">WordPress Themes In 2009</a></li>\n<li><a href="http://www.wptavern.com/simple-guide-to-adding-theme-options" rel="bookmark" title="Permanent Link: Simple Guide To Adding Theme Options">Simple Guide To Adding Theme Options</a></li>\n<li><a href="http://www.wptavern.com/sitepoint-gives-primer-on-parent-child-themes" rel="bookmark" title="Permanent Link: SitePoint Gives Primer On Parent Child Themes">SitePoint Gives Primer On Parent Child Themes</a></li>\n</ol></p><img src="http://feeds.feedburner.com/~r/WordpressTavern/~4/4czZcc2tZIg" height="1" width="1" />";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Wed, 19 Oct 2011 17:00:12 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:6:"Jeffro";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:20;a:6:{s:4:"data";s:13:"\n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:51:"Donncha: Preload categories and custom post content";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:29:"http://ocaoimh.ie/?p=89496545";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:72:"http://ocaoimh.ie/2011/10/19/preload-categories-and-custom-post-content/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:2386:"<p>The never ending journey to WP Super Cache 1.0 continues. Go grab the development version of the plugin on the <a href="http://wordpress.org/extend/plugins/wp-super-cache/download/">download page</a> as there have been a few changes since <a href="http://ocaoimh.ie/2011/07/11/get-a-sneak-preview-of-wp-super-cache-before-1-0/">my last post</a> (where I announced support for mixed https sites among other things).</p>\n<p>Some of the changes:</p>\n<ul>\n<li> The cache preloader will now preload tags and categories pages (and whatever other taxonomy you want by using the wp_cache_preload_taxonomies filter). It should also preload pages with custom post types, but I haven&#8217;t tested that yet as I don&#8217;t have any such pages here. I hope <a href="http://wordpress.org/support/topic/plugin-wp-super-cache-preload-custom-post-types?replies=5">Adam does</a> at least!</li>\n<li> You should be able to delete files from the cache file listing again.</li>\n<li> You can make &#8220;known users&#8221; anonymous so they&#8217;re served Supercache cache files. Logged in users will appear logged out and users who leave comments won&#8217;t have the comment form filled in however.</li>\n<li> And quite a few more <a href="http://plugins.trac.wordpress.org/log/wp-super-cache/">bugfixes</a>.</li>\n</ul>\n<p>Only thing is, I need your help. The development version is running on this multisite install of WordPress and it&#8217;s working fine but I really need feedback, especially before 1.0 comes out.</p>\n<p>So, if you&#8217;re comfortable with WordPress please go visit the <a href="http://wordpress.org/extend/plugins/wp-super-cache/download/">download page</a> and install the development version. Thanks!</p>\n <img src="http://ocaoimh.ie/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?view=1&post_id=89496545" width="1" height="1" />\n<p><strong>Related Posts</strong><ul><li> <a href="http://ocaoimh.ie/2004/09/22/custom-fields-in-wpmu/" rel="bookmark" title="Permanent Link: Custom Fields in WPMU">Custom Fields in WPMU</a></li><li> <a href="http://ocaoimh.ie/2004/10/11/enclosures-in-wordpress/" rel="bookmark" title="Permanent Link: Enclosures in WordPress">Enclosures in WordPress</a></li><li> <a href="http://ocaoimh.ie/2010/06/15/wp-super-cache-09912/" rel="bookmark" title="Permanent Link: WP Super Cache 0.9.9.2">WP Super Cache 0.9.9.2</a></li></ul></p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Wed, 19 Oct 2011 15:42:59 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:16:"Donncha O Caoimh";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:21;a:6:{s:4:"data";s:13:"\n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:59:"Weblog Tools Collection: WordPress and Internationalization";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:41:"http://weblogtoolscollection.com/?p=10605";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:73:"http://feedproxy.google.com/~r/weblogtoolscollection/UXMP/~3/X05idqRPB-8/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:1077:"<p>I&#8217;m sure that you&#8217;re all familiar with <a href="http://wordpress.org/">WordPress</a> in English, but did you know that WordPress is available in <a href="http://codex.wordpress.org/WordPress_in_Your_Language">121 languages</a>? There is definitely a lot of work that goes into that, and it&#8217;s just another reflection of the power of the WordPress community.</p>\n<p>Maybe you want to know what goes into that, or how you can get involved. If you do, <a href="http://wordpress.tv/2011/10/14/paolo-belcastro-ze-fontainhas-wordpress-and-internationalization/">this presentation</a> from <a href="http://2011.montreal.wordcamp.org/">WordCamp Montreal 2011</a>, featuring <a href="http://www.chicandgeek.com/">Paolo Belcastro</a> and <a href="http://everywhereelse.wordpress.com/">Zé Fontainhas</a>, offers a great peak into a world of WordPress that you may have never experienced or even expected.</p>\n<div id="v-aHmjrHJl-1" class="video-player"></div>\n<img src="http://feeds.feedburner.com/~r/weblogtoolscollection/UXMP/~4/X05idqRPB-8" height="1" width="1" />";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Wed, 19 Oct 2011 13:00:32 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:5:"James";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:22;a:6:{s:4:"data";s:13:"\n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:63:"WPTavern: WordPress Not Likely To Participate In Google Code-In";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:31:"http://www.wptavern.com/?p=5658";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:115:"http://feedproxy.google.com/~r/WordpressTavern/~3/s_nw-Io5ZOw/wordpress-not-likely-to-participate-in-google-code-in";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:1819:"<p><a href="http://www.wptavern.com/wp-content/uploads/2011/10/GoogleCodeIn.png" rel="thumbnail"><img src="http://www.wptavern.com/wp-content/uploads/2011/10/GoogleCodeIn-300x130.png" alt="Google Code In Logo" title="GoogleCodeIn" width="300" height="130" class="alignright size-medium wp-image-5663" /></a>While a decision has not yet been finalized, judging by the responses so far on <a href="http://wpdevel.wordpress.com/2011/10/17/google-code-in/">this blog post</a> discussing the pros and cons of participating, it looks like WordPress may not be part of the event this year. <a href="http://code.google.com/opensource/gci/2011-12/index.html">Google Code In</a> is an annual event sponsored by Google that is aimed at students between the ages of 13 and 17. The goal of the program is to encourage youths to participate in open source which is in contrast to Google Summer of Code which is aimed at university students. We&#8217;ll know whether or not WordPress is part of the program either through the WordPress.org website or when Google announces the participating mentoring organizations on November 9th.</p>\n\n\n<p>Related posts:<ol><li><a href="http://www.wptavern.com/wordpress-gsoc-2010-program-under-way" rel="bookmark" title="Permanent Link: WordPress GSoC 2010 Program Under Way">WordPress GSoC 2010 Program Under Way</a></li>\n<li><a href="http://www.wptavern.com/its-that-time-of-year-again" rel="bookmark" title="Permanent Link: It&#8217;s That Time Of Year Again">It&#8217;s That Time Of Year Again</a></li>\n<li><a href="http://www.wptavern.com/wordpress-matt-cutts-and-google" rel="bookmark" title="Permanent Link: WordPress, Matt Cutts, And Google">WordPress, Matt Cutts, And Google</a></li>\n</ol></p><img src="http://feeds.feedburner.com/~r/WordpressTavern/~4/s_nw-Io5ZOw" height="1" width="1" />";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Wed, 19 Oct 2011 13:00:11 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:6:"Jeffro";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:23;a:6:{s:4:"data";s:13:"\n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:54:"WPTavern: How To Insert Links Inside Of Image Captions";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:31:"http://www.wptavern.com/?p=5650";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:106:"http://feedproxy.google.com/~r/WordpressTavern/~3/_-9dLCijK04/how-to-insert-links-inside-of-image-captions";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:4326:"<p>Occasionally, I &#8216;ll take a look through the <a href="http://wordpress.org/extend/ideas/">WordPress Ideas</a> site to see what kind of activity is going on. The other night, I discovered an idea that immediately lit the light bulb over my head, mostly because I couldn&#8217;t believe that it was not already a feature in WordPress. Approximately <a href="http://wordpress.org/extend/ideas/topic/fix-the-caption-system-to-allow-links-inside-captions">one year ago</a>, Jeremy Clarke submitted the idea to allow URLs to be inserted into image captions with the primary goal of making it easy to attribute images to their source. I&#8217;ve personally come across the issue where instead of applying the image credits within the image caption, I have to add a note somewhere within the post which is stupid since image captions are the <strong>PERFECT</strong> spot for attribution. Fast forward to October 18th, 2011 with WordPress 3.3. knocking on the door and this ability is still not present within WordPress. However, there are a couple of things that point to this feature being added soon as the status for the idea is marked <em>Good Idea! We&#8217;re Working On It</em>. There is also a ticket in trac, <a href="http://core.trac.wordpress.org/ticket/18311">#18311</a> that has a patch but is currently awaiting review. </p>\n<p>While there is not a native, user-friendly way of adding links to image captions, there are a couple of ways in which it can be accomplished. The first is by using &#8216; instead of &#8221; when entering the code for your link. However, when switching between the code and visual editors, the link is erased leaving text in place of the link. </p>\n<p>Second, you can try using the code <a href="http://konstruktors.com/blog/wordpress/3203-how-to-automatically-add-image-credit-or-source-url-to-photo-captions-in-wordpress/">provided by Kaspars of Konstruktors.com </a>inside of your functions.php file which will add a &#8220;<strong>Source URL</strong>&#8221; field to every image that is uploaded through the WordPress media library. When using this method, it&#8217;s important to note that the source URL will be visible only if you specify an image caption upon inserting the image. If implemented correctly, it will look something like this.</p>\n<p><a href="http://www.wptavern.com/wp-content/uploads/2011/10/ImageSourceURL.png" rel="thumbnail"><img src="http://www.wptavern.com/wp-content/uploads/2011/10/ImageSourceURL-500x161.png" alt="Adding An Image Source URL Field" title="ImageSourceURL" width="500" height="161" class="aligncenter size-large wp-image-5651" /></a></p>\n<p>Third, you can try using the <a href="http://wordpress.org/extend/plugins/links-in-captions/">Links In Captions Plugin</a> by <a href="http://profiles.wordpress.org/users/katzwebdesign/">Zack Katz</a>. After activation, you can add links to captions via the following format: {link url=&#8221;http://www.example.com&#8221;}Anchor text here{/link} Two benefits to this plugin is that it has support for the Target and Rel attributes and you can use shortcodes within the caption area. </p>\n<p>Personally, I think Kaspars solution is the most user-friendly after the functions.php file is setup correctly. I&#8217;d like to see him package that as a plugin so more users can take advantage of it as it looks as though it was part of the media manager all along. However, the best scenario is for this functionality to some how end up within the core of WordPress. If you have the know-how, please consider contributing to the ticket or writing a better patch to get this into core. </p>\n\n\n<p>Related posts:<ol><li><a href="http://www.wptavern.com/removing-links-in-favor-of-menus" rel="bookmark" title="Permanent Link: Removing Links In Favor Of Menus?">Removing Links In Favor Of Menus?</a></li>\n<li><a href="http://www.wptavern.com/spam-link-injection-sucks" rel="bookmark" title="Permanent Link: Spam Link Injection Sucks">Spam Link Injection Sucks</a></li>\n<li><a href="http://www.wptavern.com/screencast-basic-image-editing-in-wordpress-2-9" rel="bookmark" title="Permanent Link: Screencast: Basic Image Editing In WordPress 2.9">Screencast: Basic Image Editing In WordPress 2.9</a></li>\n</ol></p><img src="http://feeds.feedburner.com/~r/WordpressTavern/~4/_-9dLCijK04" height="1" width="1" />";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Tue, 18 Oct 2011 13:00:33 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:6:"Jeffro";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:24;a:6:{s:4:"data";s:13:"\n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:60:"Weblog Tools Collection: WordPress Plugin Releases for 10/18";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:41:"http://weblogtoolscollection.com/?p=10602";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:73:"http://feedproxy.google.com/~r/weblogtoolscollection/UXMP/~3/fltHL9bYCrw/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:806:"<h3>New plugins</h3>\n<p><a href="http://wordpress.org/extend/plugins/contact-form-with-a-meeting-scheduler-by-vcita/"><strong>Contact Form with a Meeting Scheduler</strong></a> is an inviting contact form with built-in appointment dcheduler and video meetings.</p>\n<h3>Updated plugins</h3>\n<p><a href="http://wordpress.org/extend/plugins/backwpup/"><strong>BackWPup</strong></a> allows you to backup your WordPress database, files, and more.</p>\n<p><a href="http://www.designchemical.com/blog/index.php/wordpress-plugins/wordpress-plugin-jquery-vertical-accordion-menu-widget/"><strong>jQuery Vertical Accordion Menu</strong></a> creates vertical accordion menus from any WordPress custom menu.</p>\n<img src="http://feeds.feedburner.com/~r/weblogtoolscollection/UXMP/~4/fltHL9bYCrw" height="1" width="1" />";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Tue, 18 Oct 2011 13:00:03 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:5:"James";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:25;a:6:{s:4:"data";s:13:"\n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:35:"Matt: Chatting with Dries of Drupal";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:21:"http://ma.tt/?p=39621";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:51:"http://ma.tt/2011/10/chatting-with-dries-of-drupal/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:493:"<p>The other week in my hometown of Houston, Texas I ended up on stage in a joint conversation with Dries Buytaert, the founder of Drupal. <a href="http://wordpress.tv/2011/10/16/drupal-wp/">The video of our chat is now on WordPress.tv</a>, and worth checking out particularly if you&#8217;re curious about the early history of both projects. We&#8217;re more alike than different, and Dries is <a href="https://twitter.com/photomatt/status/122403646074916864">someone I respect a lot</a>.</p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Mon, 17 Oct 2011 21:06:07 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:4:"Matt";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:26;a:6:{s:4:"data";s:13:"\n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:21:"Matt: Parenting Story";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:21:"http://ma.tt/?p=39619";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:37:"http://ma.tt/2011/10/parenting-story/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:233:"<p>A great piece in the New York Times today: <a href="http://www.nytimes.com/2011/10/16/opinion/sunday/notes-from-a-dragon-mom.html?_r=1">How do you parent without a future, knowing that you will lose your child, bit by bit?</a></p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Mon, 17 Oct 2011 20:04:54 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:4:"Matt";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:27;a:6:{s:4:"data";s:13:"\n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:44:"WPTavern: Validation And Sanitization Primer";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:31:"http://www.wptavern.com/?p=5643";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:96:"http://feedproxy.google.com/~r/WordpressTavern/~3/T9RM9yS6PtM/validation-and-sanitization-primer";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:785:"<p>Daniel Bachhuber who works with WordPress.com VIP Services has <a href="http://publisherblog.automattic.com/2011/10/13/key-differences-between-validation-and-sanitization/">published a guide</a> covering some key differences with data validation and sanitization. His explanation is not so technical that even I understood it for the most part. If you&#8217;re a developer, definitely give the guide a read and give Daniel some feedback. </p>\n\n\n<p>Related posts:<ol><li><a href="http://www.wptavern.com/is-a-plugin-validation-team-a-pipe-dream" rel="bookmark" title="Permanent Link: Is A Plugin Validation Team A Pipe Dream?">Is A Plugin Validation Team A Pipe Dream?</a></li>\n</ol></p><img src="http://feeds.feedburner.com/~r/WordpressTavern/~4/T9RM9yS6PtM" height="1" width="1" />";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Mon, 17 Oct 2011 17:00:28 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:6:"Jeffro";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:28;a:6:{s:4:"data";s:13:"\n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:48:"WPTavern: Plugin Review Expanded Admin Menus";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:31:"http://www.wptavern.com/?p=5637";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:96:"http://feedproxy.google.com/~r/WordpressTavern/~3/x5rDUCXSn4M/plugin-review-expanded-admin-menus";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:3721:"<p>If you&#8217;re not happy about WordPress 3.3 taking away the ability to vertically expand and collapse menu items, you now have at least one option to bring back that functionality. Sort of. After quite a bit of discussion amongst community members regarding the new menu flyouts in WordPress 3.3, Aaron D. Campbell contributed with a <a href="http://wordpress.org/support/topic/admin-menu-doesnt-expandcollapse-in-33-beta-1-why/page/3?replies=72#post-2390247">thought out post</a> which concluded with a link to a plugin he created called <a href="http://wordpress.org/extend/plugins/expanded-admin-menus/">Expanded Admin Menus</a>. </p>\n<p>After activating the plugin in WordPress 3.3 Beta 1, this is what your left handed navigational menus will look like.</p>\n<p><a href="http://www.wptavern.com/wp-content/uploads/2011/10/expanded-menu-items.png" rel="thumbnail"><img src="http://www.wptavern.com/wp-content/uploads/2011/10/expanded-menu-items.png" alt="Expanded Menu Items" title="expanded menu items" width="157" height="365" class="aligncenter size-full wp-image-5638" /></a></p>\n<p>Unfortunately, it&#8217;s a far cry from what users enjoyed in WordPress 3.2.1. Instead of being able to choose which main menu item is expanded or collapsed, all of them are expanded. That deafening cry of pain you hear is from mouse scroll wheels all across the globe. After using the plugin for five minutes, it was clear to me that it&#8217;s even more of a usability nightmare for myself then dealing with the flyout menus. With all menu items presented at once, my eyes have to scroll through each one to find the specific link I&#8217;m looking for. I&#8217;m presented with too much information at one time making browsing a pain in the neck. If that were not enough, the collapsed menu looks completely different than the normal collapsed menu, probably due to the CSS it uses. </p>\n<div id="attachment_5639" class="wp-caption aligncenter"><a href="http://www.wptavern.com/wp-content/uploads/2011/10/expandedmenuitems2.png" rel="thumbnail"><img src="http://www.wptavern.com/wp-content/uploads/2011/10/expandedmenuitems2.png" alt="Collapsed Verson Of Expanded Menu Items" title="expandedmenuitems2" width="237" height="218" class="size-full wp-image-5639" /></a><p class="wp-caption-text">Collapsed Version Of Expanded Menu Items</p></div>\n<p>While I&#8217;m not going to discount the use of this plugin because of that particular bug, the bottom line is that this plugin does not solve the problem that the forum thread was dedicated to. It&#8217;s not about having all of the admin menus opened or closed. It was the end user opportunity to pick and choose which menus were vertically expanded or collapsed while being able to have multiple menus opened or closed. Nice effort on the part of Aaron to provide an option to users who loved that particular feature in WordPress 3.2 but in its current form, the plugin comes nowhere close to solving the problem. </p>\n\n\n<p>Related posts:<ol><li><a href="http://www.wptavern.com/wpbeginner-reviews-post-admin-shortcuts-plugin" rel="bookmark" title="Permanent Link: WPBeginner Reviews Post Admin Shortcuts Plugin">WPBeginner Reviews Post Admin Shortcuts Plugin</a></li>\n<li><a href="http://www.wptavern.com/some-not-happy-with-flyout-menus" rel="bookmark" title="Permanent Link: Some Not Happy With Flyout Menus">Some Not Happy With Flyout Menus</a></li>\n<li><a href="http://www.wptavern.com/review-of-the-limit-login-attempts-plugin" rel="bookmark" title="Permanent Link: Review Of The Limit Login Attempts Plugin">Review Of The Limit Login Attempts Plugin</a></li>\n</ol></p><img src="http://feeds.feedburner.com/~r/WordpressTavern/~4/x5rDUCXSn4M" height="1" width="1" />";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Mon, 17 Oct 2011 13:00:53 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:6:"Jeffro";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:29;a:6:{s:4:"data";s:13:"\n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:54:"Weblog Tools Collection: WordPress vs. Drupal on Stage";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:41:"http://weblogtoolscollection.com/?p=10596";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:73:"http://feedproxy.google.com/~r/weblogtoolscollection/UXMP/~3/fR0VLpyYLzI/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:925:"<p><a href="http://www.schipulcon.com/">SchipulCon</a> 2011, a web marketing conference, hosted <a href="http://vimeo.com/30403839">a very thought-provoking discussion</a> between <a href="http://wordpress.org/">WordPress</a> founder <a href="http://ma.tt/">Matt Mullenweg</a> and <a href="http://drupal.org/">Drupal</a> founder <a href="http://buytaert.net/">Dries Buytaert</a>.</p>\n<p>Despite some technical issues, the founders of platforms often thought of as rivals had some interesting thoughts to share about competition and community in the open source world. You can see the video below, and there are some choice quotes available at <a href="http://blog.schipul.com/drupal-and-wordpress-at-schipulcon-one-stage-one-open-source-love/">Schipul&#8217;s coverage of the event</a>.</p>\n<div>\n\n \n \n \n \n \n\n</div>\n<img src="http://feeds.feedburner.com/~r/weblogtoolscollection/UXMP/~4/fR0VLpyYLzI" height="1" width="1" />";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Mon, 17 Oct 2011 13:00:12 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:5:"James";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:30;a:6:{s:4:"data";s:13:"\n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:95:"WordPress.tv: SchipulCon 2011: Open Source Discussion with the Founders of Drupal and WordPress";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:27:"http://wordpress.tv/?p=8184";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:41:"http://wordpress.tv/2011/10/16/drupal-wp/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:1828:"<p><strong><code><div id="v-Hsu9Z4w3-1" class="video-player">\n</div></code></strong></p>\n<br /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/8184/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/8184/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/wptv.wordpress.com/8184/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/wptv.wordpress.com/8184/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/wptv.wordpress.com/8184/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/wptv.wordpress.com/8184/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/wptv.wordpress.com/8184/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/wptv.wordpress.com/8184/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/wptv.wordpress.com/8184/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/wptv.wordpress.com/8184/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/wptv.wordpress.com/8184/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/wptv.wordpress.com/8184/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/wptv.wordpress.com/8184/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/wptv.wordpress.com/8184/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=8184&subd=wptv&ref=&feed=1" width="1" height="1" /><div><a href="http://wordpress.tv/2011/10/16/drupal-wp/"><img alt="Open Source Discussion with the Founders of Drupal and WordPress" src="http://videos.videopress.com/Hsu9Z4w3/68622867_scruberthumbnail_2.jpg" width="160" height="120" /></a></div>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Mon, 17 Oct 2011 06:42:50 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:12:"Michael Pick";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:31;a:6:{s:4:"data";s:13:"\n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:59:"Weblog Tools Collection: WordPress Theme Releases for 10/16";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:41:"http://weblogtoolscollection.com/?p=10591";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:73:"http://feedproxy.google.com/~r/weblogtoolscollection/UXMP/~3/4GqtnIwu9UE/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:1196:"<p><img class="alignnone size-full wp-image-10592" title="exhibition" src="http://weblogtoolscollection.com/wp-content/uploads/2011/10/exhibition.jpg" alt="" width="150" height="113" /></p>\n<p><a href="http://www.dessign.net/exhibition-theme/"><strong>Exhibition</strong></a> is a perfect theme for any artist to showcase their portfolio and blog about their work.</p>\n<p><img class="alignnone size-full wp-image-10593" title="journal" src="http://weblogtoolscollection.com/wp-content/uploads/2011/10/journal.jpg" alt="" width="150" height="113" /></p>\n<p><a href="http://emptynestthemes.emptynestheritage.com/2011/10/15/journal-theme/"><strong>Journal</strong></a> is a simple, attractive, one column theme that would suit a diary or journal site.</p>\n<p><img class="alignnone size-full wp-image-10594" title="terminal" src="http://weblogtoolscollection.com/wp-content/uploads/2011/10/terminal.jpg" alt="" width="150" height="113" /></p>\n<p><a href="http://wpterminal.com/terminal/"><strong>Terminal</strong></a> features multiple layouts, a custom Twitter widget, and theme options.</p>\n<img src="http://feeds.feedburner.com/~r/weblogtoolscollection/UXMP/~4/4GqtnIwu9UE" height="1" width="1" />";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Sun, 16 Oct 2011 13:00:15 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:5:"James";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:32;a:6:{s:4:"data";s:13:"\n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:64:"WPTavern: WPWeekly Episode 115 WordPress 3.3. Beta 1 Edition";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:31:"http://www.wptavern.com/?p=5632";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:121:"http://feedproxy.google.com/~r/WordpressTavern/~3/M_hFtTjlgrQ/wpweekly-episode-115-%e2%80%93-wordpress-3-3-beta-1-edition";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:2757:"<p><img src="http://www.wptavern.com/wp-content/uploads/2009/02/wordpressweekly1.png" alt="wordpressweekly1" title="wordpressweekly1" width="120" height="120" class="alignright size-full wp-image-436" />In this episode of WordPress Weekly, I give you the news making headlines of the week. I also give you a rundown of what to look for in WordPress 3.3. Beta 1 and give you my experience thus far with some of the new features. The end of the show has a 3 minute audio sound byte from Schipulcon where the founders of Drupal and WordPress shared the stage to talk about Open Source. </p>\n<h2>Stories Discussed:</h2>\n<p><a href="http://wpdevel.wordpress.com/2011/10/13/dns-issues-on-wordpress-org/">WordPress.org Experiences DNS Issues &#8211; Not Hacked</a><br />\n<a href="http://www.wptavern.com/score-tickets-to-wordcamp-toronto-2011">Win A Ticket To WordCamp Toronto</a><br />\n<a href="http://www.wptavern.com/revamping-the-404-page-for-the-plugin-repository">Plugin Repository Now Has A Proper 404 Page</a><br />\n<a href="http://www.wptavern.com/plugin-review-spots-by-interconnectit">Spots By Interconnect/It</a><br />\n<a href="http://www.wptavern.com/wordpress-app-the-best-thing-on-peter-brights-iphone">The Best Thing On Peter Brights iPhone Is The WordPress App</a><br />\n<a href="http://www.wptavern.com/things-to-look-for-in-wordpress-3-3-beta-1">Things To Look For In WordPress 3.3 Beta 1</a></p>\n<h2>WPWeekly Meta:</h2>\n<p><strong>Subscribe To WPWeekly Via Itunes: </strong><a href="itpc://recordings.talkshoe.com/rss34224.xml" target="_blank">Click here to subscribe</a></p>\n<p><strong>Length Of Episode:</strong> 37 Minutes</p>\n<p><strong>Download The Show:</strong> <a href="http://recordings.talkshoe.com/TC-34224/TS-546941.mp3" target="_blank">WordPressWeeklyEpisode115.mp3</a></p>\n<p><strong>Listen To Episode #115:</strong><br />\n</p>\n\n\n<p>Related posts:<ol><li><a href="http://www.wptavern.com/wpweekly-episode-25-%e2%80%93-almost-wordpress-2-7-beta" rel="bookmark" title="Permanent Link: WPWeekly Episode 25 Almost WordPress 2.7 Beta">WPWeekly Episode 25 Almost WordPress 2.7 Beta</a></li>\n<li><a href="http://www.wptavern.com/wpweekly-episode-61-could-wordpress-com-ever-rebrand" rel="bookmark" title="Permanent Link: WPWeekly Episode 61 &#8211; Could WordPress.com Ever Rebrand?">WPWeekly Episode 61 &#8211; Could WordPress.com Ever Rebrand?</a></li>\n<li><a href="http://www.wptavern.com/wpweekly-episode-28-%e2%80%93-wordpress-2-7-news-and-wordcamp-au" rel="bookmark" title="Permanent Link: WPWeekly Episode 28 WordPress 2.7 News And WordCamp AU">WPWeekly Episode 28 WordPress 2.7 News And WordCamp AU</a></li>\n</ol></p><img src="http://feeds.feedburner.com/~r/WordpressTavern/~4/M_hFtTjlgrQ" height="1" width="1" />";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Sat, 15 Oct 2011 02:04:01 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:6:"Jeffro";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:33;a:6:{s:4:"data";s:13:"\n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:64:"WPTavern: Video Featuring Matt Of WordPress With Dries Of Drupal";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:31:"http://www.wptavern.com/?p=5629";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:116:"http://feedproxy.google.com/~r/WordpressTavern/~3/fzcBHUr5Pn0/video-featuring-matt-of-wordpress-with-dries-of-drupal";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:1694:"<p>Here is the recorded video featuring the presentation of Matt Mullenweg of WordPress with Dries Buytaert of Drupal discussing open source. Kudos goes out to the Schipulcon group for getting these two together for an awesome presentation. The audio is terrible until you hit the 4 minute mark. If you want to see a transcript for some of the questions you can read them on the <a href="http://blog.schipul.com/drupal-and-wordpress-at-schipulcon-one-stage-one-open-source-love/">Schipul Blog</a>. Definitely watch from 32 minutes onward as that is when the audience starts asking some pretty good questions. </p>\n<div class="aligncenter">\n<p><a href="http://vimeo.com/30403839">Open Source Discussion with the Founders of Drupal and WordPress</a> from <a href="http://vimeo.com/schipul">Schipul &#8211; The Web Marketing Co.</a> on <a href="http://vimeo.com">Vimeo</a>.</p>\n</div>\n\n\n<p>Related posts:<ol><li><a href="http://www.wptavern.com/the-crossing-paths-of-drupal-and-wordpress" rel="bookmark" title="Permanent Link: The Crossing Paths Of Drupal And WordPress">The Crossing Paths Of Drupal And WordPress</a></li>\n<li><a href="http://www.wptavern.com/drupal-and-wordpress-founders-share-the-same-stage" rel="bookmark" title="Permanent Link: Drupal And WordPress Founders Share The Same Stage">Drupal And WordPress Founders Share The Same Stage</a></li>\n<li><a href="http://www.wptavern.com/saying-goodbye-to-drupal-and-hello-to-wordpress" rel="bookmark" title="Permanent Link: Saying Goodbye To Drupal And Hello To WordPress">Saying Goodbye To Drupal And Hello To WordPress</a></li>\n</ol></p><img src="http://feeds.feedburner.com/~r/WordpressTavern/~4/fzcBHUr5Pn0" height="1" width="1" />";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Fri, 14 Oct 2011 17:00:13 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:6:"Jeffro";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:34;a:6:{s:4:"data";s:13:"\n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:73:"WPTavern: Share Your Experience With WordPress 3.3 Beta 1 With Me Tonight";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:31:"http://www.wptavern.com/?p=5624";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:125:"http://feedproxy.google.com/~r/WordpressTavern/~3/4ZNH0tDHOGo/share-your-experience-with-wordpress-3-3-beta-1-with-me-tonight";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:1730:"<p><a href="http://www.wptavern.com/wp-content/uploads/2009/02/wordpressweekly1.png" rel="thumbnail"><img src="http://www.wptavern.com/wp-content/uploads/2009/02/wordpressweekly1.png" alt="" title="wordpressweekly1" width="120" height="120" class="alignright size-full wp-image-436" /></a>For those that don&#8217;t know, I produce a live podcast every Friday evening at 9P.M. Eastern time on Talkshoe.com called <a href="http://www.talkshoe.com/talkshoe/web/talkCast.jsp?masterId=34224&cmd=tc">WordPress Weekly</a>. On tonight&#8217;s episode, I&#8217;d like to hear from you regarding your experience thus far with WordPress 3.3. beta 1 if you&#8217;ve had a chance to use it. I&#8217;m especially interested to know your thoughts on the new fly out menus and the drag and drop media uploader. If you can&#8217;t call in to the show tonight, at least <a href="http://www.wptavern.com/wordpress-weekly">show up in the chat room</a> to be part of the conversation as the show is recorded live. </p>\n\n\n<p>Related posts:<ol><li><a href="http://www.wptavern.com/things-to-look-for-in-wordpress-3-3-beta-1" rel="bookmark" title="Permanent Link: Things To Look For In WordPress 3.3 Beta 1">Things To Look For In WordPress 3.3 Beta 1</a></li>\n<li><a href="http://www.wptavern.com/wordpress-2-8-1-beta-by-end-of-the-week" rel="bookmark" title="Permanent Link: WordPress 2.8.1 Beta By End Of The Week">WordPress 2.8.1 Beta By End Of The Week</a></li>\n<li><a href="http://www.wptavern.com/my-thoughts-on-wordpress-weekly" rel="bookmark" title="Permanent Link: My Thoughts On WordPress Weekly">My Thoughts On WordPress Weekly</a></li>\n</ol></p><img src="http://feeds.feedburner.com/~r/WordpressTavern/~4/4ZNH0tDHOGo" height="1" width="1" />";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Fri, 14 Oct 2011 14:15:26 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:6:"Jeffro";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:35;a:6:{s:4:"data";s:13:"\n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:81:"WordPress.tv: Paolo Belcastro & Ze Fontainhas: WordPress and Internationalization";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:27:"http://wordpress.tv/?p=7022";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:96:"http://wordpress.tv/2011/10/14/paolo-belcastro-ze-fontainhas-wordpress-and-internationalization/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:1845:"<div id="v-aHmjrHJl-1" class="video-player">\n</div>\n<br /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/7022/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/7022/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/wptv.wordpress.com/7022/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/wptv.wordpress.com/7022/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/wptv.wordpress.com/7022/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/wptv.wordpress.com/7022/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/wptv.wordpress.com/7022/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/wptv.wordpress.com/7022/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/wptv.wordpress.com/7022/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/wptv.wordpress.com/7022/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/wptv.wordpress.com/7022/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/wptv.wordpress.com/7022/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/wptv.wordpress.com/7022/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/wptv.wordpress.com/7022/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=7022&subd=wptv&ref=&feed=1" width="1" height="1" /><div><a href="http://wordpress.tv/2011/10/14/paolo-belcastro-ze-fontainhas-wordpress-and-internationalization/"><img alt="WordPress and Internationalization" src="http://videos.videopress.com/aHmjrHJl/wordpress-and-internationalization_f9-1mbps_std.original.jpg" width="160" height="120" /></a></div>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Fri, 14 Oct 2011 13:01:05 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:10:"wcmontreal";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:36;a:6:{s:4:"data";s:13:"\n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:60:"Weblog Tools Collection: WordPress Plugin Releases for 10/14";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:41:"http://weblogtoolscollection.com/?p=10588";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:73:"http://feedproxy.google.com/~r/weblogtoolscollection/UXMP/~3/IWrxFZsyfnY/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:1396:"<h3>New plugins</h3>\n<p><a href="http://wordpress.org/extend/plugins/urtak-for-wordpress/"><strong>Urtak</strong></a> allows you to gather your users&#8217; opinions by enabling them to ask and answer questions about your content.</p>\n<p><a href="http://calendarscripts.info/watu-wordpress.html"><strong>Watu</strong></a> allows you to create exams with unlimited questions and answers, and define grades based on collected points.</p>\n<p><a href="http://wordpress.org/extend/plugins/widgets-in-columns/"><strong>Widgets in Columns</strong></a> allows you to show your widgets in desired columns and rows.</p>\n<h3>Updated plugins</h3>\n<p><a href="http://buddypress.org/"><strong>BuddyPress</strong></a> lets users register on your site and start creating profiles, posting messages, making connections, creating and interacting in groups and much more. It&#8217;s a social network in a box.</p>\n<p><a href="http://www.viper007bond.com/wordpress-plugins/vipers-video-quicktags/"><strong>Viper&#8217;s Video Quicktags</strong></a> allows you to simply click one of the new buttons that this plugin adds to the write screen (rich editor included) and then paste the URL that the video is located at into the prompt box. You can fully configure how the videos are displayed and much more.</p>\n<img src="http://feeds.feedburner.com/~r/weblogtoolscollection/UXMP/~4/IWrxFZsyfnY" height="1" width="1" />";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Fri, 14 Oct 2011 13:00:42 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:5:"James";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:37;a:6:{s:4:"data";s:13:"\n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:56:"WordPress.tv: Steve Heffernan: HTML5 Video for WordPress";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:27:"http://wordpress.tv/?p=6955";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:73:"http://wordpress.tv/2011/10/13/steve-heffernan-html5-video-for-wordpress/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:1821:"<div id="v-b31Cz69M-1" class="video-player">\n</div>\n<br /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/6955/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/6955/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/wptv.wordpress.com/6955/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/wptv.wordpress.com/6955/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/wptv.wordpress.com/6955/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/wptv.wordpress.com/6955/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/wptv.wordpress.com/6955/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/wptv.wordpress.com/6955/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/wptv.wordpress.com/6955/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/wptv.wordpress.com/6955/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/wptv.wordpress.com/6955/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/wptv.wordpress.com/6955/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/wptv.wordpress.com/6955/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/wptv.wordpress.com/6955/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=6955&subd=wptv&ref=&feed=1" width="1" height="1" /><div><a href="http://wordpress.tv/2011/10/13/steve-heffernan-html5-video-for-wordpress/"><img alt="Steve Heffernan: HTML5 Video for WordPress" src="http://videos.videopress.com/b31Cz69M/2011-05-05_wordcamp_59660_2-4_500k_std.original.jpg" width="160" height="120" /></a></div>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Fri, 14 Oct 2011 04:43:51 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:11:"wcvancouver";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:38;a:6:{s:4:"data";s:13:"\n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:48:"WPTavern: Score Tickets To WordCamp Toronto 2011";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:31:"http://www.wptavern.com/?p=5621";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:100:"http://feedproxy.google.com/~r/WordpressTavern/~3/nF8UkPkJKhc/score-tickets-to-wordcamp-toronto-2011";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:1313:"<p>If you&#8217;re planning on going to <a href="http://2011.toronto.wordcamp.org/">WordCamp Toronto 2011</a> and have yet to purchase tickets, think about <a href="http://www.miroslavglavic.ca/wordpress/contest-wordcamp-toronto-2011-tickets-wcto-wordpress/">participating in this contest</a> being held by Miroslav Glavic. The rules are simple. All you have to do is leave a comment on the post and explain how attending the event will help you. Each winner will receive one ticket to the event. Of course, the winners will need to pay for their own accommodations and travel costs to get there. Winners will be chosen on October 19th. </p>\n\n\n<p>Related posts:<ol><li><a href="http://www.wptavern.com/wordcamp-nyc-tickets-now-available" rel="bookmark" title="Permanent Link: WordCamp NYC Tickets Now Available">WordCamp NYC Tickets Now Available</a></li>\n<li><a href="http://www.wptavern.com/win-wordcamp-chicago-tickets" rel="bookmark" title="Permanent Link: Win WordCamp Chicago Tickets">Win WordCamp Chicago Tickets</a></li>\n<li><a href="http://www.wptavern.com/sponsor-me-to-wordcamp-detroit" rel="bookmark" title="Permanent Link: Sponsor Me To WordCamp Detroit">Sponsor Me To WordCamp Detroit</a></li>\n</ol></p><img src="http://feeds.feedburner.com/~r/WordpressTavern/~4/nF8UkPkJKhc" height="1" width="1" />";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Thu, 13 Oct 2011 22:00:15 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:6:"Jeffro";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:39;a:6:{s:4:"data";s:13:"\n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:28:"BuddyPress: BuddyPress 1.5.1";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:47:"http://buddypress.org/2011/10/buddypress-1-5-1/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:47:"http://buddypress.org/2011/10/buddypress-1-5-1/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:1851:"<p>Come and get it! <a href="http://wordpress.org/extend/plugins/buddypress/">BuddyPress 1.5.1</a> is now available. This release fixes <a href="http://buddypress.org/about/release-history/#1.5.1">over 25 issues</a> that have popped up since BuddyPress 1.5 &#8220;Lombardi&#8221; was rolled out in September.</p>\n<p>BP 1.5.1 is a recommended upgrade for all sites currently running BuddyPress 1.5. Haven&#8217;t upgraded to BP 1.5 yet? Be sure to check out our <a href="http://codex.buddypress.org/releases/upgrading-to-buddypress-1-5/">1.5 upgrade guide</a> and some of the other resources suggested in <a href="http://buddypress.org/2011/09/buddypress-1-5-now-available/">the BuddyPress 1.5 release post</a>.</p>\n<p>As usual, this release couldn&#8217;t have happened without the fantastic BuddyPress community, valiantly manning (and womanning) our <a href="http://buddypress.org/support/topics">support forums</a> and <a href="http://trac.buddypress.org">Trac</a>. Special thanks to the following community members, whose code patches appear in BP 1.5.1: <a href="http://profiles.wordpress.org/users/boonebgorges">boonebgorges</a>, <a href="http://profiles.wordpress.org/users/djpaul">djpaul</a>, <a href="http://profiles.wordpress.org/users/Grimbog">Grimbog</a>, <a href="http://profiles.wordpress.org/users/mind1">mind1</a>, <a href="http://profiles.wordpress.org/users/r-a-y">r-a-y</a>, <a href="http://profiles.wordpress.org/users/sushkov">sushkov</a>, <a href="http://profiles.wordpress.org/users/techguytom">techguytom</a>, <a href="http://profiles.wordpress.org/users/wdfee">wdfee</a>, <a href="http://profiles.wordpress.org/users/wpmuguru">wpmuguru</a>.</p>\n<p>Download BuddyPress 1.5.1 from <a href="http://wordpress.org/extend/plugins/buddypress/">WordPress Extend</a> or <a href="http://buddypress.org/download/">BuddyPress.org.</a></p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Thu, 13 Oct 2011 19:55:18 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:12:"Boone Gorges";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:40;a:6:{s:4:"data";s:13:"\n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:27:"Matt: Steve Yegge on Google";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:21:"http://ma.tt/?p=39617";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:43:"http://ma.tt/2011/10/steve-yegge-on-google/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:199:"<p><a href="https://plus.google.com/112678702228711889851/posts/eVeouesvaVX">This essay by Steve Yegge on Amazon, Google, Microsoft, and Facebook is pretty killer</a>, I suggest giving it a read.</p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Thu, 13 Oct 2011 17:36:19 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:4:"Matt";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:41;a:6:{s:4:"data";s:13:"\n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:53:"WPTavern: UK Civil Service Site Switches To WordPress";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:31:"http://www.wptavern.com/?p=5618";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:105:"http://feedproxy.google.com/~r/WordpressTavern/~3/f2xIDKHrlqM/uk-civil-service-site-switches-to-wordpress";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:1778:"<p>We (the Digital Engagement team) were tasked with producing a new site at very little cost and within a six week window. To restructure the content to make it easier to find we used Google analytics to analyze typical user journeys. Harnessing user insight will be an iterative process through the ongoing development of this site.</p>\n<p>We chose to use WordPress as it offers a simple, quick (with such a short development window) and flexible open source solution to a site primarily designed for publishing content. As such it is easy to use for a wide range of content editors and, of course, provides significant cost savings for maintenance and development. Rather than develop a theme ourselves we chose to use a theme called striking developed by Kaptinlin that fitted what we needed with a little customization. &#8211; Via <a href="http://digital.cabinetoffice.gov.uk/2011/10/06/holding-the-fort/">Holding the Fort</a></p>\n\n\n<p>Related posts:<ol><li><a href="http://www.wptavern.com/5-tips-to-create-a-great-site-about-wordpress" rel="bookmark" title="Permanent Link: 5 Tips To Create A Great Site About WordPress">5 Tips To Create A Great Site About WordPress</a></li>\n<li><a href="http://www.wptavern.com/joomla-marries-wordpress" rel="bookmark" title="Permanent Link: Joomla Marries WordPress?">Joomla Marries WordPress?</a></li>\n<li><a href="http://www.wptavern.com/14-things-to-consider-when-choosing-a-webhost-for-your-wordpress-powered-site" rel="bookmark" title="Permanent Link: 14 Things To Consider When Choosing A Webhost For Your WordPress Powered Site">14 Things To Consider When Choosing A Webhost For Your WordPress Powered Site</a></li>\n</ol></p><img src="http://feeds.feedburner.com/~r/WordpressTavern/~4/f2xIDKHrlqM" height="1" width="1" />";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Thu, 13 Oct 2011 17:00:46 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:6:"Jeffro";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:42;a:6:{s:4:"data";s:13:"\n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:67:"Publisher Blog: Key Differences Between Validation and Sanitization";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:43:"http://publisherblog.automattic.com/?p=1740";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:99:"http://publisherblog.automattic.com/2011/10/13/key-differences-between-validation-and-sanitization/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:6699:"<p><em><a href="http://vip.wordpress.com">VIP Services</a> developer Daniel Bachhuber shares some tips on writing better code for your WordPress site:</em></p>\n<p>Your code works, but is it safe? When writing code for a high-profile environment, you&#8217;ll need to be extra cautious of how you handle data coming into WordPress and how it&#8217;s presented to the end user. This commonly comes up when building a settings page for your theme, creating and manipulating shortcodes, or saving and rendering extra data associated with a post.</p>\n<p>There&#8217;s a distinction between how input and output are managed, however.</p>\n<h3>Validation: Checking User Input</h3>\n<p>To validate is to ensure the data you&#8217;ve requested of the user matches what they&#8217;ve submitted. There are <a href="http://codex.wordpress.org/Data_Validation#Input_Validation">several core methods you can use for input validation</a>; usage obviously depends on the <em>type</em> of fields you&#8217;d like to validate. Let&#8217;s take a look at an example.</p>\n<p>Say we have an input area in our form like this:</p>\n<pre class="brush: xml;">&lt;input type="text" id="my-zipcode" name="my-zipcode" maxlength="5" /&gt;</pre>\n<p>Just like that, we&#8217;ve limited my user to five characters of input, but there&#8217;s no limitation on what they can input. They could enter &#8220;11221&#8243; or &#8220;eval(&#8220;. If we&#8217;re saving to the database, there&#8217;s no way we want to give the user unrestricted write access.</p>\n<p>This is where validation plays a role. When processing the form, we&#8217;ll write code to check each field for its proper data type. If it&#8217;s not of the proper data type, we&#8217;ll discard it. For instance, to check &#8220;my-zipcode&#8221; field, we might do something like this:</p>\n<pre class="brush: php;">$safe_zipcode = intval( $_POST[''my-zipcode''] );\nif ( ! $safe_zipcode )\n$safe_zipcode = '''';\nupdate_post_meta( $post-&gt;ID, ''my_zipcode'', $safe_zipcode );</pre>\n<p>The intval() function casts user input as an integer, and defaults to zero if the input was a non-numeric value. We then check to see if the value ended up as zero. If it did, we&#8217;ll save an empty value to the database. Otherwise, we&#8217;ll save the properly validated zipcode.</p>\n<p>This style of validation most closely follows WordPress&#8217; <a href="http://codex.wordpress.org/Data_Validation#Whitelist">whitelist philosophy</a>: only allow the user to input what you&#8217;re expecting. Luckily, there&#8217;s a <a href="http://codex.wordpress.org/Data_Validation#Input_Validation">number of handy helper functions</a> you can use for most every data type.</p>\n<h3>Sanitization: Escaping Output</h3>\n<p>For security on the other end of the spectrum, we have sanitization. To sanitize is to take the data you may already have and help secure it prior to rendering it for the end user. WordPress thankfully has a <a href="http://codex.wordpress.org/Data_Validation#Output_Sanitation">few helper functions</a> we can use for most of what we&#8217;ll commonly need to do:</p>\n<p><strong>esc_html()</strong> we should use anytime our HTML element encloses a section of data we&#8217;re outputting.</p>\n<pre class="brush: php; html-script: true;">&lt;h4&gt;&lt;?php echo esc_html( $title ); ?&gt;&lt;/h4&gt;</pre>\n<p><strong>esc_url()</strong> should be used on all URLs, including those in the &#8216;src&#8217; and &#8216;href&#8217; attributes of an HTML element.</p>\n<pre class="brush: php; html-script: true;">&lt;img src="&lt;?php echo esc_url( $great_user_picture_url ); ?&gt;" /&gt;</pre>\n<p><strong>esc_js()</strong> is intended for inline Javascript.</p>\n<pre class="brush: php; html-script: true;">&lt;a href="#" onclick="&lt;?php echo esc_js( $custom_js ); ?&gt;"&gt;Click me&lt;/a&gt;</pre>\n<p><strong>esc_attr()</strong> can be used on everything else that&#8217;s printed into an HTML element&#8217;s attribute.</p>\n<pre class="brush: php; html-script: true;">&lt;ul class="&lt;?php echo esc_attr( $stored_class ); ?&gt;"&gt;</pre>\n<p>It&#8217;s important to note that most WordPress functions properly prepare the data for output, and you don&#8217;t need to escape again.</p>\n<pre class="brush: php; html-script: true;">&lt;h4&gt;&lt;?php the_title(); ?&gt;&lt;/h4&gt;</pre>\n<p>Also, as there are always exceptions to the rule, there are a selection of user-submitted data that needs to be validated <em>and</em> sanitized. Freeform text areas would fall into this category. For this, you can run user data through sanitize_text_field() or any of the wp_kses_*() functions.</p>\n<p><strong>To recap:</strong> follow the whitelist philosophy with data validation, and only allow the user to input data of your expected type. If it&#8217;s not the proper type, discard it. Sanitize data as much as possible on output, and a selection needs to be sanitized on input too.</p>\n<p>Hit us with your questions or tips in the comments.</p>\n<br /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/wordpresspublishers.wordpress.com/1740/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/wordpresspublishers.wordpress.com/1740/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/wordpresspublishers.wordpress.com/1740/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/wordpresspublishers.wordpress.com/1740/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/wordpresspublishers.wordpress.com/1740/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/wordpresspublishers.wordpress.com/1740/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/wordpresspublishers.wordpress.com/1740/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/wordpresspublishers.wordpress.com/1740/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/wordpresspublishers.wordpress.com/1740/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/wordpresspublishers.wordpress.com/1740/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/wordpresspublishers.wordpress.com/1740/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/wordpresspublishers.wordpress.com/1740/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/wordpresspublishers.wordpress.com/1740/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/wordpresspublishers.wordpress.com/1740/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=publisherblog.automattic.com&blog=1470857&post=1740&subd=wordpresspublishers&ref=&feed=1" width="1" height="1" />";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Thu, 13 Oct 2011 15:30:19 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:16:"Daniel Bachhuber";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:43;a:6:{s:4:"data";s:13:"\n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:59:"WPTavern: WordPress Not The Choice For Multinational Search";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:31:"http://www.wptavern.com/?p=5613";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:111:"http://feedproxy.google.com/~r/WordpressTavern/~3/n5ZGTZCjKQI/wordpress-not-the-choice-for-multinational-search";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:1422:"<p>Chris Liversidge of Search Engine Land <a href="http://searchengineland.com/wordpress-cms-design-decisions-for-multinational-search-95455">gives an explanation</a> as to why WordPress is not his platform of choice when it comes to multinational search. I was with him up until the point he discussed security where he states that WordPress is plagued by frequent security updates. This is not true. Security within WordPress has gotten better with time, not worse and it&#8217;s not like we&#8217;re updating WordPress every two weeks. I&#8217;m not sure what Chris wants in a CMS platform. One update a year? One update every 3 months that fixes security vulnerabilities instead of getting that fix immediately? </p>\n\n\n<p>Related posts:<ol><li><a href="http://www.wptavern.com/how-to-make-the-wordpress-search-url-pretty" rel="bookmark" title="Permanent Link: How To Make The WordPress Search URL Pretty">How To Make The WordPress Search URL Pretty</a></li>\n<li><a href="http://www.wptavern.com/adding-google-custom-search-is-easy" rel="bookmark" title="Permanent Link: Adding Google Custom Search Is Easy">Adding Google Custom Search Is Easy</a></li>\n<li><a href="http://www.wptavern.com/wordpress-2-8-3-released" rel="bookmark" title="Permanent Link: WordPress 2.8.3 Released">WordPress 2.8.3 Released</a></li>\n</ol></p><img src="http://feeds.feedburner.com/~r/WordpressTavern/~4/n5ZGTZCjKQI" height="1" width="1" />";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Thu, 13 Oct 2011 13:00:47 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:6:"Jeffro";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:44;a:6:{s:4:"data";s:13:"\n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:58:"WPTavern: Revamping The 404 Page For The Plugin Repository";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:31:"http://www.wptavern.com/?p=5609";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:110:"http://feedproxy.google.com/~r/WordpressTavern/~3/4-uRAiHHINY/revamping-the-404-page-for-the-plugin-repository";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:2257:"<p><a href="http://www.wptavern.com/wp-content/uploads/2011/10/404.png" rel="thumbnail"><img src="http://www.wptavern.com/wp-content/uploads/2011/10/404.png" alt="404 Image" title="404" width="158" height="155" class="alignright size-full wp-image-5610" /></a>WPBeginner has laid out an <a href="http://www.wpbeginner.com/opinion/do-we-need-a-better-404-page-for-wordpress-plugins-repository/">interesting question</a>. <em>Do we need a better 404 page for WordPress plugins repository?</em> They think so and I do to. I&#8217;ve experienced the issue of clicking a plugin link only to be redirected magically to the plugin repository page without any explanation as to why. From here, I perform a search to find the plugin that I was linked to only to come up empty. In my opinion, the 404 page on the plugin repository should give a few explanations as to why the plugin was not found. It could have been its removal, its suspension, or a bad link but at least give a little explanation. I especially like the idea <a href="http://feeds2.feedburner.com/ http://fyre.it/xix">presented by GraphicsCove</a> in providing a list of 3 or 5 similar plugins. I&#8217;d also like to see a little bit of Matt&#8217;s witty humor. What better place to put it than on a 404 page. </p>\n<p>If you had the opportunity to create the 404 page, what information would you present on it?</p>\n\n\n<p>Related posts:<ol><li><a href="http://www.wptavern.com/listener-poll-should-there-be-a-page-on-the-plugin-repository-for-commercial-gpl-plugins" rel="bookmark" title="Permanent Link: Listener Poll: Should there be a page on the plugin repository for Commercial GPL plugins?">Listener Poll: Should there be a page on the plugin repository for Commercial GPL plugins?</a></li>\n<li><a href="http://www.wptavern.com/plugin-repository-now-supports-videos" rel="bookmark" title="Permanent Link: Plugin Repository Now Supports Videos">Plugin Repository Now Supports Videos</a></li>\n<li><a href="http://www.wptavern.com/list-of-the-best-wordpress-404-pages" rel="bookmark" title="Permanent Link: List Of The Best WordPress 404 Pages">List Of The Best WordPress 404 Pages</a></li>\n</ol></p><img src="http://feeds.feedburner.com/~r/WordpressTavern/~4/4-uRAiHHINY" height="1" width="1" />";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Wed, 12 Oct 2011 17:00:53 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:6:"Jeffro";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:45;a:6:{s:4:"data";s:13:"\n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:59:"Weblog Tools Collection: WordPress Theme Releases for 10/12";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:41:"http://weblogtoolscollection.com/?p=10579";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:73:"http://feedproxy.google.com/~r/weblogtoolscollection/UXMP/~3/AmVXf00zl2g/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:1569:"<p><img class="alignnone size-full wp-image-10580" title="danco" src="http://weblogtoolscollection.com/wp-content/uploads/2011/10/danco.jpg" alt="" width="150" height="113" /></p>\n<p><a href="http://freesimplewordpressthemes.uk46.com/free-wordpress-theme-danco/?themedemo=Danco"><strong>Danco</strong></a> is a blue and beige three-column theme.</p>\n<p><img class="alignnone size-full wp-image-10581" title="setrage" src="http://weblogtoolscollection.com/wp-content/uploads/2011/10/setrage.jpg" alt="" width="150" height="113" /></p>\n<p><a href="http://freesimplewordpressthemes.uk46.com/free-wordpress-theme-setrage0/?themedemo=Setrage"><strong>Setrage</strong></a> is a brown one-column theme.</p>\n<p><img class="alignnone size-full wp-image-10582" title="slopes" src="http://weblogtoolscollection.com/wp-content/uploads/2011/10/slopes.jpg" alt="" width="150" height="113" /></p>\n<p><a href="http://emptynestthemes.emptynestheritage.com/2011/10/09/slopes/"><strong>Slopes</strong></a> is wonderful for blogs or websites related to winter sports, photography, sports events, outdoor pursuits, etc.</p>\n<p><img class="alignnone size-full wp-image-10583" title="vintage" src="http://weblogtoolscollection.com/wp-content/uploads/2011/10/vintage.jpg" alt="" width="150" height="113" /></p>\n<p><a href="http://emptynestthemes.emptynestheritage.com/2011/10/11/vintage/"><strong>Vintage</strong></a> has a vintage look combining textures and complementary colors.</p>\n<img src="http://feeds.feedburner.com/~r/weblogtoolscollection/UXMP/~4/AmVXf00zl2g" height="1" width="1" />";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Wed, 12 Oct 2011 13:00:59 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:5:"James";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:46;a:6:{s:4:"data";s:13:"\n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:42:"WPTavern: Some Not Happy With Flyout Menus";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:31:"http://www.wptavern.com/?p=5603";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:94:"http://feedproxy.google.com/~r/WordpressTavern/~3/VZLLzTcTDW4/some-not-happy-with-flyout-menus";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:4004:"<p><a href="http://www.wptavern.com/wp-content/uploads/2011/10/flyoutmenus.png" rel="thumbnail"><img src="http://www.wptavern.com/wp-content/uploads/2011/10/flyoutmenus.png" alt="Flyout Menus" title="flyoutmenus" width="309" height="131" class="alignright size-full wp-image-5594" /></a>In my <a href="http://www.wptavern.com/things-to-look-for-in-wordpress-3-3-beta-1">short look at WordPress 3.3 Beta 1</a>, I highlighted the fact that all menus were going to receive the Flyout treatment. The ability to vertically expand or collapse menus will be disappearing in favor of the flyout animation. Personally, I like the feature as I now get to see all of the menu items without having to click a button. However, many others have voiced their discontent with this User Interface change. In fact, there is a <a href="http://wordpress.org/support/topic/admin-menu-doesnt-expandcollapse-in-33-beta-1-why?replies=43">thread on the WordPress.org support forums</a> that is nearing 50 posts specifically dealing with this issue. </p>\n<p>Even though I like flyouts, I don&#8217;t have any problem with the way menus work in WordPress 3.2. In fact, it was the best of both worlds. I typically use the Icons only approach which has the flyouts while always having the option to see the full menu with the ability to vertically expand or collapse. In the newest instance, that choice has been taken away. This <a href="http://wordpress.org/support/topic/admin-menu-doesnt-expandcollapse-in-33-beta-1-why?replies=43#post-2386205">response</a> by Jonschlinkert has some interesting questions that I think would be good to have answered from the WordPress UI Team. </p>\n<blockquote><p>Who was asking you to remove the expand/collapse feature? Can you point us to that request and the support for it? In other words, why is the designer &#8220;fixing&#8221; something that wasn&#8217;t broken?</p></blockquote>\n<p>If you&#8217;re interested in seeing how the feature evolved, look at the log for <a href="http://core.trac.wordpress.org/ticket/18382">ticket #18382</a>. For the curious, <a href="https://irclogs.wordpress.org/chanlog.php?channel=wordpress-dev&search=flyout&sort=asc">here is a short list of statements</a> made in the WordPress Development Channel from May 31st 2011 to October 11th 2011, talking about the flyout menus. Nothing really exciting to read with the exception of Otto42s comment on September 19th. </p>\n<blockquote><p>Otto42 &#8211; they make everything take like 3 times longer to find. i used to just scroll the page and go right to the menu i want.. now it&#8217;s a matter of hunting and searching and checking the f-ing flyout menus</p></blockquote>\n<p>If Flyout menus get past beta and are in the final release, that is when we will be able to measure the success or failure of the change. If a major revolt happens, it&#8217;s not like reverting the change will be hard and it could come in a follow up point release. At the end of the day though, the folks in the forum thread have to be commended for providing valuable feedback during the beta testing process.</p>\n<p><strong>Related But Not Required Reading:</strong> <a href="http://uxmovement.com/navigation/why-hover-menus-do-users-more-harm-than-good/">Why Hover Menus Do Users More Harm Than Good</a></p>\n\n\n<p>Related posts:<ol><li><a href="http://www.wptavern.com/justin-tadlock-on-menus-in-wp-3-0" rel="bookmark" title="Permanent Link: Justin Tadlock On Menus In WP 3.0">Justin Tadlock On Menus In WP 3.0</a></li>\n<li><a href="http://www.wptavern.com/removing-links-in-favor-of-menus" rel="bookmark" title="Permanent Link: Removing Links In Favor Of Menus?">Removing Links In Favor Of Menus?</a></li>\n<li><a href="http://www.wptavern.com/things-to-look-for-in-wordpress-3-3-beta-1" rel="bookmark" title="Permanent Link: Things To Look For In WordPress 3.3 Beta 1">Things To Look For In WordPress 3.3 Beta 1</a></li>\n</ol></p><img src="http://feeds.feedburner.com/~r/WordpressTavern/~4/VZLLzTcTDW4" height="1" width="1" />";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Wed, 12 Oct 2011 13:00:07 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:6:"Jeffro";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:47;a:6:{s:4:"data";s:13:"\n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:29:"Matt: Whats Next for Apple";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:21:"http://ma.tt/?p=39604";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:42:"http://ma.tt/2011/10/whats-next-for-apple/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:9692:"<p><img class="alignright" title="Vintage Apple Logo" src="http://matt.files.wordpress.com/2011/10/apple-rainbow-small.png" alt="" width="200" height="203" />I have no inside information or insight, but historically Apple&#8217;s product improvements have strongly broadcasted where they&#8217;re going in the future. Here are six things I think are inevitable for Apple to do over the next decade, from most to least obvious: maps, iCloud, payments, TVs, search, and cars.</p>\n<h3>1. Maps</h3>\n<p>When the iPhone was first released Steve Jobs called Maps on iPhone <a href="http://www.youtube.com/watch?v=KUEiwBZRHs8&t=8m13s">the best version of Google Maps on the planet</a>, with emphasis on what Apple&#8217;s designers had brought to Google&#8217;s raw technology (can&#8217;t find that link). Four years later, you <a href="http://gigaom.com/apple/apple-charting-new-future-for-ios-maps-without-google/">can&#8217;t imagine</a> such a core piece of the mobile experience reliant on their largest competitor. Hopefully this will also give Apple a chance to fill usability gaps in the maps experience today, like that you can&#8217;t click from the &#8220;where&#8221; field in a calendar appointment straight to maps. (Drives me crazy.) Note that the only &#8220;Google&#8221; branding in maps today is in the bottom left, they know they&#8217;re getting replaced and have done an admirable job on the Safari version of maps on iPhone and iPad.</p>\n<p>Google Maps + Navigation on Android is my favorite mobile app of the past 3 years (haven&#8217;t used Siri yet) &#8212; it&#8217;s what Garmin should have built $8 billion in revenue and R&amp;D ago. (Remember the <a href="http://en.wikipedia.org/wiki/Garmin_N%C3%BCvifone">Garmin Nüvifone</a>?) Apple was smart to partner in the beginning, but they can, and should, raise the bar.</p>\n<h3>2. iCloud</h3>\n<p>The abstraction of documents, photos, videos, their equivalents in &#8220;bought&#8221; media (iBooks, music, movies, and TV shows from the iTunes store), the deemphasis of the filesystem with every iteration of OS X, and the rough ideas of things like MobileMe&#8217;s dock syncing, points to the combination of services that will ultimately disrupt the &#8220;magic folder&#8221; providers like Dropbox. I love Dropbox, but it&#8217;ll be impossible for them to do the deep OS integration needed to match the direction Apple is heading &#8212; never thinking about what is where, ever again, just having everything you&#8217;ve ever created or used available in the same place on all your devices.</p>\n<p>They know this is best for consumers. My friend Rene told me how when his hard drive crashed last year he contacted Apple support and they gave him a link to re-download the past 4 years of music he&#8217;d purchased on iTunes. That&#8217;s obviously the right thing to do, even if labels have had to be dragged kicking and screaming toward it. By this time tomorrow it&#8217;ll just be part of the experience when he signs into iTunes on a new computer. Update: <a href="http://www.techmeme.com/111011/p34#a111011p34">Apple released iTunes 10.5 a day early with this feature</a>.</p>\n<h3>3. Payments</h3>\n<p>Your phone becomes your credit card. Apple doesn&#8217;t replace Visa or Mastercard, but they do replace all of those scammy rewards and branded cards that prey on unsophisticated consumers. Google will probably do this first, but <a href="http://www.youtube.com/watch?v=6VfpVYYQzHs">it&#8217;ll be like Microsoft Surface</a>, brilliant but two sandwiches short of a picnic.</p>\n<h3>4. TVs</h3>\n<p>I recently got one of the <a href="http://www.apple.com/displays/">new Thunderbolt displays</a> and man, a super-sized version of this would be killer in my living room. (The speakers are surprisingly good.) TVs are just so bad, not so much in the hardware which can be beautiful <a href="http://gizmodo.com/5441310/samsungs-led-lcd-hdtv-lineup-the-c9000-does-3d-and-has-a-video+previewing-touch-remote">like Samsung&#8217;s C9000</a> but in the mediocre software, un-features like Auto Motion (which makes beautiful films look like they were shot by a Jersey Shore cameraman with a beer in his other hand), and interfaces that just don&#8217;t do anything you would expect. Hello &#8212; you can detect when a cable is plugged in, don&#8217;t make me switch between 15 sources when only one is connected. My TV takes 5-10 seconds longer to turn on than my iPad. &#8220;Smart TVs&#8221; look like &#8220;smart phones&#8221; did in 2005 &#8212; completely lacking in imagination or joy.</p>\n<p>But to really imagine the strategic importance of this you need to think beyond a super-sized Thunderbolt display and imagine what replaces iMac, one of Apple&#8217;s most beautiful creations. People&#8217;s need for a desktop is seriously declining for the first time since pundits started predicted the decline of the PC a decade ago. The post-PC ecosystem is in place now &#8212; touch, battery life, mobile-first applications, ubiquity of internet access, flash memory. (In Steve Jobs <a href="http://www.youtube.com/watch?v=kN0SVBCJqLs">introduction of the first iPod</a>, two things stand out to me: that terrible font, and the fact one of the main features is <a href="http://forums.macrumors.com/showthread.php?t=48249">20 minutes</a> of <a href="http://support.apple.com/kb/HT2360"><em>skip protection</em></a>.) Mobile works and is getting better, and you won&#8217;t have what we call a desktop 10 years from now.</p>\n<p>Now imagine Apple has a shining 55&#8243; monolith smack dab in the middle of your house. How big of a wifi antenna could they put in there? Could they crush all that lame Cisco teleconference stuff with TV FaceTime? Is there room for a few disk drives that don&#8217;t need to worry about skipping plus a SSD to make it fast? If you look at the direction Apple has been heading with <a href="http://9to5mac.com/2011/06/02/more-on-apples-airporttime-capsule-and-a-possible-refresh/">Time Capsule locally caching software updates</a> it&#8217;s not hard for something similar to work in the other direction, a digital hub that&#8217;s your media server for the house, a large-format display, a time capsule, and an Airplay target all in one. Imagine just one power cable coming out of it, and everything else <a href="http://www.engadget.com/tag/ultrawideband/">wireless</a>, just like the iMac, and a few killer apps we can&#8217;t even imagine yet.</p>\n<p>Finally, home theatre needs disruption &#8212; this is a land of <a href="http://www.monstercable.com/hdmi/hdmi.asp">$200 Monster HDMI cables</a> and similar gouging that functions like a state lottery, an intelligence tax. When I walk through Best Buy, which I try to do once every few months, it feels like it&#8217;s technology at its worst, the magic of progress used as smoke and mirrors to confuse and dupe consumers rather than make their lives better. The Apple TV is just another form factor for the unified experience Apple wants to create every time you touch an electronic device.</p>\n<h3>5. Search</h3>\n<p>There are hints of this in maps, but just like Craigslist is being killed not by a Craigslist-like clone but rather by <a href="http://matt.files.wordpress.com/2011/10/craigslist-disrupted.png">a thousand highly focused replacements</a>, so too <strong>Google will face its existential crisis</strong> not from another webpage with a centered white box, but from the interface and context of search changing completely. Many of Google&#8217;s searches aren&#8217;t that valuable, and a huge percentage of the ones that are aren&#8217;t going to happen at the desktop anymore .The context of your location (which your phone already knows) the &#8220;results page&#8221; of a fantastic map application and the input of a next-generation search interface, like Siri, completely changes the rules of engagement. Google&#8217;s not investing in mobile because they wanted a better phone.</p>\n<h3>6. Cars</h3>\n<p>This is the most far-out, but I think most certain. Voice-controlled search through Siri and Apple Maps provide the hands-free framework for a rich interactive experience while driving. Walk down the car stereo aisle in Best Buy and see what $800 gets you, or a $300 GPS from Garmin, vs an iPad or iPhone. The screens feel like a TI-92 calculator. The typography makes my eyes bleed. I find it morally reprehensible how bad these products are because it&#8217;s one of the areas of technology where a bad interface is most directly tied to injuries and deaths. Car folks are making <a href="http://blogs.cars.com/kickingtires/2011/10/steve-jobs-impact-on-the-automobile.html">their iPhone/iPod integrations better and better</a>, which may be <a href="http://www.youtube.com/watch?v=u4AXaFlIFQA">a glass of ice water in hell</a>, but they&#8217;ll never make the jump to providing a beautiful marriage of media, search, and navigation that a great in-car experience needs. Right now you can spend 110k on a Tesla Roadster, a car of the future, and for an additional $4,500 (9 iPads!) get <a href="http://www.youtube.com/watch?v=Zyaz3jpbU_Y">this Alpine head unit</a>. (Watch that video and try not to laugh at how bad the interface is.) Retail it <a href="http://www.amazon.com/Alpine-INA-W900-Navigation-monitor-digital/dp/B003901QWE">only sets you back 1.4 iPads</a>. That&#8217;s just sad.</p>\n<p>&#8220;People who are really serious about software should make their own hardware.&#8221; &#8212; Alan Kay, 1982. People who make hardware should get their software act together before Apple does for them.</p>\n<p><a href="http://news.ycombinator.com/item?id=3100367">Discussion on Hacker News</a>.</p>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Tue, 11 Oct 2011 20:09:02 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:4:"Matt";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:48;a:6:{s:4:"data";s:13:"\n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:52:"WPTavern: Things To Look For In WordPress 3.3 Beta 1";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:31:"http://www.wptavern.com/?p=5591";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:104:"http://feedproxy.google.com/~r/WordpressTavern/~3/gpDvDMJVT0A/things-to-look-for-in-wordpress-3-3-beta-1";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:6426:"<p>WordPress 3.3 Beta 1 has finally <a href="http://wordpress.org/news/2011/10/wordpress-3-3-beta-1/">been released</a> for the curious at heart to get a glimpse as to what&#8217;s coming in the final version. There are quite a few visual changes that you should look out for and provide feedback on. Here are a couple things worth noting.</p>\n<p><strong>New Feature Pop-ups</strong> &#8211; After WordPress 3.3 is installed, you&#8217;ll see popups that display information pointing users to new features. When testing, see if the popups close upon clicking the close button. Also see if the popups reappear multiple times. There has been an <a href="http://wordpress.org/support/topic/pointers-wont-go-away-in-ie?replies=2">issue with popups and IE7/8</a> with them not going away but Alex Mills is betting that those have been fixed as of <a href="https://core.trac.wordpress.org/ticket/18693">ticket #18693</a></p>\n<p><a href="http://www.wptavern.com/wp-content/uploads/2011/10/featurepopups.png" rel="thumbnail"><img src="http://www.wptavern.com/wp-content/uploads/2011/10/featurepopups.png" alt="Feature Popups" title="featurepopups" width="338" height="166" class="aligncenter size-full wp-image-5592" /></a></p>\n<p><strong>Admin Bar Revamp</strong> &#8211; The Admin bar now sports a darker color. The biggest changes to the admin bar reside within the rearrangement of menu items. Instead of the username and gravatar aligned to the left side of the bar, it&#8217;s now all the way on the right hand side. The search box has been moved to the right of the Add New menu link. Updates has been added as a top menu item. However, your website name now shows up on the far left side of the admin bar and this is where you&#8217;ll find all sorts of administrative tasks when you hover your mouse cursor over the link. The dashboard link as well as Appearance has been added to this menu item along with an assortment of other options. The drop down menus also look a lot like their Administration panel counterparts compared to the 3.2 version. Last but not least, on the left side of the admin bar, there is a small WordPress icon. This icon acts like the <strong>HELP</strong> button in typical software. From here, you can get information about the specific version of WordPress, Freedoms, Credits, links to WordPress.org, the support forums, documentation and giving feedback. </p>\n<p><a href="http://www.wptavern.com/wp-content/uploads/2011/10/WP3point3AdminBar.png" rel="thumbnail"><img src="http://www.wptavern.com/wp-content/uploads/2011/10/WP3point3AdminBar-500x287.png" alt="" title="WP3point3AdminBar" width="500" height="287" class="aligncenter size-large wp-image-5593" /></a></p>\n<p><strong>Flyout Menus</strong> &#8211; All of the top level links within the left menu now have Flyouts where as previously, Flyouts only occurred when the menu was collapsed. </p>\n<p><a href="http://www.wptavern.com/wp-content/uploads/2011/10/flyoutmenus.png" rel="thumbnail"><img src="http://www.wptavern.com/wp-content/uploads/2011/10/flyoutmenus.png" alt="Flyout Menus" title="flyoutmenus" width="309" height="131" class="aligncenter size-full wp-image-5594" /></a></p>\n<p><strong>Drag And Drop Uploading</strong> &#8211; I think users will be surprised the most by the new upload media screen. Thanks to something called <a href="http://core.trac.wordpress.org/ticket/18206">plUpload</a> which has been added to WordPress 3.3, we can now drag multiple files into the editor. This has also allowed the dependence on Flash within the uploader to disappear as support for HTML 5, Flash, and Silverlight are supported with plUpload. I&#8217;ve given it a try with 5 images and it worked great. Users who upload photo sets to WordPress are going to love this enhancement. </p>\n<div id="attachment_5595" class="wp-caption aligncenter"><a href="http://www.wptavern.com/wp-content/uploads/2011/10/MultiFileMediaUploader.png" rel="thumbnail"><img src="http://www.wptavern.com/wp-content/uploads/2011/10/MultiFileMediaUploader-500x407.png" alt="Multiple file Uploader In WordPress 3.3" title="MultiFileMediaUploader" width="500" height="407" class="size-large wp-image-5595" /></a><p class="wp-caption-text">Uploading Multiple Files Or Images At Once Is Now Easier In WP 3.3</p></div>\n<p><strong>One Media Button</strong> &#8211; In WordPress 3.2.1, there are 4 icons within the post editor that allow you to add some type of media to a post. Images, Audio, Video, and strangely enough, an icon named Media. In WordPress 3.3, all of those icons have been replaced by one icon labeled Media. From here, you simply drag whatever media files you have into the uploader. No more picking and choosing since the uploader is smart enough to distinguish between different media types. You can add your typical meta data after the media has been uploaded. </p>\n<div id="attachment_5596" class="wp-caption aligncenter"><a href="http://www.wptavern.com/wp-content/uploads/2011/10/OneMediaIcon.png" rel="thumbnail"><img src="http://www.wptavern.com/wp-content/uploads/2011/10/OneMediaIcon.png" alt="WordPress 3.3. Media Icon" title="OneMediaIcon" width="165" height="47" class="size-full wp-image-5596" /></a><p class="wp-caption-text">One Instead Of Four</p></div>\n<p>WordPress 3.3. will have more to offer than what I have listed here but if you plan on beta testing the new version, you now have a couple things to play around with. If you come across something you think is broken or not working as you think it should, the best thing you can do is report it within the <a href="http://wordpress.org/support/forum/alphabeta">Alpha/Beta section</a> of the WordPress.org Support forums while being as descriptive as possible. </p>\n\n\n<p>Related posts:<ol><li><a href="http://www.wptavern.com/have-you-removed-or-disabled-the-admin-bar" rel="bookmark" title="Permanent Link: Have You Removed Or Disabled The Admin Bar?">Have You Removed Or Disabled The Admin Bar?</a></li>\n<li><a href="http://www.wptavern.com/what-can-you-do-with-wordpress-mu" rel="bookmark" title="Permanent Link: What Can You Do With WordPress MU?">What Can You Do With WordPress MU?</a></li>\n<li><a href="http://www.wptavern.com/wordpress-271-beta-released" rel="bookmark" title="Permanent Link: WordPress 2.7.1 Beta Released">WordPress 2.7.1 Beta Released</a></li>\n</ol></p><img src="http://feeds.feedburner.com/~r/WordpressTavern/~4/gpDvDMJVT0A" height="1" width="1" />";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Tue, 11 Oct 2011 17:00:57 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:6:"Jeffro";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:49;a:6:{s:4:"data";s:13:"\n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:52:"WPTavern: Plugin Review Spots By Interconnect/it";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:31:"http://www.wptavern.com/?p=5584";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:99:"http://feedproxy.google.com/~r/WordpressTavern/~3/S1hBw1Yfcqo/plugin-review-spots-by-interconnectit";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:3718:"<p><a href="http://www.wptavern.com/wp-content/uploads/2011/10/interconnectitlogo.png" rel="thumbnail"><img src="http://www.wptavern.com/wp-content/uploads/2011/10/interconnectitlogo.png" alt="Interconnect It Logo" title="interconnectitlogo" width="298" height="60" class="alignright size-full wp-image-5585" /></a>Back on August 25th, the guys over at Interconnect/it released a brand new plugin called <a href="http://interconnectit.com/2364/announcing-spots/">Spots</a>. If I had to describe this plugin in one sentence, I&#8217;d say it was a text widget on steroids.</p>\n<p>There are quite a few things that make this plugin very cool to use. The first is that it uses a custom post type which means when you create a spot, you get access to the editor as if you were writing a post. You also get access to all the stuff that&#8217;s normally attached to a post with the exception of tags and categories. Because you get to use the normal editor, it&#8217;s very easy to add media to the spots that are created without using blocks of HTML as you normally would within a text widget. </p>\n<p><a href="http://www.wptavern.com/wp-content/uploads/2011/10/testspot.png" rel="thumbnail"><img src="http://www.wptavern.com/wp-content/uploads/2011/10/testspot-500x269.png" alt="Test SPot" title="testspot" width="500" height="269" class="aligncenter size-large wp-image-5587" /></a></p>\n<p>After a spot is created, you can add it to any sidebar that&#8217;s built for widgets. However, you&#8217;re not limited to using spots in the sidebar only. In the Visual editor for writing posts, there is a Spots button which uses a shortcode to insert the spot into a post or page. </p>\n<div id="attachment_5588" class="wp-caption aligncenter"><a href="http://www.wptavern.com/wp-content/uploads/2011/10/spotsshortcode.png" rel="thumbnail"><img src="http://www.wptavern.com/wp-content/uploads/2011/10/spotsshortcode-500x133.png" alt="Spots ShortCode" title="spotsshortcode" width="500" height="133" class="size-large wp-image-5588" /></a><p class="wp-caption-text">Shortcode Button That Inserts The Spots Shortcode</p></div>\n<p>Developers can also take advantage of this plugin by using the built in functions. For example, instead of hard coding text into a widget within the footer of a theme, you could turn it into a spot which would enable the end user to customize that spot with whatever they want from the administration panel, not having to touch any code. By doing it this way, theme developers could probably get rid of a couple theme options for text areas or default widget areas. </p>\n<h2>Conclusion:</h2>\n<p>Spots is an awesome plugin by the crew over at Interconnect/it. People have been wanting WYSIWYG functionality in text widgets since the day they were introduced into WordPress. This plugin does that and so much more. If you&#8217;re looking for a replacement for the default text widget in WordPress that provides more flexibility, definitely give <a href="http://wordpress.org/extend/plugins/spots/">Spots</a> a try. </p>\n\n\n<p>Related posts:<ol><li><a href="http://www.wptavern.com/review-of-front-end-editor-plugin" rel="bookmark" title="Permanent Link: Review Of Front End Editor Plugin">Review Of Front End Editor Plugin</a></li>\n<li><a href="http://www.wptavern.com/plugin-review-technical-support" rel="bookmark" title="Permanent Link: Plugin Review: Technical Support">Plugin Review: Technical Support</a></li>\n<li><a href="http://www.wptavern.com/widgetizing-that-theme-of-yours" rel="bookmark" title="Permanent Link: Widgetizing That Theme Of Yours">Widgetizing That Theme Of Yours</a></li>\n</ol></p><img src="http://feeds.feedburner.com/~r/WordpressTavern/~4/S1hBw1Yfcqo" height="1" width="1" />";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Tue, 11 Oct 2011 13:00:47 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:6:"Jeffro";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}}}}}}}}}}}}s:4:"type";i:128;s:7:"headers";a:9:{s:6:"server";s:5:"nginx";s:4:"date";s:29:"Sun, 23 Oct 2011 14:43:19 GMT";s:12:"content-type";s:15:"application/xml";s:10:"connection";s:5:"close";s:4:"vary";s:15:"Accept-Encoding";s:13:"last-modified";s:29:"Sun, 23 Oct 2011 14:30:36 GMT";s:14:"content-length";s:6:"143318";s:4:"x-nc";s:11:"HIT luv 139";s:13:"accept-ranges";s:5:"bytes";}s:5:"build";s:14:"20090627192103";}', 'no');
INSERT INTO `wp_options` (`option_id`, `blog_id`, `option_name`, `option_value`, `autoload`) VALUES
(245, 0, '_transient_timeout_feed_mod_1a5f760f2e2b48827d4974a60857e7c2', '1319424202', 'no'),
(246, 0, '_transient_feed_mod_1a5f760f2e2b48827d4974a60857e7c2', '1319381002', 'no'),
(243, 0, '_transient_timeout_feed_1a5f760f2e2b48827d4974a60857e7c2', '1319424202', 'no'),
(244, 0, '_transient_feed_1a5f760f2e2b48827d4974a60857e7c2', 'a:4:{s:5:"child";a:1:{s:0:"";a:1:{s:3:"rss";a:1:{i:0;a:6:{s:4:"data";s:3:"\n \n";s:7:"attribs";a:1:{s:0:"";a:1:{s:7:"version";s:3:"2.0";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:1:{s:0:"";a:1:{s:7:"channel";a:1:{i:0;a:6:{s:4:"data";s:72:"\n \n \n \n \n \n \n \n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:7:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:43:"WordPress Plugins » View: Recently Updated";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:51:"http://wordpress.org/extend/plugins/browse/updated/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:43:"WordPress Plugins » View: Recently Updated";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"language";a:1:{i:0;a:5:{s:4:"data";s:5:"en-US";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Sun, 23 Oct 2011 14:36:18 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:9:"generator";a:1:{i:0;a:5:{s:4:"data";s:25:"http://bbpress.org/?v=1.1";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"item";a:15:{i:0;a:6:{s:4:"data";s:30:"\n \n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:34:"David Dean on "BP Group Organizer"";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:66:"http://wordpress.org/extend/plugins/bp-group-organizer/#post-29536";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Tue, 23 Aug 2011 00:35:55 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:42:"29536@http://wordpress.org/extend/plugins/";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:81:"Easily create, edit, and delete BuddyPress groups - with drag and drop simplicity";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:10:"David Dean";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:1;a:6:{s:4:"data";s:30:"\n \n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:43:"TechboyUK on "GetMeCooking Recipe Template"";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:76:"http://wordpress.org/extend/plugins/getmecooking-recipe-template/#post-29726";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Tue, 30 Aug 2011 20:55:20 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:42:"29726@http://wordpress.org/extend/plugins/";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:147:"For food bloggers. Display one or more recipes per page in an easy to read format with print, recipe search, custom layout, SEO and other features.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:9:"TechboyUK";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:2;a:6:{s:4:"data";s:30:"\n \n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:51:"Paperthin.de on "Progressbar (Edition for Readers)"";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:79:"http://wordpress.org/extend/plugins/progressbar-edition-for-readers/#post-31391";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Sat, 22 Oct 2011 00:20:01 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:42:"31391@http://wordpress.org/extend/plugins/";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:45:"This plugin indicates progress made on books.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:12:"Paperthin.de";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:3;a:6:{s:4:"data";s:30:"\n \n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:32:"CyberSEO on "YouTube Chromeless"";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:66:"http://wordpress.org/extend/plugins/youtube-chromeless/#post-31364";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Fri, 21 Oct 2011 17:20:44 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:42:"31364@http://wordpress.org/extend/plugins/";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:125:"The YouTube Chromeless plugin allows one easily insert YouTube videos into WordPress posts and play it in customizing player.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:8:"CyberSEO";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:4;a:6:{s:4:"data";s:30:"\n \n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:38:"uwebic on "uWebic wordpress framework"";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:74:"http://wordpress.org/extend/plugins/uwebic-wordpress-framework/#post-31428";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Sun, 23 Oct 2011 09:43:23 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:42:"31428@http://wordpress.org/extend/plugins/";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:74:"A framework to ease up the process of developing new plugins for wordpress";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:6:"uwebic";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:5;a:6:{s:4:"data";s:30:"\n \n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:28:"CyberSEO on "WP Mass Delete"";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:62:"http://wordpress.org/extend/plugins/wp-mass-delete/#post-30857";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Thu, 06 Oct 2011 13:13:46 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:42:"30857@http://wordpress.org/extend/plugins/";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:141:"Allows you to mass delete WordPress posts and pages according to the specified conditions such as date range, post status, post content, etc.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:8:"CyberSEO";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:6;a:6:{s:4:"data";s:30:"\n \n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:40:"akarmenia on "Crayon Syntax Highlighter"";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:73:"http://wordpress.org/extend/plugins/crayon-syntax-highlighter/#post-29084";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Sat, 06 Aug 2011 06:52:34 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:42:"29084@http://wordpress.org/extend/plugins/";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:107:"Syntax Highlighter supporting multiple languages, themes, highlighting from a URL, local file or post text.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:9:"akarmenia";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:7;a:6:{s:4:"data";s:30:"\n \n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:22:"CyberSEO on "WP Flash"";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:56:"http://wordpress.org/extend/plugins/wp-flash/#post-30456";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Fri, 23 Sep 2011 12:39:59 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:42:"30456@http://wordpress.org/extend/plugins/";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:82:"Innserts the Adobe Flash animation into WordPress blog posts, pages and RSS feeds.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:8:"CyberSEO";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:8;a:6:{s:4:"data";s:30:"\n \n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:26:"CyberSEO on "Tags On Page"";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:60:"http://wordpress.org/extend/plugins/tags-on-page/#post-31144";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Sat, 15 Oct 2011 10:09:37 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:42:"31144@http://wordpress.org/extend/plugins/";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:58:"Displays a list of tags (tag cloud) on the specified page.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:8:"CyberSEO";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:9;a:6:{s:4:"data";s:30:"\n \n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:24:"CyberSEO on "Simple FLV"";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:58:"http://wordpress.org/extend/plugins/simple-flv/#post-31268";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Wed, 19 Oct 2011 09:01:25 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:42:"31268@http://wordpress.org/extend/plugins/";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:116:"An extremely small and simple plugin which allows one to easily embed Flash videos (FLV files) into WordPress blogs.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:8:"CyberSEO";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:10;a:6:{s:4:"data";s:30:"\n \n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:22:"CyberSEO on "CyberSyn"";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:56:"http://wordpress.org/extend/plugins/cybersyn/#post-31242";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Tue, 18 Oct 2011 16:08:41 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:42:"31242@http://wordpress.org/extend/plugins/";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:85:"A simple and lightweight but very powerful Atom/RSS syndicating plugin for WordPress.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:8:"CyberSEO";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:11;a:6:{s:4:"data";s:30:"\n \n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:29:"Max Bond on "Q2W3 Post Order"";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:63:"http://wordpress.org/extend/plugins/q2w3-post-order/#post-30856";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Thu, 06 Oct 2011 11:29:30 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:42:"30856@http://wordpress.org/extend/plugins/";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:86:"Lets you manipulate the order in which posts are displayed. Requires WP 3.1 or higher!";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:8:"Max Bond";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:12;a:6:{s:4:"data";s:30:"\n \n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:44:"Arevico on "Multi Functional Flexi Lightbox"";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:79:"http://wordpress.org/extend/plugins/multi-functional-flexi-lightbox/#post-29933";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Wed, 07 Sep 2011 12:12:36 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:42:"29933@http://wordpress.org/extend/plugins/";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:149:"Multi Functional Flexi Lightbox: With this plugin you can promote contest, grow your opt-in list, etc. This is a multi functional, flexible lightbox.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:7:"Arevico";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:13;a:6:{s:4:"data";s:30:"\n \n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:38:"iintensemedia on "1-Click Website SEO"";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:67:"http://wordpress.org/extend/plugins/1-click-website-seo/#post-31421";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Sun, 23 Oct 2011 05:49:42 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:42:"31421@http://wordpress.org/extend/plugins/";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:97:"One Click SEO Plugin Completely SEO Optimizes Your Website Posts and Pages in just 1 single click";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"iintensemedia";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:14;a:6:{s:4:"data";s:30:"\n \n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:30:"aspatti on "WP Super Settings"";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:65:"http://wordpress.org/extend/plugins/wp-super-settings/#post-31083";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Thu, 13 Oct 2011 15:45:03 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:42:"31083@http://wordpress.org/extend/plugins/";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:127:"WP Super Settings allows you to do various generally required settings in WordPress which are otherwise not available directly.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:7:"aspatti";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}}}s:27:"http://www.w3.org/2005/Atom";a:1:{s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:0:"";s:7:"attribs";a:1:{s:0:"";a:3:{s:4:"href";s:52:"http://wordpress.org/extend/plugins/rss/view/updated";s:3:"rel";s:4:"self";s:4:"type";s:19:"application/rss+xml";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}}}}}}}}s:4:"type";i:128;s:7:"headers";a:8:{s:6:"server";s:5:"nginx";s:4:"date";s:29:"Sun, 23 Oct 2011 14:43:21 GMT";s:12:"content-type";s:23:"text/xml; charset=UTF-8";s:10:"connection";s:5:"close";s:4:"vary";s:15:"Accept-Encoding";s:13:"last-modified";s:19:"2011-08-23 00:35:55";s:14:"content-length";s:4:"7825";s:4:"x-nc";s:11:"HIT luv 139";}s:5:"build";s:14:"20090627192103";}', 'no'),
(247, 0, '_transient_timeout_plugin_slugs', '1319467402', 'no'),
(248, 0, '_transient_plugin_slugs', 'a:2:{i:0;s:19:"akismet/akismet.php";i:1;s:9:"hello.php";}', 'no'),
(249, 0, '_transient_timeout_dash_de3249c4736ad3bd2cd29147c4a0d43e', '1319424202', 'no'),
(250, 0, '_transient_dash_de3249c4736ad3bd2cd29147c4a0d43e', '<h4>Más populares</h4>\n<h5><a href=''http://wordpress.org/extend/plugins/si-contact-form/''>Fast Secure Contact Form</a></h5>&nbsp;<span>(<a href=''plugin-install.php?tab=plugin-information&amp;plugin=si-contact-form&amp;_wpnonce=bf5de45ac5&amp;TB_iframe=true&amp;width=600&amp;height=800'' class=''thickbox'' title=''Fast Secure Contact Form''>Instalar</a>)</span>\n<p>A super customizable contact form that lets your visitors send you email. Blocks all automated spammers. No templates to mess with.</p>\n<h4>Plugins recientes</h4>\n<h5><a href=''http://wordpress.org/extend/plugins/uwebic-wordpress-framework/''>uWebic wordpress framework</a></h5>&nbsp;<span>(<a href=''plugin-install.php?tab=plugin-information&amp;plugin=uwebic-wordpress-framework&amp;_wpnonce=e032f8e208&amp;TB_iframe=true&amp;width=600&amp;height=800'' class=''thickbox'' title=''uWebic wordpress framework''>Instalar</a>)</span>\n<p>A framework to ease up the process of developing new plugins for wordpress</p>\n<h4>Actualizados recientemente</h4>\n<h5><a href=''http://wordpress.org/extend/plugins/progressbar-edition-for-readers/''>Progressbar (Edition for Readers)</a></h5>&nbsp;<span>(<a href=''plugin-install.php?tab=plugin-information&amp;plugin=progressbar-edition-for-readers&amp;_wpnonce=a041a961d6&amp;TB_iframe=true&amp;width=600&amp;height=800'' class=''thickbox'' title=''Progressbar (Edition for Readers)''>Instalar</a>)</span>\n<p>This plugin indicates progress made on books.</p>\n', 'no'),
(155, 0, '_site_transient_timeout_wporg_theme_feature_list', '1316813695', 'yes'),
(156, 0, '_site_transient_wporg_theme_feature_list', 'a:5:{s:6:"Colors";a:15:{i:0;s:5:"black";i:1;s:4:"blue";i:2;s:5:"brown";i:3;s:4:"gray";i:4;s:5:"green";i:5;s:6:"orange";i:6;s:4:"pink";i:7;s:6:"purple";i:8;s:3:"red";i:9;s:6:"silver";i:10;s:3:"tan";i:11;s:5:"white";i:12;s:6:"yellow";i:13;s:4:"dark";i:14;s:5:"light";}s:7:"Columns";a:6:{i:0;s:10:"one-column";i:1;s:11:"two-columns";i:2;s:13:"three-columns";i:3;s:12:"four-columns";i:4;s:12:"left-sidebar";i:5;s:13:"right-sidebar";}s:5:"Width";a:2:{i:0;s:11:"fixed-width";i:1;s:14:"flexible-width";}s:8:"Features";a:18:{i:0;s:8:"blavatar";i:1;s:10:"buddypress";i:2;s:17:"custom-background";i:3;s:13:"custom-colors";i:4;s:13:"custom-header";i:5;s:11:"custom-menu";i:6;s:12:"editor-style";i:7;s:21:"featured-image-header";i:8;s:15:"featured-images";i:9;s:20:"front-page-post-form";i:10;s:19:"full-width-template";i:11;s:12:"microformats";i:12;s:12:"post-formats";i:13;s:20:"rtl-language-support";i:14;s:11:"sticky-post";i:15;s:13:"theme-options";i:16;s:17:"threaded-comments";i:17;s:17:"translation-ready";}s:7:"Subject";a:3:{i:0;s:7:"holiday";i:1;s:13:"photoblogging";i:2;s:8:"seasonal";}}', 'yes'),
(158, 0, 'theme_mods_Broadside', 'a:2:{i:0;b:0;s:18:"nav_menu_locations";a:1:{s:10:"navigation";i:3;}}', 'yes'),
(159, 0, 'optionsframework', 'a:2:{s:2:"id";s:9:"broadside";s:12:"knownoptions";a:1:{i:0;s:9:"broadside";}}', 'yes'),
(160, 0, 'broadside', 'a:32:{s:13:"email_address";s:0:"";s:11:"footer_text";s:53:"Copyright &copy; 2011 &ndash; Instaldeco S.L. &ndash;";s:13:"facebook_link";s:0:"";s:10:"twitter_id";s:0:"";s:11:"flickr_link";s:0:"";s:10:"vimeo_link";s:0:"";s:11:"google_link";s:0:"";s:16:"stumbleupon_link";s:0:"";s:12:"youtube_link";s:0:"";s:4:"logo";s:75:"http://localhost/instaldeco/wp-content/uploads/2011/09/logo-instaldeco1.png";s:13:"logo_position";s:6:"bottom";s:12:"nav_position";s:3:"top";s:7:"favicon";s:0:"";s:10:"default_bg";s:69:"http://localhost/instaldeco/wp-content/uploads/2011/09/camouflage.png";s:7:"blog_bg";s:95:"http://localhost/instaldeco/wp-content/themes/Broadside/images/backgrounds/about-background.jpg";s:11:"site_height";s:3:"600";s:16:"scrollbar_height";s:3:"330";s:7:"menu_bg";s:7:"#FF6900";s:14:"headings_color";s:7:"#515151";s:11:"static_menu";s:2:"no";s:10:"home_title";s:10:"Instaldeco";s:9:"home_meta";s:85:"Desarrollamos y materializamos cualquier proyecto o idea que llegue a nuestras manos.";s:13:"tracking_code";s:0:"";s:9:"404_error";s:21:"Página no encontrada";s:10:"custom_css";s:0:"";s:9:"custom_js";s:0:"";s:9:"animation";s:4:"fade";s:5:"speed";s:4:"1200";s:5:"timer";s:4:"true";s:10:"transition";s:4:"4000";s:6:"arrows";s:5:"false";s:7:"bullets";s:4:"true";}', 'yes'),
(183, 0, 'nav_menu_options', 'a:2:{i:0;b:0;s:8:"auto_add";a:0:{}}', 'yes'),
(190, 0, '_transient_random_seed', '3bb3dce2e079d559507740585673f719', 'yes'),
(326, 0, 'rewrite_rules', 'a:94:{s:12:"portfolio/?$";s:29:"index.php?post_type=portfolio";s:42:"portfolio/feed/(feed|rdf|rss|rss2|atom)/?$";s:46:"index.php?post_type=portfolio&feed=$matches[1]";s:37:"portfolio/(feed|rdf|rss|rss2|atom)/?$";s:46:"index.php?post_type=portfolio&feed=$matches[1]";s:29:"portfolio/page/([0-9]{1,})/?$";s:47:"index.php?post_type=portfolio&paged=$matches[1]";s:47:"category/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$";s:52:"index.php?category_name=$matches[1]&feed=$matches[2]";s:42:"category/(.+?)/(feed|rdf|rss|rss2|atom)/?$";s:52:"index.php?category_name=$matches[1]&feed=$matches[2]";s:35:"category/(.+?)/page/?([0-9]{1,})/?$";s:53:"index.php?category_name=$matches[1]&paged=$matches[2]";s:17:"category/(.+?)/?$";s:35:"index.php?category_name=$matches[1]";s:44:"tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$";s:42:"index.php?tag=$matches[1]&feed=$matches[2]";s:39:"tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$";s:42:"index.php?tag=$matches[1]&feed=$matches[2]";s:32:"tag/([^/]+)/page/?([0-9]{1,})/?$";s:43:"index.php?tag=$matches[1]&paged=$matches[2]";s:14:"tag/([^/]+)/?$";s:25:"index.php?tag=$matches[1]";s:45:"type/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$";s:43:"index.php?type=$matches[1]&feed=$matches[2]";s:40:"type/([^/]+)/(feed|rdf|rss|rss2|atom)/?$";s:43:"index.php?type=$matches[1]&feed=$matches[2]";s:33:"type/([^/]+)/page/?([0-9]{1,})/?$";s:44:"index.php?type=$matches[1]&paged=$matches[2]";s:15:"type/([^/]+)/?$";s:26:"index.php?type=$matches[1]";s:37:"portfolio/[^/]+/attachment/([^/]+)/?$";s:32:"index.php?attachment=$matches[1]";s:47:"portfolio/[^/]+/attachment/([^/]+)/trackback/?$";s:37:"index.php?attachment=$matches[1]&tb=1";s:67:"portfolio/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?attachment=$matches[1]&feed=$matches[2]";s:62:"portfolio/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?attachment=$matches[1]&feed=$matches[2]";s:62:"portfolio/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$";s:50:"index.php?attachment=$matches[1]&cpage=$matches[2]";s:30:"portfolio/([^/]+)/trackback/?$";s:36:"index.php?portfolio=$matches[1]&tb=1";s:50:"portfolio/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$";s:48:"index.php?portfolio=$matches[1]&feed=$matches[2]";s:45:"portfolio/([^/]+)/(feed|rdf|rss|rss2|atom)/?$";s:48:"index.php?portfolio=$matches[1]&feed=$matches[2]";s:38:"portfolio/([^/]+)/page/?([0-9]{1,})/?$";s:49:"index.php?portfolio=$matches[1]&paged=$matches[2]";s:45:"portfolio/([^/]+)/comment-page-([0-9]{1,})/?$";s:49:"index.php?portfolio=$matches[1]&cpage=$matches[2]";s:30:"portfolio/([^/]+)(/[0-9]+)?/?$";s:48:"index.php?portfolio=$matches[1]&page=$matches[2]";s:26:"portfolio/[^/]+/([^/]+)/?$";s:32:"index.php?attachment=$matches[1]";s:36:"portfolio/[^/]+/([^/]+)/trackback/?$";s:37:"index.php?attachment=$matches[1]&tb=1";s:56:"portfolio/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?attachment=$matches[1]&feed=$matches[2]";s:51:"portfolio/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?attachment=$matches[1]&feed=$matches[2]";s:51:"portfolio/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$";s:50:"index.php?attachment=$matches[1]&cpage=$matches[2]";s:14:".*wp-atom.php$";s:19:"index.php?feed=atom";s:13:".*wp-rdf.php$";s:18:"index.php?feed=rdf";s:13:".*wp-rss.php$";s:18:"index.php?feed=rss";s:14:".*wp-rss2.php$";s:19:"index.php?feed=rss2";s:14:".*wp-feed.php$";s:19:"index.php?feed=feed";s:22:".*wp-commentsrss2.php$";s:34:"index.php?feed=rss2&withcomments=1";s:32:"feed/(feed|rdf|rss|rss2|atom)/?$";s:27:"index.php?&feed=$matches[1]";s:27:"(feed|rdf|rss|rss2|atom)/?$";s:27:"index.php?&feed=$matches[1]";s:20:"page/?([0-9]{1,})/?$";s:28:"index.php?&paged=$matches[1]";s:27:"comment-page-([0-9]{1,})/?$";s:39:"index.php?&page_id=11&cpage=$matches[1]";s:41:"comments/feed/(feed|rdf|rss|rss2|atom)/?$";s:42:"index.php?&feed=$matches[1]&withcomments=1";s:36:"comments/(feed|rdf|rss|rss2|atom)/?$";s:42:"index.php?&feed=$matches[1]&withcomments=1";s:29:"comments/page/?([0-9]{1,})/?$";s:28:"index.php?&paged=$matches[1]";s:44:"search/(.+)/feed/(feed|rdf|rss|rss2|atom)/?$";s:40:"index.php?s=$matches[1]&feed=$matches[2]";s:39:"search/(.+)/(feed|rdf|rss|rss2|atom)/?$";s:40:"index.php?s=$matches[1]&feed=$matches[2]";s:32:"search/(.+)/page/?([0-9]{1,})/?$";s:41:"index.php?s=$matches[1]&paged=$matches[2]";s:14:"search/(.+)/?$";s:23:"index.php?s=$matches[1]";s:47:"author/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$";s:50:"index.php?author_name=$matches[1]&feed=$matches[2]";s:42:"author/([^/]+)/(feed|rdf|rss|rss2|atom)/?$";s:50:"index.php?author_name=$matches[1]&feed=$matches[2]";s:35:"author/([^/]+)/page/?([0-9]{1,})/?$";s:51:"index.php?author_name=$matches[1]&paged=$matches[2]";s:17:"author/([^/]+)/?$";s:33:"index.php?author_name=$matches[1]";s:69:"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$";s:80:"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]";s:64:"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$";s:80:"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]";s:57:"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/page/?([0-9]{1,})/?$";s:81:"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&paged=$matches[4]";s:39:"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/?$";s:63:"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]";s:56:"([0-9]{4})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$";s:64:"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]";s:51:"([0-9]{4})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$";s:64:"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]";s:44:"([0-9]{4})/([0-9]{1,2})/page/?([0-9]{1,})/?$";s:65:"index.php?year=$matches[1]&monthnum=$matches[2]&paged=$matches[3]";s:26:"([0-9]{4})/([0-9]{1,2})/?$";s:47:"index.php?year=$matches[1]&monthnum=$matches[2]";s:43:"([0-9]{4})/feed/(feed|rdf|rss|rss2|atom)/?$";s:43:"index.php?year=$matches[1]&feed=$matches[2]";s:38:"([0-9]{4})/(feed|rdf|rss|rss2|atom)/?$";s:43:"index.php?year=$matches[1]&feed=$matches[2]";s:31:"([0-9]{4})/page/?([0-9]{1,})/?$";s:44:"index.php?year=$matches[1]&paged=$matches[2]";s:13:"([0-9]{4})/?$";s:26:"index.php?year=$matches[1]";s:47:"[0-9]{4}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/?$";s:32:"index.php?attachment=$matches[1]";s:57:"[0-9]{4}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/trackback/?$";s:37:"index.php?attachment=$matches[1]&tb=1";s:77:"[0-9]{4}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?attachment=$matches[1]&feed=$matches[2]";s:72:"[0-9]{4}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?attachment=$matches[1]&feed=$matches[2]";s:72:"[0-9]{4}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$";s:50:"index.php?attachment=$matches[1]&cpage=$matches[2]";s:44:"([0-9]{4})/([0-9]{1,2})/([^/]+)/trackback/?$";s:69:"index.php?year=$matches[1]&monthnum=$matches[2]&name=$matches[3]&tb=1";s:64:"([0-9]{4})/([0-9]{1,2})/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$";s:81:"index.php?year=$matches[1]&monthnum=$matches[2]&name=$matches[3]&feed=$matches[4]";s:59:"([0-9]{4})/([0-9]{1,2})/([^/]+)/(feed|rdf|rss|rss2|atom)/?$";s:81:"index.php?year=$matches[1]&monthnum=$matches[2]&name=$matches[3]&feed=$matches[4]";s:52:"([0-9]{4})/([0-9]{1,2})/([^/]+)/page/?([0-9]{1,})/?$";s:82:"index.php?year=$matches[1]&monthnum=$matches[2]&name=$matches[3]&paged=$matches[4]";s:59:"([0-9]{4})/([0-9]{1,2})/([^/]+)/comment-page-([0-9]{1,})/?$";s:82:"index.php?year=$matches[1]&monthnum=$matches[2]&name=$matches[3]&cpage=$matches[4]";s:44:"([0-9]{4})/([0-9]{1,2})/([^/]+)(/[0-9]+)?/?$";s:81:"index.php?year=$matches[1]&monthnum=$matches[2]&name=$matches[3]&page=$matches[4]";s:36:"[0-9]{4}/[0-9]{1,2}/[^/]+/([^/]+)/?$";s:32:"index.php?attachment=$matches[1]";s:46:"[0-9]{4}/[0-9]{1,2}/[^/]+/([^/]+)/trackback/?$";s:37:"index.php?attachment=$matches[1]&tb=1";s:66:"[0-9]{4}/[0-9]{1,2}/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?attachment=$matches[1]&feed=$matches[2]";s:61:"[0-9]{4}/[0-9]{1,2}/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?attachment=$matches[1]&feed=$matches[2]";s:61:"[0-9]{4}/[0-9]{1,2}/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$";s:50:"index.php?attachment=$matches[1]&cpage=$matches[2]";s:51:"([0-9]{4})/([0-9]{1,2})/comment-page-([0-9]{1,})/?$";s:65:"index.php?year=$matches[1]&monthnum=$matches[2]&cpage=$matches[3]";s:38:"([0-9]{4})/comment-page-([0-9]{1,})/?$";s:44:"index.php?year=$matches[1]&cpage=$matches[2]";s:25:".+?/attachment/([^/]+)/?$";s:32:"index.php?attachment=$matches[1]";s:35:".+?/attachment/([^/]+)/trackback/?$";s:37:"index.php?attachment=$matches[1]&tb=1";s:55:".+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?attachment=$matches[1]&feed=$matches[2]";s:50:".+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?attachment=$matches[1]&feed=$matches[2]";s:50:".+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$";s:50:"index.php?attachment=$matches[1]&cpage=$matches[2]";s:18:"(.+?)/trackback/?$";s:35:"index.php?pagename=$matches[1]&tb=1";s:38:"(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$";s:47:"index.php?pagename=$matches[1]&feed=$matches[2]";s:33:"(.+?)/(feed|rdf|rss|rss2|atom)/?$";s:47:"index.php?pagename=$matches[1]&feed=$matches[2]";s:26:"(.+?)/page/?([0-9]{1,})/?$";s:48:"index.php?pagename=$matches[1]&paged=$matches[2]";s:33:"(.+?)/comment-page-([0-9]{1,})/?$";s:48:"index.php?pagename=$matches[1]&cpage=$matches[2]";s:18:"(.+?)(/[0-9]+)?/?$";s:47:"index.php?pagename=$matches[1]&page=$matches[2]";}', 'yes'),
(199, 0, 'theme_mods_twentyeleven', 'a:1:{i:0;b:0;}', 'yes'),
(216, 0, '_site_transient_browser_1d20bd6665726e17a497435a4952284d', 'a:9:{s:8:"platform";s:7:"Windows";s:4:"name";s:7:"Firefox";s:7:"version";s:5:"7.0.1";s:10:"update_url";s:23:"http://www.firefox.com/";s:7:"img_src";s:50:"http://s.wordpress.org/images/browsers/firefox.png";s:11:"img_src_ssl";s:49:"https://wordpress.org/images/browsers/firefox.png";s:15:"current_version";s:1:"6";s:7:"upgrade";b:0;s:8:"insecure";b:0;}', 'yes'),
(215, 0, '_site_transient_timeout_browser_1d20bd6665726e17a497435a4952284d', '1319985797', 'yes');
-- --------------------------------------------------------
--
-- Estructura de tabla para la tabla `wp_postmeta`
--
CREATE TABLE IF NOT EXISTS `wp_postmeta` (
`meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`post_id` bigint(20) unsigned 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`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=959 ;
--
-- Volcado de datos para la tabla `wp_postmeta`
--
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1, 2, '_wp_page_template', 'default'),
(2, 8, '_wp_attached_file', '2011/09/camouflage.png'),
(3, 8, '_wp_attachment_metadata', 'a:6:{s:5:"width";s:4:"2070";s:6:"height";s:4:"1360";s:14:"hwstring_small";s:23:"height=''84'' width=''128''";s:4:"file";s:22:"2011/09/camouflage.png";s:5:"sizes";a:8:{s:9:"thumbnail";a:3:{s:4:"file";s:22:"camouflage-150x150.png";s:5:"width";s:3:"150";s:6:"height";s:3:"150";}s:6:"medium";a:3:{s:4:"file";s:22:"camouflage-300x197.png";s:5:"width";s:3:"300";s:6:"height";s:3:"197";}s:5:"large";a:3:{s:4:"file";s:23:"camouflage-1024x672.png";s:5:"width";s:4:"1024";s:6:"height";s:3:"672";}s:20:"post-thumbnail-image";a:3:{s:4:"file";s:22:"camouflage-125x120.png";s:5:"width";s:3:"125";s:6:"height";s:3:"120";}s:10:"team-image";a:3:{s:4:"file";s:22:"camouflage-120x120.png";s:5:"width";s:3:"120";s:6:"height";s:3:"120";}s:19:"portfolio-thumbnail";a:3:{s:4:"file";s:22:"camouflage-135x117.png";s:5:"width";s:3:"135";s:6:"height";s:3:"117";}s:19:"portfolio-scrolling";a:3:{s:4:"file";s:22:"camouflage-135x117.png";s:5:"width";s:3:"135";s:6:"height";s:3:"117";}s:17:"portfolio-gallery";a:3:{s:4:"file";s:22:"camouflage-450x287.png";s:5:"width";s:3:"450";s:6:"height";s:3:"287";}}s:10:"image_meta";a:10:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";}}'),
(4, 9, '_wp_attached_file', '2011/09/logo-instaldeco.png'),
(5, 9, '_wp_attachment_metadata', 'a:6:{s:5:"width";s:3:"270";s:6:"height";s:3:"122";s:14:"hwstring_small";s:23:"height=''57'' width=''128''";s:4:"file";s:27:"2011/09/logo-instaldeco.png";s:5:"sizes";a:5:{s:9:"thumbnail";a:3:{s:4:"file";s:27:"logo-instaldeco-150x122.png";s:5:"width";s:3:"150";s:6:"height";s:3:"122";}s:20:"post-thumbnail-image";a:3:{s:4:"file";s:27:"logo-instaldeco-125x120.png";s:5:"width";s:3:"125";s:6:"height";s:3:"120";}s:10:"team-image";a:3:{s:4:"file";s:27:"logo-instaldeco-120x120.png";s:5:"width";s:3:"120";s:6:"height";s:3:"120";}s:19:"portfolio-thumbnail";a:3:{s:4:"file";s:27:"logo-instaldeco-135x117.png";s:5:"width";s:3:"135";s:6:"height";s:3:"117";}s:19:"portfolio-scrolling";a:3:{s:4:"file";s:27:"logo-instaldeco-135x117.png";s:5:"width";s:3:"135";s:6:"height";s:3:"117";}}s:10:"image_meta";a:10:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";}}'),
(6, 10, '_wp_attached_file', '2011/09/logo-instaldeco1.png'),
(7, 10, '_wp_attachment_metadata', 'a:6:{s:5:"width";s:3:"270";s:6:"height";s:3:"122";s:14:"hwstring_small";s:23:"height=''57'' width=''128''";s:4:"file";s:28:"2011/09/logo-instaldeco1.png";s:5:"sizes";a:5:{s:9:"thumbnail";a:3:{s:4:"file";s:28:"logo-instaldeco1-150x122.png";s:5:"width";s:3:"150";s:6:"height";s:3:"122";}s:20:"post-thumbnail-image";a:3:{s:4:"file";s:28:"logo-instaldeco1-125x120.png";s:5:"width";s:3:"125";s:6:"height";s:3:"120";}s:10:"team-image";a:3:{s:4:"file";s:28:"logo-instaldeco1-120x120.png";s:5:"width";s:3:"120";s:6:"height";s:3:"120";}s:19:"portfolio-thumbnail";a:3:{s:4:"file";s:28:"logo-instaldeco1-135x117.png";s:5:"width";s:3:"135";s:6:"height";s:3:"117";}s:19:"portfolio-scrolling";a:3:{s:4:"file";s:28:"logo-instaldeco1-135x117.png";s:5:"width";s:3:"135";s:6:"height";s:3:"117";}}s:10:"image_meta";a:10:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";}}'),
(8, 11, '_edit_last', '1'),
(9, 11, '_edit_lock', '1319390318:1'),
(10, 11, '_wpnonce', 'cde2265e8d'),
(11, 11, '_wp_http_referer', '/instaldeco/wp-admin/post.php?post=11&action=edit&message=1'),
(12, 11, 'user_ID', '1'),
(13, 11, 'action', 'editpost'),
(14, 11, 'originalaction', 'editpost'),
(15, 11, 'post_author', '1'),
(16, 11, 'post_type', 'page'),
(17, 11, 'original_post_status', 'publish'),
(18, 11, 'referredby', 'http://localhost/instaldeco/wp-admin/post.php?post=11&action=edit&message=1'),
(19, 11, '_wp_original_http_referer', 'http://localhost/instaldeco/wp-admin/post.php?post=11&action=edit&message=1'),
(211, 30, '_edit_last', '1'),
(20, 11, 'auto_draft', '0'),
(21, 11, 'post_ID', '11'),
(22, 11, 'autosavenonce', '77aff51ab8'),
(23, 11, 'meta-box-order-nonce', '32ab9f2655'),
(24, 11, 'closedpostboxesnonce', '93e6ccdfdb'),
(25, 11, 'wp-preview', ''),
(26, 11, 'hidden_post_status', 'publish'),
(27, 11, 'post_status', 'publish'),
(28, 11, 'hidden_post_password', ''),
(29, 11, 'hidden_post_visibility', 'public'),
(30, 11, 'visibility', 'public'),
(31, 11, 'post_password', ''),
(32, 11, 'mm', '09'),
(33, 11, 'jj', '23'),
(34, 11, 'aa', '2011'),
(35, 11, 'hh', '18'),
(36, 11, 'mn', '23'),
(37, 11, 'ss', '22'),
(38, 11, 'hidden_mm', '09'),
(39, 11, 'cur_mm', '10'),
(40, 11, 'hidden_jj', '23'),
(41, 11, 'cur_jj', '23'),
(42, 11, 'hidden_aa', '2011'),
(43, 11, 'cur_aa', '2011'),
(44, 11, 'hidden_hh', '18'),
(45, 11, 'cur_hh', '18'),
(46, 11, 'hidden_mn', '23'),
(47, 11, 'cur_mn', '17'),
(48, 11, 'original_publish', 'Actualizar'),
(49, 11, 'publish', 'Publicar'),
(50, 11, 'parent_id', ''),
(51, 11, 'menu_order', '0'),
(52, 11, 'post_title', 'Inicio'),
(53, 11, 'samplepermalinknonce', '68031bd50f'),
(54, 11, 'content', 'Producción\r\n\r\nStands\r\n\r\nDesarrollo\r\n\r\nInstalaciones comerciales'),
(891, 52, 'edit_date', 'true'),
(892, 52, 'excerpt', ''),
(893, 52, 'post_excerpt', ''),
(55, 11, 'metakeyinput', ''),
(56, 11, 'metavalue', ''),
(57, 11, '_ajax_nonce-add-meta', '66b56e5a27'),
(58, 11, 'advanced_view', '1'),
(59, 11, 'comment_status', 'open'),
(60, 11, 'ping_status', 'open'),
(61, 11, 'post_name', 'inicio'),
(62, 11, 'post_author_override', '1'),
(63, 11, 'pyre_font_color', 'light'),
(64, 11, 'pyre_background_images', 'http://localhost/instaldeco/wp-content/uploads/2011/09/DSC01339-2.jpg,http://localhost/instaldeco/wp-content/uploads/2011/09/P1020372.jpg'),
(65, 11, 'pyre_heading_sub', 'Servicios de montaje y decoración'),
(66, 11, 'pyre_heading_1', ''),
(67, 11, 'pyre_heading_2', ''),
(68, 11, 'post_mime_type', ''),
(69, 11, 'ID', '11'),
(70, 11, 'post_content', 'Producción\r\n\r\nStands\r\n\r\nDesarrollo\r\n\r\nInstalaciones comerciales'),
(888, 52, '_inline_edit', '9b2f1f5afd'),
(889, 52, 'post_view', 'list'),
(71, 11, 'post_parent', '0'),
(72, 11, 'save', 'Actualizar'),
(73, 11, 'meta', 'a:62:{i:34;a:2:{s:3:"key";s:2:"aa";s:5:"value";s:4:"2011";}i:13;a:2:{s:3:"key";s:6:"action";s:5:"value";s:8:"editpost";}i:58;a:2:{s:3:"key";s:13:"advanced_view";s:5:"value";s:1:"1";}i:22;a:2:{s:3:"key";s:13:"autosavenonce";s:5:"value";s:10:"77aff51ab8";}i:20;a:2:{s:3:"key";s:10:"auto_draft";s:5:"value";s:1:"0";}i:24;a:2:{s:3:"key";s:20:"closedpostboxesnonce";s:5:"value";s:10:"93e6ccdfdb";}i:59;a:2:{s:3:"key";s:14:"comment_status";s:5:"value";s:4:"open";}i:54;a:2:{s:3:"key";s:7:"content";s:5:"value";s:219:"[one_half last="no"]\r\n\r\nProducción\r\n\r\nStands\r\n\r\nDesarrollo\r\n\r\n[/one_half]\r\n\r\n[one_half last="yes"]\r\n\r\n[arrowlist]\r\n<ul>\r\n <li>Producción</li>\r\n <li>Stands</li>\r\n <li>Desarrollo</li>\r\n</ul>\r\n[/arrowlist]\r\n\r\n[/one_half]";}i:43;a:2:{s:3:"key";s:6:"cur_aa";s:5:"value";s:4:"2011";}i:45;a:2:{s:3:"key";s:6:"cur_hh";s:5:"value";s:2:"18";}i:41;a:2:{s:3:"key";s:6:"cur_jj";s:5:"value";s:2:"23";}i:39;a:2:{s:3:"key";s:6:"cur_mm";s:5:"value";s:2:"10";}i:47;a:2:{s:3:"key";s:6:"cur_mn";s:5:"value";s:2:"04";}i:35;a:2:{s:3:"key";s:2:"hh";s:5:"value";s:2:"18";}i:42;a:2:{s:3:"key";s:9:"hidden_aa";s:5:"value";s:4:"2011";}i:44;a:2:{s:3:"key";s:9:"hidden_hh";s:5:"value";s:2:"18";}i:40;a:2:{s:3:"key";s:9:"hidden_jj";s:5:"value";s:2:"23";}i:38;a:2:{s:3:"key";s:9:"hidden_mm";s:5:"value";s:2:"09";}i:46;a:2:{s:3:"key";s:9:"hidden_mn";s:5:"value";s:2:"23";}i:28;a:2:{s:3:"key";s:20:"hidden_post_password";s:5:"value";s:0:"";}i:26;a:2:{s:3:"key";s:18:"hidden_post_status";s:5:"value";s:7:"publish";}i:29;a:2:{s:3:"key";s:22:"hidden_post_visibility";s:5:"value";s:6:"public";}i:69;a:2:{s:3:"key";s:2:"ID";s:5:"value";s:2:"11";}i:33;a:2:{s:3:"key";s:2:"jj";s:5:"value";s:2:"23";}i:51;a:2:{s:3:"key";s:10:"menu_order";s:5:"value";s:1:"0";}i:23;a:2:{s:3:"key";s:20:"meta-box-order-nonce";s:5:"value";s:10:"32ab9f2655";}i:55;a:2:{s:3:"key";s:12:"metakeyinput";s:5:"value";s:0:"";}i:75;a:2:{s:3:"key";s:13:"metakeyselect";s:5:"value";s:6:"#NONE#";}i:56;a:2:{s:3:"key";s:9:"metavalue";s:5:"value";s:0:"";}i:32;a:2:{s:3:"key";s:2:"mm";s:5:"value";s:2:"09";}i:36;a:2:{s:3:"key";s:2:"mn";s:5:"value";s:2:"23";}i:14;a:2:{s:3:"key";s:14:"originalaction";s:5:"value";s:8:"editpost";}i:17;a:2:{s:3:"key";s:20:"original_post_status";s:5:"value";s:7:"publish";}i:48;a:2:{s:3:"key";s:16:"original_publish";s:5:"value";s:10:"Actualizar";}i:206;a:2:{s:3:"key";s:13:"page_template";s:5:"value";s:12:"homepage.php";}i:50;a:2:{s:3:"key";s:9:"parent_id";s:5:"value";s:0:"";}i:60;a:2:{s:3:"key";s:11:"ping_status";s:5:"value";s:4:"open";}i:15;a:2:{s:3:"key";s:11:"post_author";s:5:"value";s:1:"1";}i:62;a:2:{s:3:"key";s:20:"post_author_override";s:5:"value";s:1:"1";}i:70;a:2:{s:3:"key";s:12:"post_content";s:5:"value";s:219:"[one_half last="no"]\r\n\r\nProducción\r\n\r\nStands\r\n\r\nDesarrollo\r\n\r\n[/one_half]\r\n\r\n[one_half last="yes"]\r\n\r\n[arrowlist]\r\n<ul>\r\n <li>Producción</li>\r\n <li>Stands</li>\r\n <li>Desarrollo</li>\r\n</ul>\r\n[/arrowlist]\r\n\r\n[/one_half]";}i:21;a:2:{s:3:"key";s:7:"post_ID";s:5:"value";s:2:"11";}i:68;a:2:{s:3:"key";s:14:"post_mime_type";s:5:"value";s:0:"";}i:61;a:2:{s:3:"key";s:9:"post_name";s:5:"value";s:6:"inicio";}i:71;a:2:{s:3:"key";s:11:"post_parent";s:5:"value";s:1:"0";}i:31;a:2:{s:3:"key";s:13:"post_password";s:5:"value";s:0:"";}i:27;a:2:{s:3:"key";s:11:"post_status";s:5:"value";s:7:"publish";}i:52;a:2:{s:3:"key";s:10:"post_title";s:5:"value";s:6:"Inicio";}i:16;a:2:{s:3:"key";s:9:"post_type";s:5:"value";s:4:"page";}i:49;a:2:{s:3:"key";s:7:"publish";s:5:"value";s:8:"Publicar";}i:64;a:2:{s:3:"key";s:22:"pyre_background_images";s:5:"value";s:137:"http://localhost/instaldeco/wp-content/uploads/2011/09/DSC01339-2.jpg,http://localhost/instaldeco/wp-content/uploads/2011/09/P1020372.jpg";}i:63;a:2:{s:3:"key";s:15:"pyre_font_color";s:5:"value";s:5:"light";}i:66;a:2:{s:3:"key";s:14:"pyre_heading_1";s:5:"value";s:0:"";}i:67;a:2:{s:3:"key";s:14:"pyre_heading_2";s:5:"value";s:0:"";}i:65;a:2:{s:3:"key";s:16:"pyre_heading_sub";s:5:"value";s:34:"Servicios de montaje y decoración";}i:886;a:2:{s:3:"key";s:19:"pyre_portfolio_type";s:5:"value";s:1:"4";}i:18;a:2:{s:3:"key";s:10:"referredby";s:5:"value";s:65:"http://localhost/instaldeco/wp-admin/post.php?post=11&action=edit";}i:53;a:2:{s:3:"key";s:20:"samplepermalinknonce";s:5:"value";s:10:"68031bd50f";}i:72;a:2:{s:3:"key";s:4:"save";s:5:"value";s:10:"Actualizar";}i:37;a:2:{s:3:"key";s:2:"ss";s:5:"value";s:2:"22";}i:12;a:2:{s:3:"key";s:7:"user_ID";s:5:"value";s:1:"1";}i:30;a:2:{s:3:"key";s:10:"visibility";s:5:"value";s:6:"public";}i:25;a:2:{s:3:"key";s:10:"wp-preview";s:5:"value";s:0:"";}}'),
(886, 11, 'pyre_portfolio_type', '4'),
(74, 11, '_ajax_nonce', '2598203cc4'),
(75, 11, 'metakeyselect', '#NONE#'),
(76, 14, 'action', 'update'),
(77, 14, 'menu', '3'),
(78, 14, 'menu-settings-column-nonce', '38ef3d5a9a'),
(79, 14, 'menu-item', 'a:2:{i:-4;a:10:{s:19:"menu-item-object-id";s:2:"11";s:15:"menu-item-db-id";s:1:"0";s:16:"menu-item-object";s:4:"page";s:19:"menu-item-parent-id";s:1:"0";s:14:"menu-item-type";s:9:"post_type";s:15:"menu-item-title";s:6:"Inicio";s:13:"menu-item-url";s:39:"http://localhost/instaldeco/?page_id=11";s:16:"menu-item-target";s:0:"";s:17:"menu-item-classes";s:0:"";s:13:"menu-item-xfn";s:0:"";}i:-5;a:10:{s:19:"menu-item-object-id";s:1:"2";s:15:"menu-item-db-id";s:1:"0";s:16:"menu-item-object";s:4:"page";s:19:"menu-item-parent-id";s:1:"0";s:14:"menu-item-type";s:9:"post_type";s:15:"menu-item-title";s:18:"Página de ejemplo";s:13:"menu-item-url";s:38:"http://localhost/instaldeco/?page_id=2";s:16:"menu-item-target";s:0:"";s:17:"menu-item-classes";s:0:"";s:13:"menu-item-xfn";s:0:"";}}'),
(80, 14, '_menu_item_type', 'post_type'),
(81, 14, '_menu_item_menu_item_parent', '0'),
(82, 14, '_menu_item_object_id', '11'),
(83, 14, '_menu_item_object', 'page'),
(84, 14, '_menu_item_target', ''),
(85, 14, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(86, 14, '_menu_item_xfn', ''),
(87, 14, '_menu_item_url', ''),
(140, 17, '_edit_last', '1'),
(102, 14, 'menu-name', 'Menú principal'),
(103, 14, 'closedpostboxesnonce', '93e6ccdfdb'),
(104, 14, 'meta-box-order-nonce', '32ab9f2655'),
(105, 14, 'update-nav-menu-nonce', '2070c5d94e'),
(106, 14, '_wp_http_referer', '/instaldeco/wp-admin/nav-menus.php'),
(107, 14, 'menu-item-title', 'a:5:{i:14;s:6:"Inicio";i:38;s:9:"Acerca de";i:54;s:9:"Servicios";i:36;s:8:"Trabajos";i:37;s:8:"Contacto";}'),
(108, 14, 'menu-item-attr-title', 'a:5:{i:14;s:0:"";i:38;s:0:"";i:54;s:0:"";i:36;s:0:"";i:37;s:0:"";}'),
(109, 14, 'menu-item-target', 'a:5:{i:14;s:0:"";i:38;s:0:"";i:54;s:0:"";i:36;s:0:"";i:37;s:0:"";}'),
(110, 14, 'menu-item-classes', 'a:5:{i:14;s:0:"";i:38;s:0:"";i:54;s:0:"";i:36;s:0:"";i:37;s:0:"";}'),
(111, 14, 'menu-item-xfn', 'a:5:{i:14;s:0:"";i:38;s:0:"";i:54;s:0:"";i:36;s:0:"";i:37;s:0:"";}'),
(112, 14, 'menu-item-description', 'a:5:{i:14;s:235:"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc nec tellus ligula. Nullam elit metus, dapibus vitae pharetra vitae, tincidunt a sapien. Sed eget sapien et justo ultrices auctor. Aliquam sagittis, nibh in dictum elementum.";i:38;s:1:" ";i:54;s:1:" ";i:36;s:1:" ";i:37;s:1:" ";}'),
(451, 38, 'menu-name', 'Menú principal'),
(452, 38, 'closedpostboxesnonce', '93e6ccdfdb'),
(453, 38, 'meta-box-order-nonce', '32ab9f2655'),
(454, 38, 'update-nav-menu-nonce', '2070c5d94e'),
(455, 38, '_wp_http_referer', '/instaldeco/wp-admin/nav-menus.php'),
(456, 38, 'menu-item-title', 'a:5:{i:14;s:6:"Inicio";i:38;s:9:"Acerca de";i:54;s:9:"Servicios";i:36;s:8:"Trabajos";i:37;s:8:"Contacto";}'),
(113, 14, 'menu-item-db-id', 'a:5:{i:14;s:2:"14";i:38;s:2:"38";i:54;s:2:"54";i:36;s:2:"36";i:37;s:2:"37";}'),
(114, 14, 'menu-item-object-id', 'a:5:{i:14;s:2:"11";i:38;s:2:"30";i:54;s:2:"52";i:36;s:2:"34";i:37;s:2:"32";}'),
(115, 14, 'menu-item-object', 'a:5:{i:14;s:4:"page";i:38;s:4:"page";i:54;s:4:"page";i:36;s:4:"page";i:37;s:4:"page";}'),
(116, 14, 'menu-item-parent-id', 'a:5:{i:14;s:1:"0";i:38;s:1:"0";i:54;s:1:"0";i:36;s:1:"0";i:37;s:1:"0";}'),
(117, 14, 'menu-item-position', 'a:5:{i:14;s:1:"1";i:38;s:1:"2";i:54;s:1:"3";i:36;s:1:"4";i:37;s:1:"5";}'),
(118, 14, 'menu-item-type', 'a:5:{i:14;s:9:"post_type";i:38;s:9:"post_type";i:54;s:9:"post_type";i:36;s:9:"post_type";i:37;s:9:"post_type";}'),
(119, 14, 'save_menu', 'Guardar menú'),
(120, 14, 'menu-locations', 'a:1:{s:10:"navigation";s:1:"3";}'),
(509, 30, 'meta', 'a:61:{i:237;a:2:{s:3:"key";s:2:"aa";s:5:"value";s:4:"2011";}i:216;a:2:{s:3:"key";s:6:"action";s:5:"value";s:8:"editpost";}i:263;a:2:{s:3:"key";s:13:"advanced_view";s:5:"value";s:1:"1";}i:225;a:2:{s:3:"key";s:13:"autosavenonce";s:5:"value";s:10:"77aff51ab8";}i:223;a:2:{s:3:"key";s:10:"auto_draft";s:5:"value";s:1:"0";}i:227;a:2:{s:3:"key";s:20:"closedpostboxesnonce";s:5:"value";s:10:"93e6ccdfdb";}i:264;a:2:{s:3:"key";s:14:"comment_status";s:5:"value";s:4:"open";}i:258;a:2:{s:3:"key";s:7:"content";s:5:"value";s:1158:"<div>\r\n<div>\r\n\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Donec in ligula id sem tristique ultrices eget id neque. Duis enim turpis, tempus at <a>accumsan vitae</a>, lobortis id sapien. Pellentesque nec orci mi, in pharetra ligula. Nulla facilisi. Nulla facilisi. Mauris convallis venenatis massa, quis consectetur felis ornare quis. Sed aliquet nunc ac ante molestie ultricies. Nam pulvinar ultricies bibendum.\r\n\r\nDuis enim turpis, tempus at <a>accumsan vitae</a>, lobortis id sapien. Pellentesque nec orci mi, in pharetra ligula. Nulla facilisi. Nulla facilisi. Mauris convallis venenatis massa, quis consectetur felis ornare quis. Sed aliquet nunc ac ante molestie ultricies. Nam pulvinar ultricies bibendum.\r\n\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Donec in ligula id sem tristique ultrices eget id neque. Duis enim turpis, tempus at <a>accumsan vitae</a>, lobortis id sapien. Pellentesque nec orci mi, in pharetra ligula. Nulla facilisi. Nulla facilisi. Mauris convallis venenatis massa, quis consectetur felis ornare quis. Sed aliquet nunc ac ante molestie ultricies. Nam pulvinar ultricies bibendum.\r\n\r\n</div>\r\n</div>";}i:246;a:2:{s:3:"key";s:6:"cur_aa";s:5:"value";s:4:"2011";}i:248;a:2:{s:3:"key";s:6:"cur_hh";s:5:"value";s:2:"16";}i:244;a:2:{s:3:"key";s:6:"cur_jj";s:5:"value";s:2:"23";}i:242;a:2:{s:3:"key";s:6:"cur_mm";s:5:"value";s:2:"10";}i:250;a:2:{s:3:"key";s:6:"cur_mn";s:5:"value";s:2:"17";}i:238;a:2:{s:3:"key";s:2:"hh";s:5:"value";s:2:"16";}i:245;a:2:{s:3:"key";s:9:"hidden_aa";s:5:"value";s:4:"2011";}i:247;a:2:{s:3:"key";s:9:"hidden_hh";s:5:"value";s:2:"16";}i:243;a:2:{s:3:"key";s:9:"hidden_jj";s:5:"value";s:2:"23";}i:241;a:2:{s:3:"key";s:9:"hidden_mm";s:5:"value";s:2:"10";}i:249;a:2:{s:3:"key";s:9:"hidden_mn";s:5:"value";s:2:"10";}i:231;a:2:{s:3:"key";s:20:"hidden_post_password";s:5:"value";s:0:"";}i:229;a:2:{s:3:"key";s:18:"hidden_post_status";s:5:"value";s:7:"publish";}i:232;a:2:{s:3:"key";s:22:"hidden_post_visibility";s:5:"value";s:6:"public";}i:274;a:2:{s:3:"key";s:2:"ID";s:5:"value";s:2:"30";}i:236;a:2:{s:3:"key";s:2:"jj";s:5:"value";s:2:"23";}i:255;a:2:{s:3:"key";s:10:"menu_order";s:5:"value";s:1:"0";}i:226;a:2:{s:3:"key";s:20:"meta-box-order-nonce";s:5:"value";s:10:"32ab9f2655";}i:260;a:2:{s:3:"key";s:12:"metakeyinput";s:5:"value";s:0:"";}i:259;a:2:{s:3:"key";s:13:"metakeyselect";s:5:"value";s:6:"#NONE#";}i:261;a:2:{s:3:"key";s:9:"metavalue";s:5:"value";s:0:"";}i:235;a:2:{s:3:"key";s:2:"mm";s:5:"value";s:2:"10";}i:239;a:2:{s:3:"key";s:2:"mn";s:5:"value";s:2:"10";}i:217;a:2:{s:3:"key";s:14:"originalaction";s:5:"value";s:8:"editpost";}i:220;a:2:{s:3:"key";s:20:"original_post_status";s:5:"value";s:7:"publish";}i:251;a:2:{s:3:"key";s:16:"original_publish";s:5:"value";s:10:"Actualizar";}i:254;a:2:{s:3:"key";s:13:"page_template";s:5:"value";s:7:"default";}i:253;a:2:{s:3:"key";s:9:"parent_id";s:5:"value";s:0:"";}i:265;a:2:{s:3:"key";s:11:"ping_status";s:5:"value";s:4:"open";}i:218;a:2:{s:3:"key";s:11:"post_author";s:5:"value";s:1:"1";}i:267;a:2:{s:3:"key";s:20:"post_author_override";s:5:"value";s:1:"1";}i:275;a:2:{s:3:"key";s:12:"post_content";s:5:"value";s:1158:"<div>\r\n<div>\r\n\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Donec in ligula id sem tristique ultrices eget id neque. Duis enim turpis, tempus at <a>accumsan vitae</a>, lobortis id sapien. Pellentesque nec orci mi, in pharetra ligula. Nulla facilisi. Nulla facilisi. Mauris convallis venenatis massa, quis consectetur felis ornare quis. Sed aliquet nunc ac ante molestie ultricies. Nam pulvinar ultricies bibendum.\r\n\r\nDuis enim turpis, tempus at <a>accumsan vitae</a>, lobortis id sapien. Pellentesque nec orci mi, in pharetra ligula. Nulla facilisi. Nulla facilisi. Mauris convallis venenatis massa, quis consectetur felis ornare quis. Sed aliquet nunc ac ante molestie ultricies. Nam pulvinar ultricies bibendum.\r\n\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Donec in ligula id sem tristique ultrices eget id neque. Duis enim turpis, tempus at <a>accumsan vitae</a>, lobortis id sapien. Pellentesque nec orci mi, in pharetra ligula. Nulla facilisi. Nulla facilisi. Mauris convallis venenatis massa, quis consectetur felis ornare quis. Sed aliquet nunc ac ante molestie ultricies. Nam pulvinar ultricies bibendum.\r\n\r\n</div>\r\n</div>";}i:224;a:2:{s:3:"key";s:7:"post_ID";s:5:"value";s:2:"30";}i:273;a:2:{s:3:"key";s:14:"post_mime_type";s:5:"value";s:0:"";}i:266;a:2:{s:3:"key";s:9:"post_name";s:5:"value";s:9:"acerca-de";}i:276;a:2:{s:3:"key";s:11:"post_parent";s:5:"value";s:1:"0";}i:234;a:2:{s:3:"key";s:13:"post_password";s:5:"value";s:0:"";}i:230;a:2:{s:3:"key";s:11:"post_status";s:5:"value";s:7:"publish";}i:256;a:2:{s:3:"key";s:10:"post_title";s:5:"value";s:10:"Instaldeco";}i:219;a:2:{s:3:"key";s:9:"post_type";s:5:"value";s:4:"page";}i:252;a:2:{s:3:"key";s:7:"publish";s:5:"value";s:8:"Publicar";}i:269;a:2:{s:3:"key";s:22:"pyre_background_images";s:5:"value";s:0:"";}i:268;a:2:{s:3:"key";s:15:"pyre_font_color";s:5:"value";s:4:"dark";}i:271;a:2:{s:3:"key";s:14:"pyre_heading_1";s:5:"value";s:7:"1111111";}i:272;a:2:{s:3:"key";s:14:"pyre_heading_2";s:5:"value";s:11:"asdasdasdas";}i:270;a:2:{s:3:"key";s:16:"pyre_heading_sub";s:5:"value";s:21:"La solución correcta";}i:221;a:2:{s:3:"key";s:10:"referredby";s:5:"value";s:75:"http://localhost/instaldeco/wp-admin/post.php?post=30&action=edit&message=1";}i:257;a:2:{s:3:"key";s:20:"samplepermalinknonce";s:5:"value";s:10:"68031bd50f";}i:508;a:2:{s:3:"key";s:4:"save";s:5:"value";s:10:"Actualizar";}i:240;a:2:{s:3:"key";s:2:"ss";s:5:"value";s:2:"39";}i:215;a:2:{s:3:"key";s:7:"user_ID";s:5:"value";s:1:"1";}i:233;a:2:{s:3:"key";s:10:"visibility";s:5:"value";s:6:"public";}i:228;a:2:{s:3:"key";s:10:"wp-preview";s:5:"value";s:0:"";}}'),
(508, 30, 'save', 'Actualizar'),
(141, 17, '_wpnonce', 'b0f5b7fd2d'),
(142, 17, '_wp_http_referer', '/instaldeco/wp-admin/post-new.php?post_type=page'),
(143, 17, 'user_ID', '1'),
(144, 17, 'action', 'editpost'),
(145, 17, 'originalaction', 'editpost'),
(146, 17, 'post_author', '1'),
(147, 17, 'post_type', 'page'),
(148, 17, 'original_post_status', 'auto-draft'),
(149, 17, 'referredby', 'http://localhost/instaldeco/wp-admin/post.php?post=11&action=edit&message=1'),
(150, 17, '_wp_original_http_referer', 'http://localhost/instaldeco/wp-admin/post.php?post=11&action=edit&message=1'),
(151, 17, 'auto_draft', '1'),
(152, 17, 'post_ID', '17'),
(153, 17, 'autosavenonce', '00a9b69e7e'),
(154, 17, 'meta-box-order-nonce', '2926899a89'),
(155, 17, 'closedpostboxesnonce', 'e7aa5566e0'),
(156, 17, 'wp-preview', ''),
(157, 17, 'hidden_post_status', 'draft'),
(158, 17, 'post_status', 'publish'),
(159, 17, 'hidden_post_password', ''),
(160, 17, 'hidden_post_visibility', 'public'),
(161, 17, 'visibility', 'public'),
(162, 17, 'post_password', ''),
(163, 17, 'mm', '09'),
(164, 17, 'jj', '23'),
(165, 17, 'aa', '2011'),
(166, 17, 'hh', '19'),
(167, 17, 'mn', '33'),
(168, 17, 'ss', '04'),
(169, 17, 'hidden_mm', '09'),
(170, 17, 'cur_mm', '09'),
(171, 17, 'hidden_jj', '23'),
(172, 17, 'cur_jj', '23'),
(173, 17, 'hidden_aa', '2011'),
(174, 17, 'cur_aa', '2011'),
(175, 17, 'hidden_hh', '19'),
(176, 17, 'cur_hh', '19'),
(177, 17, 'hidden_mn', '33'),
(178, 17, 'cur_mn', '33'),
(179, 17, 'original_publish', 'Publicar'),
(180, 17, 'publish', 'Publicar'),
(181, 17, 'parent_id', ''),
(182, 17, 'menu_order', '0'),
(183, 17, 'post_title', 'Noticias'),
(184, 17, 'samplepermalinknonce', '9c31276400'),
(185, 17, 'content', ''),
(186, 17, 'metakeyselect', '#NONE#'),
(187, 17, 'metakeyinput', ''),
(188, 17, 'metavalue', ''),
(189, 17, '_ajax_nonce-add-meta', '9dc13bb2ca'),
(190, 17, 'advanced_view', '1'),
(191, 17, 'comment_status', 'open'),
(192, 17, 'ping_status', 'open'),
(193, 17, 'post_name', ''),
(194, 17, 'post_author_override', '1'),
(195, 17, 'pyre_font_color', 'light'),
(196, 17, 'pyre_background_images', ''),
(197, 17, 'pyre_heading_sub', ''),
(198, 17, 'pyre_heading_1', ''),
(199, 17, 'pyre_heading_2', ''),
(200, 17, 'post_mime_type', ''),
(201, 17, 'ID', '17'),
(202, 17, 'post_content', ''),
(203, 17, 'post_parent', '0'),
(204, 17, '_edit_lock', '1316802793:1'),
(205, 11, '_wp_page_template', 'homepage.php'),
(206, 11, 'page_template', 'homepage.php'),
(207, 24, '_wp_attached_file', '2011/09/DSC01339-2.jpg'),
(208, 24, '_wp_attachment_metadata', 'a:6:{s:5:"width";s:4:"3066";s:6:"height";s:4:"1875";s:14:"hwstring_small";s:23:"height=''78'' width=''128''";s:4:"file";s:22:"2011/09/DSC01339-2.jpg";s:5:"sizes";a:8:{s:9:"thumbnail";a:3:{s:4:"file";s:22:"DSC01339-2-150x150.jpg";s:5:"width";s:3:"150";s:6:"height";s:3:"150";}s:6:"medium";a:3:{s:4:"file";s:22:"DSC01339-2-300x183.jpg";s:5:"width";s:3:"300";s:6:"height";s:3:"183";}s:5:"large";a:3:{s:4:"file";s:23:"DSC01339-2-1024x626.jpg";s:5:"width";s:4:"1024";s:6:"height";s:3:"626";}s:20:"post-thumbnail-image";a:3:{s:4:"file";s:22:"DSC01339-2-125x120.jpg";s:5:"width";s:3:"125";s:6:"height";s:3:"120";}s:10:"team-image";a:3:{s:4:"file";s:22:"DSC01339-2-120x120.jpg";s:5:"width";s:3:"120";s:6:"height";s:3:"120";}s:19:"portfolio-thumbnail";a:3:{s:4:"file";s:22:"DSC01339-2-135x117.jpg";s:5:"width";s:3:"135";s:6:"height";s:3:"117";}s:19:"portfolio-scrolling";a:3:{s:4:"file";s:22:"DSC01339-2-135x117.jpg";s:5:"width";s:3:"135";s:6:"height";s:3:"117";}s:17:"portfolio-gallery";a:3:{s:4:"file";s:22:"DSC01339-2-450x287.jpg";s:5:"width";s:3:"450";s:6:"height";s:3:"287";}}s:10:"image_meta";a:10:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";}}'),
(209, 25, '_wp_attached_file', '2011/09/P1020372.jpg'),
(210, 25, '_wp_attachment_metadata', 'a:6:{s:5:"width";s:4:"3165";s:6:"height";s:4:"1940";s:14:"hwstring_small";s:23:"height=''78'' width=''128''";s:4:"file";s:20:"2011/09/P1020372.jpg";s:5:"sizes";a:8:{s:9:"thumbnail";a:3:{s:4:"file";s:20:"P1020372-150x150.jpg";s:5:"width";s:3:"150";s:6:"height";s:3:"150";}s:6:"medium";a:3:{s:4:"file";s:20:"P1020372-300x183.jpg";s:5:"width";s:3:"300";s:6:"height";s:3:"183";}s:5:"large";a:3:{s:4:"file";s:21:"P1020372-1024x627.jpg";s:5:"width";s:4:"1024";s:6:"height";s:3:"627";}s:20:"post-thumbnail-image";a:3:{s:4:"file";s:20:"P1020372-125x120.jpg";s:5:"width";s:3:"125";s:6:"height";s:3:"120";}s:10:"team-image";a:3:{s:4:"file";s:20:"P1020372-120x120.jpg";s:5:"width";s:3:"120";s:6:"height";s:3:"120";}s:19:"portfolio-thumbnail";a:3:{s:4:"file";s:20:"P1020372-135x117.jpg";s:5:"width";s:3:"135";s:6:"height";s:3:"117";}s:19:"portfolio-scrolling";a:3:{s:4:"file";s:20:"P1020372-135x117.jpg";s:5:"width";s:3:"135";s:6:"height";s:3:"117";}s:17:"portfolio-gallery";a:3:{s:4:"file";s:20:"P1020372-450x287.jpg";s:5:"width";s:3:"450";s:6:"height";s:3:"287";}}s:10:"image_meta";a:10:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";}}'),
(212, 30, '_edit_lock', '1319383478:1'),
(213, 30, '_wpnonce', '8b2fe91fe2'),
(214, 30, '_wp_http_referer', '/instaldeco/wp-admin/post.php?post=30&action=edit&message=1'),
(215, 30, 'user_ID', '1'),
(216, 30, 'action', 'editpost'),
(217, 30, 'originalaction', 'editpost'),
(218, 30, 'post_author', '1'),
(219, 30, 'post_type', 'page'),
(220, 30, 'original_post_status', 'publish'),
(221, 30, 'referredby', 'http://localhost/instaldeco/wp-admin/post.php?post=30&action=edit&message=1'),
(222, 30, '_wp_original_http_referer', 'http://localhost/instaldeco/wp-admin/post.php?post=30&action=edit&message=1'),
(223, 30, 'auto_draft', '0'),
(224, 30, 'post_ID', '30'),
(225, 30, 'autosavenonce', '77aff51ab8'),
(226, 30, 'meta-box-order-nonce', '32ab9f2655'),
(227, 30, 'closedpostboxesnonce', '93e6ccdfdb'),
(228, 30, 'wp-preview', ''),
(229, 30, 'hidden_post_status', 'publish'),
(230, 30, 'post_status', 'publish'),
(231, 30, 'hidden_post_password', ''),
(232, 30, 'hidden_post_visibility', 'public'),
(233, 30, 'visibility', 'public'),
(234, 30, 'post_password', ''),
(235, 30, 'mm', '10'),
(236, 30, 'jj', '23'),
(237, 30, 'aa', '2011'),
(238, 30, 'hh', '16'),
(239, 30, 'mn', '10'),
(240, 30, 'ss', '39'),
(241, 30, 'hidden_mm', '10'),
(242, 30, 'cur_mm', '10'),
(243, 30, 'hidden_jj', '23'),
(244, 30, 'cur_jj', '23'),
(245, 30, 'hidden_aa', '2011'),
(246, 30, 'cur_aa', '2011'),
(247, 30, 'hidden_hh', '16'),
(248, 30, 'cur_hh', '16'),
(249, 30, 'hidden_mn', '10'),
(250, 30, 'cur_mn', '18'),
(251, 30, 'original_publish', 'Actualizar'),
(252, 30, 'publish', 'Publicar'),
(253, 30, 'parent_id', ''),
(254, 30, 'page_template', 'default'),
(255, 30, 'menu_order', '0'),
(256, 30, 'post_title', 'Instaldeco'),
(257, 30, 'samplepermalinknonce', '68031bd50f'),
(258, 30, 'content', '<div>\r\n<div>\r\n\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Donec in ligula id sem tristique ultrices eget id neque. Duis enim turpis, tempus at <a>accumsan vitae</a>, lobortis id sapien. Pellentesque nec orci mi, in pharetra ligula. Nulla facilisi. Nulla facilisi. Mauris convallis venenatis massa, quis consectetur felis ornare quis. Sed aliquet nunc ac ante molestie ultricies. Nam pulvinar ultricies bibendum.\r\n\r\nDuis enim turpis, tempus at <a>accumsan vitae</a>, lobortis id sapien. Pellentesque nec orci mi, in pharetra ligula. Nulla facilisi. Nulla facilisi. Mauris convallis venenatis massa, quis consectetur felis ornare quis. Sed aliquet nunc ac ante molestie ultricies. Nam pulvinar ultricies bibendum.\r\n\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Donec in ligula id sem tristique ultrices eget id neque. Duis enim turpis, tempus at <a>accumsan vitae</a>, lobortis id sapien. Pellentesque nec orci mi, in pharetra ligula. Nulla facilisi. Nulla facilisi. Mauris convallis venenatis massa, quis consectetur felis ornare quis. Sed aliquet nunc ac ante molestie ultricies. Nam pulvinar ultricies bibendum.\r\n\r\n</div>\r\n</div>'),
(259, 30, 'metakeyselect', '#NONE#'),
(260, 30, 'metakeyinput', ''),
(261, 30, 'metavalue', ''),
(262, 30, '_ajax_nonce-add-meta', '66b56e5a27'),
(263, 30, 'advanced_view', '1'),
(264, 30, 'comment_status', 'open'),
(265, 30, 'ping_status', 'open'),
(266, 30, 'post_name', 'acerca-de'),
(267, 30, 'post_author_override', '1'),
(268, 30, 'pyre_font_color', 'dark'),
(269, 30, 'pyre_background_images', ''),
(270, 30, 'pyre_heading_sub', 'La solución correcta'),
(271, 30, 'pyre_heading_1', ''),
(272, 30, 'pyre_heading_2', ''),
(273, 30, 'post_mime_type', ''),
(274, 30, 'ID', '30'),
(275, 30, 'post_content', '<div>\r\n<div>\r\n\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Donec in ligula id sem tristique ultrices eget id neque. Duis enim turpis, tempus at <a>accumsan vitae</a>, lobortis id sapien. Pellentesque nec orci mi, in pharetra ligula. Nulla facilisi. Nulla facilisi. Mauris convallis venenatis massa, quis consectetur felis ornare quis. Sed aliquet nunc ac ante molestie ultricies. Nam pulvinar ultricies bibendum.\r\n\r\nDuis enim turpis, tempus at <a>accumsan vitae</a>, lobortis id sapien. Pellentesque nec orci mi, in pharetra ligula. Nulla facilisi. Nulla facilisi. Mauris convallis venenatis massa, quis consectetur felis ornare quis. Sed aliquet nunc ac ante molestie ultricies. Nam pulvinar ultricies bibendum.\r\n\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Donec in ligula id sem tristique ultrices eget id neque. Duis enim turpis, tempus at <a>accumsan vitae</a>, lobortis id sapien. Pellentesque nec orci mi, in pharetra ligula. Nulla facilisi. Nulla facilisi. Mauris convallis venenatis massa, quis consectetur felis ornare quis. Sed aliquet nunc ac ante molestie ultricies. Nam pulvinar ultricies bibendum.\r\n\r\n</div>\r\n</div>'),
(276, 30, 'post_parent', '0'),
(277, 30, '_wp_page_template', 'default'),
(278, 32, '_edit_last', '1'),
(279, 32, '_edit_lock', '1319383523:1'),
(280, 32, '_wpnonce', '655ca25c0f'),
(281, 32, '_wp_http_referer', '/instaldeco/wp-admin/post.php?post=32&action=edit&message=1'),
(282, 32, 'user_ID', '1'),
(283, 32, 'action', 'editpost'),
(284, 32, 'originalaction', 'editpost'),
(285, 32, 'post_author', '1'),
(286, 32, 'post_type', 'page'),
(287, 32, 'original_post_status', 'publish'),
(288, 32, 'referredby', 'http://localhost/instaldeco/wp-admin/post.php?post=32&action=edit'),
(289, 32, '_wp_original_http_referer', 'http://localhost/instaldeco/wp-admin/post.php?post=32&action=edit'),
(290, 32, 'auto_draft', '0'),
(291, 32, 'post_ID', '32'),
(292, 32, 'autosavenonce', '77aff51ab8'),
(293, 32, 'meta-box-order-nonce', '32ab9f2655'),
(294, 32, 'closedpostboxesnonce', '93e6ccdfdb'),
(295, 32, 'wp-preview', ''),
(296, 32, 'hidden_post_status', 'publish'),
(297, 32, 'post_status', 'publish'),
(298, 32, 'hidden_post_password', ''),
(299, 32, 'hidden_post_visibility', 'public'),
(300, 32, 'visibility', 'public'),
(301, 32, 'post_password', ''),
(302, 32, 'mm', '10'),
(303, 32, 'jj', '23'),
(304, 32, 'aa', '2011'),
(305, 32, 'hh', '16'),
(306, 32, 'mn', '10'),
(307, 32, 'ss', '59'),
(308, 32, 'hidden_mm', '10'),
(309, 32, 'cur_mm', '10'),
(310, 32, 'hidden_jj', '23'),
(311, 32, 'cur_jj', '23'),
(312, 32, 'hidden_aa', '2011'),
(313, 32, 'cur_aa', '2011'),
(314, 32, 'hidden_hh', '16'),
(315, 32, 'cur_hh', '16'),
(316, 32, 'hidden_mn', '10'),
(317, 32, 'cur_mn', '25'),
(318, 32, 'original_publish', 'Actualizar'),
(319, 32, 'publish', 'Publicar'),
(320, 32, 'parent_id', ''),
(321, 32, 'page_template', 'contact.php'),
(322, 32, 'menu_order', '0'),
(323, 32, 'post_title', 'Contacto'),
(324, 32, 'samplepermalinknonce', '68031bd50f'),
(325, 32, 'content', '<div>\r\n\r\nAvda. Monte Boyal, 100\r\nPol. Ind. Monte Boyal\r\n45950 Casarrubios del Monte\r\nToledo\r\n<a href="http://maps.google.es/maps?q=Avda.+Monte+Boyal,+100+Pol.+Ind.+Monte+Boyal+45950+%E2%80%93+Casarrubios+del+Monte&amp;hl=es&amp;ie=UTF8&amp;ll=40.207992,-4.060779&amp;spn=0.00667,0.013937&amp;safe=off&amp;client=firefox-a&amp;fb=1&amp;gl=es&amp;view=map&amp;cid=7059151023224991364&amp;t=m&amp;z=17&amp;vpsrc=0&amp;iwloc=A">Ver mapa</a>\r\n\r\nTel. 91 818 80 46\r\nFax. 91 818 80 61\r\n<a target="_blank">info@insteldeco.com</a>\r\n\r\n</div>'),
(326, 32, 'metakeyselect', '#NONE#'),
(327, 32, 'metakeyinput', ''),
(328, 32, 'metavalue', ''),
(329, 32, '_ajax_nonce-add-meta', '66b56e5a27'),
(330, 32, 'advanced_view', '1'),
(331, 32, 'comment_status', 'open'),
(332, 32, 'ping_status', 'open'),
(333, 32, 'post_name', 'contacto'),
(334, 32, 'post_author_override', '1'),
(335, 32, 'pyre_font_color', 'dark'),
(336, 32, 'pyre_background_images', ''),
(337, 32, 'pyre_heading_sub', ''),
(338, 32, 'pyre_heading_1', ''),
(339, 32, 'pyre_heading_2', ''),
(340, 32, 'post_mime_type', ''),
(341, 32, 'ID', '32'),
(342, 32, 'post_content', '<div>\r\n\r\nAvda. Monte Boyal, 100\r\nPol. Ind. Monte Boyal\r\n45950 Casarrubios del Monte\r\nToledo\r\n<a href="http://maps.google.es/maps?q=Avda.+Monte+Boyal,+100+Pol.+Ind.+Monte+Boyal+45950+%E2%80%93+Casarrubios+del+Monte&amp;hl=es&amp;ie=UTF8&amp;ll=40.207992,-4.060779&amp;spn=0.00667,0.013937&amp;safe=off&amp;client=firefox-a&amp;fb=1&amp;gl=es&amp;view=map&amp;cid=7059151023224991364&amp;t=m&amp;z=17&amp;vpsrc=0&amp;iwloc=A">Ver mapa</a>\r\n\r\nTel. 91 818 80 46\r\nFax. 91 818 80 61\r\n<a target="_blank">info@insteldeco.com</a>\r\n\r\n</div>'),
(343, 32, 'post_parent', '0'),
(344, 32, '_wp_page_template', 'contact.php'),
(345, 34, '_edit_last', '1'),
(346, 34, '_wpnonce', 'e76fb61a58'),
(347, 34, '_wp_http_referer', '/instaldeco/wp-admin/post.php?post=34&action=edit&message=1'),
(348, 34, 'user_ID', '1'),
(349, 34, 'action', 'editpost'),
(350, 34, 'originalaction', 'editpost'),
(351, 34, 'post_author', '1'),
(352, 34, 'post_type', 'page'),
(353, 34, 'original_post_status', 'publish'),
(354, 34, 'referredby', 'http://localhost/instaldeco/wp-admin/post.php?post=34&action=edit&message=1'),
(355, 34, '_wp_original_http_referer', 'http://localhost/instaldeco/wp-admin/post.php?post=34&action=edit&message=1'),
(356, 34, 'auto_draft', '1'),
(357, 34, 'post_ID', '34'),
(358, 34, 'autosavenonce', '77aff51ab8'),
(359, 34, 'meta-box-order-nonce', '32ab9f2655'),
(360, 34, 'closedpostboxesnonce', '93e6ccdfdb'),
(361, 34, 'wp-preview', ''),
(362, 34, 'hidden_post_status', 'publish'),
(363, 34, 'post_status', 'publish'),
(364, 34, 'hidden_post_password', ''),
(365, 34, 'hidden_post_visibility', 'public'),
(366, 34, 'visibility', 'public'),
(367, 34, 'post_password', ''),
(368, 34, 'mm', '10'),
(369, 34, 'jj', '23'),
(370, 34, 'aa', '2011'),
(371, 34, 'hh', '16'),
(372, 34, 'mn', '11'),
(373, 34, 'ss', '27'),
(374, 34, 'hidden_mm', '10'),
(375, 34, 'cur_mm', '10'),
(376, 34, 'hidden_jj', '23'),
(377, 34, 'cur_jj', '23'),
(378, 34, 'hidden_aa', '2011'),
(379, 34, 'cur_aa', '2011'),
(380, 34, 'hidden_hh', '16'),
(381, 34, 'cur_hh', '18'),
(382, 34, 'hidden_mn', '11'),
(383, 34, 'cur_mn', '47'),
(384, 34, 'original_publish', 'Actualizar'),
(385, 34, 'publish', 'Publicar'),
(386, 34, 'parent_id', ''),
(387, 34, 'page_template', 'portfolio-scrolling.php'),
(388, 34, 'menu_order', '0'),
(389, 34, 'post_title', 'Trabajos'),
(390, 34, 'samplepermalinknonce', '68031bd50f'),
(391, 34, 'content', 'ef fs df sdf sdfsdfsdfsd fs'),
(392, 34, 'metakeyselect', '#NONE#'),
(393, 34, 'metakeyinput', ''),
(394, 34, 'metavalue', ''),
(395, 34, '_ajax_nonce-add-meta', '66b56e5a27'),
(396, 34, 'advanced_view', '1'),
(397, 34, 'comment_status', 'open'),
(398, 34, 'ping_status', 'open'),
(399, 34, 'post_name', 'trabajos'),
(400, 34, 'post_author_override', '1'),
(401, 34, 'pyre_font_color', 'light'),
(402, 34, 'pyre_background_images', 'http://localhost/instaldeco/wp-content/themes/Broadside/images/backgrounds/news-background.jpg'),
(403, 34, 'pyre_heading_sub', ''),
(404, 34, 'pyre_heading_1', ''),
(405, 34, 'pyre_heading_2', ''),
(406, 34, 'post_mime_type', ''),
(407, 34, 'ID', '34'),
(408, 34, 'post_content', 'ef fs df sdf sdfsdfsdfsd fs'),
(409, 34, 'post_parent', '0'),
(410, 34, '_wp_page_template', 'portfolio-scrolling.php'),
(411, 34, '_edit_lock', '1319392152:1'),
(412, 36, 'action', 'update'),
(413, 36, 'menu', '3'),
(414, 36, 'menu-settings-column-nonce', '4534777bed'),
(415, 36, 'menu-item', 'a:3:{i:-4;a:10:{s:19:"menu-item-object-id";s:2:"34";s:15:"menu-item-db-id";s:1:"0";s:16:"menu-item-object";s:4:"page";s:19:"menu-item-parent-id";s:1:"0";s:14:"menu-item-type";s:9:"post_type";s:15:"menu-item-title";s:8:"Trabajos";s:13:"menu-item-url";s:37:"http://localhost/instaldeco/trabajos/";s:16:"menu-item-target";s:0:"";s:17:"menu-item-classes";s:0:"";s:13:"menu-item-xfn";s:0:"";}i:-5;a:10:{s:19:"menu-item-object-id";s:2:"32";s:15:"menu-item-db-id";s:1:"0";s:16:"menu-item-object";s:4:"page";s:19:"menu-item-parent-id";s:1:"0";s:14:"menu-item-type";s:9:"post_type";s:15:"menu-item-title";s:8:"Contacto";s:13:"menu-item-url";s:37:"http://localhost/instaldeco/contacto/";s:16:"menu-item-target";s:0:"";s:17:"menu-item-classes";s:0:"";s:13:"menu-item-xfn";s:0:"";}i:-6;a:10:{s:19:"menu-item-object-id";s:2:"30";s:15:"menu-item-db-id";s:1:"0";s:16:"menu-item-object";s:4:"page";s:19:"menu-item-parent-id";s:1:"0";s:14:"menu-item-type";s:9:"post_type";s:15:"menu-item-title";s:9:"Acerca de";s:13:"menu-item-url";s:38:"http://localhost/instaldeco/acerca-de/";s:16:"menu-item-target";s:0:"";s:17:"menu-item-classes";s:0:"";s:13:"menu-item-xfn";s:0:"";}}'),
(416, 36, '_menu_item_type', 'post_type'),
(417, 36, '_menu_item_menu_item_parent', '0'),
(418, 36, '_menu_item_object_id', '34'),
(419, 36, '_menu_item_object', 'page'),
(420, 36, '_menu_item_target', ''),
(421, 36, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(422, 36, '_menu_item_xfn', ''),
(423, 36, '_menu_item_url', ''),
(489, 37, 'menu-name', 'Menú principal'),
(425, 37, 'action', 'update'),
(426, 37, 'menu', '3'),
(427, 37, 'menu-settings-column-nonce', '4534777bed'),
(428, 37, 'menu-item', 'a:3:{i:-4;a:10:{s:19:"menu-item-object-id";s:2:"34";s:15:"menu-item-db-id";s:1:"0";s:16:"menu-item-object";s:4:"page";s:19:"menu-item-parent-id";s:1:"0";s:14:"menu-item-type";s:9:"post_type";s:15:"menu-item-title";s:8:"Trabajos";s:13:"menu-item-url";s:37:"http://localhost/instaldeco/trabajos/";s:16:"menu-item-target";s:0:"";s:17:"menu-item-classes";s:0:"";s:13:"menu-item-xfn";s:0:"";}i:-5;a:10:{s:19:"menu-item-object-id";s:2:"32";s:15:"menu-item-db-id";s:1:"0";s:16:"menu-item-object";s:4:"page";s:19:"menu-item-parent-id";s:1:"0";s:14:"menu-item-type";s:9:"post_type";s:15:"menu-item-title";s:8:"Contacto";s:13:"menu-item-url";s:37:"http://localhost/instaldeco/contacto/";s:16:"menu-item-target";s:0:"";s:17:"menu-item-classes";s:0:"";s:13:"menu-item-xfn";s:0:"";}i:-6;a:10:{s:19:"menu-item-object-id";s:2:"30";s:15:"menu-item-db-id";s:1:"0";s:16:"menu-item-object";s:4:"page";s:19:"menu-item-parent-id";s:1:"0";s:14:"menu-item-type";s:9:"post_type";s:15:"menu-item-title";s:9:"Acerca de";s:13:"menu-item-url";s:38:"http://localhost/instaldeco/acerca-de/";s:16:"menu-item-target";s:0:"";s:17:"menu-item-classes";s:0:"";s:13:"menu-item-xfn";s:0:"";}}'),
(429, 37, '_menu_item_type', 'post_type'),
(430, 37, '_menu_item_menu_item_parent', '0'),
(431, 37, '_menu_item_object_id', '32'),
(432, 37, '_menu_item_object', 'page'),
(433, 37, '_menu_item_target', ''),
(434, 37, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(435, 37, '_menu_item_xfn', ''),
(436, 37, '_menu_item_url', ''),
(438, 38, 'action', 'update'),
(439, 38, 'menu', '3'),
(440, 38, 'menu-settings-column-nonce', '4534777bed'),
(441, 38, 'menu-item', 'a:3:{i:-4;a:10:{s:19:"menu-item-object-id";s:2:"34";s:15:"menu-item-db-id";s:1:"0";s:16:"menu-item-object";s:4:"page";s:19:"menu-item-parent-id";s:1:"0";s:14:"menu-item-type";s:9:"post_type";s:15:"menu-item-title";s:8:"Trabajos";s:13:"menu-item-url";s:37:"http://localhost/instaldeco/trabajos/";s:16:"menu-item-target";s:0:"";s:17:"menu-item-classes";s:0:"";s:13:"menu-item-xfn";s:0:"";}i:-5;a:10:{s:19:"menu-item-object-id";s:2:"32";s:15:"menu-item-db-id";s:1:"0";s:16:"menu-item-object";s:4:"page";s:19:"menu-item-parent-id";s:1:"0";s:14:"menu-item-type";s:9:"post_type";s:15:"menu-item-title";s:8:"Contacto";s:13:"menu-item-url";s:37:"http://localhost/instaldeco/contacto/";s:16:"menu-item-target";s:0:"";s:17:"menu-item-classes";s:0:"";s:13:"menu-item-xfn";s:0:"";}i:-6;a:10:{s:19:"menu-item-object-id";s:2:"30";s:15:"menu-item-db-id";s:1:"0";s:16:"menu-item-object";s:4:"page";s:19:"menu-item-parent-id";s:1:"0";s:14:"menu-item-type";s:9:"post_type";s:15:"menu-item-title";s:9:"Acerca de";s:13:"menu-item-url";s:38:"http://localhost/instaldeco/acerca-de/";s:16:"menu-item-target";s:0:"";s:17:"menu-item-classes";s:0:"";s:13:"menu-item-xfn";s:0:"";}}'),
(442, 38, '_menu_item_type', 'post_type'),
(443, 38, '_menu_item_menu_item_parent', '0'),
(444, 38, '_menu_item_object_id', '30'),
(445, 38, '_menu_item_object', 'page'),
(446, 38, '_menu_item_target', ''),
(447, 38, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(448, 38, '_menu_item_xfn', ''),
(449, 38, '_menu_item_url', ''),
(470, 36, 'menu-name', 'Menú principal'),
(457, 38, 'menu-item-attr-title', 'a:5:{i:14;s:0:"";i:38;s:0:"";i:54;s:0:"";i:36;s:0:"";i:37;s:0:"";}'),
(458, 38, 'menu-item-target', 'a:5:{i:14;s:0:"";i:38;s:0:"";i:54;s:0:"";i:36;s:0:"";i:37;s:0:"";}'),
(459, 38, 'menu-item-classes', 'a:5:{i:14;s:0:"";i:38;s:0:"";i:54;s:0:"";i:36;s:0:"";i:37;s:0:"";}'),
(460, 38, 'menu-item-xfn', 'a:5:{i:14;s:0:"";i:38;s:0:"";i:54;s:0:"";i:36;s:0:"";i:37;s:0:"";}'),
(461, 38, 'menu-item-description', 'a:5:{i:14;s:235:"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc nec tellus ligula. Nullam elit metus, dapibus vitae pharetra vitae, tincidunt a sapien. Sed eget sapien et justo ultrices auctor. Aliquam sagittis, nibh in dictum elementum.";i:38;s:1:" ";i:54;s:1:" ";i:36;s:1:" ";i:37;s:1:" ";}'),
(462, 38, 'menu-item-db-id', 'a:5:{i:14;s:2:"14";i:38;s:2:"38";i:54;s:2:"54";i:36;s:2:"36";i:37;s:2:"37";}'),
(463, 38, 'menu-item-object-id', 'a:5:{i:14;s:2:"11";i:38;s:2:"30";i:54;s:2:"52";i:36;s:2:"34";i:37;s:2:"32";}'),
(464, 38, 'menu-item-object', 'a:5:{i:14;s:4:"page";i:38;s:4:"page";i:54;s:4:"page";i:36;s:4:"page";i:37;s:4:"page";}'),
(465, 38, 'menu-item-parent-id', 'a:5:{i:14;s:1:"0";i:38;s:1:"0";i:54;s:1:"0";i:36;s:1:"0";i:37;s:1:"0";}'),
(466, 38, 'menu-item-position', 'a:5:{i:14;s:1:"1";i:38;s:1:"2";i:54;s:1:"3";i:36;s:1:"4";i:37;s:1:"5";}'),
(467, 38, 'menu-item-type', 'a:5:{i:14;s:9:"post_type";i:38;s:9:"post_type";i:54;s:9:"post_type";i:36;s:9:"post_type";i:37;s:9:"post_type";}'),
(468, 38, 'save_menu', 'Guardar menú'),
(469, 38, 'menu-locations', 'a:1:{s:10:"navigation";s:1:"3";}'),
(471, 36, 'closedpostboxesnonce', '93e6ccdfdb'),
(472, 36, 'meta-box-order-nonce', '32ab9f2655'),
(473, 36, 'update-nav-menu-nonce', '2070c5d94e'),
(474, 36, '_wp_http_referer', '/instaldeco/wp-admin/nav-menus.php'),
(475, 36, 'menu-item-title', 'a:5:{i:14;s:6:"Inicio";i:38;s:9:"Acerca de";i:54;s:9:"Servicios";i:36;s:8:"Trabajos";i:37;s:8:"Contacto";}'),
(476, 36, 'menu-item-attr-title', 'a:5:{i:14;s:0:"";i:38;s:0:"";i:54;s:0:"";i:36;s:0:"";i:37;s:0:"";}'),
(477, 36, 'menu-item-target', 'a:5:{i:14;s:0:"";i:38;s:0:"";i:54;s:0:"";i:36;s:0:"";i:37;s:0:"";}'),
(478, 36, 'menu-item-classes', 'a:5:{i:14;s:0:"";i:38;s:0:"";i:54;s:0:"";i:36;s:0:"";i:37;s:0:"";}'),
(479, 36, 'menu-item-xfn', 'a:5:{i:14;s:0:"";i:38;s:0:"";i:54;s:0:"";i:36;s:0:"";i:37;s:0:"";}'),
(480, 36, 'menu-item-description', 'a:5:{i:14;s:235:"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc nec tellus ligula. Nullam elit metus, dapibus vitae pharetra vitae, tincidunt a sapien. Sed eget sapien et justo ultrices auctor. Aliquam sagittis, nibh in dictum elementum.";i:38;s:1:" ";i:54;s:1:" ";i:36;s:1:" ";i:37;s:1:" ";}'),
(481, 36, 'menu-item-db-id', 'a:5:{i:14;s:2:"14";i:38;s:2:"38";i:54;s:2:"54";i:36;s:2:"36";i:37;s:2:"37";}'),
(482, 36, 'menu-item-object-id', 'a:5:{i:14;s:2:"11";i:38;s:2:"30";i:54;s:2:"52";i:36;s:2:"34";i:37;s:2:"32";}'),
(483, 36, 'menu-item-object', 'a:5:{i:14;s:4:"page";i:38;s:4:"page";i:54;s:4:"page";i:36;s:4:"page";i:37;s:4:"page";}'),
(484, 36, 'menu-item-parent-id', 'a:5:{i:14;s:1:"0";i:38;s:1:"0";i:54;s:1:"0";i:36;s:1:"0";i:37;s:1:"0";}'),
(485, 36, 'menu-item-position', 'a:5:{i:14;s:1:"1";i:38;s:1:"2";i:54;s:1:"3";i:36;s:1:"4";i:37;s:1:"5";}'),
(486, 36, 'menu-item-type', 'a:5:{i:14;s:9:"post_type";i:38;s:9:"post_type";i:54;s:9:"post_type";i:36;s:9:"post_type";i:37;s:9:"post_type";}'),
(487, 36, 'save_menu', 'Guardar menú'),
(488, 36, 'menu-locations', 'a:1:{s:10:"navigation";s:1:"3";}'),
(490, 37, 'closedpostboxesnonce', '93e6ccdfdb'),
(491, 37, 'meta-box-order-nonce', '32ab9f2655'),
(492, 37, 'update-nav-menu-nonce', '2070c5d94e'),
(493, 37, '_wp_http_referer', '/instaldeco/wp-admin/nav-menus.php'),
(494, 37, 'menu-item-title', 'a:5:{i:14;s:6:"Inicio";i:38;s:9:"Acerca de";i:54;s:9:"Servicios";i:36;s:8:"Trabajos";i:37;s:8:"Contacto";}'),
(495, 37, 'menu-item-attr-title', 'a:5:{i:14;s:0:"";i:38;s:0:"";i:54;s:0:"";i:36;s:0:"";i:37;s:0:"";}'),
(496, 37, 'menu-item-target', 'a:5:{i:14;s:0:"";i:38;s:0:"";i:54;s:0:"";i:36;s:0:"";i:37;s:0:"";}'),
(497, 37, 'menu-item-classes', 'a:5:{i:14;s:0:"";i:38;s:0:"";i:54;s:0:"";i:36;s:0:"";i:37;s:0:"";}'),
(498, 37, 'menu-item-xfn', 'a:5:{i:14;s:0:"";i:38;s:0:"";i:54;s:0:"";i:36;s:0:"";i:37;s:0:"";}'),
(499, 37, 'menu-item-description', 'a:5:{i:14;s:235:"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc nec tellus ligula. Nullam elit metus, dapibus vitae pharetra vitae, tincidunt a sapien. Sed eget sapien et justo ultrices auctor. Aliquam sagittis, nibh in dictum elementum.";i:38;s:1:" ";i:54;s:1:" ";i:36;s:1:" ";i:37;s:1:" ";}'),
(500, 37, 'menu-item-db-id', 'a:5:{i:14;s:2:"14";i:38;s:2:"38";i:54;s:2:"54";i:36;s:2:"36";i:37;s:2:"37";}'),
(501, 37, 'menu-item-object-id', 'a:5:{i:14;s:2:"11";i:38;s:2:"30";i:54;s:2:"52";i:36;s:2:"34";i:37;s:2:"32";}'),
(502, 37, 'menu-item-object', 'a:5:{i:14;s:4:"page";i:38;s:4:"page";i:54;s:4:"page";i:36;s:4:"page";i:37;s:4:"page";}'),
(503, 37, 'menu-item-parent-id', 'a:5:{i:14;s:1:"0";i:38;s:1:"0";i:54;s:1:"0";i:36;s:1:"0";i:37;s:1:"0";}'),
(504, 37, 'menu-item-position', 'a:5:{i:14;s:1:"1";i:38;s:1:"2";i:54;s:1:"3";i:36;s:1:"4";i:37;s:1:"5";}'),
(505, 37, 'menu-item-type', 'a:5:{i:14;s:9:"post_type";i:38;s:9:"post_type";i:54;s:9:"post_type";i:36;s:9:"post_type";i:37;s:9:"post_type";}'),
(506, 37, 'save_menu', 'Guardar menú'),
(507, 37, 'menu-locations', 'a:1:{s:10:"navigation";s:1:"3";}'),
(510, 30, '_ajax_nonce', '2598203cc4'),
(511, 32, 'save', 'Actualizar');
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(512, 32, 'meta', 'a:61:{i:304;a:2:{s:3:"key";s:2:"aa";s:5:"value";s:4:"2011";}i:283;a:2:{s:3:"key";s:6:"action";s:5:"value";s:8:"editpost";}i:330;a:2:{s:3:"key";s:13:"advanced_view";s:5:"value";s:1:"1";}i:292;a:2:{s:3:"key";s:13:"autosavenonce";s:5:"value";s:10:"77aff51ab8";}i:290;a:2:{s:3:"key";s:10:"auto_draft";s:5:"value";s:1:"0";}i:294;a:2:{s:3:"key";s:20:"closedpostboxesnonce";s:5:"value";s:10:"93e6ccdfdb";}i:331;a:2:{s:3:"key";s:14:"comment_status";s:5:"value";s:4:"open";}i:325;a:2:{s:3:"key";s:7:"content";s:5:"value";s:0:"";}i:313;a:2:{s:3:"key";s:6:"cur_aa";s:5:"value";s:4:"2011";}i:315;a:2:{s:3:"key";s:6:"cur_hh";s:5:"value";s:2:"16";}i:311;a:2:{s:3:"key";s:6:"cur_jj";s:5:"value";s:2:"23";}i:309;a:2:{s:3:"key";s:6:"cur_mm";s:5:"value";s:2:"10";}i:317;a:2:{s:3:"key";s:6:"cur_mn";s:5:"value";s:2:"24";}i:305;a:2:{s:3:"key";s:2:"hh";s:5:"value";s:2:"16";}i:312;a:2:{s:3:"key";s:9:"hidden_aa";s:5:"value";s:4:"2011";}i:314;a:2:{s:3:"key";s:9:"hidden_hh";s:5:"value";s:2:"16";}i:310;a:2:{s:3:"key";s:9:"hidden_jj";s:5:"value";s:2:"23";}i:308;a:2:{s:3:"key";s:9:"hidden_mm";s:5:"value";s:2:"10";}i:316;a:2:{s:3:"key";s:9:"hidden_mn";s:5:"value";s:2:"10";}i:298;a:2:{s:3:"key";s:20:"hidden_post_password";s:5:"value";s:0:"";}i:296;a:2:{s:3:"key";s:18:"hidden_post_status";s:5:"value";s:7:"publish";}i:299;a:2:{s:3:"key";s:22:"hidden_post_visibility";s:5:"value";s:6:"public";}i:341;a:2:{s:3:"key";s:2:"ID";s:5:"value";s:2:"32";}i:303;a:2:{s:3:"key";s:2:"jj";s:5:"value";s:2:"23";}i:322;a:2:{s:3:"key";s:10:"menu_order";s:5:"value";s:1:"0";}i:293;a:2:{s:3:"key";s:20:"meta-box-order-nonce";s:5:"value";s:10:"32ab9f2655";}i:327;a:2:{s:3:"key";s:12:"metakeyinput";s:5:"value";s:0:"";}i:326;a:2:{s:3:"key";s:13:"metakeyselect";s:5:"value";s:6:"#NONE#";}i:328;a:2:{s:3:"key";s:9:"metavalue";s:5:"value";s:0:"";}i:302;a:2:{s:3:"key";s:2:"mm";s:5:"value";s:2:"10";}i:306;a:2:{s:3:"key";s:2:"mn";s:5:"value";s:2:"10";}i:284;a:2:{s:3:"key";s:14:"originalaction";s:5:"value";s:8:"editpost";}i:287;a:2:{s:3:"key";s:20:"original_post_status";s:5:"value";s:7:"publish";}i:318;a:2:{s:3:"key";s:16:"original_publish";s:5:"value";s:10:"Actualizar";}i:321;a:2:{s:3:"key";s:13:"page_template";s:5:"value";s:11:"contact.php";}i:320;a:2:{s:3:"key";s:9:"parent_id";s:5:"value";s:0:"";}i:332;a:2:{s:3:"key";s:11:"ping_status";s:5:"value";s:4:"open";}i:285;a:2:{s:3:"key";s:11:"post_author";s:5:"value";s:1:"1";}i:334;a:2:{s:3:"key";s:20:"post_author_override";s:5:"value";s:1:"1";}i:342;a:2:{s:3:"key";s:12:"post_content";s:5:"value";s:0:"";}i:291;a:2:{s:3:"key";s:7:"post_ID";s:5:"value";s:2:"32";}i:340;a:2:{s:3:"key";s:14:"post_mime_type";s:5:"value";s:0:"";}i:333;a:2:{s:3:"key";s:9:"post_name";s:5:"value";s:8:"contacto";}i:343;a:2:{s:3:"key";s:11:"post_parent";s:5:"value";s:1:"0";}i:301;a:2:{s:3:"key";s:13:"post_password";s:5:"value";s:0:"";}i:297;a:2:{s:3:"key";s:11:"post_status";s:5:"value";s:7:"publish";}i:323;a:2:{s:3:"key";s:10:"post_title";s:5:"value";s:8:"Contacto";}i:286;a:2:{s:3:"key";s:9:"post_type";s:5:"value";s:4:"page";}i:319;a:2:{s:3:"key";s:7:"publish";s:5:"value";s:8:"Publicar";}i:336;a:2:{s:3:"key";s:22:"pyre_background_images";s:5:"value";s:0:"";}i:335;a:2:{s:3:"key";s:15:"pyre_font_color";s:5:"value";s:4:"dark";}i:338;a:2:{s:3:"key";s:14:"pyre_heading_1";s:5:"value";s:0:"";}i:339;a:2:{s:3:"key";s:14:"pyre_heading_2";s:5:"value";s:0:"";}i:337;a:2:{s:3:"key";s:16:"pyre_heading_sub";s:5:"value";s:0:"";}i:288;a:2:{s:3:"key";s:10:"referredby";s:5:"value";s:37:"http://localhost/instaldeco/contacto/";}i:324;a:2:{s:3:"key";s:20:"samplepermalinknonce";s:5:"value";s:10:"68031bd50f";}i:511;a:2:{s:3:"key";s:4:"save";s:5:"value";s:10:"Actualizar";}i:307;a:2:{s:3:"key";s:2:"ss";s:5:"value";s:2:"59";}i:282;a:2:{s:3:"key";s:7:"user_ID";s:5:"value";s:1:"1";}i:300;a:2:{s:3:"key";s:10:"visibility";s:5:"value";s:6:"public";}i:295;a:2:{s:3:"key";s:10:"wp-preview";s:5:"value";s:0:"";}}'),
(513, 32, '_ajax_nonce', '2598203cc4'),
(514, 34, 'save', 'Actualizar'),
(515, 34, 'meta', 'a:62:{i:370;a:2:{s:3:"key";s:2:"aa";s:5:"value";s:4:"2011";}i:349;a:2:{s:3:"key";s:6:"action";s:5:"value";s:8:"editpost";}i:396;a:2:{s:3:"key";s:13:"advanced_view";s:5:"value";s:1:"1";}i:358;a:2:{s:3:"key";s:13:"autosavenonce";s:5:"value";s:10:"77aff51ab8";}i:356;a:2:{s:3:"key";s:10:"auto_draft";s:5:"value";s:1:"1";}i:360;a:2:{s:3:"key";s:20:"closedpostboxesnonce";s:5:"value";s:10:"93e6ccdfdb";}i:397;a:2:{s:3:"key";s:14:"comment_status";s:5:"value";s:4:"open";}i:391;a:2:{s:3:"key";s:7:"content";s:5:"value";s:0:"";}i:379;a:2:{s:3:"key";s:6:"cur_aa";s:5:"value";s:4:"2011";}i:381;a:2:{s:3:"key";s:6:"cur_hh";s:5:"value";s:2:"18";}i:377;a:2:{s:3:"key";s:6:"cur_jj";s:5:"value";s:2:"23";}i:375;a:2:{s:3:"key";s:6:"cur_mm";s:5:"value";s:2:"10";}i:383;a:2:{s:3:"key";s:6:"cur_mn";s:5:"value";s:2:"46";}i:371;a:2:{s:3:"key";s:2:"hh";s:5:"value";s:2:"16";}i:378;a:2:{s:3:"key";s:9:"hidden_aa";s:5:"value";s:4:"2011";}i:380;a:2:{s:3:"key";s:9:"hidden_hh";s:5:"value";s:2:"16";}i:376;a:2:{s:3:"key";s:9:"hidden_jj";s:5:"value";s:2:"23";}i:374;a:2:{s:3:"key";s:9:"hidden_mm";s:5:"value";s:2:"10";}i:382;a:2:{s:3:"key";s:9:"hidden_mn";s:5:"value";s:2:"11";}i:364;a:2:{s:3:"key";s:20:"hidden_post_password";s:5:"value";s:0:"";}i:362;a:2:{s:3:"key";s:18:"hidden_post_status";s:5:"value";s:7:"publish";}i:365;a:2:{s:3:"key";s:22:"hidden_post_visibility";s:5:"value";s:6:"public";}i:407;a:2:{s:3:"key";s:2:"ID";s:5:"value";s:2:"34";}i:369;a:2:{s:3:"key";s:2:"jj";s:5:"value";s:2:"23";}i:388;a:2:{s:3:"key";s:10:"menu_order";s:5:"value";s:1:"0";}i:359;a:2:{s:3:"key";s:20:"meta-box-order-nonce";s:5:"value";s:10:"32ab9f2655";}i:393;a:2:{s:3:"key";s:12:"metakeyinput";s:5:"value";s:0:"";}i:392;a:2:{s:3:"key";s:13:"metakeyselect";s:5:"value";s:6:"#NONE#";}i:394;a:2:{s:3:"key";s:9:"metavalue";s:5:"value";s:0:"";}i:368;a:2:{s:3:"key";s:2:"mm";s:5:"value";s:2:"10";}i:372;a:2:{s:3:"key";s:2:"mn";s:5:"value";s:2:"11";}i:350;a:2:{s:3:"key";s:14:"originalaction";s:5:"value";s:8:"editpost";}i:353;a:2:{s:3:"key";s:20:"original_post_status";s:5:"value";s:7:"publish";}i:384;a:2:{s:3:"key";s:16:"original_publish";s:5:"value";s:10:"Actualizar";}i:387;a:2:{s:3:"key";s:13:"page_template";s:5:"value";s:23:"portfolio-scrolling.php";}i:386;a:2:{s:3:"key";s:9:"parent_id";s:5:"value";s:0:"";}i:398;a:2:{s:3:"key";s:11:"ping_status";s:5:"value";s:4:"open";}i:351;a:2:{s:3:"key";s:11:"post_author";s:5:"value";s:1:"1";}i:400;a:2:{s:3:"key";s:20:"post_author_override";s:5:"value";s:1:"1";}i:408;a:2:{s:3:"key";s:12:"post_content";s:5:"value";s:0:"";}i:357;a:2:{s:3:"key";s:7:"post_ID";s:5:"value";s:2:"34";}i:406;a:2:{s:3:"key";s:14:"post_mime_type";s:5:"value";s:0:"";}i:399;a:2:{s:3:"key";s:9:"post_name";s:5:"value";s:8:"trabajos";}i:409;a:2:{s:3:"key";s:11:"post_parent";s:5:"value";s:1:"0";}i:367;a:2:{s:3:"key";s:13:"post_password";s:5:"value";s:0:"";}i:363;a:2:{s:3:"key";s:11:"post_status";s:5:"value";s:7:"publish";}i:389;a:2:{s:3:"key";s:10:"post_title";s:5:"value";s:8:"Trabajos";}i:352;a:2:{s:3:"key";s:9:"post_type";s:5:"value";s:4:"page";}i:385;a:2:{s:3:"key";s:7:"publish";s:5:"value";s:8:"Publicar";}i:402;a:2:{s:3:"key";s:22:"pyre_background_images";s:5:"value";s:94:"http://localhost/instaldeco/wp-content/themes/Broadside/images/backgrounds/news-background.jpg";}i:401;a:2:{s:3:"key";s:15:"pyre_font_color";s:5:"value";s:5:"light";}i:404;a:2:{s:3:"key";s:14:"pyre_heading_1";s:5:"value";s:0:"";}i:405;a:2:{s:3:"key";s:14:"pyre_heading_2";s:5:"value";s:0:"";}i:403;a:2:{s:3:"key";s:16:"pyre_heading_sub";s:5:"value";s:0:"";}i:957;a:2:{s:3:"key";s:19:"pyre_portfolio_type";s:5:"value";s:1:"5";}i:354;a:2:{s:3:"key";s:10:"referredby";s:5:"value";s:65:"http://localhost/instaldeco/wp-admin/post.php?post=34&action=edit";}i:390;a:2:{s:3:"key";s:20:"samplepermalinknonce";s:5:"value";s:10:"68031bd50f";}i:514;a:2:{s:3:"key";s:4:"save";s:5:"value";s:10:"Actualizar";}i:373;a:2:{s:3:"key";s:2:"ss";s:5:"value";s:2:"27";}i:348;a:2:{s:3:"key";s:7:"user_ID";s:5:"value";s:1:"1";}i:366;a:2:{s:3:"key";s:10:"visibility";s:5:"value";s:6:"public";}i:361;a:2:{s:3:"key";s:10:"wp-preview";s:5:"value";s:0:"";}}'),
(516, 34, '_ajax_nonce', '2598203cc4'),
(517, 51, '_edit_last', '1'),
(518, 51, '_edit_lock', '1319386600:1'),
(519, 51, '_wpnonce', 'd99ebc7011'),
(520, 51, '_wp_http_referer', '/instaldeco/wp-admin/post.php?post=51&action=edit&message=1'),
(521, 51, 'user_ID', '1'),
(522, 51, 'action', 'editpost'),
(523, 51, 'originalaction', 'editpost'),
(524, 51, 'post_author', '1'),
(525, 51, 'post_type', 'portfolio'),
(526, 51, 'original_post_status', 'auto-draft'),
(527, 51, 'referredby', 'http://localhost/instaldeco/wp-admin/post-new.php?post_type=portfolio'),
(528, 51, '_wp_original_http_referer', 'http://localhost/instaldeco/wp-admin/post-new.php?post_type=portfolio'),
(529, 51, 'auto_draft', '0'),
(530, 51, 'post_ID', '51'),
(531, 51, 'autosavenonce', '77aff51ab8'),
(532, 51, 'meta-box-order-nonce', '32ab9f2655'),
(533, 51, 'closedpostboxesnonce', '93e6ccdfdb'),
(534, 51, 'wp-preview', ''),
(535, 51, 'hidden_post_status', 'draft'),
(536, 51, 'post_status', 'publish'),
(537, 51, 'hidden_post_password', ''),
(538, 51, 'hidden_post_visibility', 'public'),
(539, 51, 'visibility', 'public'),
(540, 51, 'post_password', ''),
(541, 51, 'mm', '10'),
(542, 51, 'jj', '23'),
(543, 51, 'aa', '2011'),
(544, 51, 'hh', '17'),
(545, 51, 'mn', '15'),
(546, 51, 'ss', '57'),
(547, 51, 'hidden_mm', '10'),
(548, 51, 'cur_mm', '10'),
(549, 51, 'hidden_jj', '23'),
(550, 51, 'cur_jj', '23'),
(551, 51, 'hidden_aa', '2011'),
(552, 51, 'cur_aa', '2011'),
(553, 51, 'hidden_hh', '17'),
(554, 51, 'cur_hh', '17'),
(555, 51, 'hidden_mn', '15'),
(556, 51, 'cur_mn', '16'),
(557, 51, 'original_publish', 'Publicar'),
(558, 51, 'publish', 'Publicar'),
(559, 51, 'tax_input', 'a:1:{s:4:"type";a:2:{i:0;s:1:"0";i:1;s:1:"4";}}'),
(560, 51, 'newtype', ''),
(561, 51, 'newtype_parent', '-1'),
(562, 51, '_ajax_nonce-add-type', '8ed35c20c1'),
(563, 51, 'post_title', 'Producción y contrucción'),
(564, 51, 'samplepermalinknonce', '68031bd50f'),
(565, 51, 'content', 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec in tortor dui, quis fermentum risus. Proin id tellus quis lectus tempor tempor. Vestibulum suscipit, lectus at tempus elementum, nisl nisl iaculis metus, sed mollis purus elit eget enim. Curabitur non metus in justo cursus eleifend.'),
(566, 51, 'post_name', ''),
(567, 51, 'pyre_video_link', ''),
(568, 51, 'post_mime_type', ''),
(569, 51, 'ID', '51'),
(570, 51, 'post_content', 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec in tortor dui, quis fermentum risus. Proin id tellus quis lectus tempor tempor. Vestibulum suscipit, lectus at tempus elementum, nisl nisl iaculis metus, sed mollis purus elit eget enim. Curabitur non metus in justo cursus eleifend.'),
(571, 51, 'comment_status', 'closed'),
(572, 51, 'ping_status', 'closed'),
(573, 52, '_edit_last', '1'),
(574, 52, '_edit_lock', '1319392299:1'),
(575, 52, '_wpnonce', 'c228c3c41e'),
(576, 52, '_wp_http_referer', '/instaldeco/wp-admin/post.php?post=52&action=edit&message=1'),
(577, 52, 'user_ID', '1'),
(578, 52, 'action', 'editpost'),
(579, 52, 'originalaction', 'editpost'),
(580, 52, 'post_author', '1'),
(581, 52, 'post_type', 'page'),
(582, 52, 'original_post_status', 'publish'),
(583, 52, 'referredby', 'http://localhost/instaldeco/wp-admin/post.php?post=52&action=edit&message=1'),
(584, 52, '_wp_original_http_referer', 'http://localhost/instaldeco/wp-admin/post.php?post=52&action=edit&message=1'),
(585, 52, 'auto_draft', '0'),
(586, 52, 'post_ID', '52'),
(587, 52, 'autosavenonce', '77aff51ab8'),
(588, 52, 'meta-box-order-nonce', '32ab9f2655'),
(589, 52, 'closedpostboxesnonce', '93e6ccdfdb'),
(590, 52, 'wp-preview', ''),
(591, 52, 'hidden_post_status', 'publish'),
(592, 52, 'post_status', 'publish'),
(593, 52, 'hidden_post_password', ''),
(594, 52, 'hidden_post_visibility', 'public'),
(595, 52, 'visibility', 'public'),
(596, 52, 'post_password', ''),
(597, 52, 'mm', '10'),
(598, 52, 'jj', '23'),
(599, 52, 'aa', '2011'),
(600, 52, 'hh', '17'),
(601, 52, 'mn', '17'),
(602, 52, 'ss', '20'),
(603, 52, 'hidden_mm', '10'),
(604, 52, 'cur_mm', '10'),
(605, 52, 'hidden_jj', '23'),
(606, 52, 'cur_jj', '23'),
(607, 52, 'hidden_aa', '2011'),
(608, 52, 'cur_aa', '2011'),
(609, 52, 'hidden_hh', '17'),
(610, 52, 'cur_hh', '18'),
(611, 52, 'hidden_mn', '17'),
(612, 52, 'cur_mn', '51'),
(613, 52, 'original_publish', 'Actualizar'),
(614, 52, 'publish', 'Publicar'),
(615, 52, 'parent_id', ''),
(616, 52, 'page_template', 'services.php'),
(617, 52, 'menu_order', '0'),
(618, 52, 'post_title', 'Nuestros servicios'),
(619, 52, 'samplepermalinknonce', '68031bd50f'),
(620, 52, 'content', ''),
(621, 52, 'metakeyselect', '#NONE#'),
(622, 52, 'metakeyinput', ''),
(623, 52, 'metavalue', ''),
(624, 52, '_ajax_nonce-add-meta', '66b56e5a27'),
(625, 52, 'advanced_view', '1'),
(626, 52, 'comment_status', 'open'),
(627, 52, 'ping_status', 'closed'),
(628, 52, 'post_name', 'nuestros-servicios'),
(629, 52, 'post_author_override', '1'),
(630, 52, 'pyre_font_color', 'dark'),
(631, 52, 'pyre_background_images', ''),
(818, 74, '_edit_last', '1'),
(819, 74, '_edit_lock', '1319389234:1'),
(632, 52, 'pyre_heading_sub', ''),
(633, 52, 'pyre_heading_1', 'Servicios'),
(634, 52, 'pyre_heading_2', 'producción - stands instalaciones comerciales desarrollo'),
(635, 52, 'pyre_portfolio_type', '4'),
(636, 52, 'post_mime_type', ''),
(637, 52, 'ID', '52'),
(638, 52, 'post_content', ''),
(639, 52, 'post_parent', '0'),
(640, 52, '_wp_page_template', 'services.php'),
(641, 54, 'action', 'update'),
(642, 54, 'menu', '3'),
(643, 54, 'menu-settings-column-nonce', '4534777bed'),
(644, 54, 'menu-item', 'a:1:{i:-4;a:10:{s:19:"menu-item-object-id";s:2:"52";s:15:"menu-item-db-id";s:1:"0";s:16:"menu-item-object";s:4:"page";s:19:"menu-item-parent-id";s:1:"0";s:14:"menu-item-type";s:9:"post_type";s:15:"menu-item-title";s:9:"Servicios";s:13:"menu-item-url";s:38:"http://localhost/instaldeco/servicios/";s:16:"menu-item-target";s:0:"";s:17:"menu-item-classes";s:0:"";s:13:"menu-item-xfn";s:0:"";}}'),
(645, 54, '_menu_item_type', 'post_type'),
(646, 54, '_menu_item_menu_item_parent', '0'),
(647, 54, '_menu_item_object_id', '52'),
(648, 54, '_menu_item_object', 'page'),
(649, 54, '_menu_item_target', ''),
(650, 54, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(651, 54, '_menu_item_xfn', ''),
(652, 54, '_menu_item_url', ''),
(654, 54, 'menu-name', 'Menú principal'),
(655, 54, 'closedpostboxesnonce', '93e6ccdfdb'),
(656, 54, 'meta-box-order-nonce', '32ab9f2655'),
(657, 54, 'update-nav-menu-nonce', '2070c5d94e'),
(658, 54, '_wp_http_referer', '/instaldeco/wp-admin/nav-menus.php'),
(659, 54, 'menu-item-title', 'a:5:{i:14;s:6:"Inicio";i:38;s:9:"Acerca de";i:54;s:9:"Servicios";i:36;s:8:"Trabajos";i:37;s:8:"Contacto";}'),
(660, 54, 'menu-item-attr-title', 'a:5:{i:14;s:0:"";i:38;s:0:"";i:54;s:0:"";i:36;s:0:"";i:37;s:0:"";}'),
(661, 54, 'menu-item-target', 'a:5:{i:14;s:0:"";i:38;s:0:"";i:54;s:0:"";i:36;s:0:"";i:37;s:0:"";}'),
(662, 54, 'menu-item-classes', 'a:5:{i:14;s:0:"";i:38;s:0:"";i:54;s:0:"";i:36;s:0:"";i:37;s:0:"";}'),
(663, 54, 'menu-item-xfn', 'a:5:{i:14;s:0:"";i:38;s:0:"";i:54;s:0:"";i:36;s:0:"";i:37;s:0:"";}'),
(664, 54, 'menu-item-description', 'a:5:{i:14;s:235:"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc nec tellus ligula. Nullam elit metus, dapibus vitae pharetra vitae, tincidunt a sapien. Sed eget sapien et justo ultrices auctor. Aliquam sagittis, nibh in dictum elementum.";i:38;s:1:" ";i:54;s:1:" ";i:36;s:1:" ";i:37;s:1:" ";}'),
(665, 54, 'menu-item-db-id', 'a:5:{i:14;s:2:"14";i:38;s:2:"38";i:54;s:2:"54";i:36;s:2:"36";i:37;s:2:"37";}'),
(666, 54, 'menu-item-object-id', 'a:5:{i:14;s:2:"11";i:38;s:2:"30";i:54;s:2:"52";i:36;s:2:"34";i:37;s:2:"32";}'),
(667, 54, 'menu-item-object', 'a:5:{i:14;s:4:"page";i:38;s:4:"page";i:54;s:4:"page";i:36;s:4:"page";i:37;s:4:"page";}'),
(668, 54, 'menu-item-parent-id', 'a:5:{i:14;s:1:"0";i:38;s:1:"0";i:54;s:1:"0";i:36;s:1:"0";i:37;s:1:"0";}'),
(669, 54, 'menu-item-position', 'a:5:{i:14;s:1:"1";i:38;s:1:"2";i:54;s:1:"3";i:36;s:1:"4";i:37;s:1:"5";}'),
(670, 54, 'menu-item-type', 'a:5:{i:14;s:9:"post_type";i:38;s:9:"post_type";i:54;s:9:"post_type";i:36;s:9:"post_type";i:37;s:9:"post_type";}'),
(671, 54, 'save_menu', 'Guardar menú'),
(672, 54, 'menu-locations', 'a:1:{s:10:"navigation";s:1:"3";}'),
(673, 52, 'save', 'Actualizar'),
(674, 52, 'meta', 'a:69:{i:599;a:2:{s:3:"key";s:2:"aa";s:5:"value";s:4:"2011";}i:578;a:2:{s:3:"key";s:6:"action";s:5:"value";s:8:"editpost";}i:625;a:2:{s:3:"key";s:13:"advanced_view";s:5:"value";s:1:"1";}i:587;a:2:{s:3:"key";s:13:"autosavenonce";s:5:"value";s:10:"77aff51ab8";}i:585;a:2:{s:3:"key";s:10:"auto_draft";s:5:"value";s:1:"0";}i:589;a:2:{s:3:"key";s:20:"closedpostboxesnonce";s:5:"value";s:10:"93e6ccdfdb";}i:626;a:2:{s:3:"key";s:14:"comment_status";s:5:"value";s:4:"open";}i:620;a:2:{s:3:"key";s:7:"content";s:5:"value";s:0:"";}i:608;a:2:{s:3:"key";s:6:"cur_aa";s:5:"value";s:4:"2011";}i:610;a:2:{s:3:"key";s:6:"cur_hh";s:5:"value";s:2:"18";}i:606;a:2:{s:3:"key";s:6:"cur_jj";s:5:"value";s:2:"23";}i:604;a:2:{s:3:"key";s:6:"cur_mm";s:5:"value";s:2:"10";}i:612;a:2:{s:3:"key";s:6:"cur_mn";s:5:"value";s:2:"50";}i:891;a:2:{s:3:"key";s:9:"edit_date";s:5:"value";s:4:"true";}i:892;a:2:{s:3:"key";s:7:"excerpt";s:5:"value";s:0:"";}i:600;a:2:{s:3:"key";s:2:"hh";s:5:"value";s:2:"17";}i:607;a:2:{s:3:"key";s:9:"hidden_aa";s:5:"value";s:4:"2011";}i:609;a:2:{s:3:"key";s:9:"hidden_hh";s:5:"value";s:2:"17";}i:605;a:2:{s:3:"key";s:9:"hidden_jj";s:5:"value";s:2:"23";}i:603;a:2:{s:3:"key";s:9:"hidden_mm";s:5:"value";s:2:"10";}i:611;a:2:{s:3:"key";s:9:"hidden_mn";s:5:"value";s:2:"17";}i:593;a:2:{s:3:"key";s:20:"hidden_post_password";s:5:"value";s:0:"";}i:591;a:2:{s:3:"key";s:18:"hidden_post_status";s:5:"value";s:7:"publish";}i:594;a:2:{s:3:"key";s:22:"hidden_post_visibility";s:5:"value";s:6:"public";}i:637;a:2:{s:3:"key";s:2:"ID";s:5:"value";s:2:"52";}i:598;a:2:{s:3:"key";s:2:"jj";s:5:"value";s:2:"23";}i:617;a:2:{s:3:"key";s:10:"menu_order";s:5:"value";s:1:"0";}i:588;a:2:{s:3:"key";s:20:"meta-box-order-nonce";s:5:"value";s:10:"32ab9f2655";}i:622;a:2:{s:3:"key";s:12:"metakeyinput";s:5:"value";s:0:"";}i:621;a:2:{s:3:"key";s:13:"metakeyselect";s:5:"value";s:6:"#NONE#";}i:623;a:2:{s:3:"key";s:9:"metavalue";s:5:"value";s:0:"";}i:597;a:2:{s:3:"key";s:2:"mm";s:5:"value";s:2:"10";}i:601;a:2:{s:3:"key";s:2:"mn";s:5:"value";s:2:"17";}i:579;a:2:{s:3:"key";s:14:"originalaction";s:5:"value";s:8:"editpost";}i:582;a:2:{s:3:"key";s:20:"original_post_status";s:5:"value";s:7:"publish";}i:613;a:2:{s:3:"key";s:16:"original_publish";s:5:"value";s:10:"Actualizar";}i:616;a:2:{s:3:"key";s:13:"page_template";s:5:"value";s:12:"services.php";}i:615;a:2:{s:3:"key";s:9:"parent_id";s:5:"value";s:0:"";}i:627;a:2:{s:3:"key";s:11:"ping_status";s:5:"value";s:6:"closed";}i:580;a:2:{s:3:"key";s:11:"post_author";s:5:"value";s:1:"1";}i:629;a:2:{s:3:"key";s:20:"post_author_override";s:5:"value";s:1:"1";}i:638;a:2:{s:3:"key";s:12:"post_content";s:5:"value";s:0:"";}i:894;a:2:{s:3:"key";s:9:"post_date";s:5:"value";s:19:"2011-10-23 17:17:20";}i:895;a:2:{s:3:"key";s:13:"post_date_gmt";s:5:"value";s:19:"2011-10-23 16:17:20";}i:893;a:2:{s:3:"key";s:12:"post_excerpt";s:5:"value";s:0:"";}i:586;a:2:{s:3:"key";s:7:"post_ID";s:5:"value";s:2:"52";}i:636;a:2:{s:3:"key";s:14:"post_mime_type";s:5:"value";s:0:"";}i:628;a:2:{s:3:"key";s:9:"post_name";s:5:"value";s:18:"nuestros-servicios";}i:639;a:2:{s:3:"key";s:11:"post_parent";s:5:"value";s:1:"0";}i:596;a:2:{s:3:"key";s:13:"post_password";s:5:"value";s:0:"";}i:592;a:2:{s:3:"key";s:11:"post_status";s:5:"value";s:7:"publish";}i:618;a:2:{s:3:"key";s:10:"post_title";s:5:"value";s:18:"Nuestros servicios";}i:581;a:2:{s:3:"key";s:9:"post_type";s:5:"value";s:4:"page";}i:889;a:2:{s:3:"key";s:9:"post_view";s:5:"value";s:4:"list";}i:614;a:2:{s:3:"key";s:7:"publish";s:5:"value";s:8:"Publicar";}i:631;a:2:{s:3:"key";s:22:"pyre_background_images";s:5:"value";s:0:"";}i:630;a:2:{s:3:"key";s:15:"pyre_font_color";s:5:"value";s:4:"dark";}i:633;a:2:{s:3:"key";s:14:"pyre_heading_1";s:5:"value";s:9:"Servicios";}i:634;a:2:{s:3:"key";s:14:"pyre_heading_2";s:5:"value";s:57:"producción - stands instalaciones comerciales desarrollo";}i:632;a:2:{s:3:"key";s:16:"pyre_heading_sub";s:5:"value";s:57:"producción - stands instalaciones comerciales desarrollo";}i:635;a:2:{s:3:"key";s:19:"pyre_portfolio_type";s:5:"value";s:1:"4";}i:583;a:2:{s:3:"key";s:10:"referredby";s:5:"value";s:65:"http://localhost/instaldeco/wp-admin/post.php?post=52&action=edit";}i:619;a:2:{s:3:"key";s:20:"samplepermalinknonce";s:5:"value";s:10:"68031bd50f";}i:673;a:2:{s:3:"key";s:4:"save";s:5:"value";s:10:"Actualizar";}i:890;a:2:{s:3:"key";s:6:"screen";s:5:"value";s:9:"edit-page";}i:602;a:2:{s:3:"key";s:2:"ss";s:5:"value";s:2:"20";}i:577;a:2:{s:3:"key";s:7:"user_ID";s:5:"value";s:1:"1";}i:595;a:2:{s:3:"key";s:10:"visibility";s:5:"value";s:6:"public";}i:590;a:2:{s:3:"key";s:10:"wp-preview";s:5:"value";s:0:"";}}'),
(675, 52, '_ajax_nonce', '2598203cc4'),
(887, 52, '_status', 'publish'),
(676, 56, '_edit_last', '1'),
(677, 56, '_edit_lock', '1319388430:1'),
(678, 56, '_wpnonce', '4d0bb04646'),
(679, 56, '_wp_http_referer', '/instaldeco/wp-admin/post.php?post=56&action=edit&message=1'),
(680, 56, 'user_ID', '1'),
(681, 56, 'action', 'editpost'),
(682, 56, 'originalaction', 'editpost'),
(683, 56, 'post_author', '1'),
(684, 56, 'post_type', 'page'),
(685, 56, 'original_post_status', 'publish'),
(686, 56, 'referredby', 'http://localhost/instaldeco/wp-admin/post.php?post=56&action=edit'),
(687, 56, '_wp_original_http_referer', 'http://localhost/instaldeco/wp-admin/post.php?post=56&action=edit'),
(688, 56, 'auto_draft', '0'),
(689, 56, 'post_ID', '56'),
(690, 56, 'autosavenonce', '77aff51ab8'),
(691, 56, 'meta-box-order-nonce', '32ab9f2655'),
(692, 56, 'closedpostboxesnonce', '93e6ccdfdb'),
(693, 56, 'wp-preview', ''),
(694, 56, 'hidden_post_status', 'publish'),
(695, 56, 'post_status', 'publish'),
(696, 56, 'hidden_post_password', ''),
(697, 56, 'hidden_post_visibility', 'public'),
(698, 56, 'visibility', 'public'),
(699, 56, 'post_password', ''),
(700, 56, 'mm', '10'),
(701, 56, 'jj', '23'),
(702, 56, 'aa', '2011'),
(703, 56, 'hh', '17'),
(704, 56, 'mn', '22'),
(705, 56, 'ss', '14'),
(706, 56, 'hidden_mm', '10'),
(707, 56, 'cur_mm', '10'),
(708, 56, 'hidden_jj', '23'),
(709, 56, 'cur_jj', '23'),
(710, 56, 'hidden_aa', '2011'),
(711, 56, 'cur_aa', '2011'),
(712, 56, 'hidden_hh', '17'),
(713, 56, 'cur_hh', '17'),
(714, 56, 'hidden_mn', '22'),
(715, 56, 'cur_mn', '28'),
(716, 56, 'original_publish', 'Actualizar'),
(717, 56, 'publish', 'Publicar'),
(718, 56, 'parent_id', '52'),
(719, 56, 'page_template', 'default'),
(720, 56, 'menu_order', '0'),
(721, 56, 'post_title', 'Producción y construcción'),
(722, 56, 'samplepermalinknonce', '68031bd50f'),
(723, 56, 'content', 'En nuestro taller llevamos a cabo la producción y construcción de mobiliario en serie listo para su instalación.\r\n\r\nUn extenso y cualificado equipo de trabajo, apoyado por la más moderna tecnología, hace que todo esto sea posible en el mínimo espacio de tiempo.\r\n\r\nEl control total sobre la producción y la construcción nos dota de grandes ventajas sobre otros proveedores.'),
(724, 56, 'metakeyselect', '#NONE#'),
(725, 56, 'metakeyinput', ''),
(726, 56, 'metavalue', ''),
(727, 56, '_ajax_nonce-add-meta', '66b56e5a27'),
(728, 56, 'advanced_view', '1'),
(729, 56, 'comment_status', 'open'),
(730, 56, 'ping_status', 'open'),
(731, 56, 'post_name', 'produccion-y-construccion'),
(732, 56, 'post_author_override', '1'),
(733, 56, 'pyre_font_color', 'light'),
(734, 56, 'pyre_background_images', 'http://localhost/instaldeco/wp-content/themes/Broadside/images/backgrounds/news-background.jpg'),
(735, 56, 'pyre_heading_sub', ''),
(736, 56, 'pyre_heading_1', ''),
(737, 56, 'pyre_heading_2', ''),
(738, 56, 'pyre_portfolio_type', '4'),
(739, 56, 'post_mime_type', ''),
(740, 56, 'ID', '56'),
(741, 56, 'post_content', 'En nuestro taller llevamos a cabo la producción y construcción de mobiliario en serie listo para su instalación.\r\n\r\nUn extenso y cualificado equipo de trabajo, apoyado por la más moderna tecnología, hace que todo esto sea posible en el mínimo espacio de tiempo.\r\n\r\nEl control total sobre la producción y la construcción nos dota de grandes ventajas sobre otros proveedores.'),
(742, 56, 'post_parent', '52'),
(743, 56, '_wp_page_template', 'default'),
(744, 56, 'save', 'Actualizar'),
(745, 56, 'meta', 'a:62:{i:702;a:2:{s:3:"key";s:2:"aa";s:5:"value";s:4:"2011";}i:681;a:2:{s:3:"key";s:6:"action";s:5:"value";s:8:"editpost";}i:728;a:2:{s:3:"key";s:13:"advanced_view";s:5:"value";s:1:"1";}i:690;a:2:{s:3:"key";s:13:"autosavenonce";s:5:"value";s:10:"77aff51ab8";}i:688;a:2:{s:3:"key";s:10:"auto_draft";s:5:"value";s:1:"0";}i:692;a:2:{s:3:"key";s:20:"closedpostboxesnonce";s:5:"value";s:10:"93e6ccdfdb";}i:729;a:2:{s:3:"key";s:14:"comment_status";s:5:"value";s:4:"open";}i:723;a:2:{s:3:"key";s:7:"content";s:5:"value";s:381:"En nuestro taller llevamos a cabo la producción y construcción de mobiliario en serie listo para su instalación.\r\n\r\nUn extenso y cualificado equipo de trabajo, apoyado por la más moderna tecnología, hace que todo esto sea posible en el mínimo espacio de tiempo.\r\n\r\nEl control total sobre la producción y la construcción nos dota de grandes ventajas sobre otros proveedores.";}i:711;a:2:{s:3:"key";s:6:"cur_aa";s:5:"value";s:4:"2011";}i:713;a:2:{s:3:"key";s:6:"cur_hh";s:5:"value";s:2:"17";}i:709;a:2:{s:3:"key";s:6:"cur_jj";s:5:"value";s:2:"23";}i:707;a:2:{s:3:"key";s:6:"cur_mm";s:5:"value";s:2:"10";}i:715;a:2:{s:3:"key";s:6:"cur_mn";s:5:"value";s:2:"28";}i:703;a:2:{s:3:"key";s:2:"hh";s:5:"value";s:2:"17";}i:710;a:2:{s:3:"key";s:9:"hidden_aa";s:5:"value";s:4:"2011";}i:712;a:2:{s:3:"key";s:9:"hidden_hh";s:5:"value";s:2:"17";}i:708;a:2:{s:3:"key";s:9:"hidden_jj";s:5:"value";s:2:"23";}i:706;a:2:{s:3:"key";s:9:"hidden_mm";s:5:"value";s:2:"10";}i:714;a:2:{s:3:"key";s:9:"hidden_mn";s:5:"value";s:2:"22";}i:696;a:2:{s:3:"key";s:20:"hidden_post_password";s:5:"value";s:0:"";}i:694;a:2:{s:3:"key";s:18:"hidden_post_status";s:5:"value";s:7:"publish";}i:697;a:2:{s:3:"key";s:22:"hidden_post_visibility";s:5:"value";s:6:"public";}i:740;a:2:{s:3:"key";s:2:"ID";s:5:"value";s:2:"56";}i:701;a:2:{s:3:"key";s:2:"jj";s:5:"value";s:2:"23";}i:720;a:2:{s:3:"key";s:10:"menu_order";s:5:"value";s:1:"0";}i:691;a:2:{s:3:"key";s:20:"meta-box-order-nonce";s:5:"value";s:10:"32ab9f2655";}i:725;a:2:{s:3:"key";s:12:"metakeyinput";s:5:"value";s:0:"";}i:724;a:2:{s:3:"key";s:13:"metakeyselect";s:5:"value";s:6:"#NONE#";}i:726;a:2:{s:3:"key";s:9:"metavalue";s:5:"value";s:0:"";}i:700;a:2:{s:3:"key";s:2:"mm";s:5:"value";s:2:"10";}i:704;a:2:{s:3:"key";s:2:"mn";s:5:"value";s:2:"22";}i:682;a:2:{s:3:"key";s:14:"originalaction";s:5:"value";s:8:"editpost";}i:685;a:2:{s:3:"key";s:20:"original_post_status";s:5:"value";s:7:"publish";}i:716;a:2:{s:3:"key";s:16:"original_publish";s:5:"value";s:10:"Actualizar";}i:719;a:2:{s:3:"key";s:13:"page_template";s:5:"value";s:7:"default";}i:718;a:2:{s:3:"key";s:9:"parent_id";s:5:"value";s:2:"52";}i:730;a:2:{s:3:"key";s:11:"ping_status";s:5:"value";s:4:"open";}i:683;a:2:{s:3:"key";s:11:"post_author";s:5:"value";s:1:"1";}i:732;a:2:{s:3:"key";s:20:"post_author_override";s:5:"value";s:1:"1";}i:741;a:2:{s:3:"key";s:12:"post_content";s:5:"value";s:381:"En nuestro taller llevamos a cabo la producción y construcción de mobiliario en serie listo para su instalación.\r\n\r\nUn extenso y cualificado equipo de trabajo, apoyado por la más moderna tecnología, hace que todo esto sea posible en el mínimo espacio de tiempo.\r\n\r\nEl control total sobre la producción y la construcción nos dota de grandes ventajas sobre otros proveedores.";}i:689;a:2:{s:3:"key";s:7:"post_ID";s:5:"value";s:2:"56";}i:739;a:2:{s:3:"key";s:14:"post_mime_type";s:5:"value";s:0:"";}i:731;a:2:{s:3:"key";s:9:"post_name";s:5:"value";s:25:"produccion-y-construccion";}i:742;a:2:{s:3:"key";s:11:"post_parent";s:5:"value";s:2:"52";}i:699;a:2:{s:3:"key";s:13:"post_password";s:5:"value";s:0:"";}i:695;a:2:{s:3:"key";s:11:"post_status";s:5:"value";s:7:"publish";}i:721;a:2:{s:3:"key";s:10:"post_title";s:5:"value";s:27:"Producción y construcción";}i:684;a:2:{s:3:"key";s:9:"post_type";s:5:"value";s:4:"page";}i:717;a:2:{s:3:"key";s:7:"publish";s:5:"value";s:8:"Publicar";}i:734;a:2:{s:3:"key";s:22:"pyre_background_images";s:5:"value";s:99:"http://localhost/instaldeco/wp-content/themes/Broadside/images/backgrounds/portfolio-background.jpg";}i:733;a:2:{s:3:"key";s:15:"pyre_font_color";s:5:"value";s:5:"light";}i:736;a:2:{s:3:"key";s:14:"pyre_heading_1";s:5:"value";s:0:"";}i:737;a:2:{s:3:"key";s:14:"pyre_heading_2";s:5:"value";s:0:"";}i:735;a:2:{s:3:"key";s:16:"pyre_heading_sub";s:5:"value";s:0:"";}i:738;a:2:{s:3:"key";s:19:"pyre_portfolio_type";s:5:"value";s:1:"4";}i:686;a:2:{s:3:"key";s:10:"referredby";s:5:"value";s:60:"http://localhost/instaldeco/wp-admin/edit.php?post_type=page";}i:722;a:2:{s:3:"key";s:20:"samplepermalinknonce";s:5:"value";s:10:"68031bd50f";}i:744;a:2:{s:3:"key";s:4:"save";s:5:"value";s:10:"Actualizar";}i:705;a:2:{s:3:"key";s:2:"ss";s:5:"value";s:2:"14";}i:680;a:2:{s:3:"key";s:7:"user_ID";s:5:"value";s:1:"1";}i:698;a:2:{s:3:"key";s:10:"visibility";s:5:"value";s:6:"public";}i:693;a:2:{s:3:"key";s:10:"wp-preview";s:5:"value";s:0:"";}}'),
(746, 56, '_ajax_nonce', '2598203cc4'),
(747, 61, '_edit_last', '1'),
(748, 61, '_edit_lock', '1319391048:1'),
(749, 61, '_wpnonce', '93806fed86'),
(750, 61, '_wp_http_referer', '/instaldeco/wp-admin/post.php?post=61&action=edit'),
(751, 61, 'user_ID', '1'),
(752, 61, 'action', 'editpost'),
(753, 61, 'originalaction', 'editpost'),
(754, 61, 'post_author', '1'),
(755, 61, 'post_type', 'page'),
(756, 61, 'original_post_status', 'publish'),
(757, 61, 'referredby', 'http://localhost/instaldeco/wp-admin/edit.php?post_type=page'),
(758, 61, '_wp_original_http_referer', 'http://localhost/instaldeco/wp-admin/edit.php?post_type=page'),
(759, 61, 'auto_draft', '0'),
(760, 61, 'post_ID', '61'),
(761, 61, 'autosavenonce', '77aff51ab8'),
(762, 61, 'meta-box-order-nonce', '32ab9f2655'),
(763, 61, 'closedpostboxesnonce', '93e6ccdfdb'),
(764, 61, 'wp-preview', ''),
(765, 61, 'hidden_post_status', 'publish'),
(766, 61, 'post_status', 'publish'),
(767, 61, 'hidden_post_password', ''),
(768, 61, 'hidden_post_visibility', 'public'),
(769, 61, 'visibility', 'public'),
(770, 61, 'post_password', ''),
(771, 61, 'mm', '10'),
(772, 61, 'jj', '23'),
(773, 61, 'aa', '2011'),
(774, 61, 'hh', '17'),
(775, 61, 'mn', '25'),
(776, 61, 'ss', '55'),
(777, 61, 'hidden_mm', '10'),
(778, 61, 'cur_mm', '10'),
(779, 61, 'hidden_jj', '23'),
(780, 61, 'cur_jj', '23'),
(781, 61, 'hidden_aa', '2011'),
(782, 61, 'cur_aa', '2011'),
(783, 61, 'hidden_hh', '17'),
(784, 61, 'cur_hh', '18'),
(785, 61, 'hidden_mn', '25'),
(786, 61, 'cur_mn', '30'),
(787, 61, 'original_publish', 'Actualizar'),
(788, 61, 'publish', 'Publicar'),
(789, 61, 'parent_id', '52'),
(790, 61, 'page_template', 'default'),
(791, 61, 'menu_order', '0'),
(792, 61, 'post_title', 'Desarrollo del concepto'),
(793, 61, 'samplepermalinknonce', '68031bd50f'),
(794, 61, 'content', 'En nuestras oficinas, desarrollamos constructivamente los diseños realizados por nuestros clientes.\r\n\r\nCualquiera que sea el diseño poseemos el equipo humano y las herramientas necesarios para encontrar las soluciones constructivas adecuadas.\r\n\r\nNuestra amplia experiencia en este campo nos permite asegurar la perfecta ejecución de todos los proyectos que llevamos a cabo.'),
(795, 61, 'metakeyselect', '#NONE#'),
(796, 61, 'metakeyinput', ''),
(797, 61, 'metavalue', ''),
(798, 61, '_ajax_nonce-add-meta', '66b56e5a27'),
(799, 61, 'advanced_view', '1'),
(800, 61, 'comment_status', 'open'),
(801, 61, 'ping_status', 'open'),
(802, 61, 'post_name', 'desarrollo-del-concepto'),
(803, 61, 'post_author_override', '1'),
(804, 61, 'pyre_font_color', 'dark'),
(805, 61, 'pyre_background_images', 'http://localhost/instaldeco/wp-content/themes/Broadside/images/backgrounds/projects-background-blue.jpg'),
(806, 61, 'pyre_heading_sub', ''),
(807, 61, 'pyre_heading_1', ''),
(808, 61, 'pyre_heading_2', ''),
(809, 61, 'pyre_portfolio_type', '4'),
(810, 61, 'post_mime_type', ''),
(811, 61, 'ID', '61'),
(812, 61, 'post_content', 'En nuestras oficinas, desarrollamos constructivamente los diseños realizados por nuestros clientes.\r\n\r\nCualquiera que sea el diseño poseemos el equipo humano y las herramientas necesarios para encontrar las soluciones constructivas adecuadas.\r\n\r\nNuestra amplia experiencia en este campo nos permite asegurar la perfecta ejecución de todos los proyectos que llevamos a cabo.'),
(813, 61, 'post_parent', '52'),
(814, 61, '_wp_page_template', 'default'),
(815, 61, 'save', 'Actualizar'),
(816, 61, 'meta', 'a:62:{i:773;a:2:{s:3:"key";s:2:"aa";s:5:"value";s:4:"2011";}i:752;a:2:{s:3:"key";s:6:"action";s:5:"value";s:8:"editpost";}i:799;a:2:{s:3:"key";s:13:"advanced_view";s:5:"value";s:1:"1";}i:761;a:2:{s:3:"key";s:13:"autosavenonce";s:5:"value";s:10:"77aff51ab8";}i:759;a:2:{s:3:"key";s:10:"auto_draft";s:5:"value";s:1:"0";}i:763;a:2:{s:3:"key";s:20:"closedpostboxesnonce";s:5:"value";s:10:"93e6ccdfdb";}i:800;a:2:{s:3:"key";s:14:"comment_status";s:5:"value";s:4:"open";}i:794;a:2:{s:3:"key";s:7:"content";s:5:"value";s:376:"En nuestras oficinas, desarrollamos constructivamente los diseños realizados por nuestros clientes.\r\n\r\nCualquiera que sea el diseño poseemos el equipo humano y las herramientas necesarios para encontrar las soluciones constructivas adecuadas.\r\n\r\nNuestra amplia experiencia en este campo nos permite asegurar la perfecta ejecución de todos los proyectos que llevamos a cabo.";}i:782;a:2:{s:3:"key";s:6:"cur_aa";s:5:"value";s:4:"2011";}i:784;a:2:{s:3:"key";s:6:"cur_hh";s:5:"value";s:2:"17";}i:780;a:2:{s:3:"key";s:6:"cur_jj";s:5:"value";s:2:"23";}i:778;a:2:{s:3:"key";s:6:"cur_mm";s:5:"value";s:2:"10";}i:786;a:2:{s:3:"key";s:6:"cur_mn";s:5:"value";s:2:"50";}i:774;a:2:{s:3:"key";s:2:"hh";s:5:"value";s:2:"17";}i:781;a:2:{s:3:"key";s:9:"hidden_aa";s:5:"value";s:4:"2011";}i:783;a:2:{s:3:"key";s:9:"hidden_hh";s:5:"value";s:2:"17";}i:779;a:2:{s:3:"key";s:9:"hidden_jj";s:5:"value";s:2:"23";}i:777;a:2:{s:3:"key";s:9:"hidden_mm";s:5:"value";s:2:"10";}i:785;a:2:{s:3:"key";s:9:"hidden_mn";s:5:"value";s:2:"25";}i:767;a:2:{s:3:"key";s:20:"hidden_post_password";s:5:"value";s:0:"";}i:765;a:2:{s:3:"key";s:18:"hidden_post_status";s:5:"value";s:7:"publish";}i:768;a:2:{s:3:"key";s:22:"hidden_post_visibility";s:5:"value";s:6:"public";}i:811;a:2:{s:3:"key";s:2:"ID";s:5:"value";s:2:"61";}i:772;a:2:{s:3:"key";s:2:"jj";s:5:"value";s:2:"23";}i:791;a:2:{s:3:"key";s:10:"menu_order";s:5:"value";s:1:"0";}i:762;a:2:{s:3:"key";s:20:"meta-box-order-nonce";s:5:"value";s:10:"32ab9f2655";}i:796;a:2:{s:3:"key";s:12:"metakeyinput";s:5:"value";s:0:"";}i:795;a:2:{s:3:"key";s:13:"metakeyselect";s:5:"value";s:6:"#NONE#";}i:797;a:2:{s:3:"key";s:9:"metavalue";s:5:"value";s:0:"";}i:771;a:2:{s:3:"key";s:2:"mm";s:5:"value";s:2:"10";}i:775;a:2:{s:3:"key";s:2:"mn";s:5:"value";s:2:"25";}i:753;a:2:{s:3:"key";s:14:"originalaction";s:5:"value";s:8:"editpost";}i:756;a:2:{s:3:"key";s:20:"original_post_status";s:5:"value";s:7:"publish";}i:787;a:2:{s:3:"key";s:16:"original_publish";s:5:"value";s:10:"Actualizar";}i:790;a:2:{s:3:"key";s:13:"page_template";s:5:"value";s:7:"default";}i:789;a:2:{s:3:"key";s:9:"parent_id";s:5:"value";s:2:"52";}i:801;a:2:{s:3:"key";s:11:"ping_status";s:5:"value";s:4:"open";}i:754;a:2:{s:3:"key";s:11:"post_author";s:5:"value";s:1:"1";}i:803;a:2:{s:3:"key";s:20:"post_author_override";s:5:"value";s:1:"1";}i:812;a:2:{s:3:"key";s:12:"post_content";s:5:"value";s:376:"En nuestras oficinas, desarrollamos constructivamente los diseños realizados por nuestros clientes.\r\n\r\nCualquiera que sea el diseño poseemos el equipo humano y las herramientas necesarios para encontrar las soluciones constructivas adecuadas.\r\n\r\nNuestra amplia experiencia en este campo nos permite asegurar la perfecta ejecución de todos los proyectos que llevamos a cabo.";}i:760;a:2:{s:3:"key";s:7:"post_ID";s:5:"value";s:2:"61";}i:810;a:2:{s:3:"key";s:14:"post_mime_type";s:5:"value";s:0:"";}i:802;a:2:{s:3:"key";s:9:"post_name";s:5:"value";s:23:"desarrollo-del-concepto";}i:813;a:2:{s:3:"key";s:11:"post_parent";s:5:"value";s:2:"52";}i:770;a:2:{s:3:"key";s:13:"post_password";s:5:"value";s:0:"";}i:766;a:2:{s:3:"key";s:11:"post_status";s:5:"value";s:7:"publish";}i:792;a:2:{s:3:"key";s:10:"post_title";s:5:"value";s:23:"Desarrollo del concepto";}i:755;a:2:{s:3:"key";s:9:"post_type";s:5:"value";s:4:"page";}i:788;a:2:{s:3:"key";s:7:"publish";s:5:"value";s:8:"Publicar";}i:805;a:2:{s:3:"key";s:22:"pyre_background_images";s:5:"value";s:100:"http://localhost/instaldeco/wp-content/themes/Broadside/images/backgrounds/projects-background-2.jpg";}i:804;a:2:{s:3:"key";s:15:"pyre_font_color";s:5:"value";s:4:"dark";}i:807;a:2:{s:3:"key";s:14:"pyre_heading_1";s:5:"value";s:0:"";}i:808;a:2:{s:3:"key";s:14:"pyre_heading_2";s:5:"value";s:0:"";}i:806;a:2:{s:3:"key";s:16:"pyre_heading_sub";s:5:"value";s:0:"";}i:809;a:2:{s:3:"key";s:19:"pyre_portfolio_type";s:5:"value";s:1:"4";}i:757;a:2:{s:3:"key";s:10:"referredby";s:5:"value";s:75:"http://localhost/instaldeco/wp-admin/post.php?post=61&action=edit&message=1";}i:793;a:2:{s:3:"key";s:20:"samplepermalinknonce";s:5:"value";s:10:"68031bd50f";}i:815;a:2:{s:3:"key";s:4:"save";s:5:"value";s:10:"Actualizar";}i:776;a:2:{s:3:"key";s:2:"ss";s:5:"value";s:2:"55";}i:751;a:2:{s:3:"key";s:7:"user_ID";s:5:"value";s:1:"1";}i:769;a:2:{s:3:"key";s:10:"visibility";s:5:"value";s:6:"public";}i:764;a:2:{s:3:"key";s:10:"wp-preview";s:5:"value";s:0:"";}}'),
(817, 61, '_ajax_nonce', '2598203cc4'),
(820, 74, '_wpnonce', 'e8bdeabdf3'),
(821, 74, '_wp_http_referer', '/instaldeco/wp-admin/post-new.php?post_type=page'),
(822, 74, 'user_ID', '1'),
(823, 74, 'action', 'editpost'),
(824, 74, 'originalaction', 'editpost'),
(825, 74, 'post_author', '1'),
(826, 74, 'post_type', 'page'),
(827, 74, 'original_post_status', 'auto-draft'),
(828, 74, 'referredby', 'http://localhost/instaldeco/servicios/'),
(829, 74, '_wp_original_http_referer', 'http://localhost/instaldeco/servicios/'),
(830, 74, 'auto_draft', '0'),
(831, 74, 'post_ID', '74'),
(832, 74, 'autosavenonce', '77aff51ab8'),
(833, 74, 'meta-box-order-nonce', '32ab9f2655'),
(834, 74, 'closedpostboxesnonce', '93e6ccdfdb'),
(835, 74, 'wp-preview', ''),
(836, 74, 'hidden_post_status', 'draft'),
(837, 74, 'post_status', 'publish'),
(838, 74, 'hidden_post_password', ''),
(839, 74, 'hidden_post_visibility', 'public'),
(840, 74, 'visibility', 'public'),
(841, 74, 'post_password', ''),
(842, 74, 'mm', '10'),
(843, 74, 'jj', '23'),
(844, 74, 'aa', '2011'),
(845, 74, 'hh', '17'),
(846, 74, 'mn', '57'),
(847, 74, 'ss', '59'),
(848, 74, 'hidden_mm', '10'),
(849, 74, 'cur_mm', '10'),
(850, 74, 'hidden_jj', '23'),
(851, 74, 'cur_jj', '23'),
(852, 74, 'hidden_aa', '2011'),
(853, 74, 'cur_aa', '2011'),
(854, 74, 'hidden_hh', '17'),
(855, 74, 'cur_hh', '17'),
(856, 74, 'hidden_mn', '57'),
(857, 74, 'cur_mn', '57'),
(858, 74, 'original_publish', 'Publicar'),
(859, 74, 'publish', 'Publicar'),
(860, 74, 'parent_id', '52'),
(861, 74, 'page_template', 'default'),
(862, 74, 'menu_order', '0'),
(863, 74, 'post_title', 'Instalaciones comerciales'),
(864, 74, 'samplepermalinknonce', '68031bd50f'),
(865, 74, 'content', 'Producción y realización de <strong>córners</strong>, <strong>puntos de venta</strong>, <strong>franquicias</strong> y todo tipo de mobiliario en serie para su implantación en tiendas, centros comerciales, etc.\r\n\r\nOfrecemos la realización del proyecto completo, que abarcaría tanto el mobiliario como la iluminación y la colocación de suelos y revestimientos.\r\n\r\nLa calidad de nuestros acabados y nuestra <strong>movilidad nacional e internacional</strong> hacen que aspiremos a ser una de las primeras opciones a la hora de elegir proveedor para instalaciones comerciales.'),
(866, 74, 'metakeyselect', '#NONE#'),
(867, 74, 'metakeyinput', ''),
(868, 74, 'metavalue', ''),
(869, 74, '_ajax_nonce-add-meta', '66b56e5a27'),
(870, 74, 'advanced_view', '1'),
(871, 74, 'comment_status', 'open'),
(872, 74, 'ping_status', 'open'),
(873, 74, 'post_name', ''),
(874, 74, 'post_author_override', '1'),
(875, 74, 'pyre_font_color', 'light'),
(876, 74, 'pyre_background_images', ''),
(877, 74, 'pyre_heading_sub', ''),
(878, 74, 'pyre_heading_1', ''),
(879, 74, 'pyre_heading_2', ''),
(880, 74, 'pyre_portfolio_type', '4'),
(881, 74, 'post_mime_type', ''),
(882, 74, 'ID', '74'),
(883, 74, 'post_content', 'Producción y realización de <strong>córners</strong>, <strong>puntos de venta</strong>, <strong>franquicias</strong> y todo tipo de mobiliario en serie para su implantación en tiendas, centros comerciales, etc.\r\n\r\nOfrecemos la realización del proyecto completo, que abarcaría tanto el mobiliario como la iluminación y la colocación de suelos y revestimientos.\r\n\r\nLa calidad de nuestros acabados y nuestra <strong>movilidad nacional e internacional</strong> hacen que aspiremos a ser una de las primeras opciones a la hora de elegir proveedor para instalaciones comerciales.'),
(884, 74, 'post_parent', '52'),
(885, 74, '_wp_page_template', 'default'),
(890, 52, 'screen', 'edit-page'),
(894, 52, 'post_date', '2011-10-23 17:17:20'),
(895, 52, 'post_date_gmt', '2011-10-23 16:17:20'),
(896, 51, '_wp_trash_meta_status', 'publish'),
(897, 51, '_wp_trash_meta_time', '1319391865'),
(898, 82, '_edit_last', '1'),
(899, 82, '_edit_lock', '1319392053:1'),
(900, 83, '_wp_attached_file', '2011/10/SNC00001.jpg'),
(901, 83, '_wp_attachment_metadata', 'a:6:{s:5:"width";s:4:"2560";s:6:"height";s:4:"1920";s:14:"hwstring_small";s:23:"height=''96'' width=''128''";s:4:"file";s:20:"2011/10/SNC00001.jpg";s:5:"sizes";a:8:{s:9:"thumbnail";a:3:{s:4:"file";s:20:"SNC00001-150x150.jpg";s:5:"width";s:3:"150";s:6:"height";s:3:"150";}s:6:"medium";a:3:{s:4:"file";s:20:"SNC00001-300x225.jpg";s:5:"width";s:3:"300";s:6:"height";s:3:"225";}s:5:"large";a:3:{s:4:"file";s:21:"SNC00001-1024x768.jpg";s:5:"width";s:4:"1024";s:6:"height";s:3:"768";}s:20:"post-thumbnail-image";a:3:{s:4:"file";s:20:"SNC00001-125x120.jpg";s:5:"width";s:3:"125";s:6:"height";s:3:"120";}s:10:"team-image";a:3:{s:4:"file";s:20:"SNC00001-120x120.jpg";s:5:"width";s:3:"120";s:6:"height";s:3:"120";}s:19:"portfolio-thumbnail";a:3:{s:4:"file";s:20:"SNC00001-135x117.jpg";s:5:"width";s:3:"135";s:6:"height";s:3:"117";}s:19:"portfolio-scrolling";a:3:{s:4:"file";s:20:"SNC00001-135x117.jpg";s:5:"width";s:3:"135";s:6:"height";s:3:"117";}s:17:"portfolio-gallery";a:3:{s:4:"file";s:20:"SNC00001-450x287.jpg";s:5:"width";s:3:"450";s:6:"height";s:3:"287";}}s:10:"image_meta";a:10:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";}}'),
(902, 82, '_thumbnail_id', '83'),
(903, 82, '_wpnonce', '05ae4292b5'),
(904, 82, '_wp_http_referer', '/instaldeco/wp-admin/post.php?post=82&action=edit&message=6'),
(905, 82, 'user_ID', '1'),
(906, 82, 'action', 'editpost'),
(907, 82, 'originalaction', 'editpost'),
(908, 82, 'post_author', '1'),
(909, 82, 'post_type', 'portfolio'),
(910, 82, 'original_post_status', 'publish'),
(911, 82, 'referredby', 'http://localhost/instaldeco/wp-admin/post-new.php?post_type=portfolio'),
(912, 82, '_wp_original_http_referer', 'http://localhost/instaldeco/wp-admin/post-new.php?post_type=portfolio'),
(913, 82, 'auto_draft', '0'),
(914, 82, 'post_ID', '82'),
(915, 82, 'autosavenonce', '77aff51ab8'),
(916, 82, 'meta-box-order-nonce', '32ab9f2655'),
(917, 82, 'closedpostboxesnonce', '93e6ccdfdb'),
(918, 82, 'wp-preview', ''),
(919, 82, 'hidden_post_status', 'publish'),
(920, 82, 'post_status', 'publish'),
(921, 82, 'hidden_post_password', ''),
(922, 82, 'hidden_post_visibility', 'public'),
(923, 82, 'visibility', 'public'),
(924, 82, 'post_password', ''),
(925, 82, 'mm', '10'),
(926, 82, 'jj', '23'),
(927, 82, 'aa', '2011'),
(928, 82, 'hh', '18'),
(929, 82, 'mn', '45'),
(930, 82, 'ss', '47'),
(931, 82, 'hidden_mm', '10'),
(932, 82, 'cur_mm', '10'),
(933, 82, 'hidden_jj', '23'),
(934, 82, 'cur_jj', '23'),
(935, 82, 'hidden_aa', '2011'),
(936, 82, 'cur_aa', '2011'),
(937, 82, 'hidden_hh', '18'),
(938, 82, 'cur_hh', '18'),
(939, 82, 'hidden_mn', '45'),
(940, 82, 'cur_mn', '45'),
(941, 82, 'original_publish', 'Actualizar'),
(942, 82, 'publish', 'Publicar'),
(943, 82, 'tax_input', 'a:1:{s:4:"type";a:2:{i:0;s:1:"0";i:1;s:1:"5";}}'),
(944, 82, 'newtype', 'Nombre de la nueva categoría'),
(945, 82, 'newtype_parent', '-1'),
(946, 82, '_ajax_nonce-add-type', '8ed35c20c1'),
(947, 82, 'post_title', 'Time Force'),
(948, 82, 'samplepermalinknonce', '68031bd50f'),
(949, 82, 'content', ''),
(950, 82, 'post_name', 'time-force'),
(951, 82, 'pyre_video_link', ''),
(952, 82, 'post_mime_type', ''),
(953, 82, 'ID', '82'),
(954, 82, 'post_content', ''),
(955, 82, 'comment_status', 'closed'),
(956, 82, 'ping_status', 'closed'),
(957, 34, 'pyre_portfolio_type', '5'),
(958, 82, 'save', 'Actualizar');
-- --------------------------------------------------------
--
-- Estructura de tabla para la tabla `wp_posts`
--
CREATE TABLE IF NOT EXISTS `wp_posts` (
`ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`post_author` bigint(20) unsigned 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_excerpt` text NOT NULL,
`post_status` varchar(20) NOT NULL DEFAULT 'publish',
`comment_status` varchar(20) NOT NULL DEFAULT 'open',
`ping_status` varchar(20) 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) unsigned 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`),
KEY `post_parent` (`post_parent`),
KEY `post_author` (`post_author`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=92 ;
--
-- Volcado de datos para la tabla `wp_posts`
--
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `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
(1, 1, '2011-09-23 17:04:51', '2011-09-23 17:04:51', 'Bienvenido a WordPress. Esta es tu primera entrada. Edítala o bórrala, ¡y comienza a publicar!.', '¡Hola mundo!', '', 'publish', 'open', 'open', '', 'hola-mundo', '', '', '2011-09-23 17:04:51', '2011-09-23 17:04:51', '', 0, 'http://localhost/instaldeco/?p=1', 0, 'post', '', 1),
(2, 1, '2011-09-23 17:04:51', '2011-09-23 17:04:51', 'Esta es una página de ejemplo, Es diferente a una entrada de un blog porque se mantiene estática y, en la mayoría de temas, se mostrará en la barra de navegación. Casi todo el mundo comienza con una página Sobre mí para presentarse a los potenciales visitantes. Puede decir algo así:\n\n<blockquote>¡Hola!: Soy físico durante el día, lector de manga por las noches y este es mi blog. Vivo en Albacete y tengo un gato llamado Alex. Me encantan los mojitos (y mirar a la gente corriendo en los parques)</blockquote>\n\nO algo así:\n\n<blockquote>La empresa Calcetines XYC se fundó en 1973, y ha estado produciendo calcetines de calidad para sus clientes desde entonces. Se encuentra en Vetusta, tiene unos 2.000 empleados e intenta ayudar en lo que puede para mejorar la vida en Vestusta</blockquote>\n\nDeberías ir a <a href="http://localhost/instaldeco/wp-admin/">tu escritorio</a>, borrar esta página y crear algunas nuevas con tu contenido. ¡A divertirse!', 'Página de ejemplo', '', 'publish', 'open', 'open', '', 'pagina-ejemplo', '', '', '2011-09-23 17:04:51', '2011-09-23 17:04:51', '', 0, 'http://localhost/instaldeco/?page_id=2', 0, 'page', '', 0),
(30, 1, '2011-10-23 16:10:39', '2011-10-23 15:10:39', '<div>\r\n<div>\r\n\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Donec in ligula id sem tristique ultrices eget id neque. Duis enim turpis, tempus at <a>accumsan vitae</a>, lobortis id sapien. Pellentesque nec orci mi, in pharetra ligula. Nulla facilisi. Nulla facilisi. Mauris convallis venenatis massa, quis consectetur felis ornare quis. Sed aliquet nunc ac ante molestie ultricies. Nam pulvinar ultricies bibendum.\r\n\r\nDuis enim turpis, tempus at <a>accumsan vitae</a>, lobortis id sapien. Pellentesque nec orci mi, in pharetra ligula. Nulla facilisi. Nulla facilisi. Mauris convallis venenatis massa, quis consectetur felis ornare quis. Sed aliquet nunc ac ante molestie ultricies. Nam pulvinar ultricies bibendum.\r\n\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Donec in ligula id sem tristique ultrices eget id neque. Duis enim turpis, tempus at <a>accumsan vitae</a>, lobortis id sapien. Pellentesque nec orci mi, in pharetra ligula. Nulla facilisi. Nulla facilisi. Mauris convallis venenatis massa, quis consectetur felis ornare quis. Sed aliquet nunc ac ante molestie ultricies. Nam pulvinar ultricies bibendum.\r\n\r\n</div>\r\n</div>', 'Instaldeco', '', 'publish', 'open', 'open', '', 'acerca-de', '', '', '2011-10-23 16:24:37', '2011-10-23 15:24:37', '', 0, 'http://localhost/instaldeco/?page_id=30', 0, 'page', '', 0),
(4, 1, '2011-09-23 17:15:49', '0000-00-00 00:00:00', '', 'Logo', '', 'draft', 'closed', 'closed', '', 'of-logo', '', '', '2011-09-23 17:15:49', '0000-00-00 00:00:00', '', 0, 'http://localhost/instaldeco/?post_type=optionsframework&p=4', 0, 'optionsframework', '', 0),
(5, 1, '2011-09-23 17:15:49', '0000-00-00 00:00:00', '', 'Favicon', '', 'draft', 'closed', 'closed', '', 'of-favicon', '', '', '2011-09-23 17:15:49', '0000-00-00 00:00:00', '', 0, 'http://localhost/instaldeco/?post_type=optionsframework&p=5', 0, 'optionsframework', '', 0),
(6, 1, '2011-09-23 17:15:49', '0000-00-00 00:00:00', '', 'Default Bg', '', 'draft', 'closed', 'closed', '', 'of-default_bg', '', '', '2011-09-23 17:15:49', '0000-00-00 00:00:00', '', 0, 'http://localhost/instaldeco/?post_type=optionsframework&p=6', 0, 'optionsframework', '', 0),
(7, 1, '2011-09-23 17:15:49', '0000-00-00 00:00:00', '', 'Blog Bg', '', 'draft', 'closed', 'closed', '', 'of-blog_bg', '', '', '2011-09-23 17:15:49', '0000-00-00 00:00:00', '', 0, 'http://localhost/instaldeco/?post_type=optionsframework&p=7', 0, 'optionsframework', '', 0),
(8, 1, '2011-09-23 17:32:58', '2011-09-23 17:32:58', '', 'camouflage', '', 'inherit', 'open', 'open', '', 'camouflage', '', '', '2011-09-23 17:32:58', '2011-09-23 17:32:58', '', 6, 'http://localhost/instaldeco/wp-content/uploads/2011/09/camouflage.png', 0, 'attachment', 'image/png', 0),
(9, 1, '2011-09-23 17:34:00', '2011-09-23 17:34:00', '', 'logo-instaldeco', '', 'inherit', 'open', 'open', '', 'logo-instaldeco', '', '', '2011-09-23 17:34:00', '2011-09-23 17:34:00', '', 4, 'http://localhost/instaldeco/wp-content/uploads/2011/09/logo-instaldeco.png', 0, 'attachment', 'image/png', 0),
(10, 1, '2011-09-23 18:08:37', '2011-09-23 18:08:37', '', 'logo-instaldeco', '', 'inherit', 'open', 'open', '', 'logo-instaldeco-2', '', '', '2011-09-23 18:08:37', '2011-09-23 18:08:37', '', 4, 'http://localhost/instaldeco/wp-content/uploads/2011/09/logo-instaldeco1.png', 0, 'attachment', 'image/png', 0),
(11, 1, '2011-09-23 18:23:22', '2011-09-23 18:23:22', 'Producción\r\n\r\nStands\r\n\r\nDesarrollo\r\n\r\nInstalaciones comerciales', 'Inicio', '', 'publish', 'open', 'open', '', 'inicio', '', '', '2011-10-23 18:18:37', '2011-10-23 17:18:37', '', 0, 'http://localhost/instaldeco/?page_id=11', 0, 'page', '', 0),
(12, 1, '2011-09-23 18:22:55', '2011-09-23 18:22:55', '', 'Inicio', '', 'inherit', 'open', 'open', '', '11-revision', '', '', '2011-09-23 18:22:55', '2011-09-23 18:22:55', '', 11, 'http://localhost/instaldeco/?p=12', 0, 'revision', '', 0),
(13, 1, '2011-09-23 18:23:22', '2011-09-23 18:23:22', '', 'Inicio', '', 'inherit', 'open', 'open', '', '11-revision-2', '', '', '2011-09-23 18:23:22', '2011-09-23 18:23:22', '', 11, 'http://localhost/instaldeco/?p=13', 0, 'revision', '', 0),
(14, 1, '2011-09-23 18:24:33', '2011-09-23 18:24:33', 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc nec tellus ligula. Nullam elit metus, dapibus vitae pharetra vitae, tincidunt a sapien. Sed eget sapien et justo ultrices auctor. Aliquam sagittis, nibh in dictum elementum.', '', '', 'publish', 'open', 'open', '', '14', '', '', '2011-10-23 17:17:58', '2011-10-23 16:17:58', '', 0, 'http://localhost/instaldeco/?p=14', 1, 'nav_menu_item', '', 0),
(39, 1, '2011-10-23 16:10:39', '2011-10-23 15:10:39', '', 'Acerca de', '', 'inherit', 'open', 'open', '', '30-revision-2', '', '', '2011-10-23 16:10:39', '2011-10-23 15:10:39', '', 30, 'http://localhost/instaldeco/2011/10/30-revision-2/', 0, 'revision', '', 0),
(16, 1, '2011-10-23 18:19:40', '2011-10-23 17:19:40', 'Producción\n\nStands\n\nDesarrollo\n\nInstalaciones comerciales', 'Inicio', '', 'inherit', 'open', 'open', '', '11-autosave', '', '', '2011-10-23 18:19:40', '2011-10-23 17:19:40', '', 11, 'http://localhost/instaldeco/?p=16', 0, 'revision', '', 0),
(77, 1, '2011-10-23 16:00:40', '2011-10-23 15:00:40', 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc nec tellus ligula. Nullam elit metus, dapibus vitae pharetra vitae, tincidunt a sapien. Sed eget sapien et justo ultrices auctor. Aliquam sagittis, nibh in <a>dictum elementum</a>.', 'Inicio', '', 'inherit', 'open', 'open', '', '11-revision-12', '', '', '2011-10-23 16:00:40', '2011-10-23 15:00:40', '', 11, 'http://localhost/instaldeco/2011/10/11-revision-12/', 0, 'revision', '', 0),
(17, 1, '2011-09-23 19:33:13', '2011-09-23 18:33:13', '', 'Noticias', '', 'publish', 'open', 'open', '', 'noticias', '', '', '2011-09-23 19:33:13', '2011-09-23 18:33:13', '', 0, 'http://localhost/instaldeco/?page_id=17', 0, 'page', '', 0),
(18, 1, '2011-09-23 19:33:04', '2011-09-23 18:33:04', '', 'Borrador automático', '', 'inherit', 'open', 'open', '', '17-revision', '', '', '2011-09-23 19:33:04', '2011-09-23 18:33:04', '', 17, 'http://localhost/instaldeco/2011/09/17-revision/', 0, 'revision', '', 0),
(19, 1, '2011-09-23 18:24:10', '2011-09-23 18:24:10', 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc nec tellus ligula. Nullam elit metus, dapibus vitae pharetra vitae, tincidunt a sapien. Sed eget sapien et justo ultrices auctor. Aliquam sagittis, nibh in <a>dictum elementum</a>.', 'Inicio', '', 'inherit', 'open', 'open', '', '11-revision-3', '', '', '2011-09-23 18:24:10', '2011-09-23 18:24:10', '', 11, 'http://localhost/instaldeco/2011/09/11-revision-3/', 0, 'revision', '', 0),
(20, 1, '2011-09-23 19:34:46', '2011-09-23 18:34:46', 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc nec tellus ligula. Nullam elit metus, dapibus vitae pharetra vitae, tincidunt a sapien. Sed eget sapien et justo ultrices auctor. Aliquam sagittis, nibh in <a>dictum elementum</a>.', 'Inicio', '', 'inherit', 'open', 'open', '', '11-revision-4', '', '', '2011-09-23 19:34:46', '2011-09-23 18:34:46', '', 11, 'http://localhost/instaldeco/2011/09/11-revision-4/', 0, 'revision', '', 0),
(21, 1, '2011-09-23 19:35:17', '2011-09-23 18:35:17', 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc nec tellus ligula. Nullam elit metus, dapibus vitae pharetra vitae, tincidunt a sapien. Sed eget sapien et justo ultrices auctor. Aliquam sagittis, nibh in <a>dictum elementum</a>.', 'Inicio', '', 'inherit', 'open', 'open', '', '11-revision-5', '', '', '2011-09-23 19:35:17', '2011-09-23 18:35:17', '', 11, 'http://localhost/instaldeco/2011/09/11-revision-5/', 0, 'revision', '', 0),
(22, 1, '2011-09-23 19:36:02', '2011-09-23 18:36:02', 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc nec tellus ligula. Nullam elit metus, dapibus vitae pharetra vitae, tincidunt a sapien. Sed eget sapien et justo ultrices auctor. Aliquam sagittis, nibh in <a>dictum elementum</a>.', 'Inicio', '', 'inherit', 'open', 'open', '', '11-revision-6', '', '', '2011-09-23 19:36:02', '2011-09-23 18:36:02', '', 11, 'http://localhost/instaldeco/2011/09/11-revision-6/', 0, 'revision', '', 0),
(23, 1, '2011-09-23 19:36:22', '2011-09-23 18:36:22', 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc nec tellus ligula. Nullam elit metus, dapibus vitae pharetra vitae, tincidunt a sapien. Sed eget sapien et justo ultrices auctor. Aliquam sagittis, nibh in <a>dictum elementum</a>.', 'Inicio', '', 'inherit', 'open', 'open', '', '11-revision-7', '', '', '2011-09-23 19:36:22', '2011-09-23 18:36:22', '', 11, 'http://localhost/instaldeco/2011/09/11-revision-7/', 0, 'revision', '', 0),
(24, 1, '2011-09-23 19:59:05', '2011-09-23 18:59:05', '', 'DSC01339-2', '', 'inherit', 'open', 'open', '', 'dsc01339-2', '', '', '2011-09-23 19:59:05', '2011-09-23 18:59:05', '', 0, 'http://localhost/instaldeco/wp-content/uploads/2011/09/DSC01339-2.jpg', 0, 'attachment', 'image/jpeg', 0),
(25, 1, '2011-09-23 19:59:09', '2011-09-23 18:59:09', '', 'P1020372', '', 'inherit', 'open', 'open', '', 'p1020372', '', '', '2011-09-23 19:59:09', '2011-09-23 18:59:09', '', 0, 'http://localhost/instaldeco/wp-content/uploads/2011/09/P1020372.jpg', 0, 'attachment', 'image/jpeg', 0),
(26, 1, '2011-09-23 19:36:28', '2011-09-23 18:36:28', 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc nec tellus ligula. Nullam elit metus, dapibus vitae pharetra vitae, tincidunt a sapien. Sed eget sapien et justo ultrices auctor. Aliquam sagittis, nibh in <a>dictum elementum</a>.', 'Inicio', '', 'inherit', 'open', 'open', '', '11-revision-8', '', '', '2011-09-23 19:36:28', '2011-09-23 18:36:28', '', 11, 'http://localhost/instaldeco/2011/09/11-revision-8/', 0, 'revision', '', 0),
(27, 1, '2011-09-23 19:59:47', '2011-09-23 18:59:47', 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc nec tellus ligula. Nullam elit metus, dapibus vitae pharetra vitae, tincidunt a sapien. Sed eget sapien et justo ultrices auctor. Aliquam sagittis, nibh in <a>dictum elementum</a>.', 'Inicio', '', 'inherit', 'open', 'open', '', '11-revision-9', '', '', '2011-09-23 19:59:47', '2011-09-23 18:59:47', '', 11, 'http://localhost/instaldeco/2011/09/11-revision-9/', 0, 'revision', '', 0),
(28, 1, '2011-09-23 20:01:03', '2011-09-23 19:01:03', 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc nec tellus ligula. Nullam elit metus, dapibus vitae pharetra vitae, tincidunt a sapien. Sed eget sapien et justo ultrices auctor. Aliquam sagittis, nibh in <a>dictum elementum</a>.', 'Inicio', '', 'inherit', 'open', 'open', '', '11-revision-10', '', '', '2011-09-23 20:01:03', '2011-09-23 19:01:03', '', 11, 'http://localhost/instaldeco/2011/09/11-revision-10/', 0, 'revision', '', 0),
(29, 1, '2011-09-23 20:01:21', '2011-09-23 19:01:21', 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc nec tellus ligula. Nullam elit metus, dapibus vitae pharetra vitae, tincidunt a sapien. Sed eget sapien et justo ultrices auctor. Aliquam sagittis, nibh in <a>dictum elementum</a>.', 'Inicio', '', 'inherit', 'open', 'open', '', '11-revision-11', '', '', '2011-09-23 20:01:21', '2011-09-23 19:01:21', '', 11, 'http://localhost/instaldeco/2011/09/11-revision-11/', 0, 'revision', '', 0),
(31, 1, '2011-10-23 16:10:25', '2011-10-23 15:10:25', '', 'Acerca de', '', 'inherit', 'open', 'open', '', '30-revision', '', '', '2011-10-23 16:10:25', '2011-10-23 15:10:25', '', 30, 'http://localhost/instaldeco/2011/10/30-revision/', 0, 'revision', '', 0),
(32, 1, '2011-10-23 16:10:59', '2011-10-23 15:10:59', '<div>\r\n\r\nAvda. Monte Boyal, 100\r\nPol. Ind. Monte Boyal\r\n45950 Casarrubios del Monte\r\nToledo\r\n<a href="http://maps.google.es/maps?q=Avda.+Monte+Boyal,+100+Pol.+Ind.+Monte+Boyal+45950+%E2%80%93+Casarrubios+del+Monte&amp;hl=es&amp;ie=UTF8&amp;ll=40.207992,-4.060779&amp;spn=0.00667,0.013937&amp;safe=off&amp;client=firefox-a&amp;fb=1&amp;gl=es&amp;view=map&amp;cid=7059151023224991364&amp;t=m&amp;z=17&amp;vpsrc=0&amp;iwloc=A">Ver mapa</a>\r\n\r\nTel. 91 818 80 46\r\nFax. 91 818 80 61\r\n<a target="_blank">info@insteldeco.com</a>\r\n\r\n</div>', 'Contacto', '', 'publish', 'open', 'open', '', 'contacto', '', '', '2011-10-23 16:25:22', '2011-10-23 15:25:22', '', 0, 'http://localhost/instaldeco/?page_id=32', 0, 'page', '', 0),
(33, 1, '2011-10-23 16:10:56', '2011-10-23 15:10:56', '', 'Contacto', '', 'inherit', 'open', 'open', '', '32-revision', '', '', '2011-10-23 16:10:56', '2011-10-23 15:10:56', '', 32, 'http://localhost/instaldeco/2011/10/32-revision/', 0, 'revision', '', 0),
(34, 1, '2011-10-23 16:11:27', '2011-10-23 15:11:27', 'ef fs df sdf sdfsdfsdfsd fs', 'Trabajos', '', 'publish', 'open', 'open', '', 'trabajos', '', '', '2011-10-23 18:49:12', '2011-10-23 17:49:12', '', 0, 'http://localhost/instaldeco/?page_id=34', 0, 'page', '', 0),
(35, 1, '2011-10-23 16:11:02', '2011-10-23 15:11:02', '', 'Borrador automático', '', 'inherit', 'open', 'open', '', '34-revision', '', '', '2011-10-23 16:11:02', '2011-10-23 15:11:02', '', 34, 'http://localhost/instaldeco/2011/10/34-revision/', 0, 'revision', '', 0),
(36, 1, '2011-10-23 16:11:56', '2011-10-23 15:11:56', ' ', '', '', 'publish', 'open', 'open', '', '36', '', '', '2011-10-23 17:17:59', '2011-10-23 16:17:59', '', 0, 'http://localhost/instaldeco/?p=36', 4, 'nav_menu_item', '', 0),
(37, 1, '2011-10-23 16:11:56', '2011-10-23 15:11:56', ' ', '', '', 'publish', 'open', 'open', '', '37', '', '', '2011-10-23 17:17:59', '2011-10-23 16:17:59', '', 0, 'http://localhost/instaldeco/?p=37', 5, 'nav_menu_item', '', 0),
(38, 1, '2011-10-23 16:11:56', '2011-10-23 15:11:56', ' ', 'Acerca de', '', 'publish', 'open', 'open', '', '38', '', '', '2011-10-23 17:17:59', '2011-10-23 16:17:59', '', 0, 'http://localhost/instaldeco/?p=38', 2, 'nav_menu_item', '', 0),
(40, 1, '2011-10-23 16:17:04', '2011-10-23 15:17:04', '<div>\r\n<div>\r\n\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Donec in ligula id sem tristique ultrices eget id neque. Duis enim turpis, tempus at <a>accumsan vitae</a>, lobortis id sapien. Pellentesque nec orci mi, in pharetra ligula. Nulla facilisi. Nulla facilisi. Mauris convallis venenatis massa, quis consectetur felis ornare quis. Sed aliquet nunc ac ante molestie ultricies. Nam pulvinar ultricies bibendum.\r\n\r\nDuis enim turpis, tempus at <a>accumsan vitae</a>, lobortis id sapien. Pellentesque nec orci mi, in pharetra ligula. Nulla facilisi. Nulla facilisi. Mauris convallis venenatis massa, quis consectetur felis ornare quis. Sed aliquet nunc ac ante molestie ultricies. Nam pulvinar ultricies bibendum.\r\n\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Donec in ligula id sem tristique ultrices eget id neque. Duis enim turpis, tempus at <a>accumsan vitae</a>, lobortis id sapien. Pellentesque nec orci mi, in pharetra ligula. Nulla facilisi. Nulla facilisi. Mauris convallis venenatis massa, quis consectetur felis ornare quis. Sed aliquet nunc ac ante molestie ultricies. Nam pulvinar ultricies bibendum.\r\n\r\n</div>\r\n</div>', 'Acerca de', '', 'inherit', 'open', 'open', '', '30-revision-3', '', '', '2011-10-23 16:17:04', '2011-10-23 15:17:04', '', 30, 'http://localhost/instaldeco/2011/10/30-revision-3/', 0, 'revision', '', 0),
(41, 1, '2011-10-23 16:17:28', '2011-10-23 15:17:28', '<div>\r\n<div>\r\n\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Donec in ligula id sem tristique ultrices eget id neque. Duis enim turpis, tempus at <a>accumsan vitae</a>, lobortis id sapien. Pellentesque nec orci mi, in pharetra ligula. Nulla facilisi. Nulla facilisi. Mauris convallis venenatis massa, quis consectetur felis ornare quis. Sed aliquet nunc ac ante molestie ultricies. Nam pulvinar ultricies bibendum.\r\n\r\nDuis enim turpis, tempus at <a>accumsan vitae</a>, lobortis id sapien. Pellentesque nec orci mi, in pharetra ligula. Nulla facilisi. Nulla facilisi. Mauris convallis venenatis massa, quis consectetur felis ornare quis. Sed aliquet nunc ac ante molestie ultricies. Nam pulvinar ultricies bibendum.\r\n\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Donec in ligula id sem tristique ultrices eget id neque. Duis enim turpis, tempus at <a>accumsan vitae</a>, lobortis id sapien. Pellentesque nec orci mi, in pharetra ligula. Nulla facilisi. Nulla facilisi. Mauris convallis venenatis massa, quis consectetur felis ornare quis. Sed aliquet nunc ac ante molestie ultricies. Nam pulvinar ultricies bibendum.\r\n\r\n</div>\r\n</div>', 'Acerca de', '', 'inherit', 'open', 'open', '', '30-revision-4', '', '', '2011-10-23 16:17:28', '2011-10-23 15:17:28', '', 30, 'http://localhost/instaldeco/2011/10/30-revision-4/', 0, 'revision', '', 0),
(42, 1, '2011-10-23 16:17:59', '2011-10-23 15:17:59', '<div>\r\n<div>\r\n\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Donec in ligula id sem tristique ultrices eget id neque. Duis enim turpis, tempus at <a>accumsan vitae</a>, lobortis id sapien. Pellentesque nec orci mi, in pharetra ligula. Nulla facilisi. Nulla facilisi. Mauris convallis venenatis massa, quis consectetur felis ornare quis. Sed aliquet nunc ac ante molestie ultricies. Nam pulvinar ultricies bibendum.\r\n\r\nDuis enim turpis, tempus at <a>accumsan vitae</a>, lobortis id sapien. Pellentesque nec orci mi, in pharetra ligula. Nulla facilisi. Nulla facilisi. Mauris convallis venenatis massa, quis consectetur felis ornare quis. Sed aliquet nunc ac ante molestie ultricies. Nam pulvinar ultricies bibendum.\r\n\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Donec in ligula id sem tristique ultrices eget id neque. Duis enim turpis, tempus at <a>accumsan vitae</a>, lobortis id sapien. Pellentesque nec orci mi, in pharetra ligula. Nulla facilisi. Nulla facilisi. Mauris convallis venenatis massa, quis consectetur felis ornare quis. Sed aliquet nunc ac ante molestie ultricies. Nam pulvinar ultricies bibendum.\r\n\r\n</div>\r\n</div>', 'Instaldeco', '', 'inherit', 'open', 'open', '', '30-revision-5', '', '', '2011-10-23 16:17:59', '2011-10-23 15:17:59', '', 30, 'http://localhost/instaldeco/2011/10/30-revision-5/', 0, 'revision', '', 0),
(43, 1, '2011-10-23 16:19:26', '2011-10-23 15:19:26', '<div>\n<div>\n\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Donec in ligula id sem tristique ultrices eget id neque. Duis enim turpis, tempus at <a>accumsan vitae</a>, lobortis id sapien. Pellentesque nec orci mi, in pharetra ligula. Nulla facilisi. Nulla facilisi. Mauris convallis venenatis massa, quis consectetur felis ornare quis. Sed aliquet nunc ac ante molestie ultricies. Nam pulvinar ultricies bibendum.\n\nDuis enim turpis, tempus at <a>accumsan vitae</a>, lobortis id sapien. Pellentesque nec orci mi, in pharetra ligula. Nulla facilisi. Nulla facilisi. Mauris convallis venenatis massa, quis consectetur felis ornare quis. Sed aliquet nunc ac ante molestie ultricies. Nam pulvinar ultricies bibendum.\n\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Donec in ligula id sem tristique ultrices eget id neque. Duis enim turpis, tempus at <a>accumsan vitae</a>, lobortis id sapien. Pellentesque nec orci mi, in pharetra ligula. Nulla facilisi. Nulla facilisi. Mauris convallis venenatis massa, quis consectetur felis ornare quis. Sed aliquet nunc ac ante molestie ultricies. Nam pulvinar ultricies bibendum.\n\n</div>\n</div>', 'Instaldeco', '', 'inherit', 'open', 'open', '', '30-autosave', '', '', '2011-10-23 16:19:26', '2011-10-23 15:19:26', '', 30, 'http://localhost/instaldeco/2011/10/30-autosave/', 0, 'revision', '', 0),
(44, 1, '2011-10-23 16:18:23', '2011-10-23 15:18:23', '<div>\r\n<div>\r\n\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Donec in ligula id sem tristique ultrices eget id neque. Duis enim turpis, tempus at <a>accumsan vitae</a>, lobortis id sapien. Pellentesque nec orci mi, in pharetra ligula. Nulla facilisi. Nulla facilisi. Mauris convallis venenatis massa, quis consectetur felis ornare quis. Sed aliquet nunc ac ante molestie ultricies. Nam pulvinar ultricies bibendum.\r\n\r\nDuis enim turpis, tempus at <a>accumsan vitae</a>, lobortis id sapien. Pellentesque nec orci mi, in pharetra ligula. Nulla facilisi. Nulla facilisi. Mauris convallis venenatis massa, quis consectetur felis ornare quis. Sed aliquet nunc ac ante molestie ultricies. Nam pulvinar ultricies bibendum.\r\n\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Donec in ligula id sem tristique ultrices eget id neque. Duis enim turpis, tempus at <a>accumsan vitae</a>, lobortis id sapien. Pellentesque nec orci mi, in pharetra ligula. Nulla facilisi. Nulla facilisi. Mauris convallis venenatis massa, quis consectetur felis ornare quis. Sed aliquet nunc ac ante molestie ultricies. Nam pulvinar ultricies bibendum.\r\n\r\n</div>\r\n</div>', 'Instaldeco', '', 'inherit', 'open', 'open', '', '30-revision-6', '', '', '2011-10-23 16:18:23', '2011-10-23 15:18:23', '', 30, 'http://localhost/instaldeco/2011/10/30-revision-6/', 0, 'revision', '', 0),
(45, 1, '2011-10-23 16:10:59', '2011-10-23 15:10:59', '', 'Contacto', '', 'inherit', 'open', 'open', '', '32-revision-2', '', '', '2011-10-23 16:10:59', '2011-10-23 15:10:59', '', 32, 'http://localhost/instaldeco/2011/10/32-revision-2/', 0, 'revision', '', 0),
(46, 1, '2011-10-23 16:25:05', '2011-10-23 15:25:05', '', 'Contacto', '', 'inherit', 'open', 'open', '', '32-revision-3', '', '', '2011-10-23 16:25:05', '2011-10-23 15:25:05', '', 32, 'http://localhost/instaldeco/2011/10/32-revision-3/', 0, 'revision', '', 0),
(47, 1, '2011-10-23 16:25:35', '0000-00-00 00:00:00', '', 'Borrador automático', '', 'auto-draft', 'open', 'open', '', '', '', '', '2011-10-23 16:25:35', '0000-00-00 00:00:00', '', 0, 'http://localhost/instaldeco/?page_id=47', 0, 'page', '', 0),
(48, 1, '2011-10-23 16:11:27', '2011-10-23 15:11:27', '', 'Trabajos', '', 'inherit', 'open', 'open', '', '34-revision-2', '', '', '2011-10-23 16:11:27', '2011-10-23 15:11:27', '', 34, 'http://localhost/instaldeco/2011/10/34-revision-2/', 0, 'revision', '', 0),
(49, 1, '2011-10-23 17:15:08', '2011-10-23 16:15:08', '', 'Trabajos', '', 'inherit', 'open', 'open', '', '34-revision-3', '', '', '2011-10-23 17:15:08', '2011-10-23 16:15:08', '', 34, 'http://localhost/instaldeco/2011/10/34-revision-3/', 0, 'revision', '', 0),
(50, 1, '2011-10-23 17:15:47', '0000-00-00 00:00:00', '', 'Borrador automático', '', 'auto-draft', 'open', 'open', '', '', '', '', '2011-10-23 17:15:47', '0000-00-00 00:00:00', '', 0, 'http://localhost/instaldeco/?page_id=50', 0, 'page', '', 0),
(51, 1, '2011-10-23 17:16:40', '2011-10-23 16:16:40', 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec in tortor dui, quis fermentum risus. Proin id tellus quis lectus tempor tempor. Vestibulum suscipit, lectus at tempus elementum, nisl nisl iaculis metus, sed mollis purus elit eget enim. Curabitur non metus in justo cursus eleifend.', 'Producción y contrucción', '', 'trash', 'closed', 'closed', '', 'produccion-y-contruccion', '', '', '2011-10-23 18:44:25', '2011-10-23 17:44:25', '', 0, 'http://localhost/instaldeco/?post_type=portfolio&#038;p=51', 0, 'portfolio', '', 0),
(52, 1, '2011-10-23 17:17:20', '2011-10-23 16:17:20', '', 'Nuestros servicios', '', 'publish', 'open', 'closed', '', 'nuestros-servicios', '', '', '2011-10-23 18:51:38', '2011-10-23 17:51:38', '', 0, 'http://localhost/instaldeco/?page_id=52', 0, 'page', '', 0),
(53, 1, '2011-10-23 17:16:49', '2011-10-23 16:16:49', '', 'Servicios', '', 'inherit', 'open', 'open', '', '52-revision', '', '', '2011-10-23 17:16:49', '2011-10-23 16:16:49', '', 52, 'http://localhost/instaldeco/2011/10/52-revision/', 0, 'revision', '', 0),
(54, 1, '2011-10-23 17:17:59', '2011-10-23 16:17:59', ' ', '', '', 'publish', 'open', 'open', '', '54', '', '', '2011-10-23 17:17:59', '2011-10-23 16:17:59', '', 0, 'http://localhost/instaldeco/?p=54', 3, 'nav_menu_item', '', 0),
(55, 1, '2011-10-23 17:17:20', '2011-10-23 16:17:20', '', 'Servicios', '', 'inherit', 'open', 'open', '', '52-revision-2', '', '', '2011-10-23 17:17:20', '2011-10-23 16:17:20', '', 52, 'http://localhost/instaldeco/2011/10/52-revision-2/', 0, 'revision', '', 0),
(56, 1, '2011-10-23 17:22:14', '2011-10-23 16:22:14', 'En nuestro taller llevamos a cabo la producción y construcción de mobiliario en serie listo para su instalación.\r\n\r\nUn extenso y cualificado equipo de trabajo, apoyado por la más moderna tecnología, hace que todo esto sea posible en el mínimo espacio de tiempo.\r\n\r\nEl control total sobre la producción y la construcción nos dota de grandes ventajas sobre otros proveedores.', 'Producción y construcción', '', 'publish', 'open', 'open', '', 'produccion-y-construccion', '', '', '2011-10-23 17:47:09', '2011-10-23 16:47:09', '', 52, 'http://localhost/instaldeco/?page_id=56', 0, 'page', '', 0),
(57, 1, '2011-10-23 17:21:53', '2011-10-23 16:21:53', '', 'Producción y construcción', '', 'inherit', 'open', 'open', '', '56-revision', '', '', '2011-10-23 17:21:53', '2011-10-23 16:21:53', '', 56, 'http://localhost/instaldeco/2011/10/56-revision/', 0, 'revision', '', 0),
(58, 1, '2011-10-23 17:29:56', '2011-10-23 16:29:56', 'En nuestro taller llevamos a cabo la producción y construcción de mobiliario en serie listo para su instalación.\n\nUn extenso y cualificado equipo de trabajo, apoyado por la más moderna tecnología, hace que todo esto sea posible en el mínimo espacio de tiempo.\n\nEl control total sobre la producción y la construcción nos dota de grandes ventajas sobre otros proveedores.', 'Producción y construcción', '', 'inherit', 'open', 'open', '', '56-autosave', '', '', '2011-10-23 17:29:56', '2011-10-23 16:29:56', '', 56, 'http://localhost/instaldeco/2011/10/56-autosave/', 0, 'revision', '', 0),
(59, 1, '2011-10-23 17:22:14', '2011-10-23 16:22:14', 'En nuestro', 'Producción y construcción', '', 'inherit', 'open', 'open', '', '56-revision-2', '', '', '2011-10-23 17:22:14', '2011-10-23 16:22:14', '', 56, 'http://localhost/instaldeco/2011/10/56-revision-2/', 0, 'revision', '', 0),
(60, 1, '2011-10-23 17:23:41', '2011-10-23 16:23:41', 'En nuestro taller llevamos a cabo la producción y construcción de mobiliario en serie listo para su instalación.\r\n\r\nUn extenso y cualificado equipo de trabajo, apoyado por la más moderna tecnología, hace que todo esto sea posible en el mínimo espacio de tiempo.\r\n\r\nEl control total sobre la producción y la construcción nos dota de grandes ventajas sobre otros proveedores.', 'Producción y construcción', '', 'inherit', 'open', 'open', '', '56-revision-3', '', '', '2011-10-23 17:23:41', '2011-10-23 16:23:41', '', 56, 'http://localhost/instaldeco/2011/10/56-revision-3/', 0, 'revision', '', 0),
(61, 1, '2011-10-23 17:25:55', '2011-10-23 16:25:55', 'En nuestras oficinas, desarrollamos constructivamente los diseños realizados por nuestros clientes.\r\n\r\nCualquiera que sea el diseño poseemos el equipo humano y las herramientas necesarios para encontrar las soluciones constructivas adecuadas.\r\n\r\nNuestra amplia experiencia en este campo nos permite asegurar la perfecta ejecución de todos los proyectos que llevamos a cabo.', 'Desarrollo del concepto', '', 'publish', 'open', 'open', '', 'desarrollo-del-concepto', '', '', '2011-10-23 18:30:47', '2011-10-23 17:30:47', '', 52, 'http://localhost/instaldeco/?page_id=61', 0, 'page', '', 0),
(62, 1, '2011-10-23 17:25:30', '2011-10-23 16:25:30', 'En nuestras oficinas, desarrollamos constructivamente los diseños realizados por nuestros clientes.\n\nCualquiera que sea el diseño poseemos el equipo humano y las herramientas necesarios para encontrar las soluciones constructivas adecuadas.\n\nNuestra amplia expe', 'Desarrollo del concepto', '', 'inherit', 'open', 'open', '', '61-revision', '', '', '2011-10-23 17:25:30', '2011-10-23 16:25:30', '', 61, 'http://localhost/instaldeco/2011/10/61-revision/', 0, 'revision', '', 0),
(63, 1, '2011-10-23 17:21:14', '2011-10-23 16:21:14', '', 'Servicios', '', 'inherit', 'open', 'open', '', '52-revision-3', '', '', '2011-10-23 17:21:14', '2011-10-23 16:21:14', '', 52, 'http://localhost/instaldeco/2011/10/52-revision-3/', 0, 'revision', '', 0),
(64, 1, '2011-10-23 17:26:44', '2011-10-23 16:26:44', '', 'Servicios', '', 'inherit', 'open', 'open', '', '52-revision-4', '', '', '2011-10-23 17:26:44', '2011-10-23 16:26:44', '', 52, 'http://localhost/instaldeco/2011/10/52-revision-4/', 0, 'revision', '', 0),
(65, 1, '2011-10-23 17:25:55', '2011-10-23 16:25:55', 'En nuestras oficinas, desarrollamos constructivamente los diseños realizados por nuestros clientes.\r\n\r\nCualquiera que sea el diseño poseemos el equipo humano y las herramientas necesarios para encontrar las soluciones constructivas adecuadas.\r\n\r\nNuestra amplia experiencia en este campo nos permite asegurar la perfecta ejecución de todos los proyectos que llevamos a cabo.', 'Desarrollo del concepto', '', 'inherit', 'open', 'open', '', '61-revision-2', '', '', '2011-10-23 17:25:55', '2011-10-23 16:25:55', '', 61, 'http://localhost/instaldeco/2011/10/61-revision-2/', 0, 'revision', '', 0),
(66, 1, '2011-10-23 17:24:10', '2011-10-23 16:24:10', 'En nuestro taller llevamos a cabo la producción y construcción de mobiliario en serie listo para su instalación.\r\n\r\nUn extenso y cualificado equipo de trabajo, apoyado por la más moderna tecnología, hace que todo esto sea posible en el mínimo espacio de tiempo.\r\n\r\nEl control total sobre la producción y la construcción nos dota de grandes ventajas sobre otros proveedores.', 'Producción y construcción', '', 'inherit', 'open', 'open', '', '56-revision-4', '', '', '2011-10-23 17:24:10', '2011-10-23 16:24:10', '', 56, 'http://localhost/instaldeco/2011/10/56-revision-4/', 0, 'revision', '', 0),
(67, 1, '2011-10-23 17:28:54', '2011-10-23 16:28:54', 'En nuestro taller llevamos a cabo la producción y construcción de mobiliario en serie listo para su instalación.\r\n\r\nUn extenso y cualificado equipo de trabajo, apoyado por la más moderna tecnología, hace que todo esto sea posible en el mínimo espacio de tiempo.\r\n\r\nEl control total sobre la producción y la construcción nos dota de grandes ventajas sobre otros proveedores.', 'Producción y construcción', '', 'inherit', 'open', 'open', '', '56-revision-5', '', '', '2011-10-23 17:28:54', '2011-10-23 16:28:54', '', 56, 'http://localhost/instaldeco/2011/10/56-revision-5/', 0, 'revision', '', 0),
(68, 1, '2011-10-23 17:28:42', '2011-10-23 16:28:42', 'En nuestras oficinas, desarrollamos constructivamente los diseños realizados por nuestros clientes.\r\n\r\nCualquiera que sea el diseño poseemos el equipo humano y las herramientas necesarios para encontrar las soluciones constructivas adecuadas.\r\n\r\nNuestra amplia experiencia en este campo nos permite asegurar la perfecta ejecución de todos los proyectos que llevamos a cabo.', 'Desarrollo del concepto', '', 'inherit', 'open', 'open', '', '61-revision-3', '', '', '2011-10-23 17:28:42', '2011-10-23 16:28:42', '', 61, 'http://localhost/instaldeco/2011/10/61-revision-3/', 0, 'revision', '', 0),
(69, 1, '2011-10-23 17:47:34', '2011-10-23 16:47:34', 'En nuestras oficinas, desarrollamos constructivamente los diseños realizados por nuestros clientes.\r\n\r\nCualquiera que sea el diseño poseemos el equipo humano y las herramientas necesarios para encontrar las soluciones constructivas adecuadas.\r\n\r\nNuestra amplia experiencia en este campo nos permite asegurar la perfecta ejecución de todos los proyectos que llevamos a cabo.', 'Desarrollo del concepto', '', 'inherit', 'open', 'open', '', '61-revision-4', '', '', '2011-10-23 17:47:34', '2011-10-23 16:47:34', '', 61, 'http://localhost/instaldeco/2011/10/61-revision-4/', 0, 'revision', '', 0),
(70, 1, '2011-10-23 17:51:31', '2011-10-23 16:51:31', 'En nuestras oficinas, desarrollamos constructivamente los diseños realizados por nuestros clientes.\n\nCualquiera que sea el diseño poseemos el equipo humano y las herramientas necesarios para encontrar las soluciones constructivas adecuadas.\n\nNuestra amplia experiencia en este campo nos permite asegurar la perfecta ejecución de todos los proyectos que llevamos a cabo.', 'Desarrollo del concepto', '', 'inherit', 'open', 'open', '', '61-autosave', '', '', '2011-10-23 17:51:31', '2011-10-23 16:51:31', '', 61, 'http://localhost/instaldeco/2011/10/61-autosave/', 0, 'revision', '', 0),
(71, 1, '2011-10-23 17:48:15', '2011-10-23 16:48:15', 'En nuestras oficinas, desarrollamos constructivamente los diseños realizados por nuestros clientes.\r\n\r\nCualquiera que sea el diseño poseemos el equipo humano y las herramientas necesarios para encontrar las soluciones constructivas adecuadas.\r\n\r\nNuestra amplia experiencia en este campo nos permite asegurar la perfecta ejecución de todos los proyectos que llevamos a cabo.', 'Desarrollo del concepto', '', 'inherit', 'open', 'open', '', '61-revision-5', '', '', '2011-10-23 17:48:15', '2011-10-23 16:48:15', '', 61, 'http://localhost/instaldeco/2011/10/61-revision-5/', 0, 'revision', '', 0),
(72, 1, '2011-10-23 17:50:30', '2011-10-23 16:50:30', 'En nuestras oficinas, desarrollamos constructivamente los diseños realizados por nuestros clientes.\r\n\r\nCualquiera que sea el diseño poseemos el equipo humano y las herramientas necesarios para encontrar las soluciones constructivas adecuadas.\r\n\r\nNuestra amplia experiencia en este campo nos permite asegurar la perfecta ejecución de todos los proyectos que llevamos a cabo.', 'Desarrollo del concepto', '', 'inherit', 'open', 'open', '', '61-revision-6', '', '', '2011-10-23 17:50:30', '2011-10-23 16:50:30', '', 61, 'http://localhost/instaldeco/2011/10/61-revision-6/', 0, 'revision', '', 0),
(73, 1, '2011-10-23 17:28:13', '2011-10-23 16:28:13', '', 'Servicios', '', 'inherit', 'open', 'open', '', '52-revision-5', '', '', '2011-10-23 17:28:13', '2011-10-23 16:28:13', '', 52, 'http://localhost/instaldeco/2011/10/52-revision-5/', 0, 'revision', '', 0),
(74, 1, '2011-10-23 18:00:33', '2011-10-23 17:00:33', 'Producción y realización de <strong>córners</strong>, <strong>puntos de venta</strong>, <strong>franquicias</strong> y todo tipo de mobiliario en serie para su implantación en tiendas, centros comerciales, etc.\r\n\r\nOfrecemos la realización del proyecto completo, que abarcaría tanto el mobiliario como la iluminación y la colocación de suelos y revestimientos.\r\n\r\nLa calidad de nuestros acabados y nuestra <strong>movilidad nacional e internacional</strong> hacen que aspiremos a ser una de las primeras opciones a la hora de elegir proveedor para instalaciones comerciales.', 'Instalaciones comerciales', '', 'publish', 'open', 'open', '', 'instalaciones-comerciales', '', '', '2011-10-23 18:00:33', '2011-10-23 17:00:33', '', 52, 'http://localhost/instaldeco/?page_id=74', 0, 'page', '', 0),
(75, 1, '2011-10-23 18:00:01', '2011-10-23 17:00:01', 'Producción y realización de córners, puntos de venta, franquicias y todo tipo de mobiliario en serie para su implantación en tiendas, centros comerciales, etc.\n\nOfrecemos la realización del proyecto completo, que abarcaría tanto el mobiliario como la iluminación y la colocación de suelos y revestimientos.\n\nLa calidad de nuestros acabados y nuestra movilidad nacional e internaciona hacen que aspiremos a ser una de las primeras opciones a la hora de elegir proveedor para instlacio', 'Instalaciones comerciales', '', 'inherit', 'open', 'open', '', '74-revision', '', '', '2011-10-23 18:00:01', '2011-10-23 17:00:01', '', 74, 'http://localhost/instaldeco/2011/10/74-revision/', 0, 'revision', '', 0),
(76, 1, '2011-10-23 18:01:35', '2011-10-23 17:01:35', 'Producción y realización de <strong>córners</strong>, <strong>puntos de venta</strong>, <strong>franquicias</strong> y todo tipo de mobiliario en serie para su implantación en tiendas, centros comerciales, etc.\n\nOfrecemos la realización del proyecto completo, que abarcaría tanto el mobiliario como la iluminación y la colocación de suelos y revestimientos.\n\nLa calidad de nuestros acabados y nuestra <strong>movilidad nacional e internacional</strong> hacen que aspiremos a ser una de las primeras opciones a la hora de elegir proveedor para instalaciones comerciales.', 'Instalaciones comerciales', '', 'inherit', 'open', 'open', '', '74-autosave', '', '', '2011-10-23 18:01:35', '2011-10-23 17:01:35', '', 74, 'http://localhost/instaldeco/2011/10/74-autosave/', 0, 'revision', '', 0),
(79, 1, '2011-10-23 18:17:58', '2011-10-23 17:17:58', '[one_half last="no"]\r\n\r\nProducción\r\n\r\nStands\r\n\r\nDesarrollo\r\n\r\n[/one_half]\r\n\r\n[one_half last="yes"]\r\n\r\n[arrowlist]\r\n<ul>\r\n <li>Producción</li>\r\n <li>Stands</li>\r\n <li>Desarrollo</li>\r\n</ul>\r\n[/arrowlist]\r\n\r\n[/one_half]', 'Inicio', '', 'inherit', 'open', 'open', '', '11-revision-14', '', '', '2011-10-23 18:17:58', '2011-10-23 17:17:58', '', 11, 'http://localhost/instaldeco/2011/10/11-revision-14/', 0, 'revision', '', 0),
(80, 1, '2011-10-23 17:56:50', '2011-10-23 16:56:50', 'En nuestras oficinas, desarrollamos constructivamente los diseños realizados por nuestros clientes.\r\n\r\nCualquiera que sea el diseño poseemos el equipo humano y las herramientas necesarios para encontrar las soluciones constructivas adecuadas.\r\n\r\nNuestra amplia experiencia en este campo nos permite asegurar la perfecta ejecución de todos los proyectos que llevamos a cabo.', 'Desarrollo del concepto', '', 'inherit', 'open', 'open', '', '61-revision-7', '', '', '2011-10-23 17:56:50', '2011-10-23 16:56:50', '', 61, 'http://localhost/instaldeco/2011/10/61-revision-7/', 0, 'revision', '', 0),
(78, 1, '2011-10-23 18:04:13', '2011-10-23 17:04:13', '[one_half last="no"]\r\n\r\n[arrowlist]\r\n<ul>\r\n <li>Producción</li>\r\n <li>Stands</li>\r\n <li>Desarrollo</li>\r\n</ul>\r\n[/arrowlist]\r\n\r\n[/one_half]\r\n\r\n[one_half last="yes"]\r\n\r\n[arrowlist]\r\n<ul>\r\n <li>Producción</li>\r\n <li>Stands</li>\r\n <li>Desarrollo</li>\r\n</ul>\r\n[/arrowlist]\r\n\r\n[/one_half]', 'Inicio', '', 'inherit', 'open', 'open', '', '11-revision-13', '', '', '2011-10-23 18:04:13', '2011-10-23 17:04:13', '', 11, 'http://localhost/instaldeco/2011/10/11-revision-13/', 0, 'revision', '', 0),
(81, 1, '2011-10-23 17:57:34', '2011-10-23 16:57:34', '', 'Servicios', '', 'inherit', 'open', 'open', '', '52-revision-6', '', '', '2011-10-23 17:57:34', '2011-10-23 16:57:34', '', 52, 'http://localhost/instaldeco/2011/10/52-revision-6/', 0, 'revision', '', 0),
(82, 1, '2011-10-23 18:45:47', '2011-10-23 17:45:47', '', 'Time Force', '', 'publish', 'closed', 'closed', '', 'time-force', '', '', '2011-10-23 18:47:32', '2011-10-23 17:47:32', '', 0, 'http://localhost/instaldeco/?post_type=portfolio&#038;p=82', 0, 'portfolio', '', 0),
(83, 1, '2011-10-23 18:45:32', '2011-10-23 17:45:32', '', 'SNC00001', '', 'inherit', 'open', 'open', '', 'snc00001', '', '', '2011-10-23 18:45:32', '2011-10-23 17:45:32', '', 82, 'http://localhost/instaldeco/wp-content/uploads/2011/10/SNC00001.jpg', 0, 'attachment', 'image/jpeg', 0),
(87, 1, '2011-10-23 18:47:01', '2011-10-23 17:47:01', '', 'Trabajos', '', 'inherit', 'open', 'open', '', '34-revision-6', '', '', '2011-10-23 18:47:01', '2011-10-23 17:47:01', '', 34, 'http://localhost/instaldeco/2011/10/34-revision-6/', 0, 'revision', '', 0),
(84, 1, '2011-10-23 17:15:26', '2011-10-23 16:15:26', '', 'Trabajos', '', 'inherit', 'open', 'open', '', '34-revision-4', '', '', '2011-10-23 17:15:26', '2011-10-23 16:15:26', '', 34, 'http://localhost/instaldeco/2011/10/34-revision-4/', 0, 'revision', '', 0),
(85, 1, '2011-10-23 18:46:49', '2011-10-23 17:46:49', 'saasd asd\n\nasd\n\nasd\n\nas\n\nd asdasadad', 'Time Force', '', 'inherit', 'open', 'open', '', '82-autosave', '', '', '2011-10-23 18:46:49', '2011-10-23 17:46:49', '', 82, 'http://localhost/instaldeco/2011/10/82-autosave/', 0, 'revision', '', 0),
(86, 1, '2011-10-23 18:46:24', '2011-10-23 17:46:24', '', 'Trabajos', '', 'inherit', 'open', 'open', '', '34-revision-5', '', '', '2011-10-23 18:46:24', '2011-10-23 17:46:24', '', 34, 'http://localhost/instaldeco/2011/10/34-revision-5/', 0, 'revision', '', 0),
(88, 1, '2011-10-23 18:31:34', '2011-10-23 17:31:34', '', 'Nuestros servicios', '', 'inherit', 'open', 'open', '', '52-revision-7', '', '', '2011-10-23 18:31:34', '2011-10-23 17:31:34', '', 52, 'http://localhost/instaldeco/2011/10/52-revision-7/', 0, 'revision', '', 0),
(89, 1, '2011-10-23 18:50:14', '2011-10-23 17:50:14', 'ef fs df sdf sdfsdfsdfsd fs', 'Trabajos', '', 'inherit', 'open', 'open', '', '34-autosave', '', '', '2011-10-23 18:50:14', '2011-10-23 17:50:14', '', 34, 'http://localhost/instaldeco/2011/10/34-autosave/', 0, 'revision', '', 0),
(90, 1, '2011-10-23 18:50:09', '2011-10-23 17:50:09', '', 'Nuestros servicios', '', 'inherit', 'open', 'open', '', '52-revision-8', '', '', '2011-10-23 18:50:09', '2011-10-23 17:50:09', '', 52, 'http://localhost/instaldeco/2011/10/52-revision-8/', 0, 'revision', '', 0),
(91, 1, '2011-10-23 18:51:19', '2011-10-23 17:51:19', '', 'Nuestros servicios', '', 'inherit', 'open', 'open', '', '52-revision-9', '', '', '2011-10-23 18:51:19', '2011-10-23 17:51:19', '', 52, 'http://localhost/instaldeco/2011/10/52-revision-9/', 0, 'revision', '', 0);
-- --------------------------------------------------------
--
-- Estructura de tabla para la tabla `wp_terms`
--
CREATE TABLE IF NOT EXISTS `wp_terms` (
`term_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(200) NOT NULL DEFAULT '',
`slug` varchar(200) NOT NULL DEFAULT '',
`term_group` bigint(10) NOT NULL DEFAULT '0',
PRIMARY KEY (`term_id`),
UNIQUE KEY `slug` (`slug`),
KEY `name` (`name`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=6 ;
--
-- Volcado de datos para la tabla `wp_terms`
--
INSERT INTO `wp_terms` (`term_id`, `name`, `slug`, `term_group`) VALUES
(1, 'Sin categoría', 'sin-categoria', 0),
(2, 'Sitios de interés', 'sitios-de-interes', 0),
(3, 'Menú principal', 'menu-principal', 0),
(4, 'Servicios', 'servicios', 0),
(5, 'Joyería - relojería', 'joyeria-relojeria', 0);
-- --------------------------------------------------------
--
-- Estructura de tabla para la tabla `wp_term_relationships`
--
CREATE TABLE IF NOT EXISTS `wp_term_relationships` (
`object_id` bigint(20) unsigned NOT NULL DEFAULT '0',
`term_taxonomy_id` bigint(20) unsigned NOT NULL DEFAULT '0',
`term_order` int(11) NOT NULL DEFAULT '0',
PRIMARY KEY (`object_id`,`term_taxonomy_id`),
KEY `term_taxonomy_id` (`term_taxonomy_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
--
-- Volcado de datos para la tabla `wp_term_relationships`
--
INSERT INTO `wp_term_relationships` (`object_id`, `term_taxonomy_id`, `term_order`) VALUES
(1, 2, 0),
(2, 2, 0),
(3, 2, 0),
(4, 2, 0),
(5, 2, 0),
(6, 2, 0),
(7, 2, 0),
(1, 1, 0),
(14, 3, 0),
(51, 4, 0),
(38, 3, 0),
(36, 3, 0),
(37, 3, 0),
(54, 3, 0),
(82, 5, 0);
-- --------------------------------------------------------
--
-- Estructura de tabla para la tabla `wp_term_taxonomy`
--
CREATE TABLE IF NOT EXISTS `wp_term_taxonomy` (
`term_taxonomy_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`term_id` bigint(20) unsigned NOT NULL DEFAULT '0',
`taxonomy` varchar(32) NOT NULL DEFAULT '',
`description` longtext NOT NULL,
`parent` bigint(20) unsigned NOT NULL DEFAULT '0',
`count` bigint(20) NOT NULL DEFAULT '0',
PRIMARY KEY (`term_taxonomy_id`),
UNIQUE KEY `term_id_taxonomy` (`term_id`,`taxonomy`),
KEY `taxonomy` (`taxonomy`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=6 ;
--
-- Volcado de datos para la tabla `wp_term_taxonomy`
--
INSERT INTO `wp_term_taxonomy` (`term_taxonomy_id`, `term_id`, `taxonomy`, `description`, `parent`, `count`) VALUES
(1, 1, 'category', '', 0, 1),
(2, 2, 'link_category', '', 0, 7),
(3, 3, 'nav_menu', '', 0, 5),
(4, 4, 'type', '', 0, 1),
(5, 5, 'type', '', 0, 1);
-- --------------------------------------------------------
--
-- Estructura de tabla para la tabla `wp_usermeta`
--
CREATE TABLE IF NOT EXISTS `wp_usermeta` (
`umeta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`user_id` bigint(20) unsigned 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`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=24 ;
--
-- Volcado de datos para la tabla `wp_usermeta`
--
INSERT INTO `wp_usermeta` (`umeta_id`, `user_id`, `meta_key`, `meta_value`) VALUES
(1, 1, 'first_name', ''),
(2, 1, 'last_name', ''),
(3, 1, 'nickname', 'rodax'),
(4, 1, 'description', ''),
(5, 1, 'rich_editing', 'true'),
(6, 1, 'comment_shortcuts', 'false'),
(7, 1, 'admin_color', 'fresh'),
(8, 1, 'use_ssl', '0'),
(9, 1, 'show_admin_bar_front', 'true'),
(10, 1, 'show_admin_bar_admin', 'false'),
(11, 1, 'aim', ''),
(12, 1, 'yim', ''),
(13, 1, 'jabber', ''),
(14, 1, 'wp_capabilities', 'a:1:{s:13:"administrator";s:1:"1";}'),
(15, 1, 'wp_user_level', '10'),
(16, 1, 'wp_dashboard_quick_press_last_post_id', '3'),
(17, 1, 'wp_user-settings', 'm7=o&m6=o&urlbutton=none&imgsize=full&hidetb=1&m10=o&m4=o&m5=o'),
(18, 1, 'wp_user-settings-time', '1319386548'),
(19, 1, 'managenav-menuscolumnshidden', 'a:4:{i:0;s:11:"link-target";i:1;s:11:"css-classes";i:2;s:3:"xfn";i:3;s:11:"description";}'),
(20, 1, 'metaboxhidden_nav-menus', 'a:4:{i:0;s:8:"add-post";i:1;s:13:"add-portfolio";i:2;s:12:"add-post_tag";i:3;s:8:"add-type";}'),
(21, 1, 'closedpostboxes_page', 'a:0:{}'),
(22, 1, 'metaboxhidden_page', 'a:6:{i:0;s:10:"postcustom";i:1;s:16:"commentstatusdiv";i:2;s:11:"commentsdiv";i:3;s:7:"slugdiv";i:4;s:9:"authordiv";i:5;s:12:"revisionsdiv";}'),
(23, 1, 'nav_menu_recently_edited', '3');
-- --------------------------------------------------------
--
-- Estructura de tabla para la tabla `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`),
KEY `user_nicename` (`user_nicename`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=2 ;
--
-- Volcado de datos para la tabla `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, 'rodax', '$P$BqFhZetRbRm3e2uUSMqEeLew82pySR1', 'rodax', 'darranz@rodax-software.com', '', '2011-09-23 17:04:51', '', 0, 'rodax');
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;