0byt3m1n1
Path:
/
data
/
21
/
3
/
142
/
35
/
3468687
/
meta
/
3865592
/
mysql.backup
/
[
Home
]
File: 1_03976d9_0.mysqlv104.bak.sql
-- MySQL dump 10.11 -- -- Host: mysqlv104 Database: 1_03976d9_0 -- ------------------------------------------------------ -- Server version 5.0.91 /*!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 */; /*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */; /*!40103 SET TIME_ZONE='+00:00' */; /*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */; /*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */; /*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */; /*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */; -- -- Table structure for table `wp_commentmeta` -- DROP TABLE IF EXISTS `wp_commentmeta`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `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; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `wp_commentmeta` -- LOCK TABLES `wp_commentmeta` WRITE; /*!40000 ALTER TABLE `wp_commentmeta` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_commentmeta` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_comments` -- DROP TABLE IF EXISTS `wp_comments`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `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_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 AUTO_INCREMENT=2 DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `wp_comments` -- LOCK TABLES `wp_comments` WRITE; /*!40000 ALTER TABLE `wp_comments` DISABLE KEYS */; INSERT INTO `wp_comments` VALUES (1,1,'Mr WordPress','','http://wordpress.org/','','2012-06-20 17:27:39','2012-06-20 17:27:39','Hi, this is a comment.<br />To delete a comment, just log in and view the post's comments. There you will have the option to edit or delete them.',0,'1','','',0,0); /*!40000 ALTER TABLE `wp_comments` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_links` -- DROP TABLE IF EXISTS `wp_links`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `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 AUTO_INCREMENT=8 DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `wp_links` -- LOCK TABLES `wp_links` WRITE; /*!40000 ALTER TABLE `wp_links` DISABLE KEYS */; INSERT INTO `wp_links` 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/support/','Support Forums','','','','Y',1,0,'0000-00-00 00:00:00','','',''),(4,'http://wordpress.org/extend/plugins/','Plugins','','','','Y',1,0,'0000-00-00 00:00:00','','',''),(5,'http://wordpress.org/extend/themes/','Themes','','','','Y',1,0,'0000-00-00 00:00:00','','',''),(6,'http://wordpress.org/support/forum/requests-and-feedback','Feedback','','','','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','','',''); /*!40000 ALTER TABLE `wp_links` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_options` -- DROP TABLE IF EXISTS `wp_options`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `wp_options` ( `option_id` bigint(20) unsigned NOT NULL auto_increment, `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 AUTO_INCREMENT=241 DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `wp_options` -- LOCK TABLES `wp_options` WRITE; /*!40000 ALTER TABLE `wp_options` DISABLE KEYS */; INSERT INTO `wp_options` VALUES (1,'siteurl','http://pixelbuzz.pro','yes'),(2,'blogname','PIXELBUZZ','yes'),(3,'blogdescription','aerial cinematography professionals','yes'),(4,'users_can_register','0','yes'),(5,'admin_email','MarcHirschmann@gmail.com','yes'),(6,'start_of_week','1','yes'),(7,'use_balanceTags','0','yes'),(8,'use_smilies','1','yes'),(9,'require_name_email','1','yes'),(10,'comments_notify','1','yes'),(11,'posts_per_rss','10','yes'),(12,'rss_use_excerpt','0','yes'),(13,'mailserver_url','mail.example.com','yes'),(14,'mailserver_login','login@example.com','yes'),(15,'mailserver_pass','password','yes'),(16,'mailserver_port','110','yes'),(17,'default_category','1','yes'),(18,'default_comment_status','open','yes'),(19,'default_ping_status','open','yes'),(20,'default_pingback_flag','1','yes'),(112,'db_upgraded','','yes'),(22,'posts_per_page','10','yes'),(23,'date_format','F j, Y','yes'),(24,'time_format','g:i a','yes'),(25,'links_updated_date_format','F j, Y g:i a','yes'),(26,'links_recently_updated_prepend','<em>','yes'),(27,'links_recently_updated_append','</em>','yes'),(28,'links_recently_updated_time','120','yes'),(29,'comment_moderation','0','yes'),(30,'moderation_notify','1','yes'),(31,'permalink_structure','','yes'),(32,'gzipcompression','0','yes'),(33,'hack_file','0','yes'),(34,'blog_charset','UTF-8','yes'),(35,'moderation_keys','','no'),(36,'active_plugins','a:1:{i:0;s:41:\"wordpress-importer/wordpress-importer.php\";}','yes'),(37,'home','http://pixelbuzz.pro','yes'),(38,'category_base','','yes'),(39,'ping_sites','http://rpc.pingomatic.com/','yes'),(40,'advanced_edit','0','yes'),(41,'comment_max_links','2','yes'),(42,'gmt_offset','0','yes'),(43,'default_email_category','1','yes'),(44,'recently_edited','','no'),(45,'template','Divi','yes'),(46,'stylesheet','Divi','yes'),(47,'comment_whitelist','1','yes'),(48,'blacklist_keys','','no'),(49,'comment_registration','0','yes'),(50,'html_type','text/html','yes'),(51,'use_trackback','0','yes'),(52,'default_role','subscriber','yes'),(53,'db_version','26692','yes'),(54,'uploads_use_yearmonth_folders','1','yes'),(55,'upload_path','','yes'),(56,'blog_public','1','yes'),(57,'default_link_category','2','yes'),(58,'show_on_front','page','yes'),(59,'tag_base','','yes'),(60,'show_avatars','1','yes'),(61,'avatar_rating','G','yes'),(62,'upload_url_path','','yes'),(63,'thumbnail_size_w','150','yes'),(64,'thumbnail_size_h','150','yes'),(65,'thumbnail_crop','1','yes'),(66,'medium_size_w','300','yes'),(67,'medium_size_h','300','yes'),(68,'avatar_default','mystery','yes'),(71,'large_size_w','1024','yes'),(72,'large_size_h','1024','yes'),(73,'image_default_link_type','file','yes'),(74,'image_default_size','','yes'),(75,'image_default_align','','yes'),(76,'close_comments_for_old_posts','0','yes'),(77,'close_comments_days_old','14','yes'),(78,'thread_comments','1','yes'),(79,'thread_comments_depth','5','yes'),(80,'page_comments','0','yes'),(81,'comments_per_page','50','yes'),(82,'default_comments_page','newest','yes'),(83,'comment_order','asc','yes'),(84,'sticky_posts','a:0:{}','yes'),(85,'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'),(86,'widget_text','a:0:{}','yes'),(87,'widget_rss','a:0:{}','yes'),(88,'uninstall_plugins','a:0:{}','no'),(89,'timezone_string','','yes'),(206,'et_schedule_clean_images_last_time','1397668989','yes'),(91,'embed_size_w','','yes'),(92,'embed_size_h','600','yes'),(93,'page_for_posts','0','yes'),(94,'page_on_front','95','yes'),(95,'default_post_format','0','yes'),(96,'initial_db_version','20596','yes'),(97,'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'),(98,'widget_search','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),(99,'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'),(100,'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'),(101,'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'),(102,'widget_meta','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),(103,'sidebars_widgets','a:7:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:6:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";i:3;s:10:\"archives-2\";i:4;s:12:\"categories-2\";i:5;s:6:\"meta-2\";}s:9:\"sidebar-2\";a:0:{}s:9:\"sidebar-3\";a:0:{}s:9:\"sidebar-4\";a:0:{}s:9:\"sidebar-5\";a:0:{}s:13:\"array_version\";i:3;}','yes'),(104,'cron','a:9:{i:1397676080;a:1:{s:26:\"upgrader_scheduled_cleanup\";a:1:{s:32:\"adcb9b75260590ff6058773ddcb9ddd6\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;i:4;}}}}i:1397676156;a:1:{s:26:\"upgrader_scheduled_cleanup\";a:1:{s:32:\"c9059feef497c200e69cb9956a81f005\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;i:5;}}}}i:1397712469;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:1397718840;a:1:{s:20:\"wp_maybe_auto_update\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1397744450;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;}}}i:1397755406;a:1:{s:30:\"wp_scheduled_auto_draft_delete\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1397755762;a:1:{s:26:\"importer_scheduled_cleanup\";a:1:{s:32:\"3c2f09ef3307c7968f556ae704095acf\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;i:35;}}}}i:1397755918;a:1:{s:26:\"importer_scheduled_cleanup\";a:1:{s:32:\"9ef847872aca0012b660ad0925fa2b67\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;i:37;}}}}s:7:\"version\";i:2;}','yes'),(157,'_site_transient_timeout_browser_d88670820d154fdb975c9bc3be8d0cb6','1398270139','yes'),(106,'_transient_random_seed','c4414f436682505b95eff41265498af0','yes'),(107,'auth_key','d!5hDQ6l0|aax)u_~U]5qT..-55c=O~8q&Z#C?[J:`CP8.zu1GP/i|mTFN%8-P n','yes'),(108,'auth_salt','uE77I^}#R#X5j;sc!~OmqJl$]_8r40y[[>lV.Ck_.G8#&;cK]+?cW}|_**75@3qk','yes'),(109,'logged_in_key','p_P$YdfptQD?kzv|A<fsB#5Gi-F5ULtYS$&LA_b/,lzhn$eEQ7-y:(KZ,]/Zk=99','yes'),(110,'logged_in_salt','=}7 u_372Mv8y;H@V2Weo)_:UaiN7~8!@5Muayea#.^uCntjd^?NrC#A56eI^KLd','yes'),(111,'link_manager_enabled','1','yes'),(207,'et_divi','a:87:{s:15:\"divi_1_3_images\";s:7:\"checked\";s:10:\"link_color\";s:7:\"#7EBEC5\";s:10:\"font_color\";s:7:\"#666666\";s:12:\"accent_color\";s:7:\"#7EBEC5\";s:9:\"footer_bg\";s:7:\"#2e2e2e\";s:9:\"menu_link\";s:7:\"#666666\";s:16:\"menu_link_active\";s:7:\"#7CBEC6\";s:12:\"heading_font\";s:4:\"none\";s:9:\"body_font\";s:4:\"none\";s:13:\"color_schemes\";s:4:\"none\";s:9:\"divi_logo\";s:87:\"http://pixelbuzz.pro/wordpress1/wp-content/uploads/2014/04/PIXELBUZZ-Header-300x100.png\";s:12:\"divi_favicon\";s:0:\"\";s:14:\"divi_fixed_nav\";s:2:\"on\";s:15:\"divi_grab_image\";s:5:\"false\";s:15:\"divi_blog_style\";s:5:\"false\";s:22:\"divi_shop_page_sidebar\";s:16:\"et_right_sidebar\";s:22:\"divi_mailchimp_api_key\";s:0:\"\";s:31:\"divi_regenerate_mailchimp_lists\";s:5:\"false\";s:23:\"divi_show_facebook_icon\";s:2:\"on\";s:22:\"divi_show_twitter_icon\";s:2:\"on\";s:21:\"divi_show_google_icon\";s:2:\"on\";s:18:\"divi_show_rss_icon\";s:2:\"on\";s:17:\"divi_facebook_url\";s:1:\"#\";s:16:\"divi_twitter_url\";s:1:\"#\";s:15:\"divi_google_url\";s:1:\"#\";s:12:\"divi_rss_url\";s:0:\"\";s:17:\"divi_catnum_posts\";i:6;s:21:\"divi_archivenum_posts\";i:5;s:20:\"divi_searchnum_posts\";i:5;s:17:\"divi_tagnum_posts\";i:5;s:16:\"divi_date_format\";s:6:\"M j, Y\";s:16:\"divi_use_excerpt\";s:5:\"false\";s:26:\"divi_responsive_shortcodes\";s:2:\"on\";s:33:\"divi_gf_enable_all_character_sets\";s:5:\"false\";s:15:\"divi_custom_css\";s:413:\"#center {text-align: center;}\n#nopad {padding: 0;}\n#centernopad {text-align: center;padding: 0;}\n\n.et_pb_slider .et_pb_slide {background-size: 100% 100%;}\n\n.wp-video {margin: 0 auto;}\n\n.fluid-wrapper {\n position: relative;\n padding-bottom: 56.25%; /* 16:9 */\n height: 0;}\n\n.fluid-wrapper iframe {\n position: absolute;\n top: 0;\n left: 0;\n width: 100%;\n height: 100%;\n border: none;}\";s:21:\"divi_enable_dropdowns\";s:2:\"on\";s:14:\"divi_home_link\";s:2:\"on\";s:15:\"divi_sort_pages\";s:10:\"post_title\";s:15:\"divi_order_page\";s:3:\"asc\";s:22:\"divi_tiers_shown_pages\";i:3;s:32:\"divi_enable_dropdowns_categories\";s:2:\"on\";s:21:\"divi_categories_empty\";s:2:\"on\";s:27:\"divi_tiers_shown_categories\";i:3;s:13:\"divi_sort_cat\";s:4:\"name\";s:14:\"divi_order_cat\";s:3:\"asc\";s:20:\"divi_disable_toptier\";s:5:\"false\";s:14:\"divi_postinfo2\";a:4:{i:0;s:6:\"author\";i:1;s:4:\"date\";i:2;s:10:\"categories\";i:3;s:8:\"comments\";}s:22:\"divi_show_postcomments\";s:2:\"on\";s:15:\"divi_thumbnails\";s:2:\"on\";s:20:\"divi_page_thumbnails\";s:5:\"false\";s:23:\"divi_show_pagescomments\";s:5:\"false\";s:14:\"divi_postinfo1\";a:3:{i:0;s:6:\"author\";i:1;s:4:\"date\";i:2;s:10:\"categories\";}s:21:\"divi_thumbnails_index\";s:2:\"on\";s:19:\"divi_seo_home_title\";s:5:\"false\";s:25:\"divi_seo_home_description\";s:5:\"false\";s:22:\"divi_seo_home_keywords\";s:5:\"false\";s:23:\"divi_seo_home_canonical\";s:5:\"false\";s:23:\"divi_seo_home_titletext\";s:0:\"\";s:29:\"divi_seo_home_descriptiontext\";s:0:\"\";s:26:\"divi_seo_home_keywordstext\";s:0:\"\";s:18:\"divi_seo_home_type\";s:27:\"BlogName | Blog description\";s:22:\"divi_seo_home_separate\";s:3:\" | \";s:21:\"divi_seo_single_title\";s:5:\"false\";s:27:\"divi_seo_single_description\";s:5:\"false\";s:24:\"divi_seo_single_keywords\";s:5:\"false\";s:25:\"divi_seo_single_canonical\";s:5:\"false\";s:27:\"divi_seo_single_field_title\";s:9:\"seo_title\";s:33:\"divi_seo_single_field_description\";s:15:\"seo_description\";s:30:\"divi_seo_single_field_keywords\";s:12:\"seo_keywords\";s:20:\"divi_seo_single_type\";s:21:\"Post title | BlogName\";s:24:\"divi_seo_single_separate\";s:3:\" | \";s:24:\"divi_seo_index_canonical\";s:5:\"false\";s:26:\"divi_seo_index_description\";s:5:\"false\";s:19:\"divi_seo_index_type\";s:24:\"Category name | BlogName\";s:23:\"divi_seo_index_separate\";s:3:\" | \";s:28:\"divi_integrate_header_enable\";s:2:\"on\";s:26:\"divi_integrate_body_enable\";s:2:\"on\";s:31:\"divi_integrate_singletop_enable\";s:2:\"on\";s:34:\"divi_integrate_singlebottom_enable\";s:2:\"on\";s:21:\"divi_integration_head\";s:0:\"\";s:21:\"divi_integration_body\";s:0:\"\";s:27:\"divi_integration_single_top\";s:0:\"\";s:30:\"divi_integration_single_bottom\";s:0:\"\";s:15:\"divi_468_enable\";s:5:\"false\";s:14:\"divi_468_image\";s:0:\"\";s:12:\"divi_468_url\";s:0:\"\";s:16:\"divi_468_adsense\";s:0:\"\";}','yes'),(209,'_transient_timeout_et_pb_mailchimp_lists','1397755407','no'),(191,'_site_transient_timeout_theme_roots','1397670775','yes'),(192,'_site_transient_theme_roots','a:5:{s:4:\"Divi\";s:7:\"/themes\";s:12:\"twentyeleven\";s:7:\"/themes\";s:14:\"twentyfourteen\";s:7:\"/themes\";s:14:\"twentythirteen\";s:7:\"/themes\";s:12:\"twentytwelve\";s:7:\"/themes\";}','yes'),(193,'_site_transient_update_core','O:8:\"stdClass\":4:{s:7:\"updates\";a:1:{i:0;O:8:\"stdClass\":10:{s:8:\"response\";s:6:\"latest\";s:8:\"download\";s:59:\"https://downloads.wordpress.org/release/wordpress-3.8.3.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:59:\"https://downloads.wordpress.org/release/wordpress-3.8.3.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-3.8.3-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-3.8.3-new-bundled.zip\";s:7:\"partial\";b:0;s:8:\"rollback\";b:0;}s:7:\"current\";s:5:\"3.8.3\";s:7:\"version\";s:5:\"3.8.3\";s:11:\"php_version\";s:5:\"5.2.4\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"3.8\";s:15:\"partial_version\";s:0:\"\";}}s:12:\"last_checked\";i:1397669273;s:15:\"version_checked\";s:5:\"3.8.3\";s:12:\"translations\";a:0:{}}','yes'),(197,'_site_transient_update_themes','O:8:\"stdClass\":4:{s:12:\"last_checked\";i:1397669287;s:7:\"checked\";a:5:{s:4:\"Divi\";s:3:\"1.7\";s:12:\"twentyeleven\";s:3:\"1.5\";s:14:\"twentyfourteen\";s:3:\"1.0\";s:14:\"twentythirteen\";s:3:\"1.1\";s:12:\"twentytwelve\";s:3:\"1.1\";}s:8:\"response\";a:3:{s:12:\"twentyeleven\";a:4:{s:5:\"theme\";s:12:\"twentyeleven\";s:11:\"new_version\";s:3:\"1.7\";s:3:\"url\";s:41:\"https://wordpress.org/themes/twentyeleven\";s:7:\"package\";s:58:\"https://wordpress.org/themes/download/twentyeleven.1.7.zip\";}s:12:\"twentytwelve\";a:4:{s:5:\"theme\";s:12:\"twentytwelve\";s:11:\"new_version\";s:3:\"1.3\";s:3:\"url\";s:41:\"https://wordpress.org/themes/twentytwelve\";s:7:\"package\";s:58:\"https://wordpress.org/themes/download/twentytwelve.1.3.zip\";}s:4:\"Divi\";a:2:{s:11:\"new_version\";s:3:\"1.8\";s:3:\"url\";s:52:\"https://www.elegantthemes.com/api/changelog/divi.txt\";}}s:12:\"translations\";a:0:{}}','yes'),(120,'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:31:\"http://pixelbuzz.pro/wordpress1\";s:4:\"link\";s:107:\"http://blogsearch.google.com/blogsearch?scoring=d&partner=wordpress&q=link:http://pixelbuzz.pro/wordpress1/\";s:3:\"url\";s:140:\"http://blogsearch.google.com/blogsearch_feeds?scoring=d&ie=utf-8&num=10&output=rss&partner=wordpress&q=link:http://pixelbuzz.pro/wordpress1/\";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:14:\"WordPress Blog\";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:20:\"Other WordPress News\";s:5:\"items\";i:5;s:12:\"show_summary\";i:0;s:11:\"show_author\";i:0;s:9:\"show_date\";i:0;}}','yes'),(121,'nonce_key','7L@0cD0>G2GtvO+siB zV+&ataWl5&kJr!k@4n:?89=<yC)SBS39F+oXm*<7;F;x','yes'),(122,'nonce_salt','9}!O`uyX1d5^o@dAqs`n #2`{<& !`go6UkpGfkG_1e$zier<,VCDKOh9pVvk,F,','yes'),(171,'_transient_timeout_feed_867bd5c64f85878d03a060509cd2f92c','1397708542','no'),(172,'_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:92:\"WPTavern: BuddyPress 2.0 Released: Big Performance Improvements and New Administration Tools\";s: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:28:\"http://wptavern.com/?p=21201\";s: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:226:\"http://wptavern.com/buddypress-2-0-released-big-performance-improvements-and-new-administration-tools?utm_source=rss&utm_medium=rss&utm_campaign=buddypress-2-0-released-big-performance-improvements-and-new-administration-tools\";s: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:4710:\"<p>BuddyPress 2.0 “<a href=\"http://buddypress.org/2014/04/buddypress-2-0-juliana/\" target=\"_blank\">Juliana</a>” arrived on schedule today, less than a week after the plugin crossed <a href=\"http://wptavern.com/major-milestone-for-buddypress-2-million-downloads-and-counting\" target=\"_blank\">two million downloads</a>. This release focused heavily on improving BuddyPress performance, adding new administrative tools and enhancing the activity stream. It’s named for <a href=\"http://julianaspizza.com/\" target=\"_blank\">Juliana’s Pizza</a> in Brooklyn, NY, a pizza joint that is special to members of the core development team.</p>\n<p><a href=\"http://wptavern.com/wp-content/uploads/2014/04/buddypress20.png\" rel=\"prettyphoto[21201]\"><img src=\"http://wptavern.com/wp-content/uploads/2014/04/buddypress20.png\" alt=\"buddypress20\" width=\"1555\" height=\"1305\" class=\"aligncenter size-full wp-image-21202\" /></a></p>\n<h3>Performance Improvements</h3>\n<p>One of the major highlights of this release is the <a href=\"http://wptavern.com/ http://wptavern.com/buddypress-2-0-ramps-up-performance-reduces-footprint-by-up-to-75\" target=\"_blank\">massive improvement in performance</a>, especially as it relates to Members and Activity directories. BuddyPress 2.0 improves MySQL efficiency, decreasing queries by up to 75% and reducing query time by up to 71%, depending on the your site’s hosting environment. If your site uses advanced caching systems, such as APC and Memcached, expect a performance increase here, as 2.0 completely overhauls how these are utilized.</p>\n<h3>New BuddyPress Administration Tools</h3>\n<p>BuddyPress 2.0 introduces a host of new administration tools that make it easier to manage communities. Administrators can now <a href=\"http://wptavern.com/buddypress-2-0-to-add-profile-editing-in-the-wordpress-admin\" target=\"_blank\">edit member profiles</a> in the WordPress admin. This release also ships with a new <a href=\"http://wptavern.com/buddypress-2-0-to-add-signups-administration-screen\" target=\"_blank\">signups administration screen</a> that allows administrators to track the status of pending accounts and facilitate the signup process.</p>\n<p><a href=\"http://wptavern.com/wp-content/uploads/2014/03/signups-featured.jpg\" rel=\"prettyphoto[21201]\"><img src=\"http://wptavern.com/wp-content/uploads/2014/03/signups-featured.jpg\" alt=\"signups-featured\" width=\"800\" height=\"438\" class=\"aligncenter size-full wp-image-19429\" /></a></p>\n<p>Community managers will be pleased to know that version 2.0 provides <a href=\"http://wptavern.com/buddypress-2-0-to-add-better-spam-management-capabilities-for-administrators\" target=\"_blank\">better spam management capabilities</a> with the ability to mark users as ham/spam within the admin users panel, a feature that was previously only available on multisite installations.</p>\n<p>Version 2.0 includes a handy new “Repair Tools” menu at Dashboard > Tools > BuddyPress. This menu makes it easy to correct data that can sometimes get out of sync on BuddyPress sites.</p>\n<p><a href=\"http://wptavern.com/wp-content/uploads/2014/04/buddypress-tools.jpg\" rel=\"prettyphoto[21201]\"><img src=\"http://wptavern.com/wp-content/uploads/2014/04/buddypress-tools.jpg\" alt=\"buddypress-tools\" width=\"750\" height=\"516\" class=\"aligncenter size-full wp-image-21219\" /></a></p>\n<h3>Improved Activity Stream</h3>\n<p>The activity stream has received a few enhancements in 2.0. It will now automatically let you know when new items are ready to be loaded. It’s also much better integrated with blog posts. Comments are synced across blog-related activity items and the actual post itself. This unifies conversations that take place in different areas on a BP site.</p>\n<p>The activity stream will also play better with translations. Given that roughly half of BuddyPress installs are in a language other than English, this is a nice update. Check out this demo video created by <a href=\"https://twitter.com/BoweFrankema/status/455055453706526721\" target=\"_blank\">Bowe Frankema</a> to see how that works.</p>\n<p></p>\n<p></p>\n<p>Improvements in BuddyPress 2.0 help the social features to really shine and make community management more efficient for administrators. The plugin has come a long way since <a href=\"http://buddypress.org/2009/04/buddypress-10-has-arrived/\" target=\"_blank\">version 1.0</a> was released almost five years ago. The BuddyPress community has grown and thanks to the work of 42 volunteer contributors, 2.0 is ready for download today. Check out the full <a href=\"http://codex.buddypress.org/developer/releases/version-2-0/\" target=\"_blank\">2.0 changelog</a> to see everything that’s new and improved.</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, 16 Apr 2014 15:53:29 +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:13:\"Sarah Gooding\";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:40:\"BuddyPress: BuddyPress 2.0 “Juliana”\";s: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://buddypress.org/?p=181333\";s: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:53:\"http://buddypress.org/2014/04/buddypress-2-0-juliana/\";s: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:10163:\"<p>The BuddyPress team is thrilled to announce that BuddyPress 2.0 “Juliana” is now available!</p>\n<p>This release focuses on administrative tools, performance, and improvements to the activity stream. Let’s take a look at some of the highlights.</p>\n<div></div>\n<h4>New Administrative Tools</h4>\n<p>If you manage a BuddyPress-powered community, BuddyPress 2.0 is for you. We have built a number of new tools that simplify and centralize common administrative tasks:</p>\n<ul>\n<li><em>Profile editing</em> – Need to manage a user’s profile information? We’ve integrated a new “Extended Profile” tab into the Dashboard > Users interface, where you can manage profile data, avatars, user status, and more.<br /><a href=\"http://buddypress.org/wp-content/uploads/1/2014/04/admin-xprofile.jpg\"><img src=\"http://buddypress.org/wp-content/uploads/1/2014/04/admin-xprofile-300x206.jpg\" alt=\"admin-xprofile\" width=\"300\" height=\"206\" class=\"alignleft size-medium wp-image-181344\" /></a>\n </li>\n<li><em>Spam User Management</em> – WordPress Multisite has long had the ability to manage spam users from the Dashboard. We’ve brought the same capabilities to non-Multisite installations. <br />\n<a href=\"http://buddypress.org/wp-content/uploads/1/2014/04/user-mark-spam.jpg\"><img src=\"http://buddypress.org/wp-content/uploads/1/2014/04/user-mark-spam-300x206.jpg\" alt=\"user-mark-spam\" class=\"size-thumbnail wp-image-181342\" /></a>\n </li>\n<div> </div>\n<li><em>Pending Users</em> – The Pending users tab in Dashboard > Users lets you see a list of signups that have not yet been activated. You can also perform useful tasks like manual account activation and resending activation emails. <br /><a href=\"http://buddypress.org/wp-content/uploads/1/2014/04/users-pending.jpg\"><img src=\"http://buddypress.org/wp-content/uploads/1/2014/04/users-pending-300x206.jpg\" alt=\"users-pending\" class=\"size-thumbnail wp-image-181343\" /></a>\n </li>\n<li><em>Repair Tools</em> – Occasionally, BP friend counts and other data can get out of sync. The new Tools screen lets admins manually reset these values. <br /><a href=\"http://buddypress.org/wp-content/uploads/1/2014/04/tools-buddypress.jpg\"><img src=\"http://buddypress.org/wp-content/uploads/1/2014/04/tools-buddypress-300x206.jpg\" alt=\"tools-buddypress\" class=\"size-thumbnail wp-image-181341\" /></a>\n </li>\n</ul>\n<div></div>\n<h4>Performance Improvements</h4>\n<p>The most successful BuddyPress sites are highly dynamic, with a steady stream of new visitors and new content. This dynamic nature means that BuddyPress is a highly database-driven platform, and database performance is often a bottleneck when it comes to scaling BP sites. BuddyPress 2.0 tackles this problem head-on. We’ve streamlined some of the most common problematic queries – such as those in the Members and Activity directories – to shave up to 95% of the query time off of certain individual queries. The sheer number of queries has been dramatically reduced as well, so that single page views access the database up to 50% less than in BP 1.9. And we’ve totally overhauled the way that BuddyPress utilizes advanced caching systems like APC and Memcached, so that users of these systems will see up to 75% fewer cache misses on costly queries.</p>\n<p>If you’re a BuddyPress developer or site administrator, you can get more in-depth explanation of changes and an overview of selected benchmarks <a href=\"http://bpdevel.wordpress.com/2014/04/02/one-of-the-primary-focuses/\">in this post on bpdevel.wordpress.com</a>. If you are a BuddyPress user, you can just sit back and enjoy the speedier pageloads and reduced server overhead of your BuddyPress 2.0 site!</p>\n<div></div>\n<h4>Activity Stream Enhancements</h4>\n<p>Spend a lot of time viewing the activity stream? BuddyPress 2.0 automatically lets you know when new items are ready to be loaded.</p>\n<p><a href=\"http://buddypress.org/wp-content/uploads/1/2014/04/load-newest.jpg\"><img src=\"http://buddypress.org/wp-content/uploads/1/2014/04/load-newest.jpg\" alt=\"load-newest\" width=\"558\" height=\"302\" class=\"size-full wp-image-181356\" /></a></p>\n<p>The activity stream is better integrated with blog posts, too. Comment on a blog post, and an activity item is posted. Comment on a blog-related activity item, and a blog comment is posted. No more worrying about fractured conversations.</p>\n<p>We’ve also reworked the way that phrases like “Boone posted an update” are handled, so that they’re always up-to-date and always translatable.</p>\n<div></div>\n<h4>And much more</h4>\n<p>BuddyPress 2.0 introduces dozens more small features, and fixes scores of bugs. We’ve compiled <a href=\"http://codex.buddypress.org/developer/releases/version-2-0/\">a complete 2.0 changelog</a> on the BuddyPress Codex.</p>\n<div></div>\n<h4>Juliana is Number Two</h4>\n<p>BuddyPress 2.0 is named for <a href=\"http://julianaspizza.com/\">Juliana’s Pizza</a> in Brooklyn, NY. Juliana’s is the second pizza establishment opened in the same location by master pizzaiolo Patsy Grimaldi (it’s a long story), and was also the locale for a serious BuddyPress powwow and up-close dining experience by two members of the core team. For these reasons (not to mention the outstanding pizza) we think that BuddyPress 2.0 “Juliana” has a special ring to it.</p>\n<div></div>\n<h4>Thanks, thanks, and more thanks</h4>\n<p>BuddyPress is built, with love, by a worldwide network of volunteers. The following people contributed patches during the BuddyPress 2.0 development cycle:</p>\n<p><a href=\"https://profiles.wordpress.org/boonebgorges/\">boonebgorges</a>, <a href=\"https://profiles.wordpress.org/Bowromir/\">Bowromir</a>, <a href=\"https://profiles.wordpress.org/burakali/\">burakali</a>, <a href=\"https://profiles.wordpress.org/chouf1/\">chouf1</a>, <a href=\"https://profiles.wordpress.org/cmmarslender/\">cmmarslender</a>, <a href=\"https://profiles.wordpress.org/danbp/\">danbp</a>, <a href=\"https://profiles.wordpress.org/dcavins/\">dcavins</a>, <a href=\"https://profiles.wordpress.org/Denis-de-Bernardy/\">Denis-de-Bernardy</a>, <a href=\"https://profiles.wordpress.org/DJPaul/\">DJPaul</a>, <a href=\"https://profiles.wordpress.org/ericlewis/\">ericlewis</a>, <a href=\"https://profiles.wordpress.org/glyndavidson/\">glyndavidson</a>, <a href=\"https://profiles.wordpress.org/graham-washbrook/\">graham-washbrook</a>, <a href=\"https://profiles.wordpress.org/henrywright/\">henrywright</a>, <a href=\"https://profiles.wordpress.org/henry.wright/\">henry.wright</a>, <a href=\"https://profiles.wordpress.org/hnla/\">hnla</a>, <a href=\"https://profiles.wordpress.org/imath/\">imath</a>, <a href=\"https://profiles.wordpress.org/johnjamesjacoby/\">johnjamesjacoby</a>, <a href=\"https://profiles.wordpress.org/karmatosed/\">karmatosed</a>, <a href=\"https://profiles.wordpress.org/lenasterg/\">lenasterg</a>, <a href=\"https://profiles.wordpress.org/MacPresss/\">MacPresss</a>, <a href=\"https://profiles.wordpress.org/markoheijnen/\">markoheijnen</a>, <a href=\"https://profiles.wordpress.org/megainfo/\">megainfo</a>, <a href=\"https://profiles.wordpress.org/modemlooper/\">modemlooper</a>, <a href=\"https://profiles.wordpress.org/mpa4hu/\">mpa4hu</a>, <a href=\"https://profiles.wordpress.org/needle/\">needle</a>, <a href=\"https://profiles.wordpress.org/netweb/\">netweb</a>, <a href=\"https://profiles.wordpress.org/ninnypants/\">ninnypants</a>, Pietro Oliva, <a href=\"https://profiles.wordpress.org/pross/\">pross</a>, <a href=\"https://profiles.wordpress.org/r-a-y/\">r-a-y</a>, <a href=\"https://profiles.wordpress.org/reactuate/\">reactuate</a>, <a href=\"https://profiles.wordpress.org/rodrigorznd/\">rodrigorznd</a>, <a href=\"https://profiles.wordpress.org/rogercoathup/\">rogercoathup</a>, <a href=\"https://profiles.wordpress.org/rzen/\">rzen</a>, <a href=\"https://profiles.wordpress.org/SergeyBiryukov/\">SergeyBiryukov</a>, <a href=\"https://profiles.wordpress.org/shanebp/\">shanebp</a>, <a href=\"https://profiles.wordpress.org/SlothLoveChunk/\">SlothLoveChunk</a>, <a href=\"https://profiles.wordpress.org/StijnDeWitt/\">StijnDeWitt</a>, <a href=\"https://profiles.wordpress.org/terraling/\">terraling</a>, <a href=\"https://profiles.wordpress.org/trishasalas/\">trishasalas</a>, <a href=\"https://profiles.wordpress.org/tw2113/\">tw2113</a>, <a href=\"https://profiles.wordpress.org/vanillalounge/\">vanillalounge</a>.</p>\n<p>Many thanks to these contributors, and to all who have pitched in the forums and elsewhere.</p>\n<p>One final point. Technically, BuddyPress “2.0″ is just the version between 1.9 and 2.1. But still, there’s something special about crossing into the 2.x series, especially given the timing: we just crossed <a href=\"http://wptavern.com/major-milestone-for-buddypress-2-million-downloads-and-counting\">2 million downloads</a>, and it’s been almost exactly five years since <a href=\"http://buddypress.org/2009/04/buddypress-10-has-arrived/\">BuddyPress 1.0 was released</a>. On behalf of the core team and contributors, I’d like to extend a few special thanks: to founding developer <a href=\"http://apeatling.com/\">Andy Peatling</a> for getting the ball rolling; to <a href=\"http://ma.tt\">Matt Mullenweg</a> for providing support to the BuddyPress project; and especially to the many thousands of BuddyPress users who have followed and advocated for the project over the years. If BP has done great things for the thousands of communities that depend on it (and I think it has), it’s because of the incredible community around the software itself. <strike>A million</strike> Two million thanks to all of you.</p>\n<div></div>\n<h4>Upgrade Today</h4>\n<p>You can get BuddyPress 2.0 from the <a href=\"http://wordpress.org/plugins/buddypress/\">wordpress.org plugin repository</a>, or right from your WordPress Dashboard. </p>\n<p>As always, questions, comments, bug reports, feature requests, and general laudatory remarks can be directed toward our <a href=\"https://buddypress.org/support/\">support forums</a> or our <a href=\"https://buddypress.trac.wordpress.org\">development tracker</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, 16 Apr 2014 14:48: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: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: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:39:\"Akismet: Akismet 3.0.0 is 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:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"http://blog.akismet.com/?p=1294\";s: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:49:\"http://blog.akismet.com/2014/04/15/akismet-3-0-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:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1738:\"<p>Version 3.0.0 of the <a href=\"http://wordpress.org/plugins/akismet/\">Akismet plugin for WordPress</a> is now available.</p>\n<p>This is a <strong>major rewrite</strong> of the plugin code. It includes many small improvements and some new features. In particular:</p>\n<ul>\n<li>An easier signup and activation process</li>\n<li>An even easier activation process for <a href=\"http://jetpack.me/\">Jetpack</a> users</li>\n<li>A redesigned configuration tab</li>\n<li>New stats charts (example shown below)</li>\n<li>A new discard feature for outright blocking of the worst spam</li>\n</ul>\n<p><a href=\"http://akismet.files.wordpress.com/2014/04/stats-at-a-glance2.png\"><img src=\"http://akismet.files.wordpress.com/2014/04/stats-at-a-glance2.png?w=640&h=295\" alt=\"stats-at-a-glance\" width=\"640\" height=\"295\" class=\"alignnone size-large wp-image-1304\" /></a></p>\n<p>To update to version 3.0.0, just use the plugin updater in your WordPress dashboard. If you’re running WordPress 3.9, there’s no need to update. If you haven’t installed Akismet on your WordPress blog yet, <a href=\"http://docs.akismet.com/getting-started/activate/\">follow these instructions</a> to get started.</p>\n<p>Thanks again to everyone who helped <a href=\"http://blog.akismet.com/2014/04/11/help-test-the-next-akismet-plugin/\">test the new plugin</a> and offered suggestions and bug reports.</p><br /> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/akismet.wordpress.com/1294/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/akismet.wordpress.com/1294/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=blog.akismet.com&blog=116920&post=1294&subd=akismet&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:\"Tue, 15 Apr 2014 23:40: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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Alex\";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:55:\"Andrew Nacin: My Talk Proposals for Open Source Bridge\";s: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:24:\"http://nacin.com/?p=4228\";s: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:69:\"http://nacin.com/2014/04/15/my-talk-proposals-for-open-source-bridge/\";s: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:2106:\"<p>I submitted two proposals to <a href=\"http://opensourcebridge.org/\">Open Source Bridge</a>, an annual conference in Portland, Oregon, for “open source citizens.” The call for papers is now closed, but they let anyone leave comments on proposals that are private to the conference organizers. If you have any feedback on these, or have seen me speak before, it would be awesome if you could leave a comment. Here they are:</p>\n<h2><a href=\"http://opensourcebridge.org/proposals/1413\">Extreme Software Portability as an Art Form</a></h2>\n<p>Writing portable software is hard. Throw in thousands of bad and worse shared hosting configurations, a decade of technical debt, the need to cater to a sprawling ecosystem, and PHP — and you have WordPress. We’ve found breaking changes harm our community and unfairly punish our users, so we don’t make them. But that doesn’t mean we don’t innovate or evolve — we’re just forced to get really clever. And it works, with adoption continuing to soar.</p>\n<h2><a href=\"http://opensourcebridge.org/proposals/1419\">Trust, Community, and Automatic Updates</a></h2>\n<p>WordPress shipped in October what is perhaps its most polarizing feature ever — automatic updates in the background of self-hosted web software, on by default and no easy way to turn it off. In most open source communities, this would be cause for open revolt. Learn how through trust, communication, and a steadfast commitment to its philosophies, the WordPress core team convinced a skeptical community to go along, even if it meant users giving up some control.</p>\n<p>WordPress contributors Mel Choyce and Aaron Jorbin also both submitted proposals: <a href=\"http://opensourcebridge.org/proposals/1315\">My Journey into Open Source Design</a> and <a href=\"http://opensourcebridge.org/proposals/1312\">Modernizing a Stagnant Toolbox</a>.</p>\n<p class=\"share-sfc-stc\"><a href=\"http://twitter.com/share?url=http%3A%2F%2Fwp.me%2FpQEdq-16c&count=horizontal&related=nacin&text=My Talk Proposals for Open Source Bridge\" class=\"twitter-share-button\"></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, 15 Apr 2014 21:04: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: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:\"\";}}}}}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:69:\"WPTavern: Ozh’ Tweet Archiver 2.0 Backs Up Your Tweets 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:28:\"http://wptavern.com/?p=20985\";s: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:176:\"http://wptavern.com/ozh-tweet-archiver-2-0-backs-up-your-tweets-to-wordpress?utm_source=rss&utm_medium=rss&utm_campaign=ozh-tweet-archiver-2-0-backs-up-your-tweets-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:3526:\"<p><a href=\"http://wptavern.com/wp-content/uploads/2014/04/tweet-archiver.png\" rel=\"prettyphoto[20985]\"><img src=\"http://wptavern.com/wp-content/uploads/2014/04/tweet-archiver.png\" alt=\"tweet-archiver\" width=\"772\" height=\"250\" class=\"aligncenter size-full wp-image-21135\" /></a></p>\n<p>Social networks come and go but your blog lives forever. The advent of social media brought a revolution in how people communicate, but it has also chained us to data silos that house many of our important thoughts, writings and memories. That is, unless you have your own blog or website as your home for your content on the web.</p>\n<p>Instead of mindlessly pumping content into a social network that is owned by someone else, you might stop to consider archiving that data to a better place where you can keep it forever. In a time when digital transactions and communications are the lifeblood of our work, owning your own data has become more important than owning land.</p>\n<p><a href=\"http://wordpress.org/plugins/ozh-tweet-archiver/\" target=\"_blank\">Ozh Tweet Archiver</a> is one tool that makes owning your Twitter data a practical possibility. This free plugin automatically archives all of your tweets to your WordPress site. Browsing your tweet history is nearly impossible on Twitter, but with Ozh Tweet Archiver in place, you can easily search through your past tweets.</p>\n<p>Version 2.0 is compatible with Twitter’s OAuth API. The plugin should be installed on a fresh WordPress site or subdomain. Once in place, it offers the following benefits:</p>\n<ul>\n<li>Searching is easier in WordPress than on Twitter</li>\n<li>WordPress is not limited to the most recent 3200 tweets</li>\n<li>It will automatically expand all those ugly t.co links</li>\n<li>All your #hashtags can be converted to WordPress tags</li>\n</ul>\n<p>Check out a <a href=\"http://planetozh.com/tweets/\" target=\"_blank\">live demo</a> of <a href=\"http://twitter.com/ozh\" target=\"_blank\">@ozh Twitter account</a> archives.</p>\n<p>Once the plugin is set up, it will automatically perform checks for new tweets at your chosen interval, so you won’t need to do anything else.</p>\n<p><a href=\"http://wptavern.com/wp-content/uploads/2014/04/twitter-archive-settings.jpg\" rel=\"prettyphoto[20985]\"><img src=\"http://wptavern.com/wp-content/uploads/2014/04/twitter-archive-settings.jpg\" alt=\"twitter-archive-settings\" width=\"585\" height=\"454\" class=\"aligncenter size-full wp-image-21161\" /></a></p>\n<p>Tweets are imported as regular posts with a few custom fields. The plugin includes an options panel for setting the post author, category for tweets, and the ability to turn on links for usernames. It also has an option to link hashtags to WordPress tags or Twitter hashtags. You can even turn on embedding for images that originate on pic.twitter.com.</p>\n<p>Someday Twitter may lose all of its charms and fall to the wayside like many other networks before it. When that day comes, you’ll be glad that you archived all of your tweets to WordPress. If Twitter is one of your primary communication channels, consider the value of backing up your content to your home on the web with <a href=\"http://wordpress.org/plugins/ozh-tweet-archiver/\" target=\"_blank\">Ozh Tweet Archiver</a>. For more information on getting your archive set up, please refer to the <a href=\"http://planetozh.com/blog/my-projects/ozh-tweet-archiver-backup-twitter-with-wordpress/\" target=\"_blank\">official plugin page</a>, which includes documentation and troubleshooting tips.</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, 15 Apr 2014 20:36: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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";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:87:\"WordPress.tv: Noel Tock : Le design d’interface : la cas d’Happytables (en anglais)\";s: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:28:\"http://wordpress.tv/?p=34302\";s: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:93:\"http://wordpress.tv/2014/04/15/noel-tock-le-design-dinterface-la-cas-dhappytables-en-anglais/\";s: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:686:\"<div id=\"v-Fd96ypE1-1\" class=\"video-player\">\n</div><br /> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/34302/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/34302/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=34302&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2014/04/15/noel-tock-le-design-dinterface-la-cas-dhappytables-en-anglais/\"><img alt=\"12 – Noel Tock-Conf-WCParis2014.mp4\" src=\"http://videos.videopress.com/Fd96ypE1/video-9cccde5b3b_scruberthumbnail_0.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:\"Tue, 15 Apr 2014 18:02:52 +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:\"WordPress.tv\";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:89:\"WordPress.tv: Jean-Baptiste Marchand-Arvier : Utiliser WordPress pour son site e-commerce\";s: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:28:\"http://wordpress.tv/?p=34299\";s: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://wordpress.tv/2014/04/15/jean-baptiste-marchand-arvier-utiliser-wordpress-pour-son-site-e-commerce/\";s: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:712:\"<div id=\"v-LMP5sHnL-1\" class=\"video-player\">\n</div><br /> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/34299/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/34299/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=34299&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2014/04/15/jean-baptiste-marchand-arvier-utiliser-wordpress-pour-son-site-e-commerce/\"><img alt=\"11 – Jean-Baptiste Marchand-Arvier-Conf-WCParis2014.mp4\" src=\"http://videos.videopress.com/LMP5sHnL/video-7717d23a5e_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:\"Tue, 15 Apr 2014 17:09:40 +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:\"WordPress.tv\";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:43:\"Dev Blog: WordPress 3.9 Release Candidate 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=3151\";s: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/news/2014/04/wordpress-3-9-release-candidate-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:2327:\"<p>The second release candidate for WordPress 3.9 is now available for testing.</p>\n<p>If you haven’t tested 3.9 yet, you’re running out of time! We made about five dozen changes since the <a title=\"WordPress 3.9 Release Candidate\" href=\"http://wordpress.org/news/2014/04/wordpress-3-9-release-candidate/\">first release candidate</a>, and those changes are all helpfully summarized <a href=\"http://make.wordpress.org/core/?p=10237\">in our weekly post</a> on the development blog. Probably the biggest fixes are to live widget previews and the new theme browser, along with some extra TinyMCE compatibility and some RTL fixes.</p>\n<p><strong>Plugin authors:</strong> Could you test your plugins against 3.9, and if they’re compatible, make sure they are marked as tested up to 3.9? It only takes a few minutes and this really helps make launch easier. Be sure to follow along the core development blog; we’ve been posting <a href=\"http://make.wordpress.org/core/tag/3-9-dev-notes/\">notes for developers for 3.9</a>. (For example: <a href=\"http://make.wordpress.org/core/2014/04/15/html5-galleries-captions-in-wordpress-3-9/\">HTML5</a>, <a href=\"http://make.wordpress.org/core/2014/04/14/symlinked-plugins-in-wordpress-3-9/\">symlinks</a>, <a href=\"http://make.wordpress.org/core/2014/04/07/mysql-in-wordpress-3-9/\">MySQL</a>, <a href=\"http://make.wordpress.org/core/2014/04/11/plupload-2-x-in-wordpress-3-9/\">Plupload</a>.)</p>\n<p>To test WordPress 3.9 RC2, try the <a href=\"http://wordpress.org/extend/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin (you’ll want “bleeding edge nightlies”). Or you can <a href=\"http://wordpress.org/wordpress-3.9-RC2.zip\">download the release candidate here</a> (zip). If you’d like to learn more about what’s new in WordPress 3.9, visit the nearly complete About screen in your dashboard (<strong><img src=\"http://i0.wp.com/core.svn.wordpress.org/branches/3.6/wp-content/themes/twentyten/images/wordpress.png?w=692\" alt=\"\" width=\"16\" height=\"16\" /> → About</strong> in the toolbar) and also check out <a title=\"WordPress 3.9 Beta 1\" href=\"http://wordpress.org/news/2014/03/wordpress-3-9-beta-1/\">the Beta 1 post</a>.</p>\n<p><em>This is for testing,</em><br />\n<em>so not recommended for<br />\nproduction sites—yet.</em></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, 15 Apr 2014 09:47: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: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:\"\";}}}}}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:79:\"WPTavern: Cite: A WordPress Plugin to Help Readers Correctly Attribute Articles\";s: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:28:\"http://wptavern.com/?p=21094\";s: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:200:\"http://wptavern.com/cite-a-wordpress-plugin-to-help-readers-correctly-attribute-articles?utm_source=rss&utm_medium=rss&utm_campaign=cite-a-wordpress-plugin-to-help-readers-correctly-attribute-articles\";s: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:2214:\"<p><a href=\"http://wptavern.com/wp-content/uploads/2014/04/cite.jpg\" rel=\"prettyphoto[21094]\"><img src=\"http://wptavern.com/wp-content/uploads/2014/04/cite.jpg\" alt=\"cite\" width=\"772\" height=\"250\" class=\"aligncenter size-full wp-image-21098\" /></a></p>\n<p>WordPress sites that publish academic or scholarly articles often need to provide information to help readers know how to cite articles correctly. <a href=\"http://wordpress.org/plugins/cite/\" target=\"_blank\">Cite</a> is a new plugin that tackles this requirement using dynamic tags to generate the date, site name, post title and permalink.</p>\n<p>Post authors can easily post citation instructions by using the <strong>[cite]</strong> shortcode. It will automatically generate the article attribution information at the bottom of the post.</p>\n<p><a href=\"http://wptavern.com/wp-content/uploads/2014/04/cite-example.png\" rel=\"prettyphoto[21094]\"><img src=\"http://wptavern.com/wp-content/uploads/2014/04/cite-example.png\" alt=\"cite-example\" width=\"1661\" height=\"676\" class=\"aligncenter size-full wp-image-21101\" /></a></p>\n<p>The plugin includes a settings page where you can use any of the available template tags to create a citation template.</p>\n<p><a href=\"http://wptavern.com/wp-content/uploads/2014/04/cite-settings.jpg\" rel=\"prettyphoto[21094]\"><img src=\"http://wptavern.com/wp-content/uploads/2014/04/cite-settings.jpg\" alt=\"cite-settings\" width=\"915\" height=\"446\" class=\"aligncenter size-full wp-image-21100\" /></a></p>\n<p>The <a href=\"http://demo.enigmaweb.com.au/cite/\" target=\"_blank\">live demo</a> on the plugin author’s website shows how the citation template appears out-of-the-box. Its appearance can be further customized via CSS. The plugin is internationalized and ready for translation for use on academic sites in other languages.</p>\n<p>Cite is a free plugin created by <a href=\"http://profiles.wordpress.org/enigmaweb/\" target=\"_blank\">Maeve Lander</a>. It will save you time on every post where you would otherwise manually enter information to help readers cite your article. <a href=\"http://wordpress.org/plugins/cite/\" target=\"_blank\">Download Cite</a> from WordPress.org or install it via your site’s admin panel.</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, 15 Apr 2014 06:18:10 +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:13:\"Sarah Gooding\";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:57:\"WPTavern: WordPress 3.8.3 Released, Fixes Quick Draft Bug\";s: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:28:\"http://wptavern.com/?p=21043\";s: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:156:\"http://wptavern.com/wordpress-3-8-3-released-fixes-quick-draft-bug?utm_source=rss&utm_medium=rss&utm_campaign=wordpress-3-8-3-released-fixes-quick-draft-bug\";s: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:4177:\"<p>WordPress 3.8.3 <a title=\"http://wordpress.org/news/\" href=\"http://wordpress.org/news/\">was released today</a> and fixes a pesky bug introduced in WordPress 3.8.2. As <a title=\"http://wptavern.com/wordpress-3-8-3-to-fix-quick-draft-dashboard-widget\" href=\"http://wptavern.com/wordpress-3-8-3-to-fix-quick-draft-dashboard-widget\">we reported a few days ago</a>, one of the security fixes in 3.8.2 caused the Quick Draft dashboard widget to break. Auto-drafts created through the widget were not being promoted to draft status. When a title and content were added to the widget, clicking the save draft button gave the appearance that it was discarded. A Quick Drafted post didn’t show up within the drafts list even though it existed within the database.</p>\n<div id=\"attachment_21086\" class=\"wp-caption aligncenter\"><a href=\"http://wptavern.com/wp-content/uploads/2014/04/QuickDraftFixedFeaturedImage.png\" rel=\"prettyphoto[21043]\"><img class=\"size-full wp-image-21086\" alt=\"WordPress 3.8.3 Fixed The Quick Draft Dashboard Widget\" src=\"http://wptavern.com/wp-content/uploads/2014/04/QuickDraftFixedFeaturedImage.png\" width=\"666\" height=\"248\" /></a><p class=\"wp-caption-text\">WordPress 3.8.3 Fixed The Quick Draft Dashboard Widget</p></div>\n<p>According to the announcement post on the official WordPress developments blog, not only does the update fix the bug but it also attempts to retrieve the last created auto-draft.</p>\n<blockquote><p>It’s <em>possible</em> that the quick draft you lost last week is still in the database, and just hidden from view. As an added complication, these “discarded drafts” normally get deleted after seven days, and it’s already been six days since the release. If we were able to rescue your draft, you’ll see it on the “All Posts” screen after you update to 3.8.3.</p></blockquote>\n<p>The team also pushed out 3.8.3 as a background update so there’s a chance you may see a draft appear. WordPress 3.7.2 was affected by the bug as well. You can upgrade to 3.7.3 to fix the issue but you’re encouraged to upgrade to the latest version which is 3.8.3.</p>\n<h3>The Significance of WordPress 3.8.3</h3>\n<p>This release is significant for a few reasons. The first is that a security and maintenance release (3.8.2) broke core functionality. When <a title=\"http://wptavern.com/wordpress-automatic-updates-no-options-for-you\" href=\"http://wptavern.com/wordpress-automatic-updates-no-options-for-you\">we wrote about automatic updates</a> in WordPress not having an options panel to configure their behavior, I pointed out minor and security updates rarely break anything dealing with the core of WordPress.</p>\n<p>We now have an example of where a security update broke core functionality. Unfortunately, those that argue minor upgrades can break their site now have fuel for their argument. These types of mistakes happen and the core team has apologized.</p>\n<blockquote><p>We recognize how much trust you place in us to safeguard your content, and we take this responsibility very seriously. We’re sorry we let you down.</p></blockquote>\n<p>Second, the <a title=\"http://wordpress.org/about/philosophy/\" href=\"http://wordpress.org/about/philosophy/\">WordPress philosophy</a> doesn’t mention anything about preventing content from being lost. While we have post revisions, auto-saves, and auto-drafts, they weren’t enough to prevent some content from being lost. Whether using the Quick Draft dashboard widget is an <a title=\"http://www.poststat.us/wordpress-3-8-3-fixes-a-bug-with-quick-draft/\" href=\"http://www.poststat.us/wordpress-3-8-3-fixes-a-bug-with-quick-draft/\">edge case or not</a>, it’s reassuring to see the core team consider <strong>any loss of content</strong>, unacceptable.</p>\n<h3>Minor and Security Releases Can Break Things</h3>\n<p>Although there was a problem with 3.8.2 and using the Quick Draft widget, the team put together a fix and released it within a few days. Minor and security updates <strong>can</strong> break things but it happens far less frequently than the successful ones.</p>\n<p>On a brighter note, WordPress 3.9 is expected to ship later this week.</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, 15 Apr 2014 03:48: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:13:\"Jeff Chandler\";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:78:\"WPTavern: Why WordPress Theme Developers Are Moving Functionality Into Plugins\";s: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:28:\"http://wptavern.com/?p=20499\";s: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:200:\"http://wptavern.com/why-wordpress-theme-developers-are-moving-functionality-into-plugins?utm_source=rss&utm_medium=rss&utm_campaign=why-wordpress-theme-developers-are-moving-functionality-into-plugins\";s: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:11646:\"<p>Jonathan Atkinson has been selling WordPress themes on <a href=\"http://themeforest.net/user/jonathan01\" target=\"_blank\">Themeforest</a> for the past five years. Through hard work and customer support, he’s learned how to <a href=\"http://wptavern.com/wpweekly-episode-137-making-a-living-on-themeforest-with-jonathan-atkinson\" target=\"_blank\">make a living on Themeforest</a> without having to pack hundreds of options into his products.</p>\n<p><a href=\"http://wptavern.com/wp-content/uploads/2014/04/plugins.jpg\" rel=\"prettyphoto[20499]\"><img src=\"http://wptavern.com/wp-content/uploads/2014/04/plugins-300x236.jpg\" alt=\"plugins\" width=\"300\" height=\"236\" class=\"alignright size-medium wp-image-21026\" /></a>Over the past year, Atkinson and his team at <a href=\"http://cr3ativ.com/\" target=\"_blank\">Cr3ativ.com</a> have made an effort to convert all of their theme functionality into free plugins, eschewing the theme bloat that prevails in this market. Cr3ativ now has a <a href=\"http://cr3ativ.com/portfolio-category/plugins\" target=\"_blank\">plugins page</a> where you can find functionality that enables carousels, careers, portfolios, shortcodes, and staff profiles. They plan to add events, discography and photostreams in the coming weeks.</p>\n<h3>The Benefits of Keeping Plugin and Theme Functionality Separate</h3>\n<p>Atkinson said they initially created the plugins to be used with their themes and to better serve their buyers. “I took the decision to make them as generic as possible to ensure they could be just as easily used within any theme – free or premium,” he said. “I also decided to offer them 100% free and full GPL 2.0 so people can hopefully use, learn and extend if they wish.”</p>\n<p>Keeping plugin functionality separate from themes is part of WordPress theme development best practices but Atkinson cites a few additional benefits:</p>\n<ul>\n<li>Speeds up development of new themes</li>\n<li>Enables them to extend capabilities of existing themes</li>\n<li>Theme independence allows them to extend plugins without creating a massive and painful update to an existing theme</li>\n<li>Gives them more “breathing room” to concentrate on other possible outlets for their products, including other marketplaces, their own independent store and other avenues.</li>\n</ul>\n<p>Atkinson and his team are building new themes that support the use of their plugins and are also retrofitting the old themes to make use of them. The process hasn’t been easy, but they found help along the way.</p>\n<p>“We have never created a single plugin before embarking on these and had to lean on Pippin from <a href=\"http://PippinsPlugins.com\" target=\"_blank\">PippinsPlugins.com</a> for advice as we moved forward,” Atkinson said. Branching out into plugins was completely new territory but Pippin Williamson helped to review and test their free plugins. “We had some things to change and at the end of development we’re happy we traveled this road.”</p>\n<h3>The Demand for Bloat Keeps Theme Developers From Following Best Practices</h3>\n<p>Overall, keeping plugins and themes separate has provided a better experience for Atkinson’s user base and gives his team more freedom in what they create. If this practice is so beneficial to theme authors, then why aren’t we seeing a mad rush of others moving to do the same?</p>\n<p>The root of the problem is that consumers actually want themes that are packed full of options and functionality. The vast majority of Themeforest customers buy WordPress themes based on the demo. As WordPress has grown to power more than <a href=\"http://w3techs.com/technologies/overview/content_management/all\" target=\"_blank\">21% of the web</a>, theme developers are catering to people who, through no fault of their own, buy themes based solely on visual queues, not the code.</p>\n<p>Atkinson explains how the theme market has changed over time:</p>\n<blockquote><p>At the very beginning when Themeforest started I think that the buyers were different. The majority of buyers were developers. They may not have been full-on developers but they certainly knew how to roll their sleeves up and do a little bit of CSS. But now we’ve switched over to where the majority of buyers are actually the website owners…They know how to upload a theme; they know how to install every plugin on earth and that’s about it.</p></blockquote>\n<p>Consumers want themes that don’t require installing a bunch of plugins. They want to be able to simply click to customize everything. As a result, bloated WordPress themes sell far better than those that follow best practices. Most of the <a href=\"http://themeforest.net/popular_item/by_category?category=wordpress\" target=\"_blank\">top-selling WordPress themes on Themeforest</a> are products that are packed full of multiple sliders, dozens of homepage options, shortcodes, unlimited layouts, page builders, etc.</p>\n<p>Smashing Magazine has recently been <a href=\"https://twitter.com/smashingmag/status/453171965671395330\" target=\"_blank\">promoting</a> a WordPress theme that claims to be “the last WordPress theme you’ll ever have to buy.” The <a href=\"http://themeforest.net/item/x-the-ultimate-wordpress-theme/5871901\" target=\"_blank\">X theme</a>, created based on advice from internet marketers and SEO experts, promises “truly unlimited styling.” It is one among many themes that have been built to be all things for all projects.</p>\n<p><a href=\"http://wptavern.com/wp-content/uploads/2014/04/x-theme.png\" rel=\"prettyphoto[20499]\"><img src=\"http://wptavern.com/wp-content/uploads/2014/04/x-theme.png\" alt=\"x-theme\" width=\"590\" height=\"300\" class=\"aligncenter size-full wp-image-20875\" /></a></p>\n<p>The WordPress theme market is saturated with themes that promise to do it all and these products tend to sell very well among non-developers. Specificity of form and purpose has been replaced with generic skeletons boasting unlimited options.</p>\n<p><strong>Theme authors are then faced with a grave decision:</strong> Sell a couple hundred niche themes with clean code or build every possible option/functionality into your theme and sell 50,000 copies. For those who are trying to make a living, it’s difficult to compete. This is a complex problem that doesn’t have an easy solution.</p>\n<h3>Building Themes that Respect WordPress’ Plugin System</h3>\n<p>Atkinson and his team at <a href=\"http://cr3ativ.com/\" target=\"_blank\">Cr3ativ.com</a> are among a handful of theme authors who are taking a principled stand against building plugin functionality into WordPress themes. Those who have chosen this path stand out as beacons in a vast sea of bloated products.</p>\n<p>Justin Tadlock has long been a vocal proponent of keeping plugin functionality out of themes, especially as it relates to data portability. <strong>“That’s just been the way WordPress has worked since the inception of the plugin and theme systems,”</strong> he said. “It hadn’t crossed my mind to add certain functionality into a theme because that’s not how WordPress was designed. For some reason, a trend started toward adding plugin functionality into themes, which is when I started looking into the issue.”</p>\n<p>Tadlock’s <a href=\"http://themehybrid.com/\" target=\"_blank\">Theme Hybrid</a> framework comes with a suite of free <a href=\"http://themehybrid.com/plugins\" target=\"_blank\">plugins</a> that offer additional functionality. On occasion, he has made wrong choices and had to retrace his steps:</p>\n<blockquote><p>There are things that I’ve put into themes and later realized that it was not the right choice. I just go about correcting those mistakes one at a time. Sometimes, it takes a number of months and possibly years of making sure you’re not breaking things for users.</p></blockquote>\n<p>The trend of packing everything into themes was ignited by WordPress’ increasing popularity and the fierce competition among marketplace theme developers to provide the the most value. Unfortunately, consumers don’t care about best practices and re-educating them is not an easy task. It falls to WordPress theme developers and marketplace regulators to make the tough choice to keep themes clean and preserve data portability.</p>\n<h3>First Steps Toward Removing Plugin Functionality From Themes</h3>\n<div id=\"attachment_21080\" class=\"wp-caption aligncenter\"><a href=\"http://wptavern.com/wp-content/uploads/2014/04/salt-pepper.jpg\" rel=\"prettyphoto[20499]\"><img src=\"http://wptavern.com/wp-content/uploads/2014/04/salt-pepper.jpg\" alt=\"photo credit: Sheyla Ruiz - cc\" width=\"1022\" height=\"490\" class=\"size-full wp-image-21080\" /></a><p class=\"wp-caption-text\">photo credit: <a href=\"http://www.flickr.com/photos/sheylaruiz/6968369150/\">Sheyla Ruiz</a> – <a href=\"http://creativecommons.org/licenses/by-nd/2.0/\">cc</a></p></div>\n<p>If you’re a theme developer who is looking to remove functionality from your products and offer it in the form of accompanying plugins, you’ve got your work cut out for you. Tadlock’s advice: <strong>“Just do it. Make sure you offer your users a fairly easy transition, at least as easy as these types of transitions can be.”</strong></p>\n<p>Theme authors don’t necessarily need to suddenly add plugin development to their skills. Tadlock suggests that making use of existing plugins is a good option.</p>\n<blockquote><p>So many developers want to build everything in house when there’s a much better solution out there already. I’m even guilty of this at times. Of course, the infrastructure is not there on WordPress.org to make it easy for developers to work together. That’s why so many of us have turned to GitHub.</p></blockquote>\n<p>Tadlock reports that he’s seen a considerable jump in other developers using his plugins in their projects after moving his code to Github. Making use of others’ work and collaborating on improvements is less daunting than having to develop all the accompanying plugins yourself.</p>\n<h3>Tips for Consumers Buying WordPress Themes</h3>\n<p>Since consumers inspecting commercial themes do not have access to the code, it’s not easy to know if a product is built with best practices in mind. The demo and list of features are often the deciding factors, especially for those who have no technical knowledge of WordPress themes. If you don’t want to have your data locked into a theme, you need to be on guard to select products that utilize plugins that will preserve your data.</p>\n<p>When it comes to theme options, the cold, hard truth is that not everyone is a designer. There is no ultimate visual layout builder or unlimited color chooser that will magically make you into a designer. If this is something you can recognize about yourself, then you may want to steer away from themes that offer massive options panels with unlimited everything. Instead, opt for design-specific themes that follow best practices and offer a few options using WordPress’ native customizer.</p>\n<p>Eventually, marketplaces may enforce more strict submission guidelines for their themes, based on community input. Theme developers who have sunk into a hole with their heavy, bloated products, will have to dig their way out or get pushed out. WordPress developers who want to be successful long-term will need to return to WordPress’ original design and keep plugin functionality separate from themes.</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, 14 Apr 2014 21:58:40 +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:13:\"Sarah Gooding\";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:45:\"Dev Blog: WordPress 3.8.3 Maintenance Release\";s: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=3145\";s: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/2014/04/wordpress-3-8-3/\";s: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:2338:\"<p>WordPress 3.8.3 is now available to fix a small but unfortunate bug in the <a title=\"WordPress 3.8.2 Security Release\" href=\"http://wordpress.org/news/2014/04/wordpress-3-8-2/\">WordPress 3.8.2 security release</a>.</p>\n<p>The “Quick Draft” tool on the dashboard screen was broken in the 3.8.2 update. If you tried to use it, your draft would disappear and it wouldn’t save. While we doubt anyone was writing a novella using this tool, <em>any</em> loss of content is unacceptable to us.</p>\n<p>We recognize how much trust you place in us to safeguard your content, and we take this responsibility very seriously. We’re sorry we let you down.</p>\n<p>We’ve all lost words we’ve written before, like an email thanks to a cat on the keyboard or a term paper to a blue screen of death. Over the last few WordPress releases, we’ve made a number of improvements to features like autosaves and revisions. With revisions, an old edit can always be restored. We’re trying our hardest to save your content somewhere even if your power goes out or your browser crashes. We even monitor your internet connection and prevent you from hitting that “Publish” button at the exact moment the coffee shop Wi-Fi has a hiccup.</p>\n<p>It’s <em>possible</em> that the quick draft you lost last week is still in the database, and just hidden from view. As an added complication, these “discarded drafts” normally get deleted after seven days, and it’s already been six days since the release. If we were able to rescue your draft, you’ll see it on the “All Posts” screen after you update to 3.8.3. (We’ll also be pushing 3.8.3 out as a background update, so you may just see a draft appear.)</p>\n<p>So, if you tried to jot down a quick idea last week, I hope WordPress has recovered it for you. Maybe it’ll turn into that novella.</p>\n<p><a href=\"http://wordpress.org/download/\">Download WordPress 3.8.3</a> or click “Update Now” on Dashboard → Updates.</p>\n<p><em>This affected version 3.7.2 as well, so we’re pushing a 3.7.3 to these installs, but we’d encourage you to update to the latest and greatest.</em></p>\n<hr />\n<p><em>Now for some good news:<br />\nWordPress 3.9 is near.<br />\nExpect it this week</em></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, 14 Apr 2014 19:29: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: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:\"\";}}}}}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:76:\"WPTavern: WordPress Social Avatar Plugin Provides an Alternative to Gravatar\";s: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:28:\"http://wptavern.com/?p=20440\";s: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:196:\"http://wptavern.com/wordpress-social-avatar-plugin-provides-an-alternative-to-gravatar?utm_source=rss&utm_medium=rss&utm_campaign=wordpress-social-avatar-plugin-provides-an-alternative-to-gravatar\";s: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:2196:\"<p>Despite the fact that <a href=\"http://gravatar.com/\" target=\"_blank\">Gravatar</a> is the default avatar service built into WordPress, it’s not everyone’s cup of tea. There are times when you may want to use a different avatar on a specific site but don’t want to change your Gravatar image. In some instances WordPress site admins choose to disable the service for whatever reason, but there is a way to give users more avatar options without turning Gravatar off.</p>\n<p><a href=\"http://wordpress.org/plugins/wp-social-avatar/\" target=\"_blank\">WP Social Avatar</a> is a new plugin that makes it easy to use your Facebook or G+ picture as your WordPress avatar. Once activated, users can add their Facebook handles or G+ IDs to <strong>/wp-admin/profile.php</strong>.</p>\n<p><a href=\"http://wptavern.com/wp-content/uploads/2014/04/socialavatar.png\" rel=\"prettyphoto[20440]\"><img src=\"http://wptavern.com/wp-content/uploads/2014/04/socialavatar.png\" alt=\"socialavatar\" width=\"1372\" height=\"792\" class=\"aligncenter size-full wp-image-20990\" /></a></p>\n<p>Your avatar will be instantly updated to the new selection throughout the site.</p>\n<p><a href=\"http://wptavern.com/wp-content/uploads/2014/04/wpsocialavatar.png\" rel=\"prettyphoto[20440]\"><img src=\"http://wptavern.com/wp-content/uploads/2014/04/wpsocialavatar.png\" alt=\"wpsocialavatar\" width=\"1271\" height=\"493\" class=\"aligncenter size-full wp-image-20992\" /></a></p>\n<p>WP Social Avatar includes a settings panel under the Users menu that allows administrators to set the minimum role/capabilities required to use social avatars.</p>\n<p>The plugin does not require Facebook or G+ authentication in order to set your avatar, so it’s just as convenient to use as Gravatar. It also does not disable Gravatar for users who prefer it. <a href=\"http://wptavern.com/marutimohanty.wordpress.com\" target=\"_blank\">Maruti Mohanty</a>, the plugin’s developer, plans to add more social avatars in the future. If you want to add a few convenient avatar options to WordPress profiles on your site, download <a href=\"http://wordpress.org/plugins/wp-social-avatar/\" target=\"_blank\">WP Social Avatar</a> from WordPress.org.</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, 14 Apr 2014 05:32:29 +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:13:\"Sarah Gooding\";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:44:\"BuddyPress: BuddyPress 2.0 Release Candidate\";s: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://buddypress.org/?p=181203\";s: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://buddypress.org/2014/04/buddypress-2-0-release-candidate/\";s: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:1019:\"<p>The first release candidate (RC1) for BuddyPress 2.0 is now available (<a href=\"http://downloads.wordpress.org/plugin/buddypress.2.0-RC1.zip\">zip</a>). Since <a href=\"https://buddypress.org/2014/04/buddypress-2-0-beta2/\">the last beta</a>, we have made about 10 small changes; see <a href=\"https://buddypress.trac.wordpress.org/timeline?from=04%2F13%2F14&daysback=5&authors=&changeset=on&sfp_email=&sfph_mail=&update=Update\">the changelog</a> for details.</p>\n<p>At this time, BP 2.0 is in a string freeze – we won’t be changing any more text between now and the final release. If you are helping to maintain <a href=\"http://translate.wordpress.org/projects/buddypress\">a BuddyPress translation</a>, this is your chance to make final revisions before 2.0 comes out. (We’re still looking good for April 16.)</p>\n<p>Questions, comments, concerns, bugs, praise? Visit <a href=\"https://buddypress.org/support/\">the support forums</a> or <a href=\"https://buddypress.trac.wordpress.org/\">BP Trac</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:\"Sun, 13 Apr 2014 20:15: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: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: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:62:\"WordPress.tv: Sarah Wefald: Twitter Integration With 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:28:\"http://wordpress.tv/?p=34148\";s: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.tv/2014/04/12/sarah-wefald-twitter-integration-with-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:679:\"<div id=\"v-s22WSUNH-1\" class=\"video-player\">\n</div><br /> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/34148/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/34148/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=34148&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2014/04/12/sarah-wefald-twitter-integration-with-wordpress/\"><img alt=\"Sarah Wefald: Twitter Integration With WordPress\" src=\"http://videos.videopress.com/s22WSUNH/video-05a42d3046_scruberthumbnail_0.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, 12 Apr 2014 12:06: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:12:\"WordPress.tv\";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:60:\"WPTavern: WPWeekly Episode 145 – An OMGBBQWTF Kind Of Week\";s: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:44:\"http://wptavern.com?p=20940&preview_id=20940\";s: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:156:\"http://wptavern.com/wpweekly-episode-145-an-omgbbqwtf-kind-of-week?utm_source=rss&utm_medium=rss&utm_campaign=wpweekly-episode-145-an-omgbbqwtf-kind-of-week\";s: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:4879:\"<p><a title=\"http://marcuscouch.com/\" href=\"http://marcuscouch.com/\">Marcus Couch</a> and I were joined by <a title=\"http://eamann.com/\" href=\"http://eamann.com/\">Eric Mann</a> to discuss the news of the week. After the news, we discussed in-depth a few of the core proposals Mann has published on his blog. We covered the following three WordPress core proposals:</p>\n<ul>\n<li><a title=\"http://eamann.com/tech/data-service/\" href=\"http://eamann.com/tech/data-service/\">Data Service</a></li>\n<li><a title=\"http://eamann.com/tech/wordpress-portability/\" href=\"http://eamann.com/tech/wordpress-portability/\">Portability</a></li>\n<li><a title=\"http://eamann.com/tech/offline-editor/\" href=\"http://eamann.com/tech/offline-editor/\">Offline Editor</a></li>\n</ul>\n<p>After speaking with Mann, it’s clear he puts a lot of thought into each proposal. I hope you enjoy the show and don’t forget to give us your feedback in the comments.</p>\n<h2>Stories Discussed:</h2>\n<p><a title=\"http://wptavern.com/breaking-jetpack-releases-critical-security-update-immediate-action-required\" href=\"http://wptavern.com/breaking-jetpack-releases-critical-security-update-immediate-action-required\">Breaking: Jetpack Releases Critical Security Update, Immediate Action Required</a><br />\n<a title=\"http://wptavern.com/wordpress-3-8-2-first-security-release-shipped-as-a-background-update\" href=\"http://wptavern.com/wordpress-3-8-2-first-security-release-shipped-as-a-background-update\">WordPress 3.8.2: First Security Release Shipped as a Background Update</a><br />\n<a title=\"http://wptavern.com/recent-update-to-wordfence-security-breaks-wordpress-mobile-apps\" href=\"http://wptavern.com/recent-update-to-wordfence-security-breaks-wordpress-mobile-apps\">Recent Update To Wordfence Security Breaks WordPress Mobile Apps</a><br />\n<a title=\"http://wptavern.com/devpress-sold-to-unknown-buyer-for-14k\" href=\"http://wptavern.com/devpress-sold-to-unknown-buyer-for-14k\">DevPress Sold To Unknown Buyer For $14k</a><br />\n<a title=\"http://www.poststat.us/devin-price-new-owner-devpress/\" href=\"http://www.poststat.us/devin-price-new-owner-devpress/\">Devin Price is the new owner of DevPress</a><br />\n<a title=\"http://wptavern.com/wordpress-org-profile-redesign-is-live\" href=\"http://wptavern.com/wordpress-org-profile-redesign-is-live\">WordPress.org Profile Redesign is Live</a></p>\n<h2>Plugins Picked By Marcus:</h2>\n<p><a title=\"http://wordpress.org/plugins/webkite/\" href=\"http://wordpress.org/plugins/webkite/\">Webkite for WordPress</a> – WebKite is a service for getting your data online quickly and easily. Backed by the WebKite API, the WebKite for WordPress plugin delivers the filtering and sorting capabilities of sites like Kayak, Amazon, and Yelp. Users can interact with your content to easily find items that are relevant to their needs, a great way to build rapport and trust with your user base.</p>\n<p><a title=\"http://wordpress.org/plugins/alti-watermark/\" href=\"http://wordpress.org/plugins/alti-watermark/\">Watermark</a> – This plugin allows you to add a watermark on images uploaded to the media library. It applies a watermark on new images as well as images already uploaded.</p>\n<p><a href=\"http://wordpress.org/plugins/forget-about-shortcode-buttons/\" title=\"http://wordpress.org/plugins/forget-about-shortcode-buttons/\">Forget About Shortcode Buttons</a> – Forget About Shortcode (FASC) Buttons are a visual way to add CSS buttons in the post editor screen and to your themes.</p>\n<p><a title=\"http://wordpress.org/plugins/twentytwenty/\" href=\"http://wordpress.org/plugins/twentytwenty/\">TwentyTwenty</a> – Show before and after pictures in your blog, with an interactive slider that allows users to compare them.</p>\n<p><a title=\"http://wordpress.org/plugins/bp-group-documents/\" href=\"http://wordpress.org/plugins/bp-group-documents/\">BP Group Documents</a> – BP Group Documents creates a page within each BuddyPress group to upload and any type of file or document. This allows members of BuddyPress groups to upload and store files and documents that are relevant to the group.</p>\n<h2>WPWeekly Meta:</h2>\n<p><strong>Next Episode:</strong> Friday, April 18th 3 P.M. Eastern – Special Guest: <a href=\"http://nacin.com/\" title=\"http://nacin.com/\">Andrew Nacin</a></p>\n<p><strong>Subscribe To WPWeekly Via Itunes: </strong><a href=\"https://itunes.apple.com/us/podcast/wordpress-weekly/id694849738\" target=\"_blank\">Click here to subscribe</a></p>\n<p><strong>Subscribe To WPWeekly Via RSS: </strong><a href=\"http://www.wptavern.com/feed/podcast\" target=\"_blank\">Click here to subscribe</a></p>\n<p><strong>Subscribe To WPWeekly Via Stitcher Radio: </strong><a href=\"http://www.stitcher.com/podcast/wordpress-weekly-podcast?refid=stpr\" target=\"_blank\">Click here to subscribe</a></p>\n<p><strong>Listen To Episode #145:</strong><br />\n</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:\"Sat, 12 Apr 2014 04:22: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:13:\"Jeff Chandler\";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:62:\"WPTavern: WordPress Plugin CoSchedule Secures $500K In Funding\";s: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:28:\"http://wptavern.com/?p=20935\";s: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:166:\"http://wptavern.com/wordpress-plugin-coschedule-secures-500k-in-funding?utm_source=rss&utm_medium=rss&utm_campaign=wordpress-plugin-coschedule-secures-500k-in-funding\";s: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:2278:\"<p><a title=\"http://wordpress.org/plugins/coschedule-by-todaymade/\" href=\"http://wordpress.org/plugins/coschedule-by-todaymade/\">CoSchedule</a>, the editorial workflow and activity scheduling plugin, has <a title=\"http://coschedule.com/blog/coschedule-series-a-funding/\" href=\"http://coschedule.com/blog/coschedule-series-a-funding/\">secured $500K</a> in a Series A round of funding. The angel investment was led by Sandin Holdings and Bullinger Enterprises of Fargo, North Dakota. Matching funds were provided by the North Dakota Development Fund. Joe Sandin of Sandin Holdings will join CoSchedule’s Board of Directors, providing strategic guidance and business advice.</p>\n<p>When I <a title=\"http://wptavern.com/coschedule-a-viable-alternative-to-the-edit-flow-wordpress-plugin\" href=\"http://wptavern.com/coschedule-a-viable-alternative-to-the-edit-flow-wordpress-plugin\">reviewed the plugin</a> last year, I considered it to be a viable alternative to <a title=\"http://wordpress.org/plugins/edit-flow/\" href=\"http://wordpress.org/plugins/edit-flow/\">Edit Flow</a>. CoSchedule will use the money to hire more employees, increase their marketing budget, and increase the speed of development so new features reach users faster.</p>\n<p><span class=\"embed-youtube\"></span></p>\n<p>Moon says the company has experienced rapid growth since launching in September of 2013. Since the launch, the plugin has over 6,000 downloads with users in more than 100 countries and paying customers in 35 countries. I asked Moon, what advice does he have for those looking to obtain a round of funding to take their business or service to the next level? He replied:</p>\n<blockquote><p>I think a lot of developers hesitate to look for funding for their work because the process is overwhelming and unfamiliar to them. I will definitely admit that it is a ton of work, but it can be hugely valuable. Not only can you get the financing you need to move to the next level, but it really forces you to look at your product in a new way and challenge every assumption that you’ve made. Investors ask hard questions, and that can be a really good thing.</p></blockquote>\n<p>Do you use CoSchedule? If so, what do you think of its editorial workflow and how it handles multiple authors?</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:\"Fri, 11 Apr 2014 21:27: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:13:\"Jeff Chandler\";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:74:\"WPTavern: Major Milestone For BuddyPress: 2 Million Downloads and Counting\";s: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:28:\"http://wptavern.com/?p=20944\";s: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:190:\"http://wptavern.com/major-milestone-for-buddypress-2-million-downloads-and-counting?utm_source=rss&utm_medium=rss&utm_campaign=major-milestone-for-buddypress-2-million-downloads-and-counting\";s: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:1599:\"<p><a href=\"http://wptavern.com/wp-content/uploads/2014/04/balloons.jpg\" rel=\"prettyphoto[20944]\"><img src=\"http://wptavern.com/wp-content/uploads/2014/04/balloons.jpg\" alt=\"balloons\" width=\"1016\" height=\"466\" class=\"aligncenter size-full wp-image-20946\" /></a></p>\n<p><a href=\"http://buddypress.org/\">BuddyPress</a> reached a major milestone today, crossing the two million download mark just a week ahead of the official 2.0 release. The plugin, known as “a social network in a box,” now has more than 500 related <a href=\"http://buddypress.org/extend/plugins/\" target=\"_blank\">community extensions</a>.</p>\n<p>Over the past 7 years, BuddyPress has developed a strong international community of users and contributors. Roughly <a href=\"http://wptavern.com/7-surprising-results-from-the-2013-buddypress-codex-survey\">50% of BuddyPress sites are in English</a>, with the other half comprised of social networks in Spanish, Italian, French, German, Dutch, Swedish, Portugese, Chinese, and many other languages.</p>\n<p>The upcoming version 2.0 of the plugin adds a host of new features that help administrators manage their communities more efficiently in the dashboard. It also introduces some remarkable performance improvements that <a href=\"http://wptavern.com/buddypress-2-0-ramps-up-performance-reduces-footprint-by-up-to-75\" target=\"_blank\">reduce the plugin’s footprint by up to 75%</a> in many places. Help celebrate BuddyPress crossing the two million download mark by testing <a href=\"http://buddypress.org/2014/04/buddypress-2-0-beta2/\" target=\"_blank\">2.0-beta2</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:\"Fri, 11 Apr 2014 20:10: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:13:\"Sarah Gooding\";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:71:\"WPTavern: Next Version Of WordPress To Fix Quick Draft Dashboard 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:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wptavern.com/?p=20773\";s: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:166:\"http://wptavern.com/wordpress-3-8-3-to-fix-quick-draft-dashboard-widget?utm_source=rss&utm_medium=rss&utm_campaign=wordpress-3-8-3-to-fix-quick-draft-dashboard-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:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2316:\"<p>If you’ve noticed after <a title=\"http://wptavern.com/wordpress-3-8-2-first-security-release-shipped-as-a-background-update\" href=\"http://wptavern.com/wordpress-3-8-2-first-security-release-shipped-as-a-background-update\">upgrading to WordPress 3.8.2</a> that the <a title=\"http://codex.wordpress.org/Dashboard_Screen#QuickDraft\" href=\"http://codex.wordpress.org/Dashboard_Screen#QuickDraft\">Quick Draft</a> dashboard widget no longer functions correctly, <a title=\"https://wordpress.org/support/topic/quick-draft-doesnt-save-the-posts-all-lost?replies=11\" href=\"https://wordpress.org/support/topic/quick-draft-doesnt-save-the-posts-all-lost?replies=11\">you’re not the only one</a>. Unfortunately, one of the security fixes in 3.8.2 caused the widget to break. Auto-drafts created through the widget are not being promoted to draft status. When a title and content is added to the widget, clicking the save draft button gives the appearance that its discarded. It doesn’t show up within the drafts list even though it exist within the database.</p>\n<p>The <a title=\"https://core.trac.wordpress.org/ticket/27734\" href=\"https://core.trac.wordpress.org/ticket/27734\">patch attempts</a> to do two things.</p>\n<ul>\n<li>Find all lost Quick Draft auto-drafts and promote them to proper drafts.</li>\n<li>Bring them back in place, with no date changes or other processing.</li>\n</ul>\n<p>Andrew Nacin, lead developer for WordPress, explains why every auto-draft created won’t be able to be retrieved.</p>\n<blockquote><p>Unfortunately, each save of Quick Draft by the same user would update the existing auto-draft they previously lost. If they used Quick Draft in succession, or tried again when they couldn’t find their post — both of which are not unlikely — we can only rescue their last edit.</p></blockquote>\n<p>Quick drafts only hold onto a single auto-draft post ID per user and will re-use it as long as it remains an auto-draft. This is due to performance reasons so new auto-drafts are not created each time the dashboard is visited. Once upgraded, you should see the latest draft created through Quick Draft with the date and time of creation kept in tact.</p>\n<p>If WordPress 3.8.3 is released, it may be available as soon as this weekend but nothing has been set in stone.</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:\"Fri, 11 Apr 2014 18:31: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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";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:59:\"WPTavern: Help Test Akismet 3.0, Win Exclusive Akismet Swag\";s: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:28:\"http://wptavern.com/?p=20888\";s: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:160:\"http://wptavern.com/help-test-akismet-3-0-win-exclusive-akismet-swag?utm_source=rss&utm_medium=rss&utm_campaign=help-test-akismet-3-0-win-exclusive-akismet-swag\";s: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:2438:\"<p>Akismet 3.0 is currently in development and the official release will likely coincide with WordPress 3.9 on April 16th. The <a href=\"http://blog.akismet.com/2014/04/11/help-test-the-next-akismet-plugin/\" target=\"_blank\">upcoming 3.0 release</a> represents a major rewrite of the plugin and the Akismet team is inviting everyone to help test the release candidate. This version will introduce a few new features and will remove much of the legacy code that was included for backwards compatibility with older versions of WordPress.</p>\n<p>Akismet 3.0 has a more straightforward configuration page that funnels users to the correct action:</p>\n<p><a href=\"http://wptavern.com/wp-content/uploads/2014/04/new-akismet.png\" rel=\"prettyphoto[20888]\"><img src=\"http://wptavern.com/wp-content/uploads/2014/04/new-akismet.png\" alt=\"new-akismet\" width=\"1414\" height=\"1110\" class=\"aligncenter size-full wp-image-20912\" /></a></p>\n<p>One critical item that seems to be missing here is direction on where to find your API key if you already have one. Though it may be obvious to some that you need to log into Akismet, go to Account Overview, and click “reveal key,” this process is not as intuitive as it might seem. Hopefully something can be added to help make this clear. The team has confirmed that this is on their list.</p>\n<p>Akismet 3.0 inclues a new feature that allows you to define how strict it is in discarding spam. It also adds the ability to easily disconnect your account.</p>\n<p><a href=\"http://wptavern.com/wp-content/uploads/2014/04/aksismet-settings.png\" rel=\"prettyphoto[20888]\"><img src=\"http://wptavern.com/wp-content/uploads/2014/04/aksismet-settings.png\" alt=\"aksismet-settings\" width=\"1394\" height=\"880\" class=\"aligncenter size-full wp-image-20918\" /></a></p>\n<p>The service has zapped more than 130 billion spam comments and track backs to date. Millions of WordPress users depend on Akismet every day to help keep their blogs clear of spam. If you can spare a few minutes to help test the 3.0 release candidate, the Akismet team promises some exclusive swag for those who submit the most helpful bug reports and feedback. Even better than that is the opportunity to help improve Akismet for WordPress users across the globe. Check out the <a href=\"http://blog.akismet.com/2014/04/11/help-test-the-next-akismet-plugin/\" target=\"_blank\">announcement post</a> for more details and the latest download link.</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:\"Fri, 11 Apr 2014 07:37: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:13:\"Sarah Gooding\";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:77:\"WPTavern: New Plugin Adds BuddyPress Activity as a Wire/Wall to User Profiles\";s: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:28:\"http://wptavern.com/?p=20879\";s: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:196:\"http://wptavern.com/new-plugin-adds-buddypress-activity-as-a-wirewall-to-user-profiles?utm_source=rss&utm_medium=rss&utm_campaign=new-plugin-adds-buddypress-activity-as-a-wirewall-to-user-profiles\";s: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:3121:\"<p><a href=\"http://wptavern.com/wp-content/uploads/2014/04/buddypress-wall.jpg\" rel=\"prettyphoto[20879]\"><img src=\"http://wptavern.com/wp-content/uploads/2014/04/buddypress-wall.jpg\" alt=\"buddypress-wall\" width=\"1018\" height=\"458\" class=\"aligncenter size-full wp-image-20901\" /></a></p>\n<p>For the past four years, BuddyPress developer Brajesh Singh has maintained a <a href=\"http://buddydev.com/buddypress/using-activity-as-wire-in-buddypress-1-2-themes/\" target=\"_blank\">popular tutorial</a> for allowing BuddyPress activity as a wire. This was the default behavior for activity during the early 1.x era of BuddyPress, which allowed users to “write on each other’s walls” without having to use @mentions.</p>\n<p>Singh’s <a href=\"http://buddydev.com/buddypress/buddypress-activity-wire-updated-buddypress-1-8-buddypress-1-9/\" target=\"_blank\">updated tutorial</a> shows you how to set up wire/wall functionality without having to edit any theme code, as was required in previous tutorials. He’s packaged it up and put it into a convenient <a href=\"http://buddydev.com/plugins/bp-activity-as-wire/\" target=\"_blank\">plugin</a> that emulates a user wall/wire by performing the following:</p>\n<ul>\n<li>Shows the activity post form on other user’s profile</li>\n<li>Filters the text that says “What’s new {username}” to say “Write something to {displayed_user_name}”</li>\n<li>Removes the BuddyPress function that handles the post update action and hooks a custom function that allows saving the activity posted from user profiles as a mention.</li>\n</ul>\n<p>The result is very similar to the wall/wire feature originally included in BuddyPress:</p>\n<p><a href=\"http://wptavern.com/wp-content/uploads/2014/04/buddypress-wire-wall.png\" rel=\"prettyphoto[20879]\"><img src=\"http://wptavern.com/wp-content/uploads/2014/04/buddypress-wire-wall.png\" alt=\"buddypress-wire-wall\" width=\"1300\" height=\"627\" class=\"aligncenter size-full wp-image-20884\" /></a></p>\n<p>Posts on user wires/walls will show up in the activity stream as having originated on a user’s wall, differentiating it from regular activity @mentions.</p>\n<p><a href=\"http://wptavern.com/wp-content/uploads/2014/04/wallpost.png\" rel=\"prettyphoto[20879]\"><img src=\"http://wptavern.com/wp-content/uploads/2014/04/wallpost.png\" alt=\"wallpost\" width=\"1168\" height=\"358\" class=\"aligncenter size-full wp-image-20894\" /></a></p>\n<p>Inevitably, BuddyPress developers will have clients asking them to make their social networks more like Facebook. Some users are more comfortable using the wire/wall style of interaction, as it is the default behavior on Facebook and mirrors the way activity worked in the early days of BuddyPress. This plugin will restore that feature to BuddyPress so that users don’t have to bother with @mentions.</p>\n<p>BuddyPress Activity as a Wire is compatible with BuddyPress 1.9.2+ but will require a minor update to take advantage of the activity performance improvements in 2.0. <a href=\"http://buddydev.com/plugins/bp-activity-as-wire/\" target=\"_blank\">Download it</a> for free from BuddyDEV.</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:\"Fri, 11 Apr 2014 06:40: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:13:\"Sarah Gooding\";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:42:\"Akismet: Help test the next Akismet 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:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"http://blog.akismet.com/?p=1288\";s: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:69:\"http://blog.akismet.com/2014/04/11/help-test-the-next-akismet-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:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1964:\"<p>We’ve been hard at work on version 3.0 of the Akismet plugin for WordPress. It’s a major rewrite of the plugin code that includes a new configuration page, improved signup and activation, and some new features. We’ve shed most of the legacy code that was maintained for backwards compatibility with ancient versions of WordPress, and redesigned the code so we can bring you new features in coming months.</p>\n<p>Since it’s a major change from previous versions, we could use your help testing the new plugin before its final release. If you’re comfortable manually installing a plugin in WordPress, you can download <a href=\"http://downloads.wordpress.org/plugin/akismet.3.0.0-RC1.zip\">akismet.3.0.0-RC1.zip</a> or use the <a href=\"http://plugins.svn.wordpress.org/akismet/tags/3.0.0-RC1\">3.0.0-RC1 tag</a> in the Subversion repository.</p>\n<p>Try it out and tell us what you think – we have some <strong>exclusive Akismet swag</strong> for those who send bug reports and the most helpful feedback. Bug reports and detailed feedback is best sent via <a href=\"http://akismet.com/contact/\">our contact form</a>. You can leave general public feedback in comments below or <a href=\"https://twitter.com/akismet/\">on Twitter</a>.</p>\n<p>If you’re not sure how to install the plugin manually, or you’re not willing to run pre-release code on your site, we recommend waiting for the final release, which we expect to coincide with next week’s launch of <a href=\"http://wordpress.org/news/2014/04/wordpress-3-9-release-candidate/\">WordPress 3.9</a>.</p><br /> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/akismet.wordpress.com/1288/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/akismet.wordpress.com/1288/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=blog.akismet.com&blog=116920&post=1288&subd=akismet&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:\"Fri, 11 Apr 2014 04:30:52 +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:\"Alex\";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:33:\"WPTavern: Embed 2048 in 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:28:\"http://wptavern.com/?p=20706\";s: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:114:\"http://wptavern.com/embed-2048-in-wordpress-2?utm_source=rss&utm_medium=rss&utm_campaign=embed-2048-in-wordpress-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:2010:\"<p><a href=\"http://wptavern.com/wp-content/uploads/2014/04/embed-2048.png\" rel=\"prettyphoto[20706]\"><img src=\"http://wptavern.com/wp-content/uploads/2014/04/embed-2048-357x500.png\" alt=\"embed-2048\" width=\"357\" height=\"500\" class=\"alignright size-large wp-image-20859\" /></a>In the aftermath of the <a href=\"http://heartbleed.com/\" target=\"_blank\">Heartbleed</a> bug and a week filled with <a href=\"http://wptavern.com/breaking-jetpack-releases-critical-security-update-immediate-action-required\" target=\"_blank\">critical security updates</a>, it’s time for some good news. The wildly popular and hopelessly addictive 2048 game can now be embedded in WordPress.</p>\n<p>The <a href=\"http://wordpress.org/plugins/2048-number-game/\" target=\"_blank\">2048 WordPress plugin</a> is based on the open source game created by <a href=\"http://gabrielecirulli.github.io/2048/\" target=\"_blank\">Gabriele Cirulli</a>. The game has been cloned many times into mobile apps as well as <a href=\"http://allthe2048.com/\" target=\"_blank\">bewildering variations</a> that feature the likes of <a href=\"http://doge2048.com/\" target=\"_blank\">Doge</a> and <a href=\"http://hczhcz.github.io/Flappy-2048/\" target=\"_blank\">Flappy</a> <a href=\"http://chenglou.github.io/flappy-2048-side-by-side/\" target=\"_blank\">Bird</a>.</p>\n<p>Embedding 2048 in WordPress is as easy as adding the <strong>[2048]</strong> shortcode to any page or post. The objective of the game is to achieve the 2048 tile by using your arrow keys to merge tiles of the same number.</p>\n<p>If you want to help your website visitors waste hours of their lives, install the <a href=\"http://wordpress.org/plugins/2048-number-game/\" target=\"_blank\">2048 plugin</a> from the WordPress Plugin Directory and embed it on your site. By now many of your friends and colleagues have already beaten the game and will undoubtedly provide you with strategic tips. However, the desire to win is likely to consume your every waking moment. Don’t say I didn’t warn you.</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, 10 Apr 2014 22:34:43 +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:13:\"Sarah Gooding\";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:88:\"WPTavern: Breaking: Jetpack Releases Critical Security Update, Immediate Action Required\";s: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:28:\"http://wptavern.com/?p=20827\";s: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:216:\"http://wptavern.com/breaking-jetpack-releases-critical-security-update-immediate-action-required?utm_source=rss&utm_medium=rss&utm_campaign=breaking-jetpack-releases-critical-security-update-immediate-action-required\";s: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:2649:\"<p><a href=\"http://wptavern.com/wp-content/uploads/2014/04/warning.jpg\" rel=\"prettyphoto[20827]\"><img src=\"http://wptavern.com/wp-content/uploads/2014/04/warning.jpg\" alt=\"warning\" width=\"919\" height=\"327\" class=\"aligncenter size-full wp-image-20842\" /></a></p>\n<p>Jetpack released version 2.9.3 today. This is a critical security update that fixes a potentially serious threat that has been present in Jetpack since version 1.9, released in October 2012. George Stephanis explained the vulnerability in the release <a href=\"http://jetpack.me/2014/04/10/jetpack-security-update/\" target=\"_blank\">announcement</a>:</p>\n<blockquote><p>During an internal security audit, we found a bug that allows an attacker to bypass a site’s access controls and publish posts. This vulnerability could be combined with other attacks to escalate access.</p></blockquote>\n<p>At this time, the Jetpack team has no evidence that the vulnerability has been exploited on any sites running the plugin. However, now that it has been disclosed publicly, every WordPress site administrator that is using Jetpack is strongly encouraged to prioritize this update and take immediate action for all sites that you manage.</p>\n<p>To give you an idea of the severity of this bug, Stephanis said sites that continue running old versions of the plugin may soon be disconnected from the Jetpack service for their own security. Here’s what they’re doing to mitigate the threat:</p>\n<blockquote><p>This is a bad bug, and Jetpack is one of the most widely used plugins in the WordPress world. We have been working closely with the WordPress security team, which has pushed updates to every version of the plugin since 1.9 through core’s auto-update system. We have also coordinated with a number of hosts and network providers to install network-wide blocks to mitigate the impact of this vulnerability, but the only sure fix is updating the plugin.</p></blockquote>\n<p>Sites that can receive automatic background updates may already have the updated version of Jetpack. All others will be prompted to update manually.</p>\n<p>The Jetpack team has prepared point releases for all 11 previous versions that are vulnerable to this threat. They will be reaching out to admins of sites that are still running the old versions to make them aware of the critical update. Sites that do not update will not be allowed to reconnect to the Jetpack service.</p>\n<p>If you operate a WordPress site running Jetpack or have client sites using the plugin, you will need to take action immediately, especially if your site’s functionality depends heavily on the Jetpack service.</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, 10 Apr 2014 19:48: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:13:\"Sarah Gooding\";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:89:\"WPTavern: Rendez Vous Plugin Allows BuddyPress Community Members to Schedule Appointments\";s: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:28:\"http://wptavern.com/?p=20615\";s: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:222:\"http://wptavern.com/rendez-vous-plugin-allows-buddypress-community-members-to-schedule-appointments?utm_source=rss&utm_medium=rss&utm_campaign=rendez-vous-plugin-allows-buddypress-community-members-to-schedule-appointments\";s: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:5726:\"<div id=\"attachment_20829\" class=\"wp-caption aligncenter\"><a href=\"http://wptavern.com/wp-content/uploads/2014/04/meeting.jpg\" rel=\"prettyphoto[20615]\"><img src=\"http://wptavern.com/wp-content/uploads/2014/04/meeting.jpg\" alt=\"photo credit: onkel_wart (thomas lieser) - cc\" width=\"1279\" height=\"587\" class=\"size-full wp-image-20829\" /></a><p class=\"wp-caption-text\">photo credit: <a href=\"http://www.flickr.com/photos/onkel_wart/4114414947/\">onkel_wart (thomas lieser)</a> – <a href=\"http://creativecommons.org/licenses/by-nc-sa/2.0/\">cc</a></p></div>\n<p>One of the best things about BuddyPress is that it gives you the ability to bring together people who share a common goal or interest. Sometimes this requires getting people together at the same time for a meeting or <em>rendezvous</em>. With just the bare basics you could try to mention specific members in the activity stream or send private messages to schedule a meeting, but now there’s a more efficient way to do this with built-in privacy controls.</p>\n<p><a href=\"http://wordpress.org/plugins/rendez-vous/\" target=\"_blank\">Rendez Vous</a> is a new plugin that makes it possible for community members to schedule appointments with one another. Developed by <a href=\"https://profiles.wordpress.org/imath/\" target=\"_blank\">@imath</a>, a prolific plugin author and BuddyPress core contributor, Rendez Vous provides a simple table for each user to mark his availability for a proposed rendezvous.</p>\n<h3>A Quick Tour of the Rendez Vous Plugin</h3>\n<p>The plugin fits naturally into the user menu and utilizes BuddyPress notifications for updates.</p>\n<p><a href=\"http://wptavern.com/wp-content/uploads/2014/04/redez-vous-menu.jpg\" rel=\"prettyphoto[20615]\"><img src=\"http://wptavern.com/wp-content/uploads/2014/04/redez-vous-menu.jpg\" alt=\"redez-vous-menu\" width=\"487\" height=\"298\" class=\"aligncenter size-full wp-image-20787\" /></a></p>\n<p>Any member of the site can create a new rendezvous, set possible times for meeting and select members to add to the meeting. The panel for creating a new event launches in a modal window and allows you to set three possible times to choose from:</p>\n<p><a href=\"http://wptavern.com/wp-content/uploads/2014/04/calendar.png\" rel=\"prettyphoto[20615]\"><img src=\"http://wptavern.com/wp-content/uploads/2014/04/calendar.png\" alt=\"calendar\" width=\"500\" height=\"301\" class=\"aligncenter size-full wp-image-20808\" /></a></p>\n<p>The “Who” tab lets you search for members, if you have a large network, and click on those you want to invite.</p>\n<p><a href=\"http://wptavern.com/wp-content/uploads/2014/04/rendez-vous-who.jpg\" rel=\"prettyphoto[20615]\"><img src=\"http://wptavern.com/wp-content/uploads/2014/04/rendez-vous-who.jpg\" alt=\"rendez-vous-who\" width=\"685\" height=\"422\" class=\"aligncenter size-full wp-image-20789\" /></a></p>\n<p>The user profile menu displays all published rendezvous to which a user has been invited:</p>\n<p><a href=\"http://wptavern.com/wp-content/uploads/2014/04/rendez-vous-list.jpg\" rel=\"prettyphoto[20615]\"><img src=\"http://wptavern.com/wp-content/uploads/2014/04/rendez-vous-list.jpg\" alt=\"rendez-vous-list\" width=\"789\" height=\"592\" class=\"aligncenter size-full wp-image-20806\" /></a></p>\n<p>The person who schedules a rendezvous will receive notifications related to member responses:</p>\n<p><a href=\"http://wptavern.com/wp-content/uploads/2014/04/notifications.jpg\" rel=\"prettyphoto[20615]\"><img src=\"http://wptavern.com/wp-content/uploads/2014/04/notifications.jpg\" alt=\"notifications\" width=\"789\" height=\"479\" class=\"aligncenter size-full wp-image-20812\" /></a></p>\n<p>As member replies roll in, the table will fill up with availability from those who have responded. Here’s an example of a public rendezvous:</p>\n<p><a href=\"http://wptavern.com/wp-content/uploads/2014/04/attendees-rendezvous.jpg\" rel=\"prettyphoto[20615]\"><img src=\"http://wptavern.com/wp-content/uploads/2014/04/attendees-rendezvous.jpg\" alt=\"attendees-rendezvous\" width=\"956\" height=\"500\" class=\"aligncenter size-full wp-image-20818\" /></a></p>\n<p>The way the table appears will depend on your theme. The plugin simply adapts to the active theme, so you may find that you need to do a little CSS work to make it look exactly how you want. In the next update @imath plans to include a filter to allow a theme to easily override the plugin’s CSS files with its own.</p>\n<p>The Rendez-Vous plugin is a simple, flexible tool that can help to facilitate both online and offline meetings and events. Because the plugin uses fairly generic wording, you can schedule any kind of meeting. It would be suitable for any of the following examples:</p>\n<ul>\n<li>A group Skype chat</li>\n<li>A meeting for site moderators</li>\n<li>A family reunion</li>\n<li>A doggy play date</li>\n<li>A documentation sprint</li>\n<li>A teacher/student conference</li>\n<li>A tutoring session</li>\n</ul>\n<p>You might event use it to determine the best time for maintenance on a small community site. The possibilities are endless for bringing people together efficiently. The scheduling panel allows you to select from public or private for more control over who can view and join the rendezvous.</p>\n<p><a href=\"https://wordpress.org/plugins/rendez-vous/\" target=\"_blank\">Rendez Vous</a> is available for free from the WordPress Plugin Directory. You can also find and contribute to the project on <a href=\"https://github.com/imath/rendez-vous\" target=\"_blank\">Github</a>. The plugin is compatible with WordPress 3.9-RC1 and BuddyPress 2.0-beta2. It should also work on installations that are running WordPress 3.8.3 and BuddyPress 1.9.2.</p>\n<p>For a live tour of the the plugin in action, check out @imath’s video:</p>\n<p></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, 10 Apr 2014 19:22: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:13:\"Sarah Gooding\";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:74:\"WPTavern: Recent Update To Wordfence Security Breaks WordPress Mobile Apps\";s: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:28:\"http://wptavern.com/?p=20775\";s: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:192:\"http://wptavern.com/recent-update-to-wordfence-security-breaks-wordpress-mobile-apps?utm_source=rss&utm_medium=rss&utm_campaign=recent-update-to-wordfence-security-breaks-wordpress-mobile-apps\";s: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:4027:\"<p>With the release of WordPress 3.8.2, <a title=\"https://wordpress.org/support/topic/xml-rpc-services-disabled?replies=13\" href=\"https://wordpress.org/support/topic/xml-rpc-services-disabled?replies=13\">some users are reporting</a> on the WordPress.org support forum that the update disabled XML-RPC causing mobile apps to break. Many of those who are reporting the issue have one thing in common: they’re using the <a title=\"http://wordpress.org/plugins/wordfence/\" href=\"http://wordpress.org/plugins/wordfence/\">Wordfence Security</a> plugin. With over 1.5 million downloads, Wordfence Security is a popular plugin used to secure WordPress sites.</p>\n<a href=\"http://wptavern.com/wp-content/uploads/2014/04/WordfenceFeaturedImage.png\" rel=\"prettyphoto[20775]\"><img src=\"http://wptavern.com/wp-content/uploads/2014/04/WordfenceFeaturedImage.png\" alt=\"Wordfence Security Plugin Header\" width=\"772\" height=\"250\" class=\"size-full wp-image-20794\" /></a>\n<p>A <a title=\"http://wordpress.org/plugins/wordfence/changelog/\" href=\"http://wordpress.org/plugins/wordfence/changelog/\">recent update to Wordfence</a> disables XML-RPC in WordPress to prevent sites from being used as drones in a pingback Denial of Service attack. Due to the timing of WordPress 3.8.2 as well as the update to Wordfence, users think 3.8.2 is the culprit. Andrew Nacin, lead developer for WordPress, <a title=\"http://wordpress.org/support/topic/wordfence-and-xml-rpc?replies=7#post-5439316\" href=\"http://wordpress.org/support/topic/wordfence-and-xml-rpc?replies=7#post-5439316\">replied to</a> the support thread explaining why the fix is improper and has no tangible benefit to users:</p>\n<blockquote><p>The changelog says “Disable XML-RPC in WordPress to prevent your site from being used as a drone in a DDoS attack.” The problem is this “attack” affects pingbacks. But the fix actually disables everything in XML-RPC <strong>except</strong> pingbacks, thus breaking mobile apps and anything else relying on XML-RPC, but allowing pingbacks through.</p>\n<p>If you want to disable pingbacks, then disable pingbacks. Don’t do this. Or don’t do anything, as these attacks are not particularly effective and more recent versions of WordPress and Akismet both pass along better information when verifying pingbacks; and Akismet additionally detects abuse.</p></blockquote>\n<p>Wordfence responded, saying they’ve filed a bug and will be investigating a fix. Until then, if you’re using Wordfence, browse to the plugin’s options page and look for <strong>Other Options</strong>. Uncheck the box to <em>Disable XML-RPC for DDoS protection</em>.</p>\n<h3>Upgrade WordPress and Akismet To The Latest Versions</h3>\n<p>Network Solutions recently <a title=\"http://www.reddit.com/r/Wordpress/comments/22n80j/my_site_host_network_solutions_just_sent_out_an/\" href=\"http://www.reddit.com/r/Wordpress/comments/22n80j/my_site_host_network_solutions_just_sent_out_an/\">sent out a security bulletin</a> to customers using WordPress informing them about the Denial of Service attacks that can result from pingbacks. Network Solutions advised customers to install the <a title=\"https://wordpress.org/plugins/disable-xml-rpc/\" href=\"https://wordpress.org/plugins/disable-xml-rpc/\">Disable XML-RPC plugin</a>. While it disables the XML-RPC API, it <strong>does not</strong> disable trackbacks and pingbacks.</p>\n<p>The best course of action is to update to <a title=\"http://wptavern.com/wordpress-3-8-2-first-security-release-shipped-as-a-background-update\" href=\"http://wptavern.com/wordpress-3-8-2-first-security-release-shipped-as-a-background-update\">WordPress 3.8.2</a> if you haven’t already done so. Also <a title=\"http://blog.akismet.com/2014/03/18/akismet-plugin-2-6/\" href=\"http://blog.akismet.com/2014/03/18/akismet-plugin-2-6/\">upgrade Akismet</a> to the latest version. Both software updates address the Denial of Service attack associated with pingbacks without having to disable XML-RPC entirely.</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, 10 Apr 2014 17:07: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:13:\"Jeff Chandler\";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:33:\"Matt: Hiring By Audition Expanded\";s: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=43741\";s: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:49:\"http://ma.tt/2014/04/hiring-by-audition-expanded/\";s: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:589:\"<p>The guest blog on Automattic’s hiring process for the Harvard Business Review ended up being pretty popular and thanks to <a href=\"http://kingofstates.com/\">Michelle Weber</a> and <a href=\"https://twitter.com/danmcginn\">Dan McGinn</a> it’s <a href=\"http://hbr.org/2014/04/the-ceo-of-automattic-on-holding-auditions-to-build-a-strong-team/ar/1\">been expanded into a longer version</a> that’s now on shelves in the actual magazine! Very excited about this. If you are in an airport and see it on the stands (as above) definitely pick it up, it’s a great issue.</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, 10 Apr 2014 14:49: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: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: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:61:\"WPTavern: If WordPress Had A Voice, What Would It Sound Like?\";s: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:28:\"http://wptavern.com/?p=20669\";s: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:162:\"http://wptavern.com/if-wordpress-had-a-voice-what-would-it-sound-like?utm_source=rss&utm_medium=rss&utm_campaign=if-wordpress-had-a-voice-what-would-it-sound-like\";s: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:3646:\"<p>Back in March, Fred Meyer, shared<a title=\"http://wpshout.com/wordpress-core-needs-writing-style-guide/\" href=\"http://wpshout.com/wordpress-core-needs-writing-style-guide/\"> his thoughts</a> on why the core of WordPress needs a writing style guide. The post generated a healthy conversation, including <a title=\"http://wpshout.com/wordpress-core-needs-writing-style-guide/#comment-264374\" href=\"http://wpshout.com/wordpress-core-needs-writing-style-guide/#comment-264374\">this comment</a> by Matt Mullenweg:</p>\n<blockquote><p>WP has always been optionated software with a lot of personality. Every year or two people try to neuter it, remove a bt of its soul, and sometimes it gets through. There are always convincing reasons, like this post, but it’s sad nonetheless. If anyone is going to stop using the software over these we probably didn’t create something very compelling in the first place. You could also create a “dry” localization of the software and see if it gets much traction.</p></blockquote>\n<p>After the conversation subsided, Meyer created a survey to determine the thoughts and opinions of users. The results are <a title=\"http://wpshout.com/wordpress-voice-tone-survey-results/\" href=\"http://wpshout.com/wordpress-voice-tone-survey-results/\">now available</a> with a total of 69 respondents completing the survey. While the small sample size makes it hard to conclude anything, there are two things that came to light based on the results.</p>\n<p>The first is that WordPress could improve the text so it’s spoken with a clear, well-defined voice. Second, irreverent and goofy humor is rarely a user’s preferred way to receive WordPress messages. Instead, users appear to prefer content that is as clear as possible in its technical details.</p>\n<h3>Meyer’s Next Course Of Action</h3>\n<p>I asked Meyer what his next course of action is now that he’s had a chance to analyze the results. He said he “plans to move forward with advocating for a tone review, with the intent of seeing if it can be added to the to-do list for WordPress 4.0″. I asked if anything about the results surprised him:</p>\n<blockquote><p>One thing that surprised me about the survey was how dry people’s favored content was–e.g., “Powered by WordPress” instead of even “Proudly Powered by WordPress.” I really think there’s a danger (again, as Matt said) that a content review, particularly one done by committee, could squeeze the color out of WordPress, in favor of writing that is really safe and technical and that no one can possibly take issue with.</p></blockquote>\n<p>The survey seems to reinforce Mullenweg’s opinion that this issue isn’t something that will make or break people’s decision to use WordPress. At the same time, the survey showed users would appreciate textual content that is better suited to them, content that is more helpful and contains a more consistent tone.</p>\n<h3>Time To Decide Which Voice We Want WordPress To Have</h3>\n<p>Meyer said that the community will need to decide the tone of the language used in WordPress. Focusing on colorful language that is consistent, helpful and inviting to English speakers outside of North America.</p>\n<p>If you’d like to follow along with the project and contribute to the cause, follow Meyer on <a title=\"http://wpshout.com/\" href=\"http://wpshout.com/\">WPShout.com</a>. He’ll be using the site to inform those interested of the progress. You can also get in touch with him directly via email, <a href=\"mailto:fred@pressupinc.com\">fred@pressupinc.com</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, 10 Apr 2014 03:19: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:13:\"Jeff Chandler\";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:79:\"WPTavern: Automattic Acquires Longreads, Invests in Digital Longform Publishing\";s: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:28:\"http://wptavern.com/?p=20725\";s: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:200:\"http://wptavern.com/automattic-acquires-longreads-invests-in-digital-longform-publishing?utm_source=rss&utm_medium=rss&utm_campaign=automattic-acquires-longreads-invests-in-digital-longform-publishing\";s: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:3848:\"<p><a href=\"http://wptavern.com/wp-content/uploads/2014/04/longreads.jpg\" rel=\"prettyphoto[20725]\"><img src=\"http://wptavern.com/wp-content/uploads/2014/04/longreads.jpg\" alt=\"longreads\" width=\"662\" height=\"210\" class=\"aligncenter size-full wp-image-20743\" /></a><br />\nAutomattic <a href=\"http://en.blog.wordpress.com/2014/04/09/longreads-joins-automattic/\" target=\"_blank\">announced</a> its acquisition of <a href=\"http://longreads.com/\" target=\"_blank\">Longreads</a> today. Since 2009, the Longreads service has helped people find and share the best fiction and nonfiction longform content on the web, curated by its team of editors and the #longreads hashtag.</p>\n<p>Longreads defines longform content as anything over 1,500 words, the type of articles that are most often read by people who are away from the distractions of their desks. Though individual attention spans seem to be dwindling in the digital age, the proliferation of mobile devices and apps dedicated to reading has sparked a renaissance of the written word. Longreads became a key player in the resurgence of longform reading by helping people to discover the best content.</p>\n<p>The editorial team at Longreads joins online publishing titan WordPress.com under the Automattic umbrella. Historically, WordPress.com has been a strong supporter of longform writing and offers several <a href=\"http://en.blog.wordpress.com/2013/03/20/longform-writing/\" target=\"_blank\">themes dedicated to longform posts</a>. WordPress.com has also often <a href=\"http://en.blog.wordpress.com/2013/07/12/wplongform-picks-3/\" target=\"_blank\">featured longform reads</a> among its recommendations.</p>\n<p>Mark Armstrong, founder of Longreads, <a href=\"http://blog.longreads.com/post/longreads-is-joining-the-automattic-family/\" target=\"_blank\">describes</a> how he sees Automattic as the right partner to help them go deeper in their mission to promote longform storytelling:</p>\n<blockquote><p>We also quickly realized that Longreads’ goals and Automattic’s goals were complementary: For us it is to serve readers the best storytelling in the world, and for Automattic it’s to power a world where publishers and writers have the freedom and independence to own and control their own space on the Internet, and to then produce their best work using those tools.</p></blockquote>\n<p>Armstrong said that they will continue to run the service in the same way they always have and will keep the <a href=\"http://longreads.com/drive/\" target=\"_blank\">Longreads Membership</a> active.</p>\n<h3>The Rebirth of Longform Storytelling</h3>\n<p>If the success of the New York Time’s <a href=\"http://www.nytimes.com/projects/2012/snow-fall/\" target=\"_blank\">Snowfall</a> is any indication, “immersive storytelling” is on the upswing and longform content is well-positioned to be reinvented in the digital age. There’s no reason why WordPress publishers shouldn’t be at the helm.</p>\n<p>The popularity of longform content is growing. Automattic’s Raanan Bar-Cohen, in his announcement of the acquisition, said that “<span class=\"pullquote alignleft\">Use of the #longreads hashtag on Twitter has grown more than 130% over the last two years</span>, and more publishers than ever are committing resources to in-depth storytelling as part of their daily mix of stories.”</p>\n<p>Complex topics and ideas often require longform articles in order to fully convey their depth. Longreads has found a successful way to tap into a segment of the public that values longform reading enough to pay for daily recommendations. Automattic’s acqusition of Longreads is a signal that longform content is not dead but rather has the chance to be reborn in the digital era. That’s good news for WordPress publishers and even better news for readers.</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, 09 Apr 2014 22:48: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:13:\"Sarah Gooding\";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:26:\"Matt: Automattic Longreads\";s: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=43738\";s: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/2014/04/automattic-longreads/\";s: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:412:\"<p>Brad Stone at BusinessWeek reports <a href=\"http://www.businessweek.com/articles/2014-04-09/automattic-steward-of-wordpress-snaps-up-longreads\">Automattic has acquired the great service Longreads</a>, which you can <a href=\"http://en.blog.wordpress.com/2014/04/09/longreads-joins-automattic/\">also read about on our blog</a>. See also: <a href=\"http://www.techmeme.com/140409/p33#a140409p33\">Techmeme</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, 09 Apr 2014 22:01: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: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: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:70:\"WPTavern: Monitor WordPress Download and Version Stats With WP Central\";s: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:28:\"http://wptavern.com/?p=20662\";s: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:184:\"http://wptavern.com/monitor-wordpress-download-and-version-stats-with-wp-central?utm_source=rss&utm_medium=rss&utm_campaign=monitor-wordpress-download-and-version-stats-with-wp-central\";s: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:2616:\"<p>If you’re interested in WordPress project stats, <a href=\"http://wpcentral.io/\" target=\"_blank\">WP Central</a> has a collection of interactive visualizations for everything from download stats to version usage to internationalization. The site, created by WordPress contributor <a href=\"http://markoheijnen.com/\" target=\"_blank\">Marko Heijnen</a>, has been in development for several months and is gradually adding more data.</p>\n<p>The homepage of the site features stats for the latest release, with data for the total downloads, last seven days, downloads per day and per hour.</p>\n<p><a href=\"http://wptavern.com/wp-content/uploads/2014/04/wpcentral-downloads.jpg\" rel=\"prettyphoto[20662]\"><img src=\"http://wptavern.com/wp-content/uploads/2014/04/wpcentral-downloads.jpg\" alt=\"wpcentral-downloads\" width=\"983\" height=\"398\" class=\"aligncenter size-full wp-image-20708\" /></a></p>\n<p>Version usage is particularly interesting, with clickable segments that display the percentage of WordPress installations operating on various versions of WP, PHP and MySQL.</p>\n<p><a href=\"http://wptavern.com/wp-content/uploads/2014/04/version-usage.jpg\" rel=\"prettyphoto[20662]\"><img src=\"http://wptavern.com/wp-content/uploads/2014/04/version-usage.jpg\" alt=\"version-usage\" width=\"1149\" height=\"582\" class=\"aligncenter size-full wp-image-20710\" /></a></p>\n<p>The site uses Bootstrap for the theme and Heijnen said that all of the data is pulled from the <a href=\"http://codex.wordpress.org/WordPress.org_API\" target=\"_blank\">WordPress.org API</a>, with the download history stored locally. He’s looking into the possibility of collecting and displaying old data, along with the new stats.</p>\n<p>Heijnen created the site with the hope of providing a historical reference that is easy to visualize. “I would love for it to become a place that shows the history of WordPress, i.e. how many downloads we had per release and the progress,” he said. “I hope that people will be able to get more insight about how WordPress has grown over the years.”</p>\n<p><a href=\"http://wpcentral.io/\" target=\"_blank\">WP Central</a>‘s graphs make it easy to visualize trends in WordPress downloads and version usage. Given that WordPress is a major part of millions of people’s lives on the web, it’s important to have helpful sites like WP Central that will track WordPress’ growth over time and make this data available to everyone. To find out about new data and visualizations added, follow <a href=\"https://twitter.com/WPCentralIO\" target=\"_blank\">WP Central</a> on Twitter.</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, 09 Apr 2014 18:50: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:13:\"Sarah Gooding\";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:73:\"WPTavern: Summer in the City: WordCamp NYC Dates Set For August 2-3, 2014\";s: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:28:\"http://wptavern.com/?p=20601\";s: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:186:\"http://wptavern.com/summer-in-the-city-wordcamp-nyc-dates-set-for-august-2-3-2014?utm_source=rss&utm_medium=rss&utm_campaign=summer-in-the-city-wordcamp-nyc-dates-set-for-august-2-3-2014\";s: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:1924:\"<p><a href=\"http://wptavern.com/wp-content/uploads/2014/04/wordcamp-nyc.png\" rel=\"prettyphoto[20601]\"><img src=\"http://wptavern.com/wp-content/uploads/2014/04/wordcamp-nyc.png\" alt=\"wordcamp-nyc\" width=\"1600\" height=\"696\" class=\"aligncenter size-full wp-image-20675\" /></a><br />\nThe dates for <a href=\"http://2014.nyc.wordcamp.org/\" target=\"_blank\">WordCamp NYC</a> were announced today. The event will be held August 2-3, 2014 at the <a href=\"http://2014.nyc.wordcamp.org/location/\" target=\"_blank\">New York Marriott at the Brooklyn Bridge</a> in downtown Brooklyn.</p>\n<p>Tickets will go on sale within the next few weeks. Traditionally, WordCamp NYC has sold out every year. In 2009, 2010, and 2012 the event brought together roughly 800 WordPress fans. However, maximum capacity for the Brooklyn venue is 650.</p>\n<p>I spoke with Steve Bruner, one of <a href=\"http://2014.nyc.wordcamp.org/about/organizers/\" target=\"_blank\">10 organizers</a> for the event, who said that finding a suitable venue has been a challenge. “We’ve been searching for a venue that would hold 800+ people AND be affordable in one of the most expensive cities in the world,” he said. “When we finally decided that 800 wasn’t going to happen, we were able to finalize on the Brooklyn Marriott, which is a really awesome venue.”</p>\n<p>Bruner said the unique aspects of WordCamp NYC are not unlike the city itself. A large number of attendees, a world-class speaker lineup and a high percentage of international attendees makes this WordCamp an exciting and diverse event. Also, if you haven’t visited New York in the summertime, you’re in for a sizzling hot treat. Follow <a href=\"https://twitter.com/WordCampNYC\" target=\"_blank\">@WordCampNYC</a> on Twitter for all the latest updates. Given the reduced number of tickets this year, you’ll want to be notified as soon as they go on sale.</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, 09 Apr 2014 03:08: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:13:\"Sarah Gooding\";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:80:\"WPTavern: WordPress 3.8.2: First Security Release Shipped as a Background Update\";s: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:28:\"http://wptavern.com/?p=20619\";s: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:202:\"http://wptavern.com/wordpress-3-8-2-first-security-release-shipped-as-a-background-update?utm_source=rss&utm_medium=rss&utm_campaign=wordpress-3-8-2-first-security-release-shipped-as-a-background-update\";s: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:4762:\"<div id=\"attachment_20655\" class=\"wp-caption aligncenter\"><a href=\"http://wptavern.com/wp-content/uploads/2014/04/security-release.jpg\" rel=\"prettyphoto[20619]\"><img src=\"http://wptavern.com/wp-content/uploads/2014/04/security-release.jpg\" alt=\"photo credit: Will Montague - cc\" width=\"1024\" height=\"505\" class=\"size-full wp-image-20655\" /></a><p class=\"wp-caption-text\">photo credit: <a href=\"http://www.flickr.com/photos/willmontague/3813295674/\">Will Montague</a> – <a href=\"http://creativecommons.org/licenses/by-nc/2.0/\">cc</a></p></div>\n<p>WordPress 3.8.2 was <a href=\"http://wordpress.org/news/2014/04/wordpress-3-8-2/\" target=\"_blank\">released</a> today with several important security fixes that warrant an immediate update. If you have <a href=\"http://codex.wordpress.org/Configuring_Automatic_Background_Updates\" target=\"_blank\">background updates</a> turned on, you should get the 3.8.2 security release within 12 hours. Of course, you can always update immediately via <strong>Dashboard > Update</strong> in the admin.</p>\n<p>Andrew Nacin outlined the important security fixes in this release. In summary, they are:</p>\n<ul>\n<li>Fixes a weakness that could let an attacker force their way into your site by forging authentication cookies</li>\n<li>A fix to prevent a user with the Contributor role from improperly publishing posts.</li>\n<li>Update to pass along additional information when processing pingbacks to help hosts identify potentially abusive requests.</li>\n<li>Fixes a low-impact SQL injection by trusted users</li>\n<li>Prevents possible cross-domain scripting through Plupload, the third-party library WordPress uses for uploading files.</li>\n</ul>\n<p>These <a href=\"http://codex.wordpress.org/FAQ_Security\" target=\"_blank\">security concerns</a> were discreetly disclosed to the WordPress security team, but now that they are public knowledge, it’s very important to get your sites updated to the latest version.</p>\n<h3>First WordPress Security Release Shipped as a Background Update</h3>\n<p>In the course of providing the 3.8.2 security update, a 3.7.2 release was also pushed out, which includes the same fixes for sites still running on 3.7.1.</p>\n<p>We’ve now entered a new era of WordPress security updates wherein sites that are on older versions may have automatic updates enabled. Passing on those same security updates, wherever possible, only makes sense.</p>\n<p>I asked Nacin how far back the team plans to provide security releases for sites running older versions of WordPress. “We don’t want sites to remain on older versions,” he said. “But it’s obviously tough to pass up the opportunity to keep them secure.”</p>\n<p>There is no hard and fast rule set for how far back security updates will go, but Nacin says that they will continue to do what they can. “This was the first security release shipped as a background update, so it’s new to us, too,” he said. “But I would expect we’ll do whatever we can to keep sites secure.”</p>\n<p>So far the automatic updates seem to be going quite well:</p>\n<blockquote class=\"twitter-tweet\" width=\"550\"><p>In the 15 minutes after WordPress 3.8.2 dropped, 230,000 WordPress installs were automatically updated. <a href=\"https://t.co/8pCvBD2Tl8\">https://t.co/8pCvBD2Tl8</a></p>\n<p>— Andrew Nacin (@nacin) <a href=\"https://twitter.com/nacin/statuses/453613800542195712\">April 8, 2014</a></p></blockquote>\n<p></p>\n<blockquote class=\"twitter-tweet\" width=\"550\"><p>We’ve served about 800,000 updates over the last hour. All sites have been receiving instructions to update; they check every 12 hours.</p>\n<p>— Andrew Nacin (@nacin) <a href=\"https://twitter.com/nacin/statuses/453625079859908608\">April 8, 2014</a></p></blockquote>\n<p></p>\n<blockquote class=\"twitter-tweet\" width=\"550\"><p>More numbers: 1.2 million WordPress sites have automatically updated over the last 97 minutes. <a href=\"https://t.co/Cc76GKcTID\">https://t.co/Cc76GKcTID</a></p>\n<p>— Andrew Nacin (@nacin) <a href=\"https://twitter.com/nacin/statuses/453632203671355392\">April 8, 2014</a></p></blockquote>\n<p></p>\n<blockquote class=\"twitter-tweet\" width=\"550\"><p>T plus two hours: 1,446,176 updates. At this point I’ve moved beyond “nervous wreck” to “shipping champagne.” Eventually this won’t be news.</p>\n<p>— Andrew Nacin (@nacin) <a href=\"https://twitter.com/nacin/statuses/453638438982402048\">April 8, 2014</a></p></blockquote>\n<p></p>\n<p>The first <a href=\"https://wordpress.org/wordpress-3.9-RC1.zip\" target=\"_blank\">release candidate for 3.9</a> was also sent out on the heels of the 3.8.2 security update. You can expect to see the official 3.9 release next week on April 16th.</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, 08 Apr 2014 21:34: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:13:\"Sarah Gooding\";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:32:\"BuddyPress: BuddyPress 2.0-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:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"http://buddypress.org/?p=180990\";s: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://buddypress.org/2014/04/buddypress-2-0-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:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1508:\"<p>The second (and hopefully final) beta for BuddyPress 2.0 is now available (<a href=\"http://downloads.wordpress.org/plugin/buddypress.2.0-beta2.zip\">zip</a>). Since Beta 1, we’ve made a few dozen fixes and improvements. Notable changes from the first beta:</p>\n<ul>\n<li>Fixed a potential out-of-memory fatal error in certain activity stream views. <a href=\"https://buddypress.trac.wordpress.org/ticket/2768#comment:13\">#2768</a></li>\n<li>Fixed broken SQL query format on certain activity stream views. <a href=\"https://buddypress.trac.wordpress.org/ticket/5503\">#5503</a></li>\n<li>Improvements to profile visibility settings appearance <a href=\"https://buddypress.trac.wordpress.org/ticket/5352\">#5352</a></li>\n<li>Fixed a bug where blog comments were not synced to the activity stream when the comment author != blog author <a href=\"https://buddypress.trac.wordpress.org/ticket/5507\">#5507</a></li>\n<li>Better logic to avoid duplicates and invalid results during the activity heartbeat ping <a href=\"https://buddypress.trac.wordpress.org/ticket/5505\">#5505</a></li>\n<li>Miscellaneous localization improvements</li>\n</ul>\n<p>Plugin authors, theme authors, and site administrators with access to dev environments: please get out there and test! We need your continued feedback to make our scheduled release of April 16.</p>\n<p>Questions? Comments? Visit <a href=\"https://buddypress.org/support\">our support forums</a> or <a href=\"https://buddypress.trac.wordpress.org\">our development tracker</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, 08 Apr 2014 21:07:10 +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: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:41:\"Dev Blog: WordPress 3.9 Release Candidate\";s: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=3129\";s: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/news/2014/04/wordpress-3-9-release-candidate/\";s: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:3021:\"<p><a href=\"http://wordpress.org/news/2014/04/wordpress-3-8-2/\">As teased earlier</a>, the first release candidate for WordPress 3.9 is now available for testing!</p>\n<p>We hope to ship WordPress 3.9 <em>next week</em>, but we need your help to get there. If you haven’t tested 3.9 yet, there’s no time like the present. (Please, not on a production site, unless you’re adventurous.)</p>\n<p>To test WordPress 3.9 RC1, try the <a href=\"http://wordpress.org/extend/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin (you’ll want “bleeding edge nightlies”). Or you can <a href=\"http://wordpress.org/wordpress-3.9-RC1.zip\">download the release candidate here</a> (zip). If you’d like to learn more about what’s new in WordPress 3.9, visit the work-in-progress About screen in your dashboard (<strong><img src=\"http://i0.wp.com/core.svn.wordpress.org/branches/3.6/wp-content/themes/twentyten/images/wordpress.png?w=692\" alt=\"\" width=\"16\" height=\"16\" /> → About</strong> in the toolbar) and check out <a title=\"WordPress 3.9 Beta 1\" href=\"http://wordpress.org/news/2014/03/wordpress-3-9-beta-1/\">the Beta 1 post</a>.</p>\n<p><strong>Think you’ve found a bug? </strong>Please post to the <a href=\"http://wordpress.org/support/forum/alphabeta/\">Alpha/Beta area in the support forums</a>. If any known issues come up, you’ll be able to <a href=\"http://core.trac.wordpress.org/report/5\">find them here</a>.</p>\n<p><strong>If you’re a plugin author</strong>, there are two important changes in particular to be aware of:</p>\n<ul>\n<li>TinyMCE received a major update, to version 4.0. Any editor plugins written for TinyMCE 3.x might require some updates. (If things broke, we’d like to hear about them so we can make adjustments.) For more, see TinyMCE’s <a href=\"http://www.tinymce.com/wiki.php/Tutorial:Migration_guide_from_3.x\">migration guide</a> and <a href=\"http://www.tinymce.com/wiki.php/api4:index\">API documentation</a>, and the notes on the <a href=\"http://make.wordpress.org/core/2014/01/18/tinymce-4-0-is-in-core/\">core development blog</a>.</li>\n<li>WordPress 3.9 now uses the MySQLi Improved extension for sites running PHP 5.5. Any plugins that made direct calls to <code>mysql_*</code> functions will experience some problems on these sites. For more information, see the notes on the <a href=\"http://make.wordpress.org/core/2014/04/07/mysql-in-wordpress-3-9/\">core development blog</a>.</li>\n</ul>\n<p>Be sure to follow along the core development blog, where we will be continuing to post <a href=\"http://make.wordpress.org/core/tag/3-9-dev-notes/\">notes for developers for 3.9</a>. (For example, read <a href=\"http://make.wordpress.org/core/2014/03/27/masonry-in-wordpress-3-9/\">this</a> if you are using Masonry in your theme.) And please, please update your plugin’s <em>Tested up to</em> version in the readme to 3.9 before April 16.</p>\n<p><em>Release candidate<br />\nThis haiku’s the easy one<br />\n3.9 is near</em></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, 08 Apr 2014 21:05:21 +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:\"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:\"\";}}}}}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:82:\"WPTavern: Soil: Roots Framework Features That Can Be Used With Any WordPress Theme\";s: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:28:\"http://wptavern.com/?p=20595\";s: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:206:\"http://wptavern.com/soil-roots-framework-features-that-can-be-used-with-any-wordpress-theme?utm_source=rss&utm_medium=rss&utm_campaign=soil-roots-framework-features-that-can-be-used-with-any-wordpress-theme\";s: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:3000:\"<p><a href=\"http://wptavern.com/wp-content/uploads/2014/04/roots.png\" rel=\"prettyphoto[20595]\"><img src=\"http://wptavern.com/wp-content/uploads/2014/04/roots.png\" alt=\"roots\" width=\"120\" height=\"120\" class=\"alignright size-full wp-image-20597\" /></a><a href=\"http://roots.io/\" target=\"_blank\">Roots</a> is a WordPress starter theme that incorporates the HTML5 Boilerplate, Bootstrap, and Grunt. It’s also known for creating cleaner HTML, cleaner script output, and its unique <a href=\"http://roots.io/an-introduction-to-the-roots-theme-wrapper/\" target=\"_blank\">theme wrapper</a> method for handling template markup.</p>\n<p>Up until now, you’d have to use the Roots theme in order to take advantage of any of its features. Ben Word, Roots’ creator, has now made some of the theme’s features available for use within any WordPress theme via a new plugin called <a href=\"https://github.com/roots/soil\" target=\"_blank\">Soil</a>.</p>\n<p>Soil offers you the benefits of three distinctive Roots features:</p>\n<ul>\n<li>WordPress Markup Cleanup</li>\n<li>Relative URLs</li>\n<li>Nice Search – (/search/query/)</li>\n</ul>\n<p>The “Clean-Up” feature enables the following:</p>\n<ul>\n<li>wp_head() clean up</li>\n<li>Remove WP version from RSS feeds</li>\n<li>Clean up attributes</li>\n<li>Clean up\n tags</li>\n<li>Clean up body_class()</li>\n<li>Wrap embedded media as suggested by Readability</li>\n<li>Use figure and figcaption tags for WP captions</li>\n<li>Remove unnecessary dashboard widgets</li>\n<li>Remove unnecessary self-closing tags</li>\n</ul>\n<h3>How to Use Soil with Your WordPress Theme:</h3>\n<div id=\"attachment_20635\" class=\"wp-caption aligncenter\"><a href=\"http://wptavern.com/wp-content/uploads/2014/04/soil.jpg\" rel=\"prettyphoto[20595]\"><img src=\"http://wptavern.com/wp-content/uploads/2014/04/soil.jpg\" alt=\"photo credit: JerseyRed - cc\" width=\"1024\" height=\"459\" class=\"size-full wp-image-20635\" /></a><p class=\"wp-caption-text\">photo credit: <a href=\"http://www.flickr.com/photos/jerseyred/5390999270/\">JerseyRed</a> – <a href=\"http://creativecommons.org/licenses/by-nc-sa/2.0/\">cc</a></p></div>\n<p><strong>Step 1. Install and activate the Soil plugin.</strong><br />\nDownload <a href=\"https://github.com/roots/soil\" target=\"_blank\">Soil</a> from Github and unpack/rename folders as necessary. Add to your plugins folder.</p>\n<p><strong>Step 2: Add Soil theme support to your theme’s functions.php file.</strong></p>\n<pre class=\"brush: php; title: ; notranslate\">add_theme_support(\'soil-clean-up\');\nadd_theme_support(\'soil-relative-urls\');\nadd_theme_support(\'soil-nice-search\');</pre>\n<p>If the full Roots theme is not for you but you appreciate some of its features for cleaner markup and URLs, then the Soil plugin is an easy way to port those over to your theme. For more in-depth information on root relative URLs and the clean up changes it makes, check out the <a href=\"http://roots.io/roots-101/\" target=\"_blank\">Roots 101 guide</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, 08 Apr 2014 20: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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";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:71:\"WPTavern: Introducing Hookr.io: A New Resource For WordPress Developers\";s: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:28:\"http://wptavern.com/?p=20501\";s: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:184:\"http://wptavern.com/introducing-hookr-io-a-new-resource-for-wordpress-developers?utm_source=rss&utm_medium=rss&utm_campaign=introducing-hookr-io-a-new-resource-for-wordpress-developers\";s: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:5600:\"<p><a title=\"http://hookr.io/\" href=\"http://hookr.io/\">Hookr.io</a> is a brand new project created by Christopher Sanford in the <strong>alpha stage</strong> of development. It’s an index of all the available WordPress Hooks and API calls stretching back to WordPress 1.5. The site is a result of a pet project he’s been working on for about a year. It started out as a plugin he installed to index his local WordPress projects. Sanford explains why he created the site:</p>\n<blockquote><p>Most reference sites contain only subsets of hooks (if any), and unless the plugin/theme is premium, they usually contain little to no documentation regarding their API. I was tired of the ineffective “<em>find in project</em>” searches within my IDE. So, one day after questioning my productivity and lack of resources for what I needed to do, I started writing the initial parser/indexer as just a locally installed plugin.</p></blockquote>\n<p>The front page features a slider allowing you to switch between versions of WordPress. When one is selected, the site displays how many of the following are in that version.</p>\n<ul>\n<li>Hooks (Action/Filter)</li>\n<li>Actions</li>\n<li>Filters</li>\n<li>Classes</li>\n<li>Constants</li>\n<li>Functions</li>\n<li>Shortcodes</li>\n</ul>\n<p>While the total amount of each are correctly displayed, Sandford has limited the results to 250 until it can be determined the site will perform well under load. If the benchmarks are successful, he’ll make the entire index available.</p>\n<div id=\"attachment_20605\" class=\"wp-caption aligncenter\"><a href=\"http://wptavern.com/wp-content/uploads/2014/04/hookrfrontpage.png\" rel=\"prettyphoto[20501]\"><img class=\"size-large wp-image-20605\" alt=\"WordPress Hook and API Index\" src=\"http://wptavern.com/wp-content/uploads/2014/04/hookrfrontpage-500x292.png\" width=\"500\" height=\"292\" /></a><p class=\"wp-caption-text\">WordPress Hook and API Index</p></div>\n<p><a title=\"http://wpseek.com/\" href=\"http://wpseek.com/\">WPSeek</a> performs a similar role as a WordPress search engine for developers. Sanford says the metadata he has indexed sets it apart from other search engines:</p>\n<blockquote><p>I’m storing all the information related to each “object.” For instance, what file and line(s) the function is defined in/on, what are the function parameters, what other objects exist within its source code (hooks, classes, constants etc), the original source, or snippet, both with/without syntax highlighting, documentation blocks, etc. All of this has been generated directly from the source code, not screen-scraped. By having this metadata at my disposal, it makes adding features, or overhauling the layouts extremely simple.</p></blockquote>\n<div id=\"attachment_20608\" class=\"wp-caption aligncenter\"><a href=\"http://wptavern.com/wp-content/uploads/2014/04/hookrmetadata.png\" rel=\"prettyphoto[20501]\"><img src=\"http://wptavern.com/wp-content/uploads/2014/04/hookrmetadata.png\" alt=\"Indexed Metadata\" width=\"1140\" height=\"792\" class=\"size-full wp-image-20608\" /></a><p class=\"wp-caption-text\">Indexed Metadata</p></div>\n<p>He wants users to see the holistic view of a given topic. For example, showing all classes existing in the admin area related to FTP as shown in the following screenshot. This view helps developers to see the interconnected parts that make up WordPress.</p>\n<div id=\"attachment_20609\" class=\"wp-caption aligncenter\"><a href=\"http://wptavern.com/wp-content/uploads/2014/04/hookrclasses.png\" rel=\"prettyphoto[20501]\"><img src=\"http://wptavern.com/wp-content/uploads/2014/04/hookrclasses.png\" alt=\"Holistic View Of Classes\" width=\"1525\" height=\"817\" class=\"size-full wp-image-20609\" /></a><p class=\"wp-caption-text\">Holistic View Of Classes</p></div>\n<p>While Hookr.io isn’t easy to use on a mobile device, Sanford says he has, “Already provisioned bootstrap. It’s just a matter of time and necessity to fully implement.” The interface uses a combination of colors and numbers to display relationships between data. The UI is what works for Sanford but he realizes it may not be optimal. The goal was to have a simple and clean layout but he’s looking for UI/UX advice.</p>\n<p>If developers are going to use Hookr.io, the content has to be accurate. According to Sanford, “90% of the development time was consumed with ensuring the accuracy of the parser.” He admits it’s not perfect but is accurate enough to develop against. Since WordPress is updated far less frequently than plugins and themes, the content is updated in an ad-hoc fashion. If the site becomes a useful tool for developers, he plans on automating the manual processes for near real-time updates.</p>\n<h3>Your Feedback and Ideas Are Needed</h3>\n<p>Based on the feedback and whether or not developers find the site useful will determine whether Sanford devotes more time to the project. He already has a lot of ideas in mind to make it a true resource for WordPress developers, regardless of skill level. One of the features Hookr.io supports but is not available to the public is the inclusion of plugin and theme data. The content has been indexed but it’s about three million records. A lot of benchmarking and fine-tuning will take place before the data is added to the search engine.</p>\n<p>Sanford is looking for feedback on all facets of the site. Whether it’s design, implementation, or accuracy of data, please share it in the comments. He’ll be watching the conversation closely and will answer any questions you have.</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, 08 Apr 2014 19:42: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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";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:42:\"Dev Blog: WordPress 3.8.2 Security Release\";s: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=3124\";s: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/2014/04/wordpress-3-8-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:2267:\"<p>WordPress 3.8.2 is now available. This is an important security release for all previous versions and we strongly encourage you to update your sites immediately.</p>\n<p>This releases fixes a weakness that could let an attacker force their way into your site by forging authentication cookies. This was discovered and fixed by <a href=\"http://joncave.co.uk/\">Jon Cave</a> of the WordPress security team.</p>\n<p>It also contains a fix to prevent a user with the Contributor role from improperly publishing posts. Reported by <a href=\"http://edik.ch/\">edik</a>.</p>\n<p>This release also fixes nine bugs and contains three other security hardening changes:</p>\n<ul>\n<li>Pass along additional information when processing pingbacks to help hosts identify potentially abusive requests.</li>\n<li>Fix a low-impact SQL injection by trusted users. Reported by <a href=\"http://www.dxw.com/\">Tom Adams</a> of dxw.</li>\n<li>Prevent possible cross-domain scripting through Plupload, the third-party library WordPress uses for uploading files. Reported by <a href=\"http://szgru.website.pl/\">Szymon Gruszecki</a>.</li>\n</ul>\n<p>We appreciated <a href=\"http://codex.wordpress.org/FAQ_Security\">responsible disclosure</a> of these security issues directly to our security team. For more information on all of the changes, see the <a href=\"http://codex.wordpress.org/Version_3.8.2\">release notes</a> or consult <a href=\"https://core.trac.wordpress.org/log/branches/3.8?rev=28057&stop_rev=27024\">the list of changes</a>.</p>\n<p><a href=\"http://wordpress.org/download/\">Download WordPress 3.8.2</a> or venture over to <strong>Dashboard → Updates</strong> and simply click “Update Now.”</p>\n<p>Sites that support automatic background updates will be updated to WordPress 3.8.2 within 12 hours. If you are still on WordPress 3.7.1, you will be updated to 3.7.2, which contains the same security fixes as 3.8.2. We don’t support older versions, so please update to 3.8.2 for the latest and greatest.</p>\n<p>Already testing WordPress 3.9? The first release candidate is <a href=\"https://wordpress.org/wordpress-3.9-RC1.zip\">now available</a> (zip) and it contains these security fixes. Look for a full announcement later today; we expect to release 3.9 next week.</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, 08 Apr 2014 19:04: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: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:\"\";}}}}}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:43:\"Matt: Why the Web Still Matters for 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=43731\";s: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/2014/04/the-web-matters/\";s: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:6032:\"<p><em>I wanted to share unique perspective for why the web matters in an app world with a guest post <a href=\"http://stratechery.com/\">from Stratechery writer Ben Thompson</a>:</em></p>\n<p>This week Twitter was abuzz with the <a href=\"http://blog.flurry.com/bid/109749/Apps-Solidify-Leadership-Six-Years-into-the-Mobile-Revolution\">most recent report</a> from Flurry that showed people spending most of their time on mobile using apps, not the browser:</p>\n<p><a href=\"http://blog.flurry.com/bid/109749/Apps-Solidify-Leadership-Six-Years-into-the-Mobile-Revolution\"><img class=\"aligncenter size-full wp-image-43732\" src=\"http://i0.wp.com/s.ma.tt/files/2014/04/app-time-spent.png?resize=600%2C556\" alt=\"Time Spent in APps\" /></a></p>\n<p>Many were quick to once again declare “The Web is Dead,” but I’m not sure that conclusion makes sense, at least for writing.</p>\n<p>First off, Flurry’s numbers don’t account for webviews within mobile apps. On my site, <a href=\"http://stratechery\">Stratechery</a>, 37% of my iOS traffic comes from webviews (Android doesn’t break out the difference), which on Flurry’s chart would fall mostly in the Twitter slice. More mass market sites likely take up some percentage of Facebook time, as well.</p>\n<p>That said, it’s striking how little written content appears on Flurry’s chart; the only category that is primarily about written content is news, and even that includes video. And yet, pageviews on WordPress.com and Jetpack are <em>up</em> 27% year-over-year, new sites ranging from small blogs like Stratechery to huge sites like <a href=\"http://fivethirtyeight.com/\">FiveThirtyEight</a> continue to launch and grow, and multiple startups (and competitors!) continue to find writing something worth investing in.</p>\n<p>So is the web dead or not?</p>\n<p>I don’t think so, for a few reasons:</p>\n<ul>\n<li>The total amount of time spent on a computing device (especially mobile), has and continues to grow significantly. This means that many of the activities on our phones, app or not, are <em>additive</em> to what we previously used a computer for. This makes sense: what makes mobile such a big deal is that instead of a computer being a destination device, it’s now a companion that goes with us everywhere. This is how you square the fact that apps seem to dominate usage even as writing on the web continues to grow. When the entire pie is huge and getting bigger, the total size of any particular slice grows as well, even if it becomes relatively thinner.</li>\n<li>Although apps take up a huge percentage of total time, a significant percentage of app time is dominated by just two categories: games (32%) and social networks and messaging (28%). In fact, the more interesting juxtaposition raised by Flurry’s numbers is not apps versus web, but games and social versus everything else.YouTube and other entertainment apps form a solid percentage of what is left (8%), but the remainder is a mishmash of utilities, productivity, the aforementioned news, and, of course the web, which could be anything and everything.</li>\n<li>The single most exciting development when it comes to writing on the web is the democratization of publishing. It it now trivial to start a blog, whether on WordPress.com or another provider, and that has led to an explosion of content. As I wrote on Stratechery in <a href=\"http://stratechery.com/2014/fivethirtyeight-end-average/\">FiveThirtyEight and the End of Average</a>:<br />\n<blockquote><p>Most of what I read is the best there is to read on any given subject. The trash is few and far between, and the average equally rare. This, of course, is made possible by the Internet. No longer are my reading choices constrained by time and especially place.</p>\n<p>Why should I pick up the Wisconsin State Journal – or the Taipei Times – when I can read Nate Silver, Ezra Klein, Bill Simmons, and the myriad other links served up by Twitter? I, and everyone else interested in news, politics, or sports, can read the best with less effort – and cost – than it ever took to read the merely average just a few short years ago.</p></blockquote>\n<p>While there is still a lot of work to be done on discovery (I mostly use Twitter, but admit the learning curve is steep), I already find the idea of being constrained to any one channel for reading to be laughably old-fashioned. And yet, that’s exactly what an app is: a single channel for one publisher’s content. Contrast this to the web, where any given piece is available instantly by simply clicking a link.</li>\n</ul>\n<p>There is no question that apps are here to stay, and are a superior interaction model for some uses. But the web is like water: it fills in all the gaps between things like gaming and social with exactly what any one particular user wants. And while we all might have a use for Facebook – simply because everyone is there – we all have different things that interest us when it comes to reading.</p>\n<p>That’s why very few of us devote all of our reading time to a single general interest newspaper these days, and that’s why we at WordPress.com have no intention of pushing anyone to any one particular platform or app. Instead our focus is on enabling and empowering individuals to create new content that is at home in the mobile browser, the WordPress.com app, Facebook or Twitter webviews, or any other channel that makes sense for the reader. Let the water flow to exactly where it’s needed! That’s the power of the web, and now that a computer is with us in so many more places, we need that flexibility more than ever.</p>\n<p><em>You can read more of Ben Thompson’s writing on his excellent <a href=\"http://stratechery.com/\">WordPress-powered blog Stratechery</a>, one of my favorite sources for the “why” behind the news.</em></p>\n<p>See also: <a href=\"http://daringfireball.net/2014/04/rethinking_what_we_mean_by_mobile_web\">John Gruber on Rethinking What We Mean by ‘Mobile Web.’</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, 08 Apr 2014 16:34: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: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: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:78:\"WPTavern: WordPress Theme Review VVV: A Quick Vagrant Setup for Testing 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:28:\"http://wptavern.com/?p=20551\";s: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:226:\"http://wptavern.com/wordpress-theme-review-vvv-a-quick-vagrant-setup-for-testing-and-reviewing-themes?utm_source=rss&utm_medium=rss&utm_campaign=wordpress-theme-review-vvv-a-quick-vagrant-setup-for-testing-and-reviewing-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:3472:\"<p><a href=\"https://github.com/Varying-Vagrant-Vagrants/VVV\" target=\"_blank\">Varying Vagrant Vagrants</a> is likely the most popular Vagrant configuration for setting up a WordPress development environment. VVV makes it easy to create new WordPress installations for developing themes and plugins as well as contributing to core.</p>\n<p>One of the most time-consuming aspects of testing and reviewing WordPress themes is setting up a test site with all the necessary development tools. <a href=\"https://github.com/aubreypwd/wordpress-themereview-vvv\" target=\"_blank\">WordPress Theme Review VVV</a> is a vagrant setup created by <a href=\"http://aubreypwd.com/\" target=\"_blank\">Aubrey Portwood</a>. It completely automates the process of setting up your development site and tools for theme review.</p>\n<h3>How to Set Up WordPress Theme Review VVV</h3>\n<p>This tutorial makes use of an existing VVV setup. If you haven’t yet installed it, check out the <a href=\"https://github.com/Varying-Vagrant-Vagrants/VVV\" target=\"_blank\">VVV project page on github</a> and follow those instructions to get up and running.</p>\n<p><strong>Step 1:</strong> Switch to your VVV installation’s www directory.</p>\n<p><code>cd www</code></p>\n<p><strong>Step 2:</strong> Clone the <a href=\"https://github.com/aubreypwd/wordpress-themereview-vvv\" target=\"_blank\">WordPress Theme Review VVV project</a> to a wordpress-themereview folder.</p>\n<p><code>git clone git://github.com/aubreypwd/wordpress-themereview-vvv.git wordpress-themereview</code></p>\n<p><strong>Step 3:</strong> Re-provision your VVV.</p>\n<p><code>vagrant provision</code></p>\n<p><strong>Step 4:</strong> Visit your new theme review development site.</p>\n<p><a href=\"http://themereview.wordpress.dev\">http://themereview.wordpress.dev</a></p>\n<p><strong>Login Credentials:</strong><br />\n<strong>user:</strong> admin<br />\n<strong>password:</strong> password</p>\n<p>Here’s what the WordPress Theme Review VVV script does:</p>\n<ul>\n<li>Creates a /vagrant-local/www/wordpress-themereview/htdocs folder with a fresh WordPress install</li>\n<li>Creates a data base wordpress_themereview database.</li>\n<li>Installs and activates the <a href=\"http://wordpress.org/plugins/developer/\" target=\"_blank\">Developer</a> and <a href=\"http://wordpress.org/plugins/theme-check/\" target=\"_blank\">Theme-Check</a> plugins</li>\n<li>Imports the <a href=\"http://codex.wordpress.org/Theme_Unit_Test\" target=\"_blank\">Theme Unit Test</a> data</li>\n</ul>\n<p><a href=\"http://wptavern.com/wp-content/uploads/2014/04/themereview-vvv.png\" rel=\"prettyphoto[20551]\"><img src=\"http://wptavern.com/wp-content/uploads/2014/04/themereview-vvv.png\" alt=\"themereview-vvv\" width=\"1400\" height=\"837\" class=\"aligncenter size-full wp-image-20588\" /></a></p>\n<p>You are now ready to start testing WordPress themes. When you want to start over, simply delete the htdocs folder in the wordpress-themereview directory.</p>\n<p>The ability to create test environments in a flash makes theme testing less of a chore. Using this VVV setup takes a fraction of the amount of time it would normally require to get a theme development environment set up with all the plugins and test data required. If you’re a WordPress theme developer or part of the Theme Review Team, give the <a href=\"https://github.com/aubreypwd/wordpress-themereview-vvv\" target=\"_blank\">WordPress Theme Review VVV</a> setup a try to see if it can make your workflow more efficient.</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, 08 Apr 2014 02:11: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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";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:52:\"WPTavern: The Idea Of Sponsored Comments Disqusts Me\";s: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:28:\"http://wptavern.com/?p=20556\";s: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:148:\"http://wptavern.com/the-idea-of-sponsored-comments-disqusts-me?utm_source=rss&utm_medium=rss&utm_campaign=the-idea-of-sponsored-comments-disqusts-me\";s: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:5768:\"<p><a title=\"http://blog.disqus.com/post/82003625662/heads-up-were-testing-a-new-form-of-advertising\" href=\"http://blog.disqus.com/post/82003625662/heads-up-were-testing-a-new-form-of-advertising\">Disqus announced</a> it is testing out a new advertising technique in the form of sponsored comments. According to the post, the experiment has been going on for at least a month and based on the results, is expanding it across the service. The sponsored comments are clearly marked as such and can contain any type of media to get the point across. Here is what the comments look like minimized and expanded.</p>\n<div id=\"attachment_20558\" class=\"wp-caption aligncenter\"><a href=\"http://wptavern.com/wp-content/uploads/2014/04/DisqusSponsoredComments.png\" rel=\"prettyphoto[20556]\"><img class=\"size-full wp-image-20558\" alt=\"Disqus Sponsored Comments\" src=\"http://wptavern.com/wp-content/uploads/2014/04/DisqusSponsoredComments.png\" width=\"500\" height=\"576\" /></a><p class=\"wp-caption-text\">Disqus Sponsored Comments</p></div>\n<p>Disqus says the sponsored comments are based on a feature launched earlier this year called <a title=\"http://blog.disqus.com/post/78689902559/introducing-featured-comments\" href=\"http://blog.disqus.com/post/78689902559/introducing-featured-comments\">Featured Comments</a> which gives publishers a chance to highlight the best comments within a conversation. This is a great feature for publishers as long as the featured content is not an ad. Sponsored ads are not set in stone and the service is still working on the overall experience concentrating on the <strong>quality</strong>, <strong>positioning</strong>, and <strong>feedback</strong> of the ads. Disqus says sites that have ads disabled will not see the sponsored comments.</p>\n<h3>Using A Third-Party Service Takes You Out Of The Drivers Seat</h3>\n<p>Back in March, we discussed <a title=\"http://wptavern.com/what-is-the-future-of-comments-in-wordpress\" href=\"http://wptavern.com/what-is-the-future-of-comments-in-wordpress\">what the future looks like</a> for comments within WordPress. More and more sites are opting to use a third-party service to power their comments instead of using the native solution built into WordPress. It’s easy to see why when you consider the large amount of plugins it would take to duplicate the functionality third-party services offer such as featured comments and comment voting. But the downside to using a third-party as a publisher is that you’re attached to their leash.</p>\n<div id=\"attachment_20562\" class=\"wp-caption aligncenter\"><a href=\"http://wptavern.com/wp-content/uploads/2014/04/ThirdPartyLeash.png\" rel=\"prettyphoto[20556]\"><img class=\"size-full wp-image-20562\" alt=\"Third Party Leash\" src=\"http://wptavern.com/wp-content/uploads/2014/04/ThirdPartyLeash.png\" width=\"640\" height=\"200\" /></a><p class=\"wp-caption-text\">photo credit: <a href=\"http://www.flickr.com/photos/-konayuki-/5337854899/\">Suki♥!</a> – <a href=\"http://creativecommons.org/licenses/by-nc/2.0/\">cc</a></p></div>\n<p>In 2012, <a title=\"http://blog.disqus.com/post/24630634643/discovery-in-disqus\" href=\"http://blog.disqus.com/post/24630634643/discovery-in-disqus\">Disqus turned on</a> a new feature called Discovery. Many viewed the feature as a form of advertising but the point is that it was enabled automatically for each site it rolled out on. By using a service to power your comments, you could wake up one day to see an entirely new commenting form or a host of new features that ruin the experience on your site.</p>\n<h3>I Declare Comments An Ad-Free Zone!</h3>\n<p>The reaction to the new feature within the <a title=\"http://blog.disqus.com/post/82003625662/heads-up-were-testing-a-new-form-of-advertising#disqus_thread\" href=\"http://blog.disqus.com/post/82003625662/heads-up-were-testing-a-new-form-of-advertising#disqus_thread\">comments of the announcement</a> is lukewarm at best with more questions than answers. I commend Disqus for at least being upfront with their users and explaining that it’s an experiment. By communicating the experiment upfront, it should prevent a flurry of angry users demanding to know why advertising is showing up on their site without their explicit approval.</p>\n<p>The comment section of a website is where the magic of community happens. It’s where the reader gets a chance to voice their thoughts and opinions and interact with the author. In the case of WPTavern, it’s been a rewarding experience over the years with a lot of interaction in the comments.</p>\n<p>There are many areas on a site to place advertising and the comments shouldn’t be one those. Unless they are brought up by a commenter within the conversation, advertising cheapens the interactive experience. They also make the site look amateurish just like most other forms of advertising do.</p>\n<p><a href=\"http://wptavern.com/wp-content/uploads/2014/03/spam.jpg\" rel=\"prettyphoto[20556]\"><img class=\"aligncenter size-large wp-image-19912\" alt=\"spam\" src=\"http://wptavern.com/wp-content/uploads/2014/03/spam-500x237.jpg\" width=\"500\" height=\"237\" /></a></p>\n<p>I don’t care how relevant the ad is, I wouldn’t want any part of it showing up in the discussion. If not executed correctly, one sponsored comment gives the appearance that a spam comment got through the filter. Comments are an important part of the experience on many WordPress sites and they’re generally filled with more information about the topic being discussed. I doubt a sponsored comment would be able to add anything meaningful to a conversation.</p>\n<p><strong>Do you use Disqus? If so, what do you think about this new feature? Is it something you support or will you have no part of it on your site?</strong></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, 08 Apr 2014 00:45: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:13:\"Jeff Chandler\";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:116:\"WordPress.tv: Interview de Caspar Hübinger, orateur de “Le dilemme du site multilingue et comment le résoudre”\";s: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:28:\"http://wordpress.tv/?p=34246\";s: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://wordpress.tv/2014/04/07/interview-de-caspar-hubinger-orateur-de-le-dilemme-du-site-multilingue-et-comment-le-resoudre/\";s: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:717:\"<div id=\"v-bva8lpZt-1\" class=\"video-player\">\n</div><br /> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/34246/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/34246/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=34246&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2014/04/07/interview-de-caspar-hubinger-orateur-de-le-dilemme-du-site-multilingue-et-comment-le-resoudre/\"><img alt=\"10 – Caspar Hubinger-Itw-WCParis2014.mp4\" src=\"http://videos.videopress.com/bva8lpZt/video-4ef86881cb_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:\"Mon, 07 Apr 2014 21:08: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:12:\"WordPress.tv\";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:100:\"WordPress.tv: Caspar Hübinger : Le dilemme du site multilingue et comment le résoudre (en anglais)\";s: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:28:\"http://wordpress.tv/?p=34244\";s: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:112:\"http://wordpress.tv/2014/04/07/caspar-hubinger-le-dilemme-du-site-multilingue-et-comment-le-resoudre-en-anglais/\";s: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:705:\"<div id=\"v-yA5BJT0l-1\" class=\"video-player\">\n</div><br /> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/34244/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/34244/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=34244&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2014/04/07/caspar-hubinger-le-dilemme-du-site-multilingue-et-comment-le-resoudre-en-anglais/\"><img alt=\"10 – Caspar Hubinger-Conf-WCParis2014.mp4\" src=\"http://videos.videopress.com/yA5BJT0l/video-e7af159902_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:\"Mon, 07 Apr 2014 21: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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"WordPress.tv\";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:49:\"WPTavern: DevPress Sold To Unknown Buyer For $14k\";s: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:28:\"http://wptavern.com/?p=20495\";s: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:140:\"http://wptavern.com/devpress-sold-to-unknown-buyer-for-14k?utm_source=rss&utm_medium=rss&utm_campaign=devpress-sold-to-unknown-buyer-for-14k\";s: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:4255:\"<p>The WordPress theme club known as <a title=\"http://devpress.com/\" href=\"http://devpress.com/\">DevPress</a> has <a title=\"https://flippa.com/3053438-pr-5-wordpress-themes-subscription-club-with-13-410-uniques-mo-making-413-mo\" href=\"https://flippa.com/3053438-pr-5-wordpress-themes-subscription-club-with-13-410-uniques-mo-making-413-mo\">been sold</a> to an unknown buyer for $14k. <a title=\"http://justintadlock.com/archives/2010/09/21/announcing-devpress\" href=\"http://justintadlock.com/archives/2010/09/21/announcing-devpress\">Launched in 2010</a>, DevPress began as a WordPress collaboration project between <strong>Ptah Dunbar, Tung Do (aka Small Potato), Patrick Daly, and Justin Tadlock</strong>. Over the past four years, the company has experienced ups and downs. For example, in 2011, the company launched a <a title=\"http://web.archive.org/web/20111205195951/http://devpress.com/blog/launching-a-theme-and-plugin-review-service\" href=\"http://web.archive.org/web/20111205195951/http://devpress.com/blog/launching-a-theme-and-plugin-review-service\">theme and plugin review service</a> that didn’t last long and was eventually phased out. In late 2011, Tung Do <a title=\"http://justintadlock.com/archives/2011/12/13/whats-going-on-with-devpress\" href=\"http://justintadlock.com/archives/2011/12/13/whats-going-on-with-devpress\">became the sole owner</a> of DevPress.</p>\n<p><a href=\"http://wptavern.com/wp-content/uploads/2014/04/DevPressFrontPage.png\" rel=\"prettyphoto[20495]\"><img src=\"http://wptavern.com/wp-content/uploads/2014/04/DevPressFrontPage-500x304.png\" alt=\"The Front Page Of DevPress.com\" width=\"500\" height=\"304\" class=\"aligncenter size-large wp-image-20546\" /></a></p>\n<p>Do cites financial and health issues as the primary reasons for selling the site.</p>\n<blockquote><p>For the past four years, through thick and thin, I did not want to sell this site. WordPress theme development is one of the few things I love, but I’ve not have had time to run this site properly and my wife has been sick for the past few months. I’ve already taken a loan 2 months ago, but her medical bills are stacking up. Obviously, I love my wife more so I’ve decided to sell.</p></blockquote>\n<h3>This Isn’t The First WordPress Site Do Has Sold</h3>\n<p>Selling websites is not unfamiliar territory for Do. In 2008, he sold his popular site <a title=\"http://wpcandy.com/reports/wpdesignercom-sold\" href=\"http://wpcandy.com/reports/wpdesignercom-sold\">WPDesigner.com for $65k.</a> Unfortunately, the result of that sale was a front page filled with webhosting affiliate links.</p>\n<p>While the new owner of DevPress has yet to be named, <a title=\"http://www.poststat.us/devpress-sold-14000-flippa/#comment-116498\" href=\"http://www.poststat.us/devpress-sold-14000-flippa/#comment-116498\">Do says</a> the new owner is someone he would trust to take over the site, “He <strong>is</strong> someone I would trust because he is competent in WordPress, is involved in giving back to the community, and has a more consistent track record than I do.” Do also said it will make sense when we find out who the new owner is. “When the deal is finished and you know who it is, it’ll make sense.”</p>\n<h3>Lessons Learned From Four Years Of Experience</h3>\n<p>I asked Do what lessons did he learn and what advice can he share from his four years working for DevPress. He said:</p>\n<blockquote><p>Innovation/bold-ideas doesn’t pay if you don’t succeed and patent it so focus on progress, consistency, and improving things most people find useful. Let others innovate and learn from their mistakes without having to pay the price yourself.</p></blockquote>\n<p>It’s unclear whether this is his last attempt to have a successful, sustainable, commercial theme business. After exchanging a few emails, I get the sense that he is changing his career path to go outside of WordPress. It’s unfortunate because I think he is one of the most talented designers within the WordPress community. I hope that he finds happiness and stability wherever his path leads him.</p>\n<p><strong>Who do you think the new owner of DevPress is? Let us know by leaving your best guess in the comments.</strong></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, 07 Apr 2014 19: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:13:\"Jeff Chandler\";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:67:\"WPTavern: P2 Jams WordPress Plugin: Share Your Music with Your Team\";s: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:28:\"http://wptavern.com/?p=20490\";s: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:176:\"http://wptavern.com/p2-jams-wordpress-plugin-share-your-music-with-your-team?utm_source=rss&utm_medium=rss&utm_campaign=p2-jams-wordpress-plugin-share-your-music-with-your-team\";s: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:4194:\"<div id=\"attachment_20543\" class=\"wp-caption aligncenter\"><a href=\"http://wptavern.com/wp-content/uploads/2014/04/music.jpg\" rel=\"prettyphoto[20490]\"><img src=\"http://wptavern.com/wp-content/uploads/2014/04/music.jpg\" alt=\"photo credit: Your petite tune - cc license\" width=\"1024\" height=\"502\" class=\"size-full wp-image-20543\" /></a><p class=\"wp-caption-text\">photo credit: <a href=\"https://www.flickr.com/photos/sophielovescute/4660366629\">Your petite tune</a> – <a href=\"https://creativecommons.org/licenses/by-nc-nd/2.0/\">cc</a> license</p></div>\n<p><a href=\"http://www.last.fm\" target=\"_blank\">Last.fm</a> never really caught on as a music service, but its scrobbling capabilities are still widely used. Its subscription streaming radio service will be retired at the end of this month in favor of <a href=\"http://blog.last.fm/2014/01/29/did-someone-say-on-demand\" target=\"_blank\">on demand integration with Spotify</a> and a new YouTube-powered radio player. Last.fm’s scrobbling service will also continue to live on.</p>\n<p><a href=\"https://github.com/scottbasgaard/p2-jams\" target=\"_blank\">P2 Jams</a> is a new WordPress plugin that makes use of Last.fm scrobbling to allow project and team members to share the music they are listening to simply by linking up a Last.fm username.</p>\n<p><a href=\"http://wptavern.com/wp-content/uploads/2014/04/p2jamswidget.jpg\" rel=\"prettyphoto[20490]\"><img src=\"http://wptavern.com/wp-content/uploads/2014/04/p2jamswidget.jpg\" alt=\"p2jamswidget\" width=\"999\" height=\"310\" class=\"aligncenter size-full wp-image-20509\" /></a></p>\n<p>From my tests with the plugin, it seems that it only displays music that a user is currently listening to and does not keep a backlog of tracks. The widget aggregates the “now playing” tunes from all users on a P2 blog who have entered a Last.fm username into their profiles.</p>\n<p>Users can get more information about each tune by clicking on the link for the track. This takes you to Last.fm’s entry for that particular song, which provides album and historical information as well as a link to Spotify.</p>\n<p><a href=\"http://wptavern.com/wp-content/uploads/2014/04/lastfm-link.jpg\" rel=\"prettyphoto[20490]\"><img src=\"http://wptavern.com/wp-content/uploads/2014/04/lastfm-link.jpg\" alt=\"lastfm-link\" width=\"646\" height=\"440\" class=\"aligncenter size-full wp-image-20507\" /></a></p>\n<p>As the plugin didn’t have many instructions, here’s a quick walkthrough of how to use it. <a href=\"https://github.com/scottbasgaard/p2-jams\" target=\"_blank\">P2 Jams is available on github</a> from WordPress developer Scott Basgaard. When installing a plugin from github, I usually download it, unpack it and then rename the plugin’s folder to remove “master” from the name.</p>\n<p>Once installed, there are no settings to configure. Each member of the site will now have the option to enter a Last.fm username on the profile edit screen located at <strong>wp-admin/profile.php</strong>. Drop the P2 Jams “Who’s Jammin’?” widget in to the sidebar of the theme to display the tracks that team members are currently enjoying.</p>\n<p>P2 Jams is entirely dependent on having a Last.fm username. If you don’t have one, you’ll need to sign up for a free account. In the unlikely event that you still listen to music on the Last.fm website, your username will automatically send your current tracks to the widget on the site.</p>\n<p>If you’re using Spotify as your music service, you’ll need to enable scrobbling to Last.fm. This is done via Spotify’s <strong>Edit >> Preferences</strong> menu.</p>\n<p><a href=\"http://wptavern.com/wp-content/uploads/2014/04/spotify-edit-preferences.jpg\" rel=\"prettyphoto[20490]\"><img src=\"http://wptavern.com/wp-content/uploads/2014/04/spotify-edit-preferences.jpg\" alt=\"spotify-edit-preferences\" width=\"780\" height=\"299\" class=\"aligncenter size-full wp-image-20508\" /></a></p>\n<p>P2 Jams is a creative way for team members to connect and discover new artists. If your team loves music, this unique plugin can help foster a sense of community and add a little fun to your P2 collaboration.</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, 07 Apr 2014 18:28: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:13:\"Sarah Gooding\";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:33:\"Matt: Bitcoin: The Fifth Protocol\";s: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=43729\";s: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:48:\"http://ma.tt/2014/04/bitcoin-the-fifth-protocol/\";s: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:191:\"<p>Naval Ravikant writes on Bitcoin (and more) as <a href=\"http://startupboy.com/2014/04/01/the-fifth-protocol/\">The Fifth Protocol</a>. Fantastic read, and reminds me to read Snow Crash.</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, 07 Apr 2014 01:41: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: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: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:59:\"Lorelle on WP: Clark College Students Want to Interview You\";s: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:37:\"http://lorelle.wordpress.com/?p=11653\";s: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:85:\"http://lorelle.wordpress.com/2014/04/05/clark-college-students-want-to-interview-you/\";s: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:510:\"Students in my Clark College WordPress class are required to interview a WordPress professional and member of the WordPress Community as part of their assignments for our student managed site, ClarkWP Magazine. Would you like to be an interview subject? Here are the qualifications. You must use WordPress actively as part of your business. The […]<img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=lorelle.wordpress.com&blog=72&post=11653&subd=lorelle&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:\"Sun, 06 Apr 2014 01:08: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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:17:\"Lorelle VanFossen\";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:48:\"WPTavern: WordPress.org Profile Redesign is Live\";s: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:28:\"http://wptavern.com/?p=20461\";s: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:140:\"http://wptavern.com/wordpress-org-profile-redesign-is-live?utm_source=rss&utm_medium=rss&utm_campaign=wordpress-org-profile-redesign-is-live\";s: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:2077:\"<p>If you haven’t visited WordPress.org lately, the brand new design for profiles is a happy discovery. Last month, Jen Mylo let us know that the profiles were getting <a href=\"http://wptavern.com/wordpress-org-profiles-on-track-to-be-totally-revamped\" target=\"_blank\">redesigned and relaunched</a> with more data related to a user’s involvement with the WordPress project. The profile updates are now live with a fresh design that recognizes various types of contributions.</p>\n<p><a href=\"http://wptavern.com/wp-content/uploads/2014/04/wordpress-profile.png\" rel=\"prettyphoto[20461]\"><img src=\"http://wptavern.com/wp-content/uploads/2014/04/wordpress-profile.png\" alt=\"wordpress-profile\" width=\"1400\" height=\"628\" class=\"aligncenter size-full wp-image-20468\" /></a></p>\n<p>Eventually, the WordPress.org team plans to merge the new profiles with the forum profiles, creating a unified dashboard.</p>\n<p>You can visit <strong>http://profiles.wordpress.org/[username]</strong> to view and update your profile, or sign up on WordPress.org to create one. Log into WordPress.org and click the “edit” link on your profile to update your info.</p>\n<h3>Write Your WordPress Origin Story</h3>\n<p>A new field on the profiles gives you a place to write your WordPress <a href=\"http://en.wikipedia.org/wiki/Origin_story\" target=\"_blank\">origin story</a>. At the very bottom of the <strong>/profile/edit/group/1/</strong> page you can describe how you got involved with WordPress.</p>\n<p>The new profiles are now a better representation of a person’s interactions on WordPress.org and general involvement with the project. If you haven’t bothered to update your profile for a few years, now is a good time to take another look. Plugin and theme author info and WordCamp speaker data is still in the process of being imported. This is only the first iteration, but it’s already easier to keep track of all your activity, plugins, themes and favorites. Will you be more likely to link to your profile now that it includes more relevant information?</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:\"Sat, 05 Apr 2014 17:01: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:13:\"Sarah Gooding\";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:64:\"WPTavern: WPWeekly Episode 144 – WordPress Security Roundtable\";s: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:44:\"http://wptavern.com?p=20456&preview_id=20456\";s: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:164:\"http://wptavern.com/wpweekly-episode-144-wordpress-security-roundtable?utm_source=rss&utm_medium=rss&utm_campaign=wpweekly-episode-144-wordpress-security-roundtable\";s: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:2545:\"<p>This episode of WordPress Weekly featured a panel of four individuals helping to make the web a safer place.</p>\n<ul>\n<li>Chris Wiegman – Lead Developer of <a title=\"https://wordpress.org/plugins/better-wp-security/\" href=\"https://wordpress.org/plugins/better-wp-security/\">iThemes Security</a></li>\n<li>Regina Smola – Founder of <a title=\"http://wpsecuritylock.com/\" href=\"http://wpsecuritylock.com/\">WPSecurityLock</a></li>\n<li>Brennen Byrne – Founder and CEO of <a title=\"https://getclef.com/\" href=\"https://getclef.com/\">Clef</a></li>\n<li>Sam Hotchkiss – Founder of <a title=\"https://bruteprotect.com/\" href=\"https://bruteprotect.com/\">BruteProtect</a></li>\n</ul>\n<p>We discussed a number of topics such as two-factor authentication, security best practices, and whether or not strong passwords should be a requirement when creating a user account in WordPress. We also debated whether or not two-factor authentication will become a core feature. Last but not least, we went over some of the trends they’re noticing when it comes to protecting user’s WordPress sites.</p>\n<h2>Stories Discussed:</h2>\n<p><a title=\"http://wptavern.com/wordpress-3-9-release-date-officially-set-for-april-16th\" href=\"http://wptavern.com/wordpress-3-9-release-date-officially-set-for-april-16th\">WordPress 3.9 Release Date Officially Set for April 16th</a><br />\n<a title=\"http://wptavern.com/wordpress-3-9-to-add-oembed-support-for-meetup-com-and-imgur\" href=\"http://wptavern.com/wordpress-3-9-to-add-oembed-support-for-meetup-com-and-imgur\">WordPress 3.9 to Add oEmbed Support for Meetup.com and Imgur</a><br />\n<a title=\"http://wptavern.com/distraction-free-writing-mode-will-be-responsive-in-wordpress-3-9\" href=\"http://wptavern.com/distraction-free-writing-mode-will-be-responsive-in-wordpress-3-9\">Distraction Free Writing Mode Will Be Responsive in WordPress 3.9</a></p>\n<h2>WPWeekly Meta:</h2>\n<p><strong>Next Episode:</strong> Friday, April 11th 3 P.M. Eastern</p>\n<p><strong>Subscribe To WPWeekly Via Itunes: </strong><a href=\"https://itunes.apple.com/us/podcast/wordpress-weekly/id694849738\" target=\"_blank\">Click here to subscribe</a></p>\n<p><strong>Subscribe To WPWeekly Via RSS: </strong><a href=\"http://www.wptavern.com/feed/podcast\" target=\"_blank\">Click here to subscribe</a></p>\n<p><strong>Subscribe To WPWeekly Via Stitcher Radio: </strong><a href=\"http://www.stitcher.com/podcast/wordpress-weekly-podcast?refid=stpr\" target=\"_blank\">Click here to subscribe</a></p>\n<p><strong>Listen To Episode #144:</strong><br />\n</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:\"Sat, 05 Apr 2014 01:24: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:13:\"Jeff Chandler\";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:90:\"WPTavern: The Combination Of Jetpack and Dreamhost Security Settings Lead To Lost 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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wptavern.com/?p=20436\";s: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:224:\"http://wptavern.com/the-combination-of-jetpack-and-dreamhost-security-settings-lead-to-lost-comments?utm_source=rss&utm_medium=rss&utm_campaign=the-combination-of-jetpack-and-dreamhost-security-settings-lead-to-lost-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:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3504:\"<p>If you’re experiencing issues with Jetpack comments, you’re not the only one. First reported by WPTavern commenter, Mike McAlister, Jetpack Comments has been producing a <strong>Service Not Available error</strong> since the afternoon of April 3rd.</p>\n<blockquote class=\"twitter-tweet\" width=\"550\"><p><a href=\"https://twitter.com/wptavern\">@wptavern</a> Seems the Tavern comment forms are getting \"Service Temporarily Unavailable\" errors. Maybe just Jetpack, but thought I\'d mention!</p>\n<p>— Mike McAlister (@mikemcalister) <a href=\"https://twitter.com/mikemcalister/statuses/451798115511578624\">April 3, 2014</a></p></blockquote>\n<p></p>\n<p>Not only does the error show up after submitting a comment, but the comment is then lost. There is at least <a title=\"http://wordpress.org/support/topic/comments-are-temporarily-unavailable?replies=1\" href=\"http://wordpress.org/support/topic/comments-are-temporarily-unavailable?replies=1\">one support request</a> on the WordPress.org forums reporting the same problem.</p>\n<div id=\"attachment_20439\" class=\"wp-caption aligncenter\"><a href=\"http://wptavern.com/wp-content/uploads/2014/04/JetpackCommentsOutOfFuel.png\" rel=\"prettyphoto[20436]\"><img class=\"size-full wp-image-20439\" alt=\"Jetpack Comments Temporarily Offline\" src=\"http://wptavern.com/wp-content/uploads/2014/04/JetpackCommentsOutOfFuel.png\" width=\"646\" height=\"201\" /></a><p class=\"wp-caption-text\">Jetpack Comments Error Due To Dreamhost Security Configuration</p></div>\n<p>As it turns out, Dreamhost tweaked security settings dealing with <a title=\"http://www.modsecurity.org/\" href=\"http://www.modsecurity.org/\">mod_security</a>. Due to the changes, Jetpack is failing to communicate with WordPress.com causing modules like Jetpack Comments to malfunction.</p>\n<p><strong>Dreamhost has since reverted those changes allowing Jetpack Comments to function normally again.</strong></p>\n<h3>Why Comments Were Lost and The Need For A Graceful Fallback</h3>\n<p>Through this experience, I’ve learned a number of things related to how the <a title=\"http://jetpack.me/support/comments/\" href=\"http://jetpack.me/support/comments/\">Jetpack Comments module</a> works. For starters, the module does not hold comments for a specific amount of time. Instead, it pushes comments to the local install of WordPress immediately. This negates the need to have database synchronization which is common with other third-party commenting services.</p>\n<p>Since the iFrame continued to load normally, the comments section appeared to be working correctly. Only after trying to submit a comment were they presented with an error and the comment was lost. There is now an <a title=\"https://github.com/Automattic/jetpack/issues/446\" href=\"https://github.com/Automattic/jetpack/issues/446\">ongoing discussion on GitHub</a> exploring ideas to have better error messages and prevent comments in the future from being lost.</p>\n<p>I like the idea that if an error is encountered when trying to submit a comment, the visitor is presented an option to submit it through the native WordPress comment form. At the very least, this would give them a chance to copy the comment instead of losing it.</p>\n<p>Comments are very important to me and I apologize if you’ve tried to submit one to the site within the past 48 hours and lost it. I’m confident that through this experience, the Jetpack Comments module will receive the necessary updates to prevent future comments from being lost.</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:\"Fri, 04 Apr 2014 18:16: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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s: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:\"Wed, 16 Apr 2014 16:22:22 GMT\";s:12:\"content-type\";s:8:\"text/xml\";s:14:\"content-length\";s:6:\"197301\";s:10:\"connection\";s:5:\"close\";s:4:\"vary\";s:15:\"Accept-Encoding\";s:13:\"last-modified\";s:29:\"Wed, 16 Apr 2014 16:15:16 GMT\";s:4:\"x-nc\";s:11:\"HIT lax 250\";s:13:\"accept-ranges\";s:5:\"bytes\";}s:5:\"build\";s:14:\"20121202204312\";}','no'),(183,'_transient_timeout_feed_mod_57bc725ad6568758915363af670fd8bc','1397708543','no'),(181,'_transient_timeout_feed_57bc725ad6568758915363af670fd8bc','1397708543','no'),(182,'_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:40:\"http://wordpress.org/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:\"Wed, 16 Apr 2014 16: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: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:37:\"TT Like & Follow for WP-Multisite\";s: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/plugins/tt-like-follow-for-wp-multisite/#post-64744\";s: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, 04 Mar 2014 20:28: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:35:\"64744@http://wordpress.org/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:117:\"TT Like & Follow for WP-Multisite gives you the chance to add basic Social Network features to your installation.\";s: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:\"paoltaia\";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:22:\"Amazon Revenue Sharing\";s: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/plugins/amazon-revenue-sharing/#post-65762\";s: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, 01 Apr 2014 17:12: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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"65762@http://wordpress.org/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:\"Encourage quality content by sharing the revenue!\";s: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:\"philipbaxter\";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:37:\"Company, Team and People presentation\";s: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/plugins/company-presentation/#post-65876\";s: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, 04 Apr 2014 04:09: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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"65876@http://wordpress.org/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:\"Expose your company teams and people in minutes.\nProdii collects data for you from multiple medias to integrate with your personal homepage.\";s: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:20:\"Ralph Rezende Larsen\";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:20:\"StatsFC Player Rater\";s: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/plugins/statsfc-player-rater/#post-66251\";s: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, 14 Apr 2014 12:55: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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"66251@http://wordpress.org/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:\"This widget will place a player rater for all matches of any Premier League team on your website.\";s: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:\"Will Woodward\";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:37:\"INinbox Email Marketing Sign up Forms\";s: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:78:\"http://wordpress.org/plugins/ininbox-email-marketing-sign-up-forms/#post-65913\";s: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, 05 Apr 2014 11:52: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:35:\"65913@http://wordpress.org/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:144:\"The Official INinbox Sign Up Form plugin makes it easy to grow your subscribers! Integrate your newsletter sign up forms in 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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:23:\"INinbox Email Marketing\";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:36:\"Email List Builder by Social Intents\";s: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/plugins/email-list-builder-by-social-intents/#post-66173\";s: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, 11 Apr 2014 16:35: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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"66173@http://wordpress.org/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:124:\"Add a customizable and targeted email list signup widget to any page. Integrates with MailChimp, Constant Contact, and CSV.\";s: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:\"socialintents\";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:11:\"Q3-Activity\";s: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/plugins/q3-activity/#post-65822\";s: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 Apr 2014 08:36: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:35:\"65822@http://wordpress.org/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:118:\"<p>Monitors user activity. Shows a list of users and the number of posts, created for a specified period of time.\n</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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"ytppa\";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:21:\"Query Strings Remover\";s: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/plugins/query-strings-remover/#post-66085\";s: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, 09 Apr 2014 18:55: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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"66085@http://wordpress.org/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:67:\"Remove query strings from static resources like CSS & JS files.\";s: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:\"Atul Kumar Pandey\";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:31:\"Simple Subscriber Signup 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/plugins/simple-subscriber-signup-widget/#post-66105\";s: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, 10 Apr 2014 11:20: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:35:\"66105@http://wordpress.org/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:\"A simple plugin to allow visitors to submit their email and name and be added to the subscribers list\";s: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:\"miocene22\";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:\"Wpkmkz Tweet Blockquotes\";s: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/plugins/wpkmkz-tweet-blockquotes/#post-65959\";s: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, 07 Apr 2014 09:57: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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"65959@http://wordpress.org/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:56:\"Add a blockquote with a tweet button to share on twitter\";s: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:\"skapator\";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:34:\"WPBizPlugins Easy Admin Quick Menu\";s: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:75:\"http://wordpress.org/plugins/wpbizplugins-easy-admin-quick-menu/#post-66253\";s: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, 14 Apr 2014 14:01: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:35:\"66253@http://wordpress.org/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:\"The Easy Admin Quick Menu lets you add a simple quick menu in the admin panel, with big and visible buttons that your clients simply cannot miss.\";s: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:\"wpbizplugins\";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:26:\"Timimas Supermarket Offers\";s: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/plugins/timimas-supermarket-offers/#post-65943\";s: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, 06 Apr 2014 16:53: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:35:\"65943@http://wordpress.org/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:142:\"Use this widget to get all current offers from greek supermarket. The widget connects to timimas.gr to get all current offers and best prices.\";s: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:\"skapator\";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:50:\"CMS2CMS: Joomla! K2 to WordPress Website Migration\";s: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:82:\"http://wordpress.org/plugins/cms2cms-joomla-k2-to-wp-website-migration/#post-66156\";s: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, 11 Apr 2014 08:28: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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"66156@http://wordpress.org/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:\"If you have the intention to convert all your data from Joomla K2 to WordPress, then this plugin is definitely what you need.\";s: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:\"cms2cms\";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:33:\"CMS2CMS: SMF to bbPress Convertor\";s: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/plugins/cms2cms-smf-to-bbpress-convertor/#post-66157\";s: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, 11 Apr 2014 08:29:49 +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:35:\"66157@http://wordpress.org/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:\"In case you plan to migrate your site from Simple Machines Forum to bbPress on WordPress, this plugin can assist to move your content automatically.\";s: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:\"cms2cms\";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:11:\"Remove Kses\";s: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/plugins/removekses/#post-66092\";s: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, 10 Apr 2014 00:43:40 +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:35:\"66092@http://wordpress.org/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:64:\"Disables KSES for the WordPress Editor Role. Compatible with MU.\";s: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:\"AUSWEB\";s: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:41:\"http://wordpress.org/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:10:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Wed, 16 Apr 2014 16:22:23 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:7:\"expires\";s:29:\"Wed, 16 Apr 2014 16:56:38 GMT\";s:13:\"cache-control\";s:0:\"\";s:6:\"pragma\";s:0:\"\";s:13:\"last-modified\";s:31:\"Wed, 16 Apr 2014 16:21:38 +0000\";s:4:\"x-nc\";s:11:\"HIT lax 249\";}s:5:\"build\";s:14:\"20121202204312\";}','no'),(161,'_transient_timeout_feed_mod_ac0b00fe65abe10e0c5b588f3ed8c7ca','1397708542','no'),(162,'_transient_feed_mod_ac0b00fe65abe10e0c5b588f3ed8c7ca','1397665342','no'),(163,'_transient_timeout_dash_4077549d03da2e451c8b5f002294ff51','1397708542','no'),(164,'_transient_dash_4077549d03da2e451c8b5f002294ff51','<div class=\"rss-widget\"><ul><li><a class=\'rsswidget\' href=\'http://wordpress.org/news/2014/04/wordpress-3-9-release-candidate-2/\' title=\'The second release candidate for WordPress 3.9 is now available for testing. If you haven’t tested 3.9 yet, you’re running out of time! We made about five dozen changes since the first release candidate, and those changes are all helpfully summarized in our weekly post on the development blog. Probably the biggest fixes are to live […] […]\'>WordPress 3.9 Release Candidate 2</a> <span class=\"rss-date\">April 15, 2014</span><div class=\'rssSummary\'>The second release candidate for WordPress 3.9 is now available for testing. If you haven’t tested 3.9 yet, you’re running out of time! We made about five dozen changes since the first release candidate, and those changes are all helpfully summarized in our weekly post on the development blog. Probably the biggest fixes are to live […] […]</div></li><li><a class=\'rsswidget\' href=\'http://wordpress.org/news/2014/04/wordpress-3-8-3/\' title=\'WordPress 3.8.3 is now available to fix a small but unfortunate bug in the WordPress 3.8.2 security release. The “Quick Draft” tool on the dashboard screen was broken in the 3.8.2 update. If you tried to use it, your draft would disappear and it wouldn’t save. While we doubt anyone was writing a novella using […] […]\'>WordPress 3.8.3 Maintenance Release</a> <span class=\"rss-date\">April 14, 2014</span><div class=\'rssSummary\'>WordPress 3.8.3 is now available to fix a small but unfortunate bug in the WordPress 3.8.2 security release. The “Quick Draft” tool on the dashboard screen was broken in the 3.8.2 update. If you tried to use it, your draft would disappear and it wouldn’t save. While we doubt anyone was writing a novella using […] […]</div></li></ul></div>','no'),(165,'_transient_timeout_feed_5bb9e141d211830152342ce8f8ffad54','1397708542','no'),(166,'_transient_feed_5bb9e141d211830152342ce8f8ffad54','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:58:\"link:http://pixelbuzz.pro/wordpress1/ - 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:95:\"http://www.google.com/search?ie=utf-8&q=link:http://pixelbuzz.pro/wordpress1/&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:89:\"Your search - <b>link:http://pixelbuzz.pro/wordpress1/</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:10:{s:12:\"content-type\";s:28:\"text/xml; charset=ISO-8859-1\";s:4:\"date\";s:29:\"Wed, 16 Apr 2014 16:22:22 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=222796640b2fbe89:FF=0:TM=1397665342:LM=1397665342:S=OPx-DiDEiPPNu8cK; expires=Fri, 15-Apr-2016 16:22:22 GMT; path=/; domain=.google.com\";i:1;s:212:\"NID=67=fyZyJN8E-EuPpFnl8gD2EKIQx8qly4OrDDYxmWXkT3zydTQh8PfH8L6KSdnbxY3-mZfGOZDKlC2QHFUMYZXXDsMtaGfq4Jli_kfkpFZ_B5fAL6W-YeTc3PaR-vvK_ViK; expires=Thu, 16-Oct-2014 16:22:22 GMT; path=/; domain=.google.com; HttpOnly\";}s:3:\"p3p\";s:122:\"CP=\"This is not a P3P policy! See http://www.google.com/support/accounts/bin/answer.py?hl=en&answer=151657 for more info.\"\";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:18:\"alternate-protocol\";s:7:\"80:quic\";}s:5:\"build\";s:14:\"20121202204312\";}','no'),(159,'_transient_timeout_feed_ac0b00fe65abe10e0c5b588f3ed8c7ca','1397708542','no'),(160,'_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:51:\"\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:\"Tue, 15 Apr 2014 09:47: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: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:9:\"generator\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"http://wordpress.org/?v=3.9-RC2\";s: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:45:\"\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:33:\"WordPress 3.9 Release Candidate 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:68:\"http://wordpress.org/news/2014/04/wordpress-3-9-release-candidate-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:77:\"http://wordpress.org/news/2014/04/wordpress-3-9-release-candidate-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:\"Tue, 15 Apr 2014 09:47: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:8:\"category\";a:2:{i:0;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:1;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=3151\";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:356:\"The second release candidate for WordPress 3.9 is now available for testing. If you haven’t tested 3.9 yet, you’re running out of time! We made about five dozen changes since the first release candidate, and those changes are all helpfully summarized in our weekly post on the development blog. Probably the biggest fixes are to live […]\";s: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:2328:\"<p>The second release candidate for WordPress 3.9 is now available for testing.</p>\n<p>If you haven’t tested 3.9 yet, you’re running out of time! We made about five dozen changes since the <a title=\"WordPress 3.9 Release Candidate\" href=\"http://wordpress.org/news/2014/04/wordpress-3-9-release-candidate/\">first release candidate</a>, and those changes are all helpfully summarized <a href=\"http://make.wordpress.org/core/?p=10237\">in our weekly post</a> on the development blog. Probably the biggest fixes are to live widget previews and the new theme browser, along with some extra TinyMCE compatibility and some RTL fixes.</p>\n<p><strong>Plugin authors:</strong> Could you test your plugins against 3.9, and if they’re compatible, make sure they are marked as tested up to 3.9? It only takes a few minutes and this really helps make launch easier. Be sure to follow along the core development blog; we’ve been posting <a href=\"http://make.wordpress.org/core/tag/3-9-dev-notes/\">notes for developers for 3.9</a>. (For example: <a href=\"http://make.wordpress.org/core/2014/04/15/html5-galleries-captions-in-wordpress-3-9/\">HTML5</a>, <a href=\"http://make.wordpress.org/core/2014/04/14/symlinked-plugins-in-wordpress-3-9/\">symlinks</a>, <a href=\"http://make.wordpress.org/core/2014/04/07/mysql-in-wordpress-3-9/\">MySQL</a>, <a href=\"http://make.wordpress.org/core/2014/04/11/plupload-2-x-in-wordpress-3-9/\">Plupload</a>.)</p>\n<p>To test WordPress 3.9 RC2, try the <a href=\"http://wordpress.org/extend/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin (you’ll want “bleeding edge nightlies”). Or you can <a href=\"http://wordpress.org/wordpress-3.9-RC2.zip\">download the release candidate here</a> (zip). If you’d like to learn more about what’s new in WordPress 3.9, visit the nearly complete About screen in your dashboard (<strong><img src=\"http://i0.wp.com/core.svn.wordpress.org/branches/3.6/wp-content/themes/twentyten/images/wordpress.png?w=692\" alt=\"\" width=\"16\" height=\"16\" /> → About</strong> in the toolbar) and also check out <a title=\"WordPress 3.9 Beta 1\" href=\"http://wordpress.org/news/2014/03/wordpress-3-9-beta-1/\">the Beta 1 post</a>.</p>\n<p><em>This is for testing,</em><br />\n<em>so not recommended for<br />\nproduction sites—yet.</em></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:73:\"http://wordpress.org/news/2014/04/wordpress-3-9-release-candidate-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:42:\"\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:\"WordPress 3.8.3 Maintenance Release\";s: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/2014/04/wordpress-3-8-3/\";s: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/2014/04/wordpress-3-8-3/#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, 14 Apr 2014 19:29: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: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=3145\";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:338:\"WordPress 3.8.3 is now available to fix a small but unfortunate bug in the WordPress 3.8.2 security release. The “Quick Draft” tool on the dashboard screen was broken in the 3.8.2 update. If you tried to use it, your draft would disappear and it wouldn’t save. While we doubt anyone was writing a novella using […]\";s: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:2339:\"<p>WordPress 3.8.3 is now available to fix a small but unfortunate bug in the <a title=\"WordPress 3.8.2 Security Release\" href=\"http://wordpress.org/news/2014/04/wordpress-3-8-2/\">WordPress 3.8.2 security release</a>.</p>\n<p>The “Quick Draft” tool on the dashboard screen was broken in the 3.8.2 update. If you tried to use it, your draft would disappear and it wouldn’t save. While we doubt anyone was writing a novella using this tool, <em>any</em> loss of content is unacceptable to us.</p>\n<p>We recognize how much trust you place in us to safeguard your content, and we take this responsibility very seriously. We’re sorry we let you down.</p>\n<p>We’ve all lost words we’ve written before, like an email thanks to a cat on the keyboard or a term paper to a blue screen of death. Over the last few WordPress releases, we’ve made a number of improvements to features like autosaves and revisions. With revisions, an old edit can always be restored. We’re trying our hardest to save your content somewhere even if your power goes out or your browser crashes. We even monitor your internet connection and prevent you from hitting that “Publish” button at the exact moment the coffee shop Wi-Fi has a hiccup.</p>\n<p>It’s <em>possible</em> that the quick draft you lost last week is still in the database, and just hidden from view. As an added complication, these “discarded drafts” normally get deleted after seven days, and it’s already been six days since the release. If we were able to rescue your draft, you’ll see it on the “All Posts” screen after you update to 3.8.3. (We’ll also be pushing 3.8.3 out as a background update, so you may just see a draft appear.)</p>\n<p>So, if you tried to jot down a quick idea last week, I hope WordPress has recovered it for you. Maybe it’ll turn into that novella.</p>\n<p><a href=\"http://wordpress.org/download/\">Download WordPress 3.8.3</a> or click “Update Now” on Dashboard → Updates.</p>\n<p><em>This affected version 3.7.2 as well, so we’re pushing a 3.7.3 to these installs, but we’d encourage you to update to the latest and greatest.</em></p>\n<hr />\n<p><em>Now for some good news:<br />\nWordPress 3.9 is near.<br />\nExpect it this week</em></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/2014/04/wordpress-3-8-3/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:45:\"\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:31:\"WordPress 3.9 Release Candidate\";s: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/news/2014/04/wordpress-3-9-release-candidate/\";s: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:75:\"http://wordpress.org/news/2014/04/wordpress-3-9-release-candidate/#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, 08 Apr 2014 21:05:21 +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: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:1;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=3129\";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:338:\"As teased earlier, the first release candidate for WordPress 3.9 is now available for testing! We hope to ship WordPress 3.9 next week, but we need your help to get there. If you haven’t tested 3.9 yet, there’s no time like the present. (Please, not on a production site, unless you’re adventurous.) To test WordPress 3.9 […]\";s: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:3022:\"<p><a href=\"http://wordpress.org/news/2014/04/wordpress-3-8-2/\">As teased earlier</a>, the first release candidate for WordPress 3.9 is now available for testing!</p>\n<p>We hope to ship WordPress 3.9 <em>next week</em>, but we need your help to get there. If you haven’t tested 3.9 yet, there’s no time like the present. (Please, not on a production site, unless you’re adventurous.)</p>\n<p>To test WordPress 3.9 RC1, try the <a href=\"http://wordpress.org/extend/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin (you’ll want “bleeding edge nightlies”). Or you can <a href=\"http://wordpress.org/wordpress-3.9-RC1.zip\">download the release candidate here</a> (zip). If you’d like to learn more about what’s new in WordPress 3.9, visit the work-in-progress About screen in your dashboard (<strong><img src=\"http://i0.wp.com/core.svn.wordpress.org/branches/3.6/wp-content/themes/twentyten/images/wordpress.png?w=692\" alt=\"\" width=\"16\" height=\"16\" /> → About</strong> in the toolbar) and check out <a title=\"WordPress 3.9 Beta 1\" href=\"http://wordpress.org/news/2014/03/wordpress-3-9-beta-1/\">the Beta 1 post</a>.</p>\n<p><strong>Think you’ve found a bug? </strong>Please post to the <a href=\"http://wordpress.org/support/forum/alphabeta/\">Alpha/Beta area in the support forums</a>. If any known issues come up, you’ll be able to <a href=\"http://core.trac.wordpress.org/report/5\">find them here</a>.</p>\n<p><strong>If you’re a plugin author</strong>, there are two important changes in particular to be aware of:</p>\n<ul>\n<li>TinyMCE received a major update, to version 4.0. Any editor plugins written for TinyMCE 3.x might require some updates. (If things broke, we’d like to hear about them so we can make adjustments.) For more, see TinyMCE’s <a href=\"http://www.tinymce.com/wiki.php/Tutorial:Migration_guide_from_3.x\">migration guide</a> and <a href=\"http://www.tinymce.com/wiki.php/api4:index\">API documentation</a>, and the notes on the <a href=\"http://make.wordpress.org/core/2014/01/18/tinymce-4-0-is-in-core/\">core development blog</a>.</li>\n<li>WordPress 3.9 now uses the MySQLi Improved extension for sites running PHP 5.5. Any plugins that made direct calls to <code>mysql_*</code> functions will experience some problems on these sites. For more information, see the notes on the <a href=\"http://make.wordpress.org/core/2014/04/07/mysql-in-wordpress-3-9/\">core development blog</a>.</li>\n</ul>\n<p>Be sure to follow along the core development blog, where we will be continuing to post <a href=\"http://make.wordpress.org/core/tag/3-9-dev-notes/\">notes for developers for 3.9</a>. (For example, read <a href=\"http://make.wordpress.org/core/2014/03/27/masonry-in-wordpress-3-9/\">this</a> if you are using Masonry in your theme.) And please, please update your plugin’s <em>Tested up to</em> version in the readme to 3.9 before April 16.</p>\n<p><em>Release candidate<br />\nThis haiku’s the easy one<br />\n3.9 is near</em></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:71:\"http://wordpress.org/news/2014/04/wordpress-3-9-release-candidate/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:45:\"\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:\"WordPress 3.8.2 Security Release\";s: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/2014/04/wordpress-3-8-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:59:\"http://wordpress.org/news/2014/04/wordpress-3-8-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:\"Tue, 08 Apr 2014 19:04: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:8:\"category\";a:2:{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:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Security\";s: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=3124\";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:355:\"WordPress 3.8.2 is now available. This is an important security release for all previous versions and we strongly encourage you to update your sites immediately. This releases fixes a weakness that could let an attacker force their way into your site by forging authentication cookies. This was discovered and fixed by Jon Cave of the 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: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:2272:\"<p>WordPress 3.8.2 is now available. This is an important security release for all previous versions and we strongly encourage you to update your sites immediately.</p>\n<p>This releases fixes a weakness that could let an attacker force their way into your site by forging authentication cookies. This was discovered and fixed by <a href=\"http://joncave.co.uk/\">Jon Cave</a> of the WordPress security team.</p>\n<p>It also contains a fix to prevent a user with the Contributor role from improperly publishing posts. Reported by <a href=\"http://edik.ch/\">edik</a>.</p>\n<p>This release also fixes nine bugs and contains three other security hardening changes:</p>\n<ul>\n<li>Pass along additional information when processing pingbacks to help hosts identify potentially abusive requests.</li>\n<li>Fix a low-impact SQL injection by trusted users. Reported by <a href=\"http://www.dxw.com/\">Tom Adams</a> of dxw.</li>\n<li>Prevent possible cross-domain scripting through Plupload, the third-party library WordPress uses for uploading files. Reported by <a href=\"http://szgru.website.pl/\">Szymon Gruszecki</a>.</li>\n</ul>\n<p>We appreciated <a href=\"http://codex.wordpress.org/FAQ_Security\">responsible disclosure</a> of these security issues directly to our security team. For more information on all of the changes, see the <a href=\"http://codex.wordpress.org/Version_3.8.2\">release notes</a> or consult <a href=\"https://core.trac.wordpress.org/log/branches/3.8?rev=28057&stop_rev=27024\">the list of changes</a>.</p>\n<p><a href=\"http://wordpress.org/download/\">Download WordPress 3.8.2</a> or venture over to <strong>Dashboard → Updates</strong> and simply click “Update Now.”</p>\n<p>Sites that support automatic background updates will be updated to WordPress 3.8.2 within 12 hours. If you are still on WordPress 3.7.1, you will be updated to 3.7.2, which contains the same security fixes as 3.8.2. We don’t support older versions, so please update to 3.8.2 for the latest and greatest.</p>\n<p>Already testing WordPress 3.9? The first release candidate is <a href=\"https://wordpress.org/wordpress-3.9-RC1.zip\">now available</a> (zip) and it contains these security fixes. Look for a full announcement later today; we expect to release 3.9 next week.</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/2014/04/wordpress-3-8-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:4;a:6:{s:4:\"data\";s:45:\"\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:20:\"WordPress 3.9 Beta 3\";s: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/2014/03/wordpress-3-9-beta-3/\";s: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/2014/03/wordpress-3-9-beta-3/#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, 29 Mar 2014 13:15:10 +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: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:1;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=3106\";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:373:\"The third (and maybe last) beta of WordPress 3.9 is now available for download. Beta 3 includes more than 200 changes, including: New features like live widget previews and the new theme installer are now more ready for prime time, so check ‘em out. UI refinements when editing images and when working with media in the editor. We’ve also brought […]\";s: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:2668:\"<p>The third (and maybe last) beta of WordPress 3.9 is now available for download.</p>\n<p>Beta 3 includes more than 200 <a href=\"https://core.trac.wordpress.org/log?rev=27850&stop_rev=27639&limit=300\">changes</a>, including:</p>\n<ul>\n<li>New features like live widget previews and the new theme installer are now more ready for prime time, so check ‘em out.</li>\n<li>UI refinements when editing images and when working with media in the editor. We’ve also brought back some of the advanced display settings for images.</li>\n<li>If you want to test out audio and video playlists, the links will appear in the media manager once you’ve uploaded an audio or video file.</li>\n<li>For theme developers, we’ve added HTML5 caption support (<a class=\"reopened ticket\" title=\"task (blessed): HTML5 captions (reopened)\" href=\"https://core.trac.wordpress.org/ticket/26642\">#26642</a>) to match the new gallery support (<a class=\"closed ticket\" title=\"enhancement: HTML5 Galleries (closed: fixed)\" href=\"https://core.trac.wordpress.org/ticket/26697\">#26697</a>).</li>\n<li>The formatting function that turns straight quotes into smart quotes (among other things) underwent some changes to drastically speed it up, so let us know if you see anything weird.</li>\n</ul>\n<p><strong>We need your help</strong>. We’re still aiming for an April release, which means the next week will be critical for identifying and squashing bugs. If you’re just joining us, please see <a href=\"https://wordpress.org/news/2014/03/wordpress-3-9-beta-1/\">the Beta 1 announcement post</a> for what to look out for.</p>\n<p><strong>If you think you’ve found a bug</strong>, you can post to the <a href=\"http://wordpress.org/support/forum/alphabeta\">Alpha/Beta area</a> in the support forums, where friendly moderators are standing by. <b>Plugin developers</b><strong>,</strong> if you haven’t tested WordPress 3.9 yet, now is the time — and be sure to update the “tested up to” version for your plugins so they’re listed as compatible with 3.9.</p>\n<p><strong>This software is still in development,</strong> so we don’t recommend you run it on a production site. Consider setting up a test site just to play with the new version. To test WordPress 3.9, try the <a href=\"http://wordpress.org/extend/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin (you’ll want “bleeding edge nightlies”). Or you can <a href=\"http://wordpress.org/wordpress-3.9-beta3.zip\">download the beta here</a> (zip).</p>\n<p><em>WordPress 3.9<br />\nLet’s make the date official<br />\nIt’s April 16</em></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/2014/03/wordpress-3-9-beta-3/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:45:\"\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:20:\"WordPress 3.9 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/2014/03/wordpress-3-9-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/2014/03/wordpress-3-9-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 Mar 2014 05: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:8:\"category\";a:2:{i:0;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:1;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=3101\";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:309:\"WordPress 3.9 Beta 2 is now available for testing! We’ve made more than a hundred changes since Beta 1, but we still need your help if we’re going to hit our goal of an April release. For what to look out for, please head on over to the Beta 1 announcement post. Some of the changes 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: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:1901:\"<p>WordPress 3.9 Beta 2 is now available for testing!</p>\n<p>We’ve made more than a hundred <a href=\"https://core.trac.wordpress.org/log?rev=27639&stop_rev=27500&limit=200\">changes</a> since Beta 1, but we still need your help if we’re going to hit our goal of an April release. For what to look out for, please head on over to <a href=\"https://wordpress.org/news/2014/03/wordpress-3-9-beta-1/\">the Beta 1 announcement post</a>. Some of the changes in Beta 2 include:</p>\n<ul>\n<li>Rendering of embedded audio and video players directly in the visual editor.</li>\n<li>Visual and functional improvements to the editor, the media manager, and theme installer.</li>\n<li>Various bug fixes to TinyMCE, the software behind the visual editor.</li>\n<li>Lots of fixes to widget management in the theme customizer.</li>\n</ul>\n<p>As always,<strong> if you think you’ve found a bug</strong>, you can post to the <a href=\"http://wordpress.org/support/forum/alphabeta\">Alpha/Beta area</a> in the support forums. Or, if you’re comfortable writing a reproducible bug report, <a href=\"https://make.wordpress.org/core/reports/\">file one on the WordPress Trac</a>. There, you can also find <a href=\"http://core.trac.wordpress.org/tickets/major\">a list of known bugs</a> and <a href=\"http://core.trac.wordpress.org/query?status=closed&group=component&milestone=3.9\">everything we’ve fixed</a> so far.</p>\n<p><strong>This software is still in development,</strong> so we don’t recommend you run it on a production site. Consider setting up a test site just to play with the new version. To test WordPress 3.9, try the <a href=\"http://wordpress.org/extend/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin (you’ll want “bleeding edge nightlies”). Or you can <a href=\"http://wordpress.org/wordpress-3.9-beta2.zip\">download the beta here</a> (zip).</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/2014/03/wordpress-3-9-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:6;a:6:{s:4:\"data\";s:45:\"\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:20:\"WordPress 3.9 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/2014/03/wordpress-3-9-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/2014/03/wordpress-3-9-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 Mar 2014 13:42: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:8:\"category\";a:2:{i:0;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:1;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=3083\";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:\"I’m excited to announce that the first beta of WordPress 3.9 is now available for testing. WordPress 3.9 is due out next month — but in order to hit that goal, we need your help testing all of the goodies we’ve added: We updated TinyMCE, the software powering the visual editor, to the latest version. […]\";s: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:6065:\"<p>I’m excited to announce that the <strong>first beta of WordPress 3.9</strong> is now available for testing.</p>\n<p>WordPress 3.9 is due out next month — but in order to hit that goal, <strong>we need your help</strong> testing all of the goodies we’ve added:</p>\n<ul>\n<li>We updated TinyMCE, the software powering the visual editor, to the latest version. Be on the lookout for cleaner markup. Also try the new paste handling — if you paste in a block of text from Microsoft Word, for example, it will no longer come out terrible. (The “Paste from Word” button you probably never noticed has been removed.) It’s possible some plugins that added stuff to the visual editor (like a new toolbar button) no longer work, so we’d like to hear about them (<a href=\"https://core.trac.wordpress.org/ticket/24067\">#24067</a>). (And be sure to <a href=\"http://wordpress.org/support/\">open a support thread</a> for the plugin author.)</li>\n<li>We’ve added <strong>widget management to live previews</strong> (the customizer). Please test editing, adding, and rearranging widgets! (<a href=\"https://core.trac.wordpress.org/ticket/27112\">#27112</a>) We’ve also added the ability to upload, crop, and manage header images, without needing to leave the preview. (<a href=\"https://core.trac.wordpress.org/ticket/21785\">#21785</a>)</li>\n<li>We brought 3.8′s beautiful new theme browsing experience to the <strong>theme installer</strong>. Check it out! (<a title=\"View ticket\" href=\"https://core.trac.wordpress.org/ticket/27055\">#27055</a>)</li>\n<li><strong>Galleries</strong> now receive a live preview in the editor. Upload some photos and insert a gallery to see this in action. (<a href=\"https://core.trac.wordpress.org/ticket/26959\">#26959</a>)</li>\n<li>You can now <strong>drag-and-drop</strong> images directly onto the editor to upload them. It can be a bit finicky, so try it and help us work out the kinks. (<a href=\"https://core.trac.wordpress.org/ticket/19845\">#19845</a>)</li>\n<li>Some things got improved around <strong>editing images</strong>. It’s a lot easier to make changes to an image after you insert it into a post (<a class=\"closed\" title=\"View ticket\" href=\"https://core.trac.wordpress.org/ticket/24409\">#24409</a>) and you no longer get kicked to a new window when you need to crop or rotate an image (<a href=\"https://core.trac.wordpress.org/ticket/21811\">#21811</a>).</li>\n<li>New <strong>audio/video playlists</strong>. Upload a few audio or video files to test these. (<a href=\"https://core.trac.wordpress.org/ticket/26631\">#26631</a>)</li>\n</ul>\n<p><strong>If you think you’ve found a bug</strong>, you can post to the <a href=\"http://wordpress.org/support/forum/alphabeta\">Alpha/Beta area</a> in the support forums. We’d love to hear from you! If you’re comfortable writing a reproducible bug report, <a href=\"https://make.wordpress.org/core/reports/\">file one on the WordPress Trac</a>. There, you can also find <a href=\"http://core.trac.wordpress.org/tickets/major\">a list of known bugs</a> and <a href=\"http://core.trac.wordpress.org/query?status=closed&group=component&milestone=3.9\">everything we’ve fixed</a> so far.</p>\n<p><strong>This software is still in development,</strong> so we don’t recommend you run it on a production site. Consider setting up a test site just to play with the new version. To test WordPress 3.9, try the <a href=\"http://wordpress.org/extend/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin (you’ll want “bleeding edge nightlies”). Or you can <a href=\"http://wordpress.org/wordpress-3.9-beta1.zip\">download the beta here</a> (zip).</p>\n<hr />\n<p><strong>DEVELOPERS!</strong> Hello! There’s lots for you, too.</p>\n<p><strong>Please test your plugins and themes!</strong> There’s a lot of great stuff under the hood in 3.9 and we hope to blog a bit about them in the coming days. If you haven’t been reading the awesome <a href=\"http://make.wordpress.org/core/tag/week-in-core/\">weekly summaries</a> on the <a href=\"http://make.wordpress.org/core/\">main core development blog</a>, that’s a great place to start. (You should definitely follow that blog.) For now, here are some things to watch out for when testing:</p>\n<ul>\n<li>The <strong>load process in multisite</strong> got rewritten. If you notice any issues with your network, see <a href=\"https://core.trac.wordpress.org/ticket/27003\">#27003</a>.</li>\n<li>We now use the <strong>MySQL Improved (mysqli) database extension</strong> if you’re running a recent version of PHP (<a href=\"https://core.trac.wordpress.org/ticket/21663\">#21663</a>). Please test your plugins and see that everything works well, and please make sure you’re not calling <code>mysql_*</code> functions directly.</li>\n<li><strong>Autosave</strong> was refactored, so if you see any issues related to autosaving, heartbeat, etc., let us know (<a href=\"https://core.trac.wordpress.org/ticket/25272\">#25272</a>).</li>\n<li>Library updates, in particular Backbone 1.1 and Underscore 1.6 (<a href=\"https://core.trac.wordpress.org/ticket/26799\">#26799</a>). Also Masonry 3 (<a href=\"https://core.trac.wordpress.org/ticket/25351\">#25351</a>), PHPMailer (<a href=\"https://core.trac.wordpress.org/ticket/25560\">#25560</a>), Plupload (<a href=\"https://core.trac.wordpress.org/ticket/25663\">#25663</a>), and TinyMCE (<a href=\"https://core.trac.wordpress.org/ticket/24067\">#24067</a>).</li>\n<li>TinyMCE 4.0 is a <em>major</em> update. Please see TinyMCE’s <a href=\"http://www.tinymce.com/wiki.php/Tutorial:Migration_guide_from_3.x\">upgrade guide</a> and our <a href=\"https://core.trac.wordpress.org/ticket/24067\">implementation ticket</a> for more. If you have any questions or problems, please <a href=\"http://wordpress.org/support/forum/alphabeta\">open a thread in the support forums</a>.</li>\n</ul>\n<p>Happy testing!</p>\n<p><em><em>Lots of improvements<br />\nLittle things go a long way</em><br />\nPlease test beta one<br />\n</em></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/2014/03/wordpress-3-9-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:7;a:6:{s:4:\"data\";s:42:\"\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:\"WordPress 3.8.1 Maintenance Release\";s: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/2014/01/wordpress-3-8-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/2014/01/wordpress-3-8-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:\"Thu, 23 Jan 2014 20:37:49 +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=3063\";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 six weeks and more than 9.3 million downloads of WordPress 3.8, we’re pleased to announce WordPress 3.8.1 is now available. Version 3.8.1 is a maintenance releases that addresses 31 bugs in 3.8, including various fixes and improvements for the new dashboard design and new themes admin screen. An issue with taxonomy queries in WP_Query […]\";s: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:3809:\"<p>After six weeks and more than <a href=\"http://wordpress.org/download/counter/\">9.3 million downloads</a> of WordPress 3.8, we’re pleased to announce WordPress 3.8.1 is now available.</p>\n<p>Version 3.8.1 is a maintenance releases that addresses 31 bugs in 3.8, including various fixes and improvements for the new dashboard design and new themes admin screen. An issue with taxonomy queries in WP_Query was resolved. And if you’ve been frustrated by submit buttons that won’t do anything when you click on them (or thought you were going crazy, like some of us), we’ve found and fixed this “dead zone” on submit buttons.</p>\n<p>It also contains a fix for <strong>embedding tweets</strong> (by placing the URL to the tweet on its own line), which was broken due to a recent Twitter API change. (For more on Embeds, see <a href=\"http://codex.wordpress.org/Embeds\">the Codex</a>.)</p>\n<p>For a full list of changes, consult the <a href=\"http://core.trac.wordpress.org/query?milestone=3.8.1\">list of tickets</a> and <a href=\"https://core.trac.wordpress.org/log/branches/3.8?rev=27018&stop_rev=26862\">the changelog</a>. There’s also a <a href=\"http://make.wordpress.org/core/2014/01/22/wordpress-3-8-1-release-candidate/\">detailed summary</a> for developers on the development blog.</p>\n<p>If you are one of the millions already running WordPress 3.8, we will start rolling out automatic background updates for WordPress 3.8.1 in the next few hours. For sites <a href=\"http://wordpress.org/plugins/background-update-tester/\">that support them</a>, of course.</p>\n<p><a href=\"http://wordpress.org/download/\">Download WordPress 3.8.1</a> or venture over to <strong>Dashboard → Updates</strong> and simply click “Update Now.”</p>\n<p>Thanks to all of these fine individuals for contributing to 3.8.1:</p>\n<p><a href=\"http://profiles.wordpress.org/jorbin\">Aaron Jorbin</a>, <a href=\"http://profiles.wordpress.org/collinsinternet\">Allan Collins</a>, <a href=\"http://profiles.wordpress.org/nacin\">Andrew Nacin</a>, <a href=\"http://profiles.wordpress.org/azaozz\">Andrew Ozz</a>, <a href=\"http://profiles.wordpress.org/aubreypwd\">Aubrey Portwood</a>, <a href=\"http://profiles.wordpress.org/empireoflight\">Ben Dunkle</a>, <a href=\"http://profiles.wordpress.org/cojennin\">Connor Jennings</a>, <a href=\"http://profiles.wordpress.org/dd32\">Dion Hulse</a>, <a href=\"http://profiles.wordpress.org/ocean90\">Dominik Schilling</a>, <a href=\"http://profiles.wordpress.org/fboender\">fboender</a>, <a href=\"http://profiles.wordpress.org/avryl\">Janneke Van Dorpe</a>, <a href=\"http://profiles.wordpress.org/janrenn\">janrenn</a>, <a href=\"http://profiles.wordpress.org/joedolson\">Joe Dolson</a>, <a href=\"http://profiles.wordpress.org/johnbillion\">John Blackbourn</a>, <a href=\"#\">José Pino</a>, <a href=\"http://profiles.wordpress.org/kovshenin\">Konstantin Kovshenin</a>, <a href=\"http://profiles.wordpress.org/matveb\">Matias Ventura</a>, <a href=\"http://profiles.wordpress.org/mattheu\">Matthew Haines-Young</a>, <a href=\"http://profiles.wordpress.org/iammattthomas\">Matt Thomas</a>, <a href=\"http://profiles.wordpress.org/melchoyce\">Mel Choyce</a>, <a href=\"http://profiles.wordpress.org/batmoo\">Mohammad Jangda</a>, <a href=\"http://profiles.wordpress.org/morganestes\">Morgan Estes</a>, <a href=\"http://profiles.wordpress.org/nivijah\">nivijah</a>, <a href=\"http://profiles.wordpress.org/wonderboymusic\">Scott Taylor</a>, <a href=\"http://profiles.wordpress.org/sergeybiryukov\">Sergey Biryukov</a>, <a href=\"http://profiles.wordpress.org/undergroundnetwork\">undergroundnetwork</a>, and <a href=\"http://profiles.wordpress.org/yurivictor\">Yuri Victor</a>.</p>\n<p><em>WordPress three eight one<br />\nWe heard you didn’t like bugs<br />\nSo we took them out</em></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/2014/01/wordpress-3-8-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:8;a:6:{s:4:\"data\";s:42:\"\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:26:\"WordPress 3.8 “Parker”\";s: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.org/news/2013/12/parker/\";s: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:50:\"http://wordpress.org/news/2013/12/parker/#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, 12 Dec 2013 17:00: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=2765\";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:354:\"Version 3.8 of WordPress, named “Parker” in honor of Charlie Parker, bebop innovator, is available for download or update in your WordPress dashboard. We hope you’ll think this is the most beautiful update yet. Introducing a modern new design WordPress has gotten a facelift. 3.8 brings a fresh new look to the entire admin dashboard. […]\";s: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:19122:\"<p>Version 3.8 of WordPress, named “Parker” in honor of <a href=\"http://en.wikipedia.org/wiki/Charlie_Parker\">Charlie Parker</a>, bebop innovator, is available <a href=\"http://wordpress.org/download/\">for download</a> or update in your WordPress dashboard. We hope you’ll think this is the most beautiful update yet.</p>\n<div id=\"v-6wORgoGb-1\" class=\"video-player\"><embed id=\"v-6wORgoGb-1-video\" src=\"http://s0.videopress.com/player.swf?v=1.03&guid=6wORgoGb&isDynamicSeeking=true\" type=\"application/x-shockwave-flash\" width=\"692\" height=\"388\" wmode=\"direct\" seamlesstabbing=\"true\" allowfullscreen=\"true\" allowscriptaccess=\"always\" overstretch=\"true\"></embed></div>\n<h2 class=\"aligncenter\">Introducing a modern new design</h2>\n<p><img class=\"wp-image-2951 aligncenter\" alt=\"overview\" src=\"http://i0.wp.com/wpdotorg.files.wordpress.com/2013/12/overview.jpg?resize=623%2C193\" data-recalc-dims=\"1\" /></p>\n<p>WordPress has gotten a facelift. 3.8 brings a fresh new look to the entire admin dashboard. Gone are overbearing gradients and dozens of shades of grey — bring on a bigger, bolder, more colorful design!</p>\n<p><img class=\"aligncenter wp-image-2856\" style=\"margin-left: 0;margin-right: 0\" alt=\"about-modern-wordpress\" src=\"http://i2.wp.com/wpdotorg.files.wordpress.com/2013/12/design.png?resize=623%2C151\" data-recalc-dims=\"1\" /></p>\n<h3>Modern aesthetic</h3>\n<p>The new WordPress dashboard has a fresh, uncluttered design that embraces clarity and simplicity.</p>\n<h3>Clean typography</h3>\n<p>The Open Sans typeface provides simple, friendly text that is optimized for both desktop and mobile viewing. It’s even open source, just like WordPress.</p>\n<h3>Refined contrast</h3>\n<p>We think beautiful design should never sacrifice legibility. With superior contrast and large, comfortable type, the new design is easy to read and a pleasure to navigate.</p>\n<hr />\n<h2 class=\"aligncenter\">WordPress on every device</h2>\n<p><img class=\"alignright wp-image-2984\" alt=\"responsive\" src=\"http://i2.wp.com/wpdotorg.files.wordpress.com/2013/12/responsive.jpg?resize=255%2C255\" data-recalc-dims=\"1\" />We all access the internet in different ways. Smartphone, tablet, notebook, desktop — no matter what you use, WordPress will adapt and you’ll feel right at home.</p>\n<h3>High definition at high speed</h3>\n<p>WordPress is sharper than ever with new vector-based icons that scale to your screen. By ditching pixels, pages load significantly faster, too.</p>\n<hr />\n<h2 class=\"aligncenter\">Admin color schemes to match your personality</h2>\n<p><img class=\"aligncenter wp-image-2954\" alt=\"colors\" src=\"http://i0.wp.com/wpdotorg.files.wordpress.com/2013/12/colors.jpg?resize=623%2C339\" data-recalc-dims=\"1\" /></p>\n<p>WordPress just got a colorful new update. We’ve included eight new admin color schemes so you can pick the one that suits you best.</p>\n<p>Color schemes can be previewed and changed from your Profile page.</p>\n<hr />\n<h2 class=\"aligncenter\">Refined theme management</h2>\n<p><img class=\"alignright wp-image-2967\" alt=\"themes\" src=\"http://i0.wp.com/wpdotorg.files.wordpress.com/2013/12/themes.jpg?resize=360%2C344\" data-recalc-dims=\"1\" />The new themes screen lets you survey your themes at a glance. Or want more information? Click to discover more. Then sit back and use your keyboard’s navigation arrows to flip through every theme you’ve got.</p>\n<h3>Smoother widget experience</h3>\n<p>Drag-drag-drag. Scroll-scroll-scroll. Widget management can be complicated. With the new design, we’ve worked to streamline the widgets screen.</p>\n<p>Have a large monitor? Multiple widget areas stack side-by-side to use the available space. Using a tablet? Just tap a widget to add it.</p>\n<hr />\n<h2 class=\"aligncenter\">Twenty Fourteen, a sleek new magazine theme</h2>\n<p><img class=\"aligncenter size-large wp-image-2789\" alt=\"The new Twenty Fourteen theme displayed on a laptop. tablet and phone\" src=\"http://i0.wp.com/wpdotorg.files.wordpress.com/2013/12/twentyfourteen.jpg?resize=692%2C275\" data-recalc-dims=\"1\" /></p>\n<h3>Turn your blog into a magazine</h3>\n<p>Create a beautiful magazine-style site with WordPress and Twenty Fourteen. Choose a grid or a slider to display featured content on your homepage. Customize your site with three widget areas or change your layout with two page templates.</p>\n<p>With a striking design that does not compromise our trademark simplicity, Twenty Fourteen is our most intrepid default theme yet.</p>\n<hr />\n<h2>Beginning of a new era</h2>\n<p>This release was led by Matt Mullenweg. This is our second release using the new plugin-first development process, with a much shorter timeframe than in the past. We think it’s been going great. You can check out the features currently in production on the <a title=\"Make WordPress Core\" href=\"http://make.wordpress.org/core/\" target=\"_blank\">make/core blog</a>.</p>\n<p>There are 188 contributors with props in this release:</p>\n<p><a href=\"http://profiles.wordpress.org/aaronholbrook\">Aaron Holbrook</a>, <a href=\"http://profiles.wordpress.org/jorbin\">Aaron Jorbin</a>, <a href=\"http://profiles.wordpress.org/adamsilverstein\">adamsilverstein</a>, <a href=\"http://profiles.wordpress.org/admiralthrawn\">admiralthrawn</a>, <a href=\"http://profiles.wordpress.org/ahoereth\">Alexander Hoereth</a>, <a href=\"http://profiles.wordpress.org/collinsinternet\">Allan Collins</a>, <a href=\"http://profiles.wordpress.org/sabreuse\">Amy Hendrix (sabreuse)</a>, <a href=\"http://profiles.wordpress.org/nacin\">Andrew Nacin</a>, <a href=\"http://profiles.wordpress.org/azaozz\">Andrew Ozz</a>, <a href=\"http://profiles.wordpress.org/aralbald\">Andrey Kabakchiev</a>, <a href=\"http://profiles.wordpress.org/andykeith\">Andy Keith</a>, <a href=\"http://profiles.wordpress.org/apeatling\">Andy Peatling</a>, <a href=\"http://profiles.wordpress.org/ankitgadertcampcom\">Ankit Gade</a>, <a href=\"http://profiles.wordpress.org/atimmer\">Anton Timmermans</a>, <a href=\"http://profiles.wordpress.org/fliespl\">Arkadiusz Rzadkowolski</a>, <a href=\"http://profiles.wordpress.org/aubreypwd\">Aubrey Portwood</a>, <a href=\"http://profiles.wordpress.org/bassgang\">bassgang</a>, <a href=\"http://profiles.wordpress.org/empireoflight\">Ben Dunkle</a>, <a href=\"http://profiles.wordpress.org/bananastalktome\">Billy (bananastalktome)</a>, <a href=\"http://profiles.wordpress.org/binarymoon\">binarymoon</a>, <a href=\"http://profiles.wordpress.org/bradyvercher\">Brady Vercher</a>, <a href=\"http://profiles.wordpress.org/bramd\">bramd</a>, <a href=\"http://profiles.wordpress.org/kraftbj\">Brandon Kraft</a>, <a href=\"http://profiles.wordpress.org/rzen\">Brian Richards</a>, <a href=\"http://profiles.wordpress.org/bpetty\">Bryan Petty</a>, <a href=\"http://profiles.wordpress.org/calin\">Calin Don</a>, <a href=\"http://profiles.wordpress.org/carldanley\">Carl Danley</a>, <a href=\"http://profiles.wordpress.org/sixhours\">Caroline Moore</a>, <a href=\"http://profiles.wordpress.org/caspie\">Caspie</a>, <a href=\"http://profiles.wordpress.org/chrisbliss18\">Chris Jean</a>, <a href=\"http://profiles.wordpress.org/iblamefish\">Clinton Montague</a>, <a href=\"http://profiles.wordpress.org/cojennin\">Connor Jennings</a>, <a href=\"http://profiles.wordpress.org/corphi\">Corphi</a>, <a href=\"http://profiles.wordpress.org/dbernar1\">Dan Bernardic</a>, <a href=\"http://profiles.wordpress.org/danieldudzic\">Daniel Dudzic</a>, <a href=\"http://profiles.wordpress.org/koop\">Daryl Koopersmith</a>, <a href=\"http://profiles.wordpress.org/datafeedrcom\">datafeedr</a>, <a href=\"http://profiles.wordpress.org/lessbloat\">Dave Martin</a>, <a href=\"http://profiles.wordpress.org/drw158\">Dave Whitley</a>, <a href=\"http://profiles.wordpress.org/dd32\">Dion Hulse</a>, <a href=\"http://profiles.wordpress.org/ocean90\">Dominik Schilling</a>, <a href=\"http://profiles.wordpress.org/dougwollison\">Doug Wollison</a>, <a href=\"http://profiles.wordpress.org/drewapicture\">Drew Jaynes</a>, <a href=\"http://profiles.wordpress.org/dziudek\">dziudek</a>, <a href=\"http://profiles.wordpress.org/plocha\">edik</a>, <a href=\"http://profiles.wordpress.org/ericlewis\">Eric Andrew Lewis</a>, <a href=\"http://profiles.wordpress.org/ericmann\">Eric Mann</a>, <a href=\"http://profiles.wordpress.org/ethitter\">Erick Hitter</a>, <a href=\"http://profiles.wordpress.org/evansolomon\">Evan Solomon</a>, <a href=\"http://profiles.wordpress.org/faison\">Faison</a>, <a href=\"http://profiles.wordpress.org/fboender\">fboender</a>, <a href=\"http://profiles.wordpress.org/frank-klein\">Frank Klein</a>, <a href=\"http://profiles.wordpress.org/garyj\">Gary Jones</a>, <a href=\"http://profiles.wordpress.org/pento\">Gary Pendergast</a>, <a href=\"http://profiles.wordpress.org/soulseekah\">Gennady Kovshenin</a>, <a href=\"http://profiles.wordpress.org/georgestephanis\">George Stephanis</a>, <a href=\"http://profiles.wordpress.org/gnarf37\">gnarf37</a>, <a href=\"http://profiles.wordpress.org/tivnet\">Gregory Karpinsky</a>, <a href=\"http://profiles.wordpress.org/hanni\">hanni</a>, <a href=\"http://profiles.wordpress.org/helen\">Helen Hou-Sandi</a>, <a href=\"http://profiles.wordpress.org/iandunn\">Ian Dunn</a>, <a href=\"http://profiles.wordpress.org/ipstenu\">Ipstenu (Mika Epstein)</a>, <a href=\"http://profiles.wordpress.org/isaackeyet\">Isaac Keyet</a>, <a href=\"http://profiles.wordpress.org/jdgrimes\">J.D. Grimes</a>, <a href=\"http://profiles.wordpress.org/jacklenox\">Jack Lenox</a>, <a href=\"http://profiles.wordpress.org/janhenckens\">janhenckens</a>, <a href=\"http://profiles.wordpress.org/avryl\">Janneke Van Dorpe</a>, <a href=\"http://profiles.wordpress.org/janrenn\">janrenn</a>, <a href=\"http://profiles.wordpress.org/jblz\">Jeff Bowen</a>, <a href=\"http://profiles.wordpress.org/jeffr0\">Jeff Chandler</a>, <a href=\"http://profiles.wordpress.org/jenmylo\">Jen Mylo</a>, <a href=\"http://profiles.wordpress.org/buffler\">Jeremy Buller</a>, <a href=\"http://profiles.wordpress.org/jeremyfelt\">Jeremy Felt</a>, <a href=\"http://profiles.wordpress.org/jeherve\">Jeremy Herve</a>, <a href=\"http://profiles.wordpress.org/jpry\">Jeremy Pry</a>, <a href=\"http://profiles.wordpress.org/jayjdk\">Jesper Johansen (jayjdk)</a>, <a href=\"http://profiles.wordpress.org/jhned\">jhned</a>, <a href=\"http://profiles.wordpress.org/jim912\">jim912</a>, <a href=\"http://profiles.wordpress.org/jartes\">Joan Artes</a>, <a href=\"http://profiles.wordpress.org/joedolson\">Joe Dolson</a>, <a href=\"http://profiles.wordpress.org/joen\">Joen Asmussen</a>, <a href=\"http://profiles.wordpress.org/johnbillion\">John Blackbourn</a>, <a href=\"http://profiles.wordpress.org/johnafish\">John Fish</a>, <a href=\"http://profiles.wordpress.org/johnjamesjacoby\">John James Jacoby</a>, <a href=\"http://profiles.wordpress.org/duck_\">Jon Cave</a>, <a href=\"http://profiles.wordpress.org/joostdevalk\">Joost de Valk</a>, <a href=\"http://profiles.wordpress.org/joshuaabenazer\">Joshua Abenazer</a>, <a href=\"http://profiles.wordpress.org/nukaga\">Junko Nukaga</a>, <a href=\"http://profiles.wordpress.org/devesine\">Justin de Vesine</a>, <a href=\"http://profiles.wordpress.org/justinsainton\">Justin Sainton</a>, <a href=\"http://profiles.wordpress.org/kadamwhite\">K. Adam White</a>, <a href=\"http://profiles.wordpress.org/trepmal\">Kailey (trepmal)</a>, <a href=\"http://profiles.wordpress.org/codebykat\">Kat Hagan</a>, <a href=\"http://profiles.wordpress.org/littlethingsstudio\">Kate Whitley</a>, <a href=\"http://profiles.wordpress.org/ryelle\">Kelly Dwan</a>, <a href=\"http://profiles.wordpress.org/kpdesign\">Kim Parsell</a>, <a href=\"http://profiles.wordpress.org/kwight\">Kirk Wight</a>, <a href=\"http://profiles.wordpress.org/koki4a\">Konstantin Dankov</a>, <a href=\"http://profiles.wordpress.org/kovshenin\">Konstantin Kovshenin</a>, <a href=\"http://profiles.wordpress.org/obenland\">Konstantin Obenland</a>, <a href=\"http://profiles.wordpress.org/drozdz\">Krzysiek Drozdz</a>, <a href=\"http://profiles.wordpress.org/lancewillett\">Lance Willett</a>, <a href=\"http://profiles.wordpress.org/leewillis77\">Lee Willis</a>, <a href=\"http://profiles.wordpress.org/lite3\">lite3</a>, <a href=\"http://profiles.wordpress.org/lucp\">Luc Princen</a>, <a href=\"http://profiles.wordpress.org/latz\">Lutz Schroer</a>, <a href=\"http://profiles.wordpress.org/mako09\">Mako</a>, <a href=\"http://profiles.wordpress.org/markjaquith\">Mark Jaquith</a>, <a href=\"http://profiles.wordpress.org/markmcwilliams\">Mark McWilliams</a>, <a href=\"http://profiles.wordpress.org/markoheijnen\">Marko Heijnen</a>, <a href=\"http://profiles.wordpress.org/matt\">Matt Mullenweg</a>, <a href=\"http://profiles.wordpress.org/iammattthomas\">Matt Thomas</a>, <a href=\"http://profiles.wordpress.org/mattwiebe\">Matt Wiebe</a>, <a href=\"http://profiles.wordpress.org/mdbitz\">Matthew Denton</a>, <a href=\"http://profiles.wordpress.org/mattheu\">Matthew Haines-Young</a>, <a href=\"http://profiles.wordpress.org/mattonomics\">mattonomics</a>, <a href=\"http://profiles.wordpress.org/matveb\">Matías Ventura</a>, <a href=\"http://profiles.wordpress.org/megane9988\">megane9988</a>, <a href=\"http://profiles.wordpress.org/melchoyce\">Mel Choyce</a>, <a href=\"http://profiles.wordpress.org/micahwave\">micahwave</a>, <a href=\"http://profiles.wordpress.org/cainm\">Michael Cain</a>, <a href=\"http://profiles.wordpress.org/mitchoyoshitaka\">Michael Erlewine</a>, <a href=\"http://profiles.wordpress.org/michelwppi\">Michel - xiligroup dev</a>, <a href=\"http://profiles.wordpress.org/chellycat\">Michelle Langston</a>, <a href=\"http://profiles.wordpress.org/gradyetc\">Mike Burns</a>, <a href=\"http://profiles.wordpress.org/mikehansenme\">Mike Hansen</a>, <a href=\"http://profiles.wordpress.org/mikelittle\">Mike Little</a>, <a href=\"http://profiles.wordpress.org/dh-shredder\">Mike Schroder</a>, <a href=\"http://profiles.wordpress.org/dimadin\">Milan Dinic</a>, <a href=\"http://profiles.wordpress.org/batmoo\">Mohammad Jangda</a>, <a href=\"http://profiles.wordpress.org/morganestes\">Morgan Estes</a>, <a href=\"http://profiles.wordpress.org/mt8biz\">moto hachi</a>, <a href=\"http://profiles.wordpress.org/Nao\">Naoko Takano</a>, <a href=\"http://profiles.wordpress.org/neil_pie\">Neil Pie</a>, <a href=\"http://profiles.wordpress.org/nickdaugherty\">Nick Daugherty</a>, <a href=\"http://profiles.wordpress.org/celloexpressions\">Nick Halsey</a>, <a href=\"http://profiles.wordpress.org/nbachiyski\">Nikolay Bachiyski</a>, <a href=\"http://profiles.wordpress.org/ninio\">ninio</a>, <a href=\"http://profiles.wordpress.org/ninnypants\">ninnypants</a>, <a href=\"http://profiles.wordpress.org/nivijah\">nivijah</a>, <a href=\"http://profiles.wordpress.org/nofearinc\">nofearinc</a>, <a href=\"http://profiles.wordpress.org/nvwd\">Nowell VanHoesen</a>, <a href=\"http://profiles.wordpress.org/odysseygate\">odyssey</a>, <a href=\"http://profiles.wordpress.org/originalexe\">OriginalEXE</a>, <a href=\"http://profiles.wordpress.org/swissspidy\">Pascal Birchler</a>, <a href=\"http://profiles.wordpress.org/pauldewouters\">Paul de Wouters</a>, <a href=\"http://profiles.wordpress.org/pavelevap\">pavelevap</a>, <a href=\"http://profiles.wordpress.org/westi\">Peter Westwood</a>, <a href=\"http://profiles.wordpress.org/senlin\">Piet</a>, <a href=\"http://profiles.wordpress.org/ptahdunbar\">Ptah Dunbar</a>, <a href=\"http://profiles.wordpress.org/raamdev\">Raam Dev</a>, <a href=\"http://profiles.wordpress.org/bamadesigner\">Rachel Carden</a>, <a href=\"http://profiles.wordpress.org/rachelbaker\">rachelbaker</a>, <a href=\"http://profiles.wordpress.org/radices\">Radices</a>, <a href=\"http://profiles.wordpress.org/mauryaratan\">Ram Ratan Maurya</a>, <a href=\"http://profiles.wordpress.org/defries\">Remkus de Vries</a>, <a href=\"http://profiles.wordpress.org/ounziw\">Rescuework Support</a>, <a href=\"http://profiles.wordpress.org/rickalee\">Ricky Lee Whittemore</a>, <a href=\"http://profiles.wordpress.org/rdall\">Robert Dall</a>, <a href=\"http://profiles.wordpress.org/wet\">Robert Wetzlmayr, PHP-Programmierer</a>, <a href=\"http://profiles.wordpress.org/rodrigosprimo\">Rodrigo Primo</a>, <a href=\"http://profiles.wordpress.org/ryan\">Ryan Boren</a>, <a href=\"http://profiles.wordpress.org/otto42\">Samuel Wood</a>, <a href=\"http://profiles.wordpress.org/sanchothefat\">sanchothefat</a>, <a href=\"http://profiles.wordpress.org/sboisvert\">sboisvert</a>, <a href=\"http://profiles.wordpress.org/scottbasgaard\">Scott Basgaard</a>, <a href=\"http://profiles.wordpress.org/coffee2code\">Scott Reilly</a>, <a href=\"http://profiles.wordpress.org/wonderboymusic\">Scott Taylor</a>, <a href=\"http://profiles.wordpress.org/scribu\">scribu</a>, <a href=\"http://profiles.wordpress.org/seanchayes\">Sean Hayes</a>, <a href=\"http://profiles.wordpress.org/sergeybiryukov\">Sergey Biryukov</a>, <a href=\"http://profiles.wordpress.org/shaunandrews\">Shaun Andrews</a>, <a href=\"http://profiles.wordpress.org/designsimply\">Sheri Bigelow (designsimply)</a>, <a href=\"http://profiles.wordpress.org/shinichin\">ShinichiN</a>, <a href=\"http://profiles.wordpress.org/simonwheatley\">Simon Wheatley</a>, <a href=\"http://profiles.wordpress.org/siobhan\">Siobhan</a>, <a href=\"http://profiles.wordpress.org/siobhyb\">Siobhan Bamber (siobhyb)</a>, <a href=\"http://profiles.wordpress.org/sirbrillig\">sirbrillig</a>, <a href=\"http://profiles.wordpress.org/solarissmoke\">solarissmoke</a>, <a href=\"http://profiles.wordpress.org/netweb\">Stephen Edgar</a>, <a href=\"http://profiles.wordpress.org/stephenharris\">Stephen Harris</a>, <a href=\"http://profiles.wordpress.org/stevenkword\">Steven Word</a>, <a href=\"http://profiles.wordpress.org/iamtakashi\">Takashi Irie</a>, <a href=\"http://profiles.wordpress.org/miyauchi\">Takayuki Miyauchi</a>, <a href=\"http://profiles.wordpress.org/tmtoy\">Takuma Morikawa</a>, <a href=\"http://profiles.wordpress.org/tellyworth\">tellyworth</a>, <a href=\"http://profiles.wordpress.org/thomasguillot\">Thomas Guillot</a>, <a href=\"http://profiles.wordpress.org/tierra\">tierra</a>, <a href=\"http://profiles.wordpress.org/tillkruess\">Till Krüss</a>, <a href=\"http://profiles.wordpress.org/tlamedia\">TLA Media</a>, <a href=\"http://profiles.wordpress.org/tobiasbg\">TobiasBg</a>, <a href=\"http://profiles.wordpress.org/tomdxw\">tomdxw</a>, <a href=\"http://profiles.wordpress.org/tommcfarlin\">tommcfarlin</a>, <a href=\"http://profiles.wordpress.org/zodiac1978\">Torsten Landsiedel</a>, <a href=\"http://profiles.wordpress.org/taupecat\">Tracy Rotton</a>, <a href=\"http://profiles.wordpress.org/trishasalas\">trishasalas</a>, <a href=\"http://profiles.wordpress.org/mbmufffin\">Tyler Smith</a>, <a href=\"http://profiles.wordpress.org/grapplerulrich\">Ulrich</a>, <a href=\"http://profiles.wordpress.org/undergroundnetwork\">undergroundnetwork</a>, <a href=\"http://profiles.wordpress.org/l10n\">Vladimir</a>, <a href=\"http://profiles.wordpress.org/westonruter\">Weston Ruter</a>, <a href=\"http://profiles.wordpress.org/yoavf\">Yoav Farhi</a>, <a href=\"http://profiles.wordpress.org/yonasy\">yonasy</a>, <a href=\"http://profiles.wordpress.org/yurivictor\">Yuri Victor</a>, and <a href=\"http://profiles.wordpress.org/tollmanz\">Zack Tollman</a>. Also thanks to <a href=\"http://benmorrison.org/\">Ben Morrison</a> and <a href=\"http://christineswebb.com/\">Christine Webb</a> for help with the video.</p>\n<p>Thanks for choosing WordPress. See you soon for version 3.9!</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:46:\"http://wordpress.org/news/2013/12/parker/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:45:\"\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:7:\"3.8 RC2\";s: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://wordpress.org/news/2013/12/3-8-rc2/\";s: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:51:\"http://wordpress.org/news/2013/12/3-8-rc2/#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, 10 Dec 2013 01:08: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:8:\"category\";a:2:{i:0;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:1;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=2805\";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:343:\"Release candidate 2 of WordPress 3.8 is now available for download. This is the last pre-release, and we expect it to be effectively identical to what’s officially released to the public on Thursday. This means if you are a plugin or theme developer, start your engines! (If they’re not going already.) Lots of admin code […]\";s: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:1180:\"<p>Release candidate 2 of WordPress 3.8 is <a href=\"http://wordpress.org/wordpress-3.8-RC2.zip\">now available for download</a>. This is the last pre-release, and we expect it to be effectively identical to what’s officially released to the public on Thursday.</p>\n<p>This means if you are a plugin or theme developer, start your engines! (If they’re not going already.) Lots of admin code has changed so it’s especially important to see if your plugin works well within the new admin design and layout, and update <a href=\"http://wordpress.org/plugins/about/readme.txt\">the “Tested up to:” part of your plugin readme.txt</a>.</p>\n<p>If there is something in your plugin that you’re unable to fix, or if you think you’ve found a bug, join us <a href=\"http://codex.wordpress.org/IRC\">in #wordpress-dev in IRC</a>, especially if you’re able to join during the dev chat on Wednesday, or post in the <a href=\"http://wordpress.org/support/forum/alphabeta\">alpha/beta forum</a>. The developers and designers who worked on this release are happy to help anyone update their code before the 3.8 release.</p>\n<p>Happy hacking, everybody!</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:47:\"http://wordpress.org/news/2013/12/3-8-rc2/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:\"Wed, 16 Apr 2014 16:22:22 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:\"Tue, 15 Apr 2014 09:47:36 GMT\";s:4:\"x-nc\";s:11:\"HIT lax 249\";}s:5:\"build\";s:14:\"20121202204312\";}','no'),(185,'_transient_timeout_plugin_slugs','1397751743','no'),(186,'_transient_plugin_slugs','a:7:{i:0;s:19:\"akismet/akismet.php\";i:1;s:50:\"google-analytics-for-wordpress/googleanalytics.php\";i:2;s:36:\"google-sitemap-generator/sitemap.php\";i:3;s:9:\"hello.php\";i:4;s:19:\"jetpack/jetpack.php\";i:5;s:21:\"podpress/podpress.php\";i:6;s:27:\"wp-super-cache/wp-cache.php\";}','no'),(199,'current_theme','Divi','yes'),(200,'theme_mods_Divi','a:9:{i:0;b:0;s:30:\"et_pb_predefined_layouts_added\";s:2:\"on\";s:18:\"nav_menu_locations\";a:1:{s:12:\"primary-menu\";i:3;}s:21:\"et_pb_replace_content\";s:2:\"on\";s:16:\"background_color\";s:0:\"\";s:16:\"background_image\";s:0:\"\";s:17:\"background_repeat\";s:6:\"repeat\";s:21:\"background_position_x\";s:4:\"left\";s:21:\"background_attachment\";s:5:\"fixed\";}','yes'),(201,'theme_switched','','yes'),(202,'shop_catalog_image_size','a:3:{s:5:\"width\";s:3:\"400\";s:6:\"height\";s:3:\"400\";s:4:\"crop\";i:1;}','yes'),(203,'shop_single_image_size','a:3:{s:5:\"width\";s:3:\"510\";s:6:\"height\";s:4:\"9999\";s:4:\"crop\";i:0;}','yes'),(204,'shop_thumbnail_image_size','a:3:{s:5:\"width\";s:3:\"157\";s:6:\"height\";s:3:\"157\";s:4:\"crop\";i:1;}','yes'),(205,'et_images_temp_folder','\\\\WDP\\DFS\\30\\9\\5\\5\\3069371559\\user\\sites\\3865592.site\\www\\wordpress1/wp-content/uploads/et_temp','yes'),(167,'_transient_timeout_feed_mod_5bb9e141d211830152342ce8f8ffad54','1397708542','no'),(168,'_transient_feed_mod_5bb9e141d211830152342ce8f8ffad54','1397665342','no'),(169,'_transient_timeout_dash_20494a3d90a6669585674ed0eb8dcd8f','1397708542','no'),(170,'_transient_dash_20494a3d90a6669585674ed0eb8dcd8f','<p>This dashboard widget queries <a href=\"http://blogsearch.google.com/\">Google Blog Search</a> so that when another blog links to your site it will show up here. It has found no incoming links… yet. It’s okay — there is no rush.</p>\n','no'),(153,'recently_activated','a:0:{}','yes'),(194,'can_compress_scripts','1','yes'),(195,'_site_transient_timeout_wporg_theme_feature_list','1397679696','yes'),(196,'_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:6:\"Layout\";a:3:{i:0;s:12:\"fixed-layout\";i:1;s:12:\"fluid-layout\";i:2;s:17:\"responsive-layout\";}s:8:\"Features\";a:20:{i:0;s:19:\"accessibility-ready\";i:1;s:8:\"blavatar\";i:2;s:10:\"buddypress\";i:3;s:17:\"custom-background\";i:4;s:13:\"custom-colors\";i:5;s:13:\"custom-header\";i:6;s:11:\"custom-menu\";i:7;s:12:\"editor-style\";i:8;s:21:\"featured-image-header\";i:9;s:15:\"featured-images\";i:10;s:15:\"flexible-header\";i:11;s:20:\"front-page-post-form\";i:12;s:19:\"full-width-template\";i:13;s:12:\"microformats\";i:14;s:12:\"post-formats\";i:15;s:20:\"rtl-language-support\";i:16;s:11:\"sticky-post\";i:17;s:13:\"theme-options\";i:18;s:17:\"threaded-comments\";i:19;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,'_site_transient_browser_d88670820d154fdb975c9bc3be8d0cb6','a:9:{s:8:\"platform\";s:7:\"Windows\";s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:13:\"34.0.1847.116\";s:10:\"update_url\";s:28:\"http://www.google.com/chrome\";s:7:\"img_src\";s:49:\"http://s.wordpress.org/images/browsers/chrome.png\";s:11:\"img_src_ssl\";s:48:\"https://wordpress.org/images/browsers/chrome.png\";s:15:\"current_version\";s:2:\"18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;}','yes'),(173,'_transient_timeout_feed_mod_867bd5c64f85878d03a060509cd2f92c','1397708542','no'),(174,'_transient_feed_mod_867bd5c64f85878d03a060509cd2f92c','1397665342','no'),(175,'_transient_timeout_dash_aa95765b5cc111c56d5993d476b1c2f0','1397708542','no'),(176,'_transient_dash_aa95765b5cc111c56d5993d476b1c2f0','<div class=\"rss-widget\"><ul><li><a class=\'rsswidget\' href=\'http://wptavern.com/buddypress-2-0-released-big-performance-improvements-and-new-administration-tools?utm_source=rss&utm_medium=rss&utm_campaign=buddypress-2-0-released-big-performance-improvements-and-new-administration-tools\' title=\'BuddyPress 2.0 “Juliana” arrived on schedule today, less than a week after the plugin crossed two million downloads. This release focused heavily on improving BuddyPress performance, adding new administrative tools and enhancing the activity stream. It’s named for Juliana’s Pizza in Brooklyn, NY, a pizza joint that is special to members of the core developme […]\'>WPTavern: BuddyPress 2.0 Released: Big Performance Improvements and New Administration Tools</a></li><li><a class=\'rsswidget\' href=\'http://buddypress.org/2014/04/buddypress-2-0-juliana/\' title=\'The BuddyPress team is thrilled to announce that BuddyPress 2.0 “Juliana” is now available! This release focuses on administrative tools, performance, and improvements to the activity stream. Let’s take a look at some of the highlights. New Administrative Tools If you manage a BuddyPress-powered community, BuddyPress 2.0 is for you. We have built a number of […]\'>BuddyPress: BuddyPress 2.0 “Juliana”</a></li><li><a class=\'rsswidget\' href=\'http://blog.akismet.com/2014/04/15/akismet-3-0-0/\' title=\'Version 3.0.0 of the Akismet plugin for WordPress is now available. This is a major rewrite of the plugin code. It includes many small improvements and some new features. In particular: An easier signup and activation process An even easier activation process for Jetpack users A redesigned configuration tab New stats charts (example shown below) A new discar […]\'>Akismet: Akismet 3.0.0 is now available</a></li><li><a class=\'rsswidget\' href=\'http://nacin.com/2014/04/15/my-talk-proposals-for-open-source-bridge/\' title=\'I submitted two proposals to Open Source Bridge, an annual conference in Portland, Oregon, for “open source citizens.” The call for papers is now closed, but they let anyone leave comments on proposals that are private to the conference organizers. If you have any feedback on these, or have seen me speak before, it would be awesome if you could leave a comme […]\'>Andrew Nacin: My Talk Proposals for Open Source Bridge</a></li><li><a class=\'rsswidget\' href=\'http://wptavern.com/ozh-tweet-archiver-2-0-backs-up-your-tweets-to-wordpress?utm_source=rss&utm_medium=rss&utm_campaign=ozh-tweet-archiver-2-0-backs-up-your-tweets-to-wordpress\' title=\'Social networks come and go but your blog lives forever. The advent of social media brought a revolution in how people communicate, but it has also chained us to data silos that house many of our important thoughts, writings and memories. That is, unless you have your own blog or website as your home for your content on the web. Instead of mindlessly pumping […]\'>WPTavern: Ozh’ Tweet Archiver 2.0 Backs Up Your Tweets to WordPress</a></li></ul></div>','no'),(177,'_transient_timeout_feed_a5420c83891a9c88ad2a4f04584a5efc','1397708542','no'),(178,'_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:44:\"http://wordpress.org/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:\"Wed, 16 Apr 2014 16:02: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: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:7:\"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:45:\"http://wordpress.org/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:32:\"15@http://wordpress.org/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: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:24:\"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:48:\"http://wordpress.org/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:35:\"23862@http://wordpress.org/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:9:\"Tim Moore\";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:22:\"WordPress SEO by Yoast\";s: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:53:\"http://wordpress.org/plugins/wordpress-seo/#post-8321\";s: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 Jan 2009 20:34: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:34:\"8321@http://wordpress.org/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:\"Improve your WordPress SEO: Write better content and have a fully optimized WordPress site using the WordPress SEO plugin by Yoast.\";s: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: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:19:\"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:63:\"http://wordpress.org/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:33:\"132@http://wordpress.org/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:5:\"Arnee\";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:14:\"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:54:\"http://wordpress.org/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:34:\"2141@http://wordpress.org/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:46:\"iThemes Security (formerly Better WP Security)\";s: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:59:\"http://wordpress.org/plugins/better-wp-security/#post-21738\";s: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, 22 Oct 2010 22:06: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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"21738@http://wordpress.org/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:\"The easiest, most effective way to secure WordPress in seconds.\";s: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:\"Chris Wiegman\";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:33:\"WooCommerce - excelling eCommerce\";s: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/plugins/woocommerce/#post-29860\";s: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, 05 Sep 2011 08:13: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:35:\"29860@http://wordpress.org/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:\"WooCommerce is a powerful, extendable eCommerce plugin that helps you sell anything. Beautifully.\";s: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:\"WooThemes\";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:18:\"Wordfence Security\";s: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/plugins/wordfence/#post-29832\";s: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, 04 Sep 2011 03:13: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:35:\"29832@http://wordpress.org/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:121:\"Wordfence Security is a free enterprise class security plugin that makes your site up to 50 times faster and more secure.\";s: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:\"Wordfence\";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:20:\"MailPoet Newsletters\";s: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:59:\"http://wordpress.org/plugins/wysija-newsletters/#post-32629\";s: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 Dec 2011 17:09: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:35:\"32629@http://wordpress.org/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:94:\"Send newsletters, post notifications or autoresponders from WordPress easily, and beautifully.\";s: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:\"MailPoet Staff\";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:14:\"W3 Total Cache\";s: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/plugins/w3-total-cache/#post-12073\";s: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, 29 Jul 2009 18:46: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:35:\"12073@http://wordpress.org/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:132:\"Easy Web Performance Optimization (WPO) using caching: browser, page, object, database, minify and content delivery network support.\";s: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:\"Frederick Townes\";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:15:\"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:55:\"http://wordpress.org/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:34:\"1169@http://wordpress.org/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:120:\"The most popular WordPress gallery plugin and one of the most popular plugins of all time with over 9 million downloads.\";s: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: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:19:\"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:58:\"http://wordpress.org/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:33:\"753@http://wordpress.org/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:126:\"All in One SEO Pack is a WordPress SEO plugin to automatically optimize your WordPress blog for Search Engines such as 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: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: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:18:\"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:59:\"http://wordpress.org/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:35:\"18101@http://wordpress.org/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: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:21:\"WPtouch Mobile 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:47:\"http://wordpress.org/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:34:\"5468@http://wordpress.org/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:\"Create a slick mobile WordPress website with just a few clicks.\";s: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: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:22:\"Advanced Custom Fields\";s: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/plugins/advanced-custom-fields/#post-25254\";s: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, 17 Mar 2011 04:07: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:35:\"25254@http://wordpress.org/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:\"Fully customise WordPress edit screens with powerful fields. Boasting a professional interface and a powerful API, it’s a must have for any web deve\";s: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:\"elliotcondon\";s: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:45:\"http://wordpress.org/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:10:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Wed, 16 Apr 2014 16:22:22 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:7:\"expires\";s:29:\"Wed, 16 Apr 2014 16:37:17 GMT\";s:13:\"cache-control\";s:0:\"\";s:6:\"pragma\";s:0:\"\";s:13:\"last-modified\";s:31:\"Wed, 16 Apr 2014 16:02:17 +0000\";s:4:\"x-nc\";s:11:\"HIT lax 249\";}s:5:\"build\";s:14:\"20121202204312\";}','no'),(179,'_transient_timeout_feed_mod_a5420c83891a9c88ad2a4f04584a5efc','1397708542','no'),(180,'_transient_feed_mod_a5420c83891a9c88ad2a4f04584a5efc','1397665342','no'),(184,'_transient_feed_mod_57bc725ad6568758915363af670fd8bc','1397665343','no'),(187,'_transient_timeout_dash_de3249c4736ad3bd2cd29147c4a0d43e','1397708543','no'),(188,'_transient_dash_de3249c4736ad3bd2cd29147c4a0d43e','<h4>Most Popular</h4>\n<h5><a href=\'http://wordpress.org/plugins/wordfence/\'>Wordfence Security</a></h5> <span>(<a href=\'plugin-install.php?tab=plugin-information&plugin=wordfence&_wpnonce=0d00a22a06&TB_iframe=true&width=600&height=800\' class=\'thickbox\' title=\'Wordfence Security\'>Install</a>)</span>\n<p>Wordfence Security is a free enterprise class security plugin that makes your site up to 50 times faster and more secure.</p>\n<h4>Newest Plugins</h4>\n<h5><a href=\'http://wordpress.org/plugins/statsfc-player-rater/\'>StatsFC Player Rater</a></h5> <span>(<a href=\'plugin-install.php?tab=plugin-information&plugin=statsfc-player-rater&_wpnonce=1be3d0cdf4&TB_iframe=true&width=600&height=800\' class=\'thickbox\' title=\'StatsFC Player Rater\'>Install</a>)</span>\n<p>This widget will place a player rater for all matches of any Premier League team on your website.</p>\n','no'),(189,'_site_transient_timeout_browser_732d6afb3896a5fe3a8f2ce34decc56a','1398273255','yes'),(190,'_site_transient_browser_732d6afb3896a5fe3a8f2ce34decc56a','a:9:{s:8:\"platform\";s:9:\"Macintosh\";s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:13:\"34.0.1847.116\";s:10:\"update_url\";s:28:\"http://www.google.com/chrome\";s:7:\"img_src\";s:49:\"http://s.wordpress.org/images/browsers/chrome.png\";s:11:\"img_src_ssl\";s:48:\"https://wordpress.org/images/browsers/chrome.png\";s:15:\"current_version\";s:2:\"18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;}','yes'),(220,'_site_transient_update_plugins','O:8:\"stdClass\":4:{s:12:\"last_checked\";i:1397669301;s:7:\"checked\";a:8:{s:19:\"akismet/akismet.php\";s:5:\"2.5.7\";s:50:\"google-analytics-for-wordpress/googleanalytics.php\";s:5:\"4.2.8\";s:36:\"google-sitemap-generator/sitemap.php\";s:5:\"3.2.9\";s:9:\"hello.php\";s:3:\"1.6\";s:19:\"jetpack/jetpack.php\";s:3:\"2.2\";s:21:\"podpress/podpress.php\";s:9:\"8.8.10.13\";s:41:\"wordpress-importer/wordpress-importer.php\";s:5:\"0.6.1\";s:27:\"wp-super-cache/wp-cache.php\";s:3:\"1.2\";}s:8:\"response\";a:6:{s:19:\"akismet/akismet.php\";O:8:\"stdClass\":6:{s:2:\"id\";s:2:\"15\";s:4:\"slug\";s:7:\"akismet\";s:6:\"plugin\";s:19:\"akismet/akismet.php\";s:11:\"new_version\";s:5:\"3.0.0\";s:3:\"url\";s:38:\"https://wordpress.org/plugins/akismet/\";s:7:\"package\";s:56:\"https://downloads.wordpress.org/plugin/akismet.3.0.0.zip\";}s:50:\"google-analytics-for-wordpress/googleanalytics.php\";O:8:\"stdClass\":6:{s:2:\"id\";s:3:\"965\";s:4:\"slug\";s:30:\"google-analytics-for-wordpress\";s:6:\"plugin\";s:50:\"google-analytics-for-wordpress/googleanalytics.php\";s:11:\"new_version\";s:5:\"4.3.5\";s:3:\"url\";s:61:\"https://wordpress.org/plugins/google-analytics-for-wordpress/\";s:7:\"package\";s:79:\"https://downloads.wordpress.org/plugin/google-analytics-for-wordpress.4.3.5.zip\";}s:36:\"google-sitemap-generator/sitemap.php\";O:8:\"stdClass\":6:{s:2:\"id\";s:3:\"132\";s:4:\"slug\";s:24:\"google-sitemap-generator\";s:6:\"plugin\";s:36:\"google-sitemap-generator/sitemap.php\";s:11:\"new_version\";s:5:\"4.0.3\";s:3:\"url\";s:55:\"https://wordpress.org/plugins/google-sitemap-generator/\";s:7:\"package\";s:73:\"https://downloads.wordpress.org/plugin/google-sitemap-generator.4.0.3.zip\";}s:19:\"jetpack/jetpack.php\";O:8:\"stdClass\":8:{s:2:\"id\";s:5:\"20101\";s:4:\"slug\";s:7:\"jetpack\";s:6:\"plugin\";s:19:\"jetpack/jetpack.php\";s:11:\"new_version\";s:5:\"2.2.7\";s:14:\"upgrade_notice\";s:63:\"Jetpack 2.2.7 fixes a security bug. Please upgrade immediately.\";s:3:\"url\";s:38:\"https://wordpress.org/plugins/jetpack/\";s:7:\"package\";s:56:\"https://downloads.wordpress.org/plugin/jetpack.2.2.7.zip\";s:10:\"autoupdate\";b:1;}s:21:\"podpress/podpress.php\";O:8:\"stdClass\":7:{s:2:\"id\";s:3:\"455\";s:4:\"slug\";s:8:\"podpress\";s:6:\"plugin\";s:21:\"podpress/podpress.php\";s:11:\"new_version\";s:9:\"8.8.10.17\";s:14:\"upgrade_notice\";s:42:\"make a data base backup before you upgrade\";s:3:\"url\";s:39:\"https://wordpress.org/plugins/podpress/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/plugin/podpress.8.8.10.17.zip\";}s:27:\"wp-super-cache/wp-cache.php\";O:8:\"stdClass\":7:{s:2:\"id\";s:4:\"1221\";s:4:\"slug\";s:14:\"wp-super-cache\";s:6:\"plugin\";s:27:\"wp-super-cache/wp-cache.php\";s:11:\"new_version\";s:3:\"1.4\";s:14:\"upgrade_notice\";s:180:\"Dynamic cached content now disabled by default. mfunc replaced by wpsc_cachedata filter. Read http://ocaoimh.ie/y/6j before updating if you use mfunc/mclude/dynamic-cached-content.\";s:3:\"url\";s:45:\"https://wordpress.org/plugins/wp-super-cache/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/plugin/wp-super-cache.1.4.zip\";}}s:12:\"translations\";a:0:{}}','yes'),(198,'theme_mods_twentyeleven','a:1:{s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1397668988;s:4:\"data\";a:6:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:6:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";i:3;s:10:\"archives-2\";i:4;s:12:\"categories-2\";i:5;s:6:\"meta-2\";}s:9:\"sidebar-2\";a:0:{}s:9:\"sidebar-3\";a:0:{}s:9:\"sidebar-4\";a:0:{}s:9:\"sidebar-5\";a:0:{}}}}','yes'),(210,'_transient_et_pb_mailchimp_lists','a:0:{}','no'),(214,'nav_menu_options','a:2:{i:0;b:0;s:8:\"auto_add\";a:1:{i:0;i:3;}}','yes'),(216,'_site_transient_timeout_popular_importers_en_US','1397841976','yes'),(217,'_site_transient_popular_importers_en_US','a:2:{s:9:\"importers\";a:8:{s:7:\"blogger\";a:4:{s:4:\"name\";s:7:\"Blogger\";s:11:\"description\";s:86:\"Install the Blogger importer to import posts, comments, and users from a Blogger blog.\";s:11:\"plugin-slug\";s:16:\"blogger-importer\";s:11:\"importer-id\";s:7:\"blogger\";}s:9:\"wpcat2tag\";a:4:{s:4:\"name\";s:29:\"Categories and Tags Converter\";s:11:\"description\";s:109:\"Install the category/tag converter to convert existing categories to tags or tags to categories, selectively.\";s:11:\"plugin-slug\";s:18:\"wpcat2tag-importer\";s:11:\"importer-id\";s:9:\"wpcat2tag\";}s:11:\"livejournal\";a:4:{s:4:\"name\";s:11:\"LiveJournal\";s:11:\"description\";s:82:\"Install the LiveJournal importer to import posts from LiveJournal using their API.\";s:11:\"plugin-slug\";s:20:\"livejournal-importer\";s:11:\"importer-id\";s:11:\"livejournal\";}s:11:\"movabletype\";a:4:{s:4:\"name\";s:24:\"Movable Type and TypePad\";s:11:\"description\";s:99:\"Install the Movable Type importer to import posts and comments from a Movable Type or TypePad blog.\";s:11:\"plugin-slug\";s:20:\"movabletype-importer\";s:11:\"importer-id\";s:2:\"mt\";}s:4:\"opml\";a:4:{s:4:\"name\";s:8:\"Blogroll\";s:11:\"description\";s:61:\"Install the blogroll importer to import links in OPML format.\";s:11:\"plugin-slug\";s:13:\"opml-importer\";s:11:\"importer-id\";s:4:\"opml\";}s:3:\"rss\";a:4:{s:4:\"name\";s:3:\"RSS\";s:11:\"description\";s:58:\"Install the RSS importer to import posts from an RSS feed.\";s:11:\"plugin-slug\";s:12:\"rss-importer\";s:11:\"importer-id\";s:3:\"rss\";}s:6:\"tumblr\";a:4:{s:4:\"name\";s:6:\"Tumblr\";s:11:\"description\";s:84:\"Install the Tumblr importer to import posts & media from Tumblr using their API.\";s:11:\"plugin-slug\";s:15:\"tumblr-importer\";s:11:\"importer-id\";s:6:\"tumblr\";}s:9:\"wordpress\";a:4:{s:4:\"name\";s:9:\"WordPress\";s:11:\"description\";s:130:\"Install the WordPress importer to import posts, pages, comments, custom fields, categories, and tags from a WordPress export file.\";s:11:\"plugin-slug\";s:18:\"wordpress-importer\";s:11:\"importer-id\";s:9:\"wordpress\";}}s:10:\"translated\";b:0;}','yes'),(219,'_site_transient_et_update_themes','O:8:\"stdClass\":3:{s:7:\"checked\";a:5:{s:4:\"Divi\";s:3:\"1.7\";s:12:\"twentyeleven\";s:3:\"1.5\";s:14:\"twentyfourteen\";s:3:\"1.0\";s:14:\"twentythirteen\";s:3:\"1.1\";s:12:\"twentytwelve\";s:3:\"1.1\";}s:8:\"response\";a:1:{s:4:\"Divi\";a:2:{s:11:\"new_version\";s:3:\"1.8\";s:3:\"url\";s:52:\"https://www.elegantthemes.com/api/changelog/divi.txt\";}}s:12:\"last_checked\";i:1397669287;}','yes'),(224,'category_children','a:0:{}','yes'),(225,'project_category_children','a:0:{}','yes'),(238,'_transient_timeout_settings_errors','1397670672','no'),(239,'_transient_settings_errors','a:1:{i:0;a:4:{s:7:\"setting\";s:7:\"general\";s:4:\"code\";s:16:\"settings_updated\";s:7:\"message\";s:15:\"Settings saved.\";s:4:\"type\";s:7:\"updated\";}}','no'),(240,'_transient_doing_cron','1398134098.5394959449768066406250','yes'); /*!40000 ALTER TABLE `wp_options` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_postmeta` -- DROP TABLE IF EXISTS `wp_postmeta`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `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 AUTO_INCREMENT=94 DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `wp_postmeta` -- LOCK TABLES `wp_postmeta` WRITE; /*!40000 ALTER TABLE `wp_postmeta` DISABLE KEYS */; INSERT INTO `wp_postmeta` VALUES (1,2,'_wp_page_template','default'),(2,4,'_wp_attached_file','2014/04/pixelbuzz.wordpress.2014-04-16.xml'),(3,4,'_wp_attachment_context','upgrader'),(7,7,'_et_pb_predefined_layout','on'),(6,6,'_et_pb_predefined_layout','on'),(8,8,'_et_pb_predefined_layout','on'),(9,9,'_et_pb_predefined_layout','on'),(10,10,'_et_pb_predefined_layout','on'),(11,11,'_et_pb_predefined_layout','on'),(12,12,'_et_pb_predefined_layout','on'),(13,13,'_et_pb_predefined_layout','on'),(14,14,'_et_pb_predefined_layout','on'),(15,15,'_et_pb_predefined_layout','on'),(16,16,'_et_pb_predefined_layout','on'),(17,17,'_et_pb_predefined_layout','on'),(18,18,'_et_pb_predefined_layout','on'),(19,19,'_et_pb_predefined_layout','on'),(20,20,'_et_pb_predefined_layout','on'),(21,21,'_et_pb_predefined_layout','on'),(22,22,'_wp_page_template','default'),(23,22,'_edit_last','1'),(24,22,'_et_pb_page_layout','et_right_sidebar'),(25,22,'_et_pb_use_builder','on'),(26,22,'_et_pb_old_content','<p>Coming Soon!</p>'),(27,22,'_edit_lock','1397670243:1'),(28,24,'_wp_page_template','default'),(29,24,'_edit_last','1'),(30,24,'_et_pb_page_layout','et_right_sidebar'),(31,24,'_et_pb_use_builder','on'),(32,24,'_et_pb_old_content',''),(33,24,'_edit_lock','1397670432:1'),(34,26,'_wp_page_template','default'),(35,26,'_edit_last','1'),(36,26,'_et_pb_page_layout','et_right_sidebar'),(37,26,'_et_pb_use_builder','on'),(38,26,'_et_pb_old_content',''),(39,26,'_edit_lock','1397670360:1'),(40,2,'_wp_trash_meta_status','publish'),(41,2,'_wp_trash_meta_time','1397669058'),(42,29,'_menu_item_type','custom'),(43,29,'_menu_item_menu_item_parent','0'),(44,29,'_menu_item_object_id','29'),(45,29,'_menu_item_object','custom'),(46,29,'_menu_item_target',''),(47,29,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(48,29,'_menu_item_xfn',''),(49,29,'_menu_item_url','http://pixelbuzz.pro/wordpress1/'),(50,29,'_menu_item_orphaned','1397669067'),(51,30,'_menu_item_type','post_type'),(52,30,'_menu_item_menu_item_parent','0'),(53,30,'_menu_item_object_id','22'),(54,30,'_menu_item_object','page'),(55,30,'_menu_item_target',''),(56,30,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(57,30,'_menu_item_xfn',''),(58,30,'_menu_item_url',''),(84,95,'_et_pb_page_layout','et_right_sidebar'),(60,31,'_menu_item_type','post_type'),(61,31,'_menu_item_menu_item_parent','0'),(62,31,'_menu_item_object_id','26'),(63,31,'_menu_item_object','page'),(64,31,'_menu_item_target',''),(65,31,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(66,31,'_menu_item_xfn',''),(67,31,'_menu_item_url',''),(69,32,'_menu_item_type','post_type'),(70,32,'_menu_item_menu_item_parent','0'),(71,32,'_menu_item_object_id','24'),(72,32,'_menu_item_object','page'),(73,32,'_menu_item_target',''),(74,32,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(75,32,'_menu_item_xfn',''),(76,32,'_menu_item_url',''),(83,95,'_edit_last','1'),(82,95,'_wp_page_template','default'),(85,95,'_et_pb_use_builder','on'),(86,95,'_et_pb_old_content',''),(87,95,'_edit_lock','1397669856:1'),(88,101,'_wp_attached_file','2014/04/PIXELBUZZ-1920x600.png'),(89,101,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:600;s:4:\"file\";s:30:\"2014/04/PIXELBUZZ-1920x600.png\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"PIXELBUZZ-1920x600-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"PIXELBUZZ-1920x600-300x93.png\";s:5:\"width\";i:300;s:6:\"height\";i:93;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:31:\"PIXELBUZZ-1920x600-1024x320.png\";s:5:\"width\";i:1024;s:6:\"height\";i:320;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:30:\"PIXELBUZZ-1920x600-400x250.png\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:31:\"PIXELBUZZ-1920x600-1080x600.png\";s:5:\"width\";i:1080;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:30:\"PIXELBUZZ-1920x600-400x284.png\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:31:\"PIXELBUZZ-1920x600-1080x337.png\";s:5:\"width\";i:1080;s:6:\"height\";i:337;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(90,102,'_wp_attached_file','2014/04/PIXELBUZZ-Header-300x100.png'),(91,102,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:100;s:4:\"file\";s:36:\"2014/04/PIXELBUZZ-Header-300x100.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:36:\"PIXELBUZZ-Header-300x100-150x100.png\";s:5:\"width\";i:150;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(92,103,'_wp_attached_file','2014/04/textures_wallpapers_374ht.jpg'),(93,103,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1200;s:4:\"file\";s:37:\"2014/04/textures_wallpapers_374ht.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:37:\"textures_wallpapers_374ht-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:37:\"textures_wallpapers_374ht-300x187.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:187;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:38:\"textures_wallpapers_374ht-1024x640.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:37:\"textures_wallpapers_374ht-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:38:\"textures_wallpapers_374ht-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:37:\"textures_wallpapers_374ht-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:38:\"textures_wallpapers_374ht-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'); /*!40000 ALTER TABLE `wp_postmeta` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_posts` -- DROP TABLE IF EXISTS `wp_posts`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `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` longtext 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 AUTO_INCREMENT=112 DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `wp_posts` -- LOCK TABLES `wp_posts` WRITE; /*!40000 ALTER TABLE `wp_posts` DISABLE KEYS */; INSERT INTO `wp_posts` VALUES (1,1,'2013-03-11 22:21:17','2013-03-11 22:21:17','Welcome to WordPress. This is your first post. Edit or delete it, then start blogging!','Hello world!','','publish','open','open','','hello-world','','','2012-06-20 17:27:39','2012-06-20 17:27:39','',0,'http://netsol003.com/woopWp/?p=1',0,'post','',1),(2,1,'2012-06-20 17:27:39','2012-06-20 17:27:39','This is an example page. It\'s different from a blog post because it will stay in one place and will show up in your site navigation (in most themes). Most people start with an About page that introduces them to potential site visitors. It might say something like this:\n\n<blockquote>Hi there! I\'m a bike messenger by day, aspiring actor by night, and this is my blog. I live in Los Angeles, have a great dog named Jack, and I like piña coladas. (And gettin\' caught in the rain.)</blockquote>\n\n...or something like this:\n\n<blockquote>The XYZ Doohickey Company was founded in 1971, and has been providing quality doohickies to the public ever since. Located in Gotham City, XYZ employs over 2,000 people and does all kinds of awesome things for the Gotham community.</blockquote>\n\nAs a new WordPress user, you should go to <a href=\"http://netsol003.com/woopWp/wp-admin/\">your dashboard</a> to delete this page and create new pages for your content. Have fun!','Sample Page','','trash','open','open','','sample-page','','','2014-04-16 17:24:18','2014-04-16 17:24:18','',0,'http://netsol003.com/woopWp/?page_id=2',0,'page','',0),(23,1,'2014-04-16 17:23:39','2014-04-16 17:23:39','','About','','inherit','open','open','','22-revision-v1','','','2014-04-16 17:23:39','2014-04-16 17:23:39','',22,'http://pixelbuzz.pro/wordpress1/?p=23',0,'revision','',0),(4,1,'2014-04-16 17:21:20','2014-04-16 17:21:20','http://pixelbuzz.pro/wordpress1/wp-content/uploads/2014/04/pixelbuzz.wordpress.2014-04-16.xml','pixelbuzz.wordpress.2014-04-16.xml','','private','open','open','','pixelbuzz-wordpress-2014-04-16-xml','','','2014-04-16 17:21:20','2014-04-16 17:21:20','',0,'http://pixelbuzz.pro/wordpress1/wp-content/uploads/2014/04/pixelbuzz.wordpress.2014-04-16.xml',0,'attachment','',0),(6,1,'2014-04-16 17:23:09','2014-04-16 17:23:09','\n[et_pb_section fullwidth=\"on\"]\n[et_pb_fullwidth_slider show_arrows=\"on\" show_pagination=\"on\" parallax=\"on\" auto=\"off\" auto_speed=\"7000\"]\n[et_pb_slide heading=\"Designed With Passion\" background_image=\"http://www.elegantthemesimages.com/images/premade_bg.jpg\" button_text=\"Join Today\" background_color=\"#492144\" button_link=\"http://elegantthemes.com\"]No matter how you use Divi, your website is going to look great. Everything about Divi has been built beautifully and purposefully by our passionate team. We are so excited to release this labor of love to our community.[/et_pb_slide]\n[et_pb_slide heading=\"Elegantly Responsive\" button_text=\"Join Today\" background_color=\"#6aceb6\" button_link=\"http://elegantthemes.com\" image=\"http://www.elegantthemesimages.com/images/premade_iphone_slider2.png\" image_alt=\"Alt text for the image\" alignment=\"bottom\"]Vivamus ipsum velit, ullamcorper quis nibh non, molestie tempus sapien. Mauris ultrices, felis ut eleifend auctor, leo felis vehicula quam, ut accumsan augue nunc at nisl. Cras venenatis.[/et_pb_slide]\n[/et_pb_fullwidth_slider]\n[/et_pb_section]\n\n[et_pb_section]\n[et_pb_row]\n[et_pb_column type=\"1_4\"]\n[et_pb_blurb image=\"http://www.elegantthemesimages.com/images/premade_blurb_1.png\" title=\"Advanced Page Builder\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec eleifend tincidunt nisi. Fusce at purus in massa laoreet.[/et_pb_blurb]\n[/et_pb_column]\n[et_pb_column type=\"1_4\"]\n[et_pb_blurb image=\"http://www.elegantthemesimages.com/images/premade_blurb_2.png\" title=\"Elegant Shortcodes\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec eleifend tincidunt nisi. Fusce at purus in massa laoreet.[/et_pb_blurb]\n[/et_pb_column]\n[et_pb_column type=\"1_4\"]\n[et_pb_blurb image=\"http://www.elegantthemesimages.com/images/premade_blurb_3.png\" title=\"Fully Responsive\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec eleifend tincidunt nisi. Fusce at purus in massa laoreet.[/et_pb_blurb]\n[/et_pb_column]\n[et_pb_column type=\"1_4\"]\n[et_pb_blurb image=\"http://www.elegantthemesimages.com/images/premade_blurb_4.png\" title=\"Perpetual Updates\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec eleifend tincidunt nisi. Fusce at purus in massa laoreet.[/et_pb_blurb]\n[/et_pb_column]\n[/et_pb_row]\n[/et_pb_section]\n\n[et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\"]\n[et_pb_row]\n[et_pb_column type=\"2_3\"]\n[et_pb_image src=\"http://www.elegantthemesimages.com/images/premade_iphone_half.png\" animation=\"left\"][/et_pb_image]\n[/et_pb_column]\n[et_pb_column type=\"1_3\"]\n[et_pb_divider color=\"#eee\" show_divider=\"off\" height=\"120\"][/et_pb_divider]\n[et_pb_text]\n<h2>It\'s Elegantly Responsive</h2>\nAenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante. In vitae tempus nunc. Etiam adipiscing enim sed condimentum ultrices. Cras rutrum blandit sem, molestie consequat erat luctus vel. Cras nunc est, laoreet sit amet ligula et, eleifend commodo dui. Vivamus id blandit nisi, eu mattis odio.\n[/et_pb_text]\n[et_pb_counters]\n[et_pb_counter percent=\"50\"]Smart[/et_pb_counter]\n[et_pb_counter percent=\"80\"]Flexible[/et_pb_counter]\n[et_pb_counter percent=\"40\"]Beautiful[/et_pb_counter]\n[/et_pb_counters]\n[/et_pb_column]\n[/et_pb_row]\n[/et_pb_section]\n\n[et_pb_section]\n[et_pb_row]\n[et_pb_column type=\"1_4\"]\n[et_pb_image src=\"http://www.elegantthemesimages.com/images/premade_logo-1.jpg\" animation=\"top\"][/et_pb_image]\n[/et_pb_column]\n[et_pb_column type=\"1_4\"]\n[et_pb_image src=\"http://www.elegantthemesimages.com/images/premade_logo-2.jpg\" animation=\"top\"][/et_pb_image]\n[/et_pb_column]\n[et_pb_column type=\"1_4\"]\n[et_pb_image src=\"http://www.elegantthemesimages.com/images/premade_logo-3.jpg\" animation=\"top\"][/et_pb_image]\n[/et_pb_column]\n[et_pb_column type=\"1_4\"]\n[et_pb_image src=\"http://www.elegantthemesimages.com/images/premade_logo-4.jpg\" animation=\"top\"][/et_pb_image]\n[/et_pb_column]\n[/et_pb_row]\n[/et_pb_section]\n\n[et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\"]\n[et_pb_row]\n[et_pb_column type=\"4_4\"]\n[et_pb_text text_orientation=\"center\"]\n<h2>With Our Most Advanced Page Builder Yet.</h2>\nVestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus dolor ipsum amet sit.\n[/et_pb_text]\n[/et_pb_column]\n[/et_pb_row]\n[et_pb_row]\n[et_pb_column type=\"4_4\"]\n[et_pb_image src=\"http://www.elegantthemesimages.com/images/premade_macbook.png\" animation=\"top\"][/et_pb_image]\n[/et_pb_column]\n[/et_pb_row]\n[/et_pb_section]\n\n[et_pb_section background_color=\"#7cbec6\"]\n[et_pb_row]\n[et_pb_column type=\"4_4\"]\n[et_pb_cta title=\"Signup Today For Instant Access\" button_url=\"http://elegantthemes.com/preview/Divi/join/\" button_text=\"Join Today\" background_layout=\"dark\" background_color=\"none\"]\nJoin today and get access to Divi, as well as our other countless themes and plugins.\n[/et_pb_cta]\n[/et_pb_column]\n[/et_pb_row]\n[/et_pb_section]','Homepage','','publish','open','open','','homepage','','','2014-04-16 17:23:09','2014-04-16 17:23:09','',0,'http://pixelbuzz.pro/wordpress1/?post_type=et_pb_layout&p=6',0,'et_pb_layout','',0),(7,1,'2014-04-16 17:23:09','2014-04-16 17:23:09','\n[et_pb_section]\n[et_pb_row]\n[et_pb_column type=\"4_4\"]\n[et_pb_slider show_arrows=\"on\" show_pagination=\"on\" parallax=\"off\" auto=\"off\" auto_speed=\"7000\"]\n[et_pb_slide heading=\"Divi\" button_text=\"Join Today\" background_color=\"#444b5d\" background_image=\"http://www.elegantthemesimages.com/images/premade_bg.jpg\" button_link=\"http://elegantthemes.com\" image=\"http://www.elegantthemesimages.com/images/premade-logo.png\" image_alt=\"Alt text for the image\"]Vivamus ipsum velit, ullamcorper quis nibh non, molestie tempus sapien. Mauris ultrices, felis ut eleifend auctor, leo felis vehicula quam, ut accumsan augue nunc at nisl.[/et_pb_slide]\n[et_pb_slide heading=\"Divi\" button_text=\"Join Today\" background_color=\"#144d6a\" background_image=\"http://www.elegantthemesimages.com/images/premade_bg_2.jpg\" button_link=\"http://elegantthemes.com\"]The only theme you will ever need.[/et_pb_slide]\n[/et_pb_slider]\n[/et_pb_column]\n[/et_pb_row]\n[/et_pb_section]\n\n[et_pb_section]\n[et_pb_row]\n[et_pb_column type=\"1_4\"]\n[et_pb_blurb image=\"http://www.elegantthemesimages.com/images/premade_blurb_1.png\" title=\"Advanced Page Builder\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec eleifend tincidunt nisi. Fusce at purus in massa laoreet.[/et_pb_blurb]\n[/et_pb_column]\n[et_pb_column type=\"1_4\"]\n[et_pb_blurb image=\"http://www.elegantthemesimages.com/images/premade_blurb_2.png\" title=\"Elegant Shortcodes\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec eleifend tincidunt nisi. Fusce at purus in massa laoreet.[/et_pb_blurb]\n[/et_pb_column]\n[et_pb_column type=\"1_4\"]\n[et_pb_blurb image=\"http://www.elegantthemesimages.com/images/premade_blurb_3.png\" title=\"Fully Responsive\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec eleifend tincidunt nisi. Fusce at purus in massa laoreet.[/et_pb_blurb]\n[/et_pb_column]\n[et_pb_column type=\"1_4\"]\n[et_pb_blurb image=\"http://www.elegantthemesimages.com/images/premade_blurb_4.png\" title=\"Perpetual Updates\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec eleifend tincidunt nisi. Fusce at purus in massa laoreet.[/et_pb_blurb]\n[/et_pb_column]\n[/et_pb_row]\n\n\n[et_pb_row]\n[et_pb_column type=\"4_4\"]\n[et_pb_divider height=\"1\" show_divider=\"on\"][/et_pb_divider]\n[/et_pb_column]\n[/et_pb_row]\n\n[et_pb_row]\n[et_pb_column type=\"1_3\"]\n[et_pb_text]<h1 style=\"font-size: 32px;\">STUNNING PORTFOLIOS</h1>[/et_pb_text]\n[/et_pb_column]\n[et_pb_column type=\"1_3\"]\n[et_pb_text]With Divi’s portfolio module, you can show off your work anywhere on your site. Choose from our premade portfolio layouts, or create one entirely from scratch![/et_pb_text]\n[/et_pb_column]\n[et_pb_column type=\"1_3\"]\n[et_pb_image src=\"http://elegantthemesimages.com/images/premade-portfolios.gif\" animation=\"right\"][/et_pb_image]\n[/et_pb_column]\n[/et_pb_row]\n\n[et_pb_row]\n[et_pb_column type=\"4_4\"]\n[et_pb_divider height=\"1\" show_divider=\"on\"][/et_pb_divider]\n[/et_pb_column]\n[/et_pb_row]\n\n[et_pb_row]\n[et_pb_column type=\"1_3\"]\n[et_pb_text]<h1 style=\"font-size: 32px;\">ECOMMERCE INTEGRATION</h1>[/et_pb_text]\n[/et_pb_column]\n[et_pb_column type=\"1_3\"]\n[et_pb_text]Divi has what you need to get an online store up and running in no time. We’ve included a couple of premade store layouts, and the store module lets you sell anywhere on your site.[/et_pb_text]\n[/et_pb_column]\n[et_pb_column type=\"1_3\"]\n[et_pb_image src=\"http://elegantthemesimages.com/images/premade-ecommerce.gif\" animation=\"right\"][/et_pb_image]\n[/et_pb_column]\n[/et_pb_row]\n\n\n[et_pb_row]\n[et_pb_column type=\"4_4\"]\n[et_pb_cta title=\"Signup Today For Instant Access\" button_url=\"http://elegantthemes.com/preview/Divi/join/\" button_text=\"Join Today\" background_layout=\"dark\" background_color=\"#7EBEC5\"]\nJoin today and get access to Divi, as well as our other countless themes and plugins.\n[/et_pb_cta]\n[/et_pb_column]\n[/et_pb_row]\n[/et_pb_section]','Homepage Simple','','publish','open','open','','homepage-simple','','','2014-04-16 17:23:09','2014-04-16 17:23:09','',0,'http://pixelbuzz.pro/wordpress1/?post_type=et_pb_layout&p=7',0,'et_pb_layout','',0),(8,1,'2014-04-16 17:23:09','2014-04-16 17:23:09','\n[et_pb_section fullwidth=\"on\"]\n[et_pb_fullwidth_slider show_arrows=\"on\" show_pagination=\"on\" parallax=\"on\" auto=\"off\" auto_speed=\"7000\"]\n[et_pb_slide heading=\"Welcome To Our Store\" background_image=\"http://www.elegantthemesimages.com/images/premade_bg.jpg\" button_text=\"View Special Offers\" background_color=\"#492144\" button_link=\"http://elegantthemes.com\"]No matter how you use Divi, your website is going to look great. Everything about Divi has been built beautifully and purposefully by our passionate team. We are so excited to release this labor of love to our community.[/et_pb_slide]\n[et_pb_slide heading=\"Today\'s Sale Items\" button_text=\"Order Today\" background_color=\"#6aceb6\" button_link=\"http://elegantthemes.com\" image=\"http://www.elegantthemesimages.com/images/premade_image_800x600.png\" image_alt=\"Alt text for the image\"]Vivamus ipsum velit, ullamcorper quis nibh non, molestie tempus sapien. Mauris ultrices, felis ut eleifend auctor, leo felis vehicula quam, ut accumsan augue nunc at nisl. Cras venenatis.[/et_pb_slide]\n[/et_pb_fullwidth_slider]\n[/et_pb_section]\n\n[et_pb_section]\n[et_pb_row]\n[et_pb_column type=\"4_4\"]\n[et_pb_shop posts_number=\"12\" type=\"recent\"][/et_pb_shop]\n[/et_pb_column]\n[/et_pb_row]\n[et_pb_row]\n[et_pb_column type=\"1_2\"]\n[et_pb_cta title=\"The Holiday Special Sale\" button_url=\"http://elegantthemes.com/preview/Divi/join/\" button_text=\"Redeem This Offer\" background_layout=\"dark\" background_color=\"#7ebec5\"]\nFor a limited time only, all of our holiday products are 50% off! Don\'t miss your chance to save big on these wonderful items.[/et_pb_cta]\n[/et_pb_column]\n[et_pb_column type=\"1_2\"]\n[et_pb_cta title=\"The Holiday Special Sale\" button_url=\"http://elegantthemes.com/preview/Divi/join/\" button_text=\"Redeem This Offer\" background_layout=\"light\" background_color=\"#fff\"]\nFor a limited time only, all of our holiday products are 50% off! Don\'t miss your chance to save big on these wonderful items.[/et_pb_cta]\n[/et_pb_column]\n[/et_pb_row]\n[/et_pb_section]\n\n[et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\"]\n[et_pb_row]\n[et_pb_column type=\"1_2\"]\n[et_pb_text]\n<h2>Products On Sale</h2>\nTake a look at these special offers.\n[/et_pb_text]\n[et_pb_shop posts_number=\"4\" type=\"sale\" columns=\"2\"][/et_pb_shop]\n[/et_pb_column]\n[et_pb_column type=\"1_2\"]\n[et_pb_text]\n<h2>Top Rated Products</h2>\nA list of our latest products.[/et_pb_text]\n[et_pb_shop posts_number=\"4\" type=\"top_rated\" columns=\"2\"][/et_pb_shop]\n[/et_pb_column]\n[/et_pb_row]\n[/et_pb_section]\n\n[et_pb_section background_color=\"#7EBEC5\"]\n[et_pb_row]\n[et_pb_column type=\"4_4\"]\n[et_pb_cta title=\"Signup Today For Instant Access\" button_url=\"http://elegantthemes.com/preview/Divi/join/\" button_text=\"Join Today\" background_layout=\"dark\" background_color=\"none\"]\nJoin today and get access to Divi, as well as our other countless themes and plugins.\n[/et_pb_cta]\n[/et_pb_column]\n[/et_pb_row]\n[/et_pb_section]','Homepage Store','','publish','open','open','','homepage-store','','','2014-04-16 17:23:09','2014-04-16 17:23:09','',0,'http://pixelbuzz.pro/wordpress1/?post_type=et_pb_layout&p=8',0,'et_pb_layout','',0),(9,1,'2014-04-16 17:23:09','2014-04-16 17:23:09','\n[et_pb_section background_color=\"#6aceb6\" inner_shadow=\"on\" fullwidth=\"on\"]\n[et_pb_fullwidth_header title=\"Contact Our Company\" subhead=\"If you have any questions, we would love to help.\" background_layout=\"dark\"][/et_pb_fullwidth_header]\n[/et_pb_section]\n\n[et_pb_section]\n[et_pb_row]\n[et_pb_column type=\"1_2\"]\n[et_pb_contact_form title=\"Get In Touch\"][/et_pb_contact_form]\n[/et_pb_column]\n[et_pb_column type=\"1_4\"]\n[et_pb_text]\n<h3>Contact Information</h3>\n<p>Cras rutrum blandit sem, molestie consequat erat luctus vel. Cras nunc est, laoreet sit amet ligula et, eleifend commodo dui.</p>\n[/et_pb_text]\n[et_pb_text]\n<p>\n<strong>Phone:</strong> 343.554.2466\n<strong>Fax:</strong> 888.343.3467\n<strong>eMail:</strong> contact@somewebsite.com\n</p>\n[/et_pb_text]\n[/et_pb_column]\n[et_pb_column type=\"1_4\"]\n[et_pb_text]\n<h3>Location & Hours</h3>\n<p>Vivamus id blandit nisi, eu mattis odio. Nulla facilisi. Aenean in mi. Cras rutrum blandit sem, molestie consequat erat luctus vel.</p>\n[/et_pb_text]\n[et_pb_text]\n<p>\n<strong>Address:</strong> 4323 Divi Street\nSome City, California, 33432\n<strong>Hours:</strong> Mon-Fri, 9:00AM-6:00PM\n</p>\n[/et_pb_text]\n[/et_pb_column]\n[/et_pb_row]\n[/et_pb_section]','Contact','','publish','open','open','','contact','','','2014-04-16 17:23:09','2014-04-16 17:23:09','',0,'http://pixelbuzz.pro/wordpress1/?post_type=et_pb_layout&p=9',0,'et_pb_layout','',0),(10,1,'2014-04-16 17:23:09','2014-04-16 17:23:09','\n[et_pb_section fullwidth=\"on\"]\n[et_pb_fullwidth_slider show_arrows=\"on\" show_pagination=\"on\" parallax=\"on\" auto=\"off\" auto_speed=\"7000\"]\n[et_pb_slide heading=\"Join Today\" background_image=\"http://www.elegantthemesimages.com/images/premade_bg_2.jpg\" button_text=\"Join Today\" background_color=\"#144d6a\" button_link=\"http://elegantthemes.com\"]No matter how you use Divi, your website is going to look great. Everything about Divi has been built beautifully and purposefully by our passionate team. We are so excited to release this labor of love to our community.[/et_pb_slide]\n[et_pb_slide heading=\"The Best Deal\" button_text=\"Join Today\" background_color=\"#6aceb6\" button_link=\"http://elegantthemes.com\" image=\"http://www.elegantthemesimages.com/images/premade_iphone_slider2.png\" image_alt=\"Alt text for the image\" alignment=\"bottom\"]Vivamus ipsum velit, ullamcorper quis nibh non, molestie tempus sapien. Mauris ultrices, felis ut eleifend auctor, leo felis vehicula quam, ut accumsan augue nunc at nisl. Cras venenatis.[/et_pb_slide]\n[/et_pb_fullwidth_slider]\n[/et_pb_section]\n\n[et_pb_section]\n[et_pb_row]\n[et_pb_column type=\"1_4\"]\n[et_pb_blurb image=\"http://www.elegantthemesimages.com/images/premade_blurb_1.png\" title=\"Advanced Page Builder\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec eleifend tincidunt nisi. Fusce at purus in massa laoreet.[/et_pb_blurb]\n[/et_pb_column]\n[et_pb_column type=\"1_4\"]\n[et_pb_blurb image=\"http://www.elegantthemesimages.com/images/premade_blurb_2.png\" title=\"Elegant Shortcodes\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec eleifend tincidunt nisi. Fusce at purus in massa laoreet.[/et_pb_blurb]\n[/et_pb_column]\n[et_pb_column type=\"1_4\"]\n[et_pb_blurb image=\"http://www.elegantthemesimages.com/images/premade_blurb_3.png\" title=\"Fully Responsive\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec eleifend tincidunt nisi. Fusce at purus in massa laoreet.[/et_pb_blurb]\n[/et_pb_column]\n[et_pb_column type=\"1_4\"]\n[et_pb_blurb image=\"http://www.elegantthemesimages.com/images/premade_blurb_4.png\" title=\"Perpetual Updates\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec eleifend tincidunt nisi. Fusce at purus in massa laoreet.[/et_pb_blurb]\n[/et_pb_column]\n[/et_pb_row]\n[/et_pb_section]\n\n[et_pb_section background_color=\"#f7f7f7\"]\n[et_pb_row]\n[et_pb_column type=\"4_4\"]\n[et_pb_divider height=\"60\"][/et_pb_divider]\n[et_pb_pricing_tables]\n[et_pb_pricing_table title=\"Beginnger\" currency=\"$\" per=\"yr\" sum=\"19\" button_url=\"http://elegantthemes.com\" button_text=\"Sign Up!\"]\nAccess to <a href=\"#\">All Themes</a>\nPerpetual Theme Updates\n-Premium Technical Support\n-Access to <a href=\"#\">All Plugins</a>\n-Layered Photoshop Files\n-No Yearly Fees\n[/et_pb_pricing_table]\n[et_pb_pricing_table title=\"Personal\" currency=\"$\" per=\"yr\" sum=\"39\" button_url=\"http://elegantthemes.com\" button_text=\"Sign Up!\"]\nAccess to <a href=\"#\">All Themes</a>\nPerpetual Theme Updates\nPremium Technical Support\n-Access to <a href=\"#\">All Plugins</a>\n-Layered Photoshop Files\n-No Yearly Fees\n[/et_pb_pricing_table]\n[et_pb_pricing_table featured=\"on\" title=\"Developer\" subtitle=\"The Best Deal\" currency=\"$\" per=\"yr\" sum=\"89\" button_url=\"http://elegantthemes.com\" button_text=\"Sign Up!\"]\nAccess to <a href=\"#\">All Themes</a>\nPerpetual Theme Updates\nPremium Technical Support\nAccess to <a href=\"#\">All Plugins</a>\nLayered Photoshop Files\n-No Yearly Fees\n[/et_pb_pricing_table]\n[et_pb_pricing_table title=\"Lifetime\" currency=\"$\" per=\"yr\" sum=\"249\" button_url=\"http://elegantthemes.com\" button_text=\"Sign Up!\"]\nAccess to <a href=\"#\">All Themes</a>\nPerpetual Theme Updates\nPremium Technical Support\nAccess to <a href=\"#\">All Plugins</a>\nLayered Photoshop Files\nNo Yearly Fees\n[/et_pb_pricing_table]\n[/et_pb_pricing_tables]\n[et_pb_divider height=\"60\"][/et_pb_divider]\n[/et_pb_column]\n[/et_pb_row]\n[/et_pb_section]\n\n[et_pb_section inner_shadow=\"on\" background_color=\"#eeeeee\"]\n[et_pb_row]\n[et_pb_column type=\"1_4\"]\n[et_pb_image src=\"http://www.elegantthemesimages.com/images/premade_logo-1.jpg\" animation=\"top\"][/et_pb_image]\n[/et_pb_column]\n[et_pb_column type=\"1_4\"]\n[et_pb_image src=\"http://www.elegantthemesimages.com/images/premade_logo-2.jpg\" animation=\"top\"][/et_pb_image]\n[/et_pb_column]\n[et_pb_column type=\"1_4\"]\n[et_pb_image src=\"http://www.elegantthemesimages.com/images/premade_logo-3.jpg\" animation=\"top\"][/et_pb_image]\n[/et_pb_column]\n[et_pb_column type=\"1_4\"]\n[et_pb_image src=\"http://www.elegantthemesimages.com/images/premade_logo-4.jpg\" animation=\"top\"][/et_pb_image]\n[/et_pb_column]\n[/et_pb_row]\n[/et_pb_section]\n\n[et_pb_section]\n[et_pb_row]\n[et_pb_column type=\"4_4\"]\n[et_pb_text text_orientation=\"center\" background_layout=\"light\"]\n<h2>What Our Customers Are Saying.</h2>\nDon\'t just take it from us, let our customers do the talking!\n[/et_pb_text]\n[/et_pb_column]\n[/et_pb_row]\n[et_pb_row]\n[et_pb_column type=\"1_3\"]\n[et_pb_testimonial author=\"John Doe\"]<p>\"Aliquam pellentesque hendrerit commodo. Sed hendrerit blandit justo quis feugiat. Curabitur ut consequat odio. Nunc risus mi, consectetur et dolor a, dignissim vehicula nibh. Vestibulum adipiscing adipiscing consectetur. Vestibulum aliquam dignissim volutpat. Curabitur dictum, quam vitae fringilla aliquet, ligula justo placerat nisi, ut semper sapien elit eget augue. Maecenas et feugiat nisi. Nulla in velit et orci dictum gravida. Donec sagittis cursus luctus. Aliquam vel convallis leo. Donec urna sapien, suscipit et ultricies at, sodales in dui.\"</p>[/et_pb_testimonial]\n[/et_pb_column]\n[et_pb_column type=\"1_3\"]\n[et_pb_testimonial author=\"John Doe\"]<p>\"Aliquam pellentesque hendrerit commodo. Sed hendrerit blandit justo quis feugiat. Curabitur ut consequat odio. Nunc risus mi, consectetur et dolor a, dignissim vehicula nibh. Vestibulum adipiscing adipiscing consectetur. Vestibulum aliquam dignissim volutpat. Curabitur dictum, quam vitae fringilla aliquet, ligula justo placerat nisi, ut semper sapien elit eget augue. Maecenas et feugiat nisi. Nulla in velit et orci dictum gravida. Donec sagittis cursus luctus. Aliquam vel convallis leo. Donec urna sapien, suscipit et ultricies at, sodales in dui.\"</p>[/et_pb_testimonial]\n[/et_pb_column]\n[et_pb_column type=\"1_3\"]\n[et_pb_testimonial author=\"John Doe\"]<p>\"Aliquam pellentesque hendrerit commodo. Sed hendrerit blandit justo quis feugiat. Curabitur ut consequat odio. Nunc risus mi, consectetur et dolor a, dignissim vehicula nibh. Vestibulum adipiscing adipiscing consectetur. Vestibulum aliquam dignissim volutpat. Curabitur dictum, quam vitae fringilla aliquet, ligula justo placerat nisi, ut semper sapien elit eget augue. Maecenas et feugiat nisi. Nulla in velit et orci dictum gravida. Donec sagittis cursus luctus. Aliquam vel convallis leo. Donec urna sapien, suscipit et ultricies at, sodales in dui.\"</p>[/et_pb_testimonial]\n[/et_pb_column]\n[/et_pb_row]\n[et_pb_row]\n[et_pb_column type=\"4_4\"]\n[et_pb_toggle title=\"Can I use the themes on multiple sites?\"]\nYes, you are free to use our themes on as many websites as you like. We do not place any restrictions on how many times you can download or use a theme, nor do we limit the number of domains that you can install our themes to.\n[/et_pb_toggle]\n[et_pb_toggle open=\"on\" title=\"What is your refund policy?\"]\nWe offer no-questions-asked refunds to all customers within 30 days of your purchase. If you are not satisfied with our product, then simply send us an email and we will refund your purchase right away. Our goal has always been to create a happy, thriving community. If you are not thrilled with the product or are not enjoying the experience, then we have no interest in forcing you to stay an unhappy member.\n[/et_pb_toggle]\n[et_pb_toggle title=\"What are Photoshop Files?\"]\nElegant Themes offers two different packages: Personal and Developer. The Personal Subscription is ideal for the average user while the Developers License is meant for experienced designers who wish to customize their themes using the original Photoshop files. Photoshop files are the original design files that were used to create the theme. They can be opened using Adobe Photoshop and edited, and prove very useful for customers wishing to change their theme\'s design in some way.\n[/et_pb_toggle]\n[et_pb_toggle title=\"Can I upgrade after signing up?\"]\nYes, you can upgrade at any time after signing up. When you log in as a \"personal\" subscriber, you will see a notice regarding your current package and instructions on how to upgrade.\n[/et_pb_toggle]\n[et_pb_toggle title=\"Can I use your themes with WP.com?\"]\nUnfortunately WordPress.com does not allow the use of custom themes. If you would like to use a custom theme of any kind, you will need to purchase your own hosting account and install the free software from WordPress.org. If you are looking for great WordPress hosting, we recommend giving HostGator a try.[/et_pb_toggle]\n[/et_pb_column]\n[/et_pb_row]\n[/et_pb_section]\n\n[et_pb_section background_color=\"#7EBEC5\"]\n[et_pb_row]\n[et_pb_column type=\"4_4\"]\n[et_pb_cta title=\"Join Today For Instant Access.\" button_url=\"#\" button_text=\"Contact Me\" background_layout=\"dark\" background_color=\"none\"]\nWe have the best product around. Don\'t miss out on this great opportunity!\n[/et_pb_cta]\n[/et_pb_column]\n[/et_pb_row]\n[/et_pb_section]','Join','','publish','open','open','','join','','','2014-04-16 17:23:09','2014-04-16 17:23:09','',0,'http://pixelbuzz.pro/wordpress1/?post_type=et_pb_layout&p=10',0,'et_pb_layout','',0),(11,1,'2014-04-16 17:23:09','2014-04-16 17:23:09','\n[et_pb_section background_color=\"#6aceb6\" inner_shadow=\"on\" fullwidth=\"on\"]\n[et_pb_fullwidth_header title=\"My Portfolio\" subhead=\"Your subtitle goes right here.\" background_layout=\"dark\"][/et_pb_fullwidth_header]\n[/et_pb_section]\n\n[et_pb_section]\n[et_pb_row]\n[et_pb_column type=\"4_4\"]\n[et_pb_portfolio fullwidth=\"off\"][/et_pb_portfolio]\n[/et_pb_column]\n[/et_pb_row]\n[/et_pb_section]\n\n[et_pb_section background_color=\"#7EBEC5\"]\n[et_pb_row]\n[et_pb_column type=\"4_4\"]\n[et_pb_cta title=\"Don\'t Be Shy. Get In Touch.\" button_url=\"#\" button_text=\"Contact Me\" background_layout=\"dark\" background_color=\"none\"]\nIf you are interested in working together, send me an inquiry and I will get back to you as soon as I can!\n[/et_pb_cta]\n[/et_pb_column]\n[/et_pb_row]\n[/et_pb_section]','Portfolio','','publish','open','open','','portfolio','','','2014-04-16 17:23:09','2014-04-16 17:23:09','',0,'http://pixelbuzz.pro/wordpress1/?post_type=et_pb_layout&p=11',0,'et_pb_layout','',0),(12,1,'2014-04-16 17:23:09','2014-04-16 17:23:09','\n[et_pb_section background_color=\"#ef8f61\" inner_shadow=\"on\" fullwidth=\"on\"]\n[et_pb_fullwidth_header title=\"Welcome To Our Shop\" subhead=\"Your subtitle goes right here.\" background_layout=\"dark\"][/et_pb_fullwidth_header]\n[/et_pb_section]\n\n[et_pb_section]\n[et_pb_row]\n[et_pb_column type=\"4_4\"]\n[et_pb_shop posts_number=\"12\" type=\"recent\"][/et_pb_shop]\n[/et_pb_column]\n[/et_pb_row]\n[et_pb_row]\n[et_pb_column type=\"1_2\"]\n[et_pb_cta title=\"The Holiday Special Sale\" button_url=\"http://elegantthemes.com/preview/Divi/join/\" button_text=\"Redeem This Offer\" background_layout=\"dark\" background_color=\"#7ebec5\"]\nFor a limited time only, all of our holiday products are 50% off! Don\'t miss your chance to save big on these wonderful items.[/et_pb_cta]\n[/et_pb_column]\n[et_pb_column type=\"1_2\"]\n[et_pb_cta title=\"The Holiday Special Sale\" button_url=\"http://elegantthemes.com/preview/Divi/join/\" button_text=\"Redeem This Offer\" background_layout=\"light\" background_color=\"#fff\"]\nFor a limited time only, all of our holiday products are 50% off! Don\'t miss your chance to save big on these wonderful items.[/et_pb_cta]\n[/et_pb_column]\n[/et_pb_row]\n[/et_pb_section]\n\n[et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\"]\n[et_pb_row]\n[et_pb_column type=\"1_2\"]\n[et_pb_text]<h2>Products On Sale</h2>\nTake a look at these special offers.\n[/et_pb_text]\n[et_pb_shop posts_number=\"4\" type=\"sale\" columns=\"2\"][/et_pb_shop]\n[/et_pb_column]\n[et_pb_column type=\"1_2\"]\n[et_pb_text]<h2>Top Rated Products</h2>\nA list of our latest products.[/et_pb_text]\n[et_pb_shop posts_number=\"4\" type=\"top_rated\" columns=\"2\"][/et_pb_shop]\n[/et_pb_column]\n[/et_pb_row]\n[/et_pb_section]\n\n[et_pb_section background_color=\"#7EBEC5\"]\n[et_pb_row]\n[et_pb_column type=\"4_4\"]\n[et_pb_cta title=\"Signup Today For Instant Access\" button_url=\"http://elegantthemes.com/preview/Divi/join/\" button_text=\"Join Today\" background_layout=\"dark\" background_color=\"none\"]\nJoin today and get access to Divi, as well as our other countless themes and plugins.\n[/et_pb_cta]\n[/et_pb_column]\n[/et_pb_row]\n[/et_pb_section]','Shop Extended','','publish','open','open','','shop-extended','','','2014-04-16 17:23:09','2014-04-16 17:23:09','',0,'http://pixelbuzz.pro/wordpress1/?post_type=et_pb_layout&p=12',0,'et_pb_layout','',0),(13,1,'2014-04-16 17:23:09','2014-04-16 17:23:09','\n[et_pb_section background_color=\"#ef8f61\" inner_shadow=\"on\" fullwidth=\"on\"]\n[et_pb_fullwidth_header title=\"Welcome To Our Shop\" subhead=\"Your subtitle goes right here.\" background_layout=\"dark\"][/et_pb_fullwidth_header]\n[/et_pb_section]\n\n[et_pb_section]\n[et_pb_row]\n[et_pb_column type=\"4_4\"]\n[et_pb_shop posts_number=\"12\" type=\"recent\"][/et_pb_shop]\n[/et_pb_column]\n[/et_pb_row]\n[/et_pb_section]\n\n[et_pb_section background_color=\"#7EBEC5\"]\n[et_pb_row]\n[et_pb_column type=\"4_4\"]\n[et_pb_cta title=\"Signup Today For Instant Access\" button_url=\"http://elegantthemes.com/preview/Divi/join/\" button_text=\"Join Today\" background_layout=\"dark\" background_color=\"none\"]\nJoin today and get access to Divi, as well as our other countless themes and plugins.\n[/et_pb_cta]\n[/et_pb_column]\n[/et_pb_row]\n[/et_pb_section]','Shop Basic','','publish','open','open','','shop-basic','','','2014-04-16 17:23:09','2014-04-16 17:23:09','',0,'http://pixelbuzz.pro/wordpress1/?post_type=et_pb_layout&p=13',0,'et_pb_layout','',0),(14,1,'2014-04-16 17:23:09','2014-04-16 17:23:09','\n[et_pb_section background_color=\"#7ebec5\" inner_shadow=\"on\" fullwidth=\"on\"]\n[et_pb_fullwidth_header title=\"Tiled Blog Layout\" subhead=\"Your subtitle goes right here.\" background_layout=\"dark\"][/et_pb_fullwidth_header]\n[/et_pb_section]\n\n[et_pb_section]\n[et_pb_row]\n[et_pb_column type=\"2_3\"]\n[et_pb_blog fullwidth=\"off\" posts_number=\"6\" meta_date=\"M j, Y\" show_thumbnail=\"on\" show_content=\"off\" show_author=\"on\" show_date=\"on\" show_categories=\"on\"][/et_pb_blog]\n[/et_pb_column]\n[et_pb_column type=\"1_3\"]\n[et_pb_sidebar area=\"sidebar-1\" orientation=\"right\"][/et_pb_sidebar]\n[/et_pb_column]\n[/et_pb_row]\n[/et_pb_section]','Blog Tiled','','publish','open','open','','blog-tiled','','','2014-04-16 17:23:09','2014-04-16 17:23:09','',0,'http://pixelbuzz.pro/wordpress1/?post_type=et_pb_layout&p=14',0,'et_pb_layout','',0),(15,1,'2014-04-16 17:23:09','2014-04-16 17:23:09','\n[et_pb_section background_color=\"#7ebec5\" inner_shadow=\"on\" fullwidth=\"on\"]\n[et_pb_fullwidth_header title=\"Standard Blog Layout\" subhead=\"Your subtitle goes right here.\" background_layout=\"dark\"][/et_pb_fullwidth_header]\n[/et_pb_section]\n\n[et_pb_section]\n[et_pb_row]\n[et_pb_column type=\"1_4\"]\n[et_pb_sidebar area=\"sidebar-1\" orientation=\"left\"][/et_pb_sidebar]\n[/et_pb_column]\n[et_pb_column type=\"3_4\"]\n[et_pb_blog fullwidth=\"on\" posts_number=\"6\" meta_date=\"M j, Y\" show_thumbnail=\"on\" show_content=\"off\" show_author=\"on\" show_date=\"on\" show_categories=\"on\"][/et_pb_blog]\n[/et_pb_column]\n[/et_pb_row]\n[/et_pb_section]','Blog Standard','','publish','open','open','','blog-standard','','','2014-04-16 17:23:09','2014-04-16 17:23:09','',0,'http://pixelbuzz.pro/wordpress1/?post_type=et_pb_layout&p=15',0,'et_pb_layout','',0),(16,1,'2014-04-16 17:23:09','2014-04-16 17:23:09','\n[et_pb_section background_color=\"#6aceb6\" inner_shadow=\"on\" fullwidth=\"on\"]\n[et_pb_fullwidth_header title=\"About Our Team\" subhead=\"Your subtitle goes right here.\" background_layout=\"dark\"][/et_pb_fullwidth_header]\n[/et_pb_section]\n\n[et_pb_section]\n[et_pb_row]\n[et_pb_column type=\"1_3\"]\n[et_pb_image src=\"http://www.elegantthemesimages.com/images/premade_image_800x600.png\" animation=\"left\"][/et_pb_image]\n[et_pb_text]\n<h2>Nick Roach</h2>\n<em>President, CEO, Theme UI/UX Designer</em>\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Praesent mattis nec nisi non luctus. Donec aliquam non nisi ut rutrum. In sit amet vestibulum felis, id aliquet ipsum. Vestibulum feugiat lacinia aliquet.\n[/et_pb_text]\n[et_pb_counters]\n[et_pb_counter percent=\"50\"]Design & UX[/et_pb_counter]\n[et_pb_counter percent=\"80\"]Web Programming[/et_pb_counter]\n[et_pb_counter percent=\"10\"]Internet Marketing[/et_pb_counter]\n[/et_pb_counters]\n[/et_pb_column]\n\n[et_pb_column type=\"1_3\"]\n[et_pb_image src=\"http://www.elegantthemesimages.com/images/premade_image_800x600.png\" animation=\"top\"][/et_pb_image]\n[et_pb_text]\n<h2>Kenny Sing</h2>\n<em>Lead Graphic Designers</em>\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Praesent mattis nec nisi non luctus. Donec aliquam non nisi ut rutrum. In sit amet vestibulum felis, id aliquet ipsum. Vestibulum feugiat lacinia aliquet.\n[/et_pb_text]\n[et_pb_counters]\n[et_pb_counter percent=\"85\"]Photoshop[/et_pb_counter]\n[et_pb_counter percent=\"70\"]After Effects[/et_pb_counter]\n[et_pb_counter percent=\"50\"]Illustrator[/et_pb_counter]\n[/et_pb_counters]\n[/et_pb_column]\n\n[et_pb_column type=\"1_3\"]\n[et_pb_image src=\"http://www.elegantthemesimages.com/images/premade_image_800x600.png\" animation=\"right\"][/et_pb_image]\n[et_pb_text]\n<h2>Mitch Skolnik</h2>\n<em>Community Manager</em>\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Praesent mattis nec nisi non luctus. Donec aliquam non nisi ut rutrum. In sit amet vestibulum felis, id aliquet ipsum. Vestibulum feugiat lacinia aliquet.\n[/et_pb_text]\n[et_pb_counters]\n[et_pb_counter percent=\"80\"]Customer Happiness[/et_pb_counter]\n[et_pb_counter percent=\"30\"]Tech Support[/et_pb_counter]\n[et_pb_counter percent=\"50\"]Community Management[/et_pb_counter]\n[/et_pb_counters]\n[/et_pb_column]\n[/et_pb_row]\n[/et_pb_section]\n\n[et_pb_section background_color=\"#2d3743\" inner_shadow=\"on\"]\n[et_pb_row]\n[et_pb_column type=\"1_4\"]\n[et_pb_blurb background_layout=\"dark\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_5.png\" title=\"Timely Support\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec eleifend tincidunt nisi. Fusce at purus in massa laoreet.[/et_pb_blurb]\n[/et_pb_column]\n[et_pb_column type=\"1_4\"]\n[et_pb_blurb background_layout=\"dark\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_6.png\" title=\"Innovative Ideas\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec eleifend tincidunt nisi. Fusce at purus in massa laoreet.[/et_pb_blurb]\n[/et_pb_column]\n[et_pb_column type=\"1_4\"]\n[et_pb_blurb background_layout=\"dark\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_7.png\" title=\"Advanced Technology\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec eleifend tincidunt nisi. Fusce at purus in massa laoreet.[/et_pb_blurb]\n[/et_pb_column]\n[et_pb_column type=\"1_4\"]\n[et_pb_blurb background_layout=\"dark\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_8.png\" title=\"Clear Communication\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec eleifend tincidunt nisi. Fusce at purus in massa laoreet.[/et_pb_blurb]\n[/et_pb_column]\n[/et_pb_row]\n[/et_pb_section]\n\n[et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\"]\n[et_pb_row]\n[et_pb_column type=\"4_4\"]\n[et_pb_text text_orientation=\"center\"]<h2>Recent Blog Posts</h2>\nLearn from the top thought leaders in the industry.\n[/et_pb_text]\n[/et_pb_column]\n[/et_pb_row]\n[et_pb_row]\n[et_pb_column type=\"4_4\"]\n[et_pb_blog fullwidth=\"off\" show_pagination=\"off\" posts_number=\"3\" meta_date=\"M j, Y\" show_thumbnail=\"on\" show_content=\"off\" show_author=\"on\" show_date=\"on\" show_categories=\"on\"][/et_pb_blog]\n[/et_pb_column]\n[/et_pb_row]\n[/et_pb_section]\n\n[et_pb_section]\n[et_pb_row]\n[et_pb_column type=\"4_4\"]\n[et_pb_text text_orientation=\"center\"]<h2>Recent Projects</h2>\nLearn from the top thought leaders in the industry.\n[/et_pb_text]\n[/et_pb_column]\n[/et_pb_row]\n[et_pb_row]\n[et_pb_column type=\"4_4\"]\n[et_pb_portfolio categories=\"Portfolio\" fullwidth=\"off\"][/et_pb_portfolio]\n[/et_pb_column]\n[/et_pb_row]\n[/et_pb_section]\n\n[et_pb_section background_color=\"#7EBEC5\"]\n[et_pb_row]\n[et_pb_column type=\"4_4\"]\n[et_pb_cta title=\"Don\'t Be Shy. Get In Touch.\" button_url=\"#\" button_text=\"Contact Us\" background_layout=\"dark\" background_color=\"none\"]\nIf you are interested in working together, send us an inquiry and we will get back to you as soon as we can!\n[/et_pb_cta]\n[/et_pb_column]\n[/et_pb_row]\n[/et_pb_section]','Our Team','','publish','open','open','','our-team','','','2014-04-16 17:23:09','2014-04-16 17:23:09','',0,'http://pixelbuzz.pro/wordpress1/?post_type=et_pb_layout&p=16',0,'et_pb_layout','',0),(17,1,'2014-04-16 17:23:09','2014-04-16 17:23:09','\n[et_pb_section background_color=\"#6aceb6\" inner_shadow=\"on\" fullwidth=\"on\"]\n[et_pb_fullwidth_header title=\"About me\" subhead=\"Your subtitle goes right here.\" background_layout=\"dark\"][/et_pb_fullwidth_header]\n[/et_pb_section]\n\n[et_pb_section]\n[et_pb_row]\n[et_pb_column type=\"1_2\"]\n[et_pb_image src=\"http://www.elegantthemesimages.com/images/premade_image_800x600.png\" animation=\"left\"][/et_pb_image]\n[/et_pb_column]\n[et_pb_column type=\"1_2\"]\n[et_pb_text]\n<h2>This Is My Story</h2>\nCurabitur quis dui volutpat, cursus eros ut, commodo elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Ut id est euismod, rhoncus nunc quis, lobortis turpis. Tam sociis natoque. Curabitur quis dui volutpat, cursus eros ut, commodo elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Ut id est euismod, rhoncus nunc quis.\n[/et_pb_text]\n[et_pb_counters]\n[et_pb_counter percent=\"50\"]Counter Name[/et_pb_counter]\n[et_pb_counter percent=\"80\"]Portfolio Themes[/et_pb_counter]\n[et_pb_counter percent=\"10\"]Themes[/et_pb_counter]\n[/et_pb_counters]\n[/et_pb_column]\n[/et_pb_row]\n[/et_pb_section]\n\n[et_pb_section background_color=\"#2d3743\" inner_shadow=\"on\"]\n[et_pb_row]\n[et_pb_column type=\"1_4\"]\n[et_pb_blurb background_layout=\"dark\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_5.png\" title=\"Timely Support\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec eleifend tincidunt nisi. Fusce at purus in massa laoreet.[/et_pb_blurb]\n[/et_pb_column]\n[et_pb_column type=\"1_4\"]\n[et_pb_blurb background_layout=\"dark\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_6.png\" title=\"Innovative Ideas\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec eleifend tincidunt nisi. Fusce at purus in massa laoreet.[/et_pb_blurb]\n[/et_pb_column]\n[et_pb_column type=\"1_4\"]\n[et_pb_blurb background_layout=\"dark\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_7.png\" title=\"Advanced Technology\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec eleifend tincidunt nisi. Fusce at purus in massa laoreet.[/et_pb_blurb]\n[/et_pb_column]\n[et_pb_column type=\"1_4\"]\n[et_pb_blurb background_layout=\"dark\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_8.png\" title=\"Clear Communication\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec eleifend tincidunt nisi. Fusce at purus in massa laoreet.[/et_pb_blurb]\n[/et_pb_column]\n[/et_pb_row]\n[/et_pb_section]\n\n[et_pb_section background_color=\"#f5f5f5\"]\n[et_pb_row]\n[et_pb_column type=\"4_4\"]\n[et_pb_text text_orientation=\"center\"]<h2>Recent Blog Posts</h2>\nLearn from the top thought leaders in the industry.\n[/et_pb_text]\n[/et_pb_column]\n[/et_pb_row]\n[et_pb_row]\n[et_pb_column type=\"4_4\"]\n[et_pb_blog fullwidth=\"off\" show_pagination=\"off\" posts_number=\"3\" meta_date=\"M j, Y\" show_thumbnail=\"on\" show_content=\"off\" show_author=\"on\" show_date=\"on\" show_categories=\"on\"][/et_pb_blog]\n[/et_pb_column]\n[/et_pb_row]\n[/et_pb_section]\n\n[et_pb_section background_color=\"#7EBEC5\"]\n[et_pb_row]\n[et_pb_column type=\"4_4\"]\n[et_pb_cta title=\"Don\'t Be Shy. Get In Touch.\" button_url=\"#\" button_text=\"Contact Me\" background_layout=\"dark\" background_color=\"none\"]\nIf you are interested in working together, send me an inquiry and I will get back to you as soon as I can!\n[/et_pb_cta]\n[/et_pb_column]\n[/et_pb_row]\n[/et_pb_section]','About Me','','publish','open','open','','about-me','','','2014-04-16 17:23:09','2014-04-16 17:23:09','',0,'http://pixelbuzz.pro/wordpress1/?post_type=et_pb_layout&p=17',0,'et_pb_layout','',0),(18,1,'2014-04-16 17:23:09','2014-04-16 17:23:09','\n[et_pb_section background_color=\"#7ebec5\" inner_shadow=\"on\" fullwidth=\"on\"]\n[et_pb_fullwidth_header title=\"Page With Dual Sidebars\" subhead=\"Here is a basic page layout.\" background_layout=\"dark\"][/et_pb_fullwidth_header]\n[/et_pb_section]\n\n[et_pb_section]\n[et_pb_row]\n[et_pb_column type=\"1_4\"]\n[et_pb_sidebar area=\"sidebar-1\" orientation=\"left\"][/et_pb_sidebar]\n[/et_pb_column]\n[et_pb_column type=\"1_2\"]\n[et_pb_text]\n<h3>Just A Standard Page</h3>\n<p>Nunc et vestibulum velit. Suspendisse euismod eros vel urna bibendum gravida. Phasellus et metus nec dui ornare molestie. In consequat urna sed tincidunt euismod. Praesent non pharetra arcu, at tincidunt sapien. Nullam lobortis ultricies bibendum. Duis elit leo, porta vel nisl in, ullamcorper scelerisque velit. Fusce volutpat purus dolor, vel pulvinar dui porttitor sed. Phasellus ac odio eu quam varius elementum sit amet euismod justo.</p>\n\n<p>Sed sit amet blandit ipsum, et consectetur libero. Integer convallis at metus quis molestie. Morbi vitae odio ut ante molestie scelerisque. Aliquam erat volutpat. Vivamus dignissim fringilla semper. Aliquam imperdiet dui a purus pellentesque, non ornare ipsum blandit. Sed imperdiet elit in quam egestas lacinia nec sit amet dui. Cras malesuada tincidunt ante, in luctus tellus hendrerit at. Duis massa mauris, bibendum a mollis a, laoreet quis elit. Nulla pulvinar vestibulum est, in viverra nisi malesuada vel. Nam ut ipsum quis est faucibus mattis eu ut turpis. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Maecenas nunc felis, venenatis in fringilla vel, tempus in turpis. Mauris aliquam dictum dolor at varius. Fusce sed vestibulum metus. Vestibulum dictum ultrices nulla sit amet fermentum.</p>\n\n<h3>Fusce feugiat quis nunc</h3>\n<p>Suspendisse non lorem eget tellus posuere ornare ut in diam. Quisque dictum libero non luctus malesuada. Mauris pellentesque risus ipsum, at venenatis elit dignissim id. Aenean at porta mauris. Phasellus nec tellus aliquam, vehicula elit sed, pulvinar nulla. Sed eleifend leo adipiscing sem dictum lobortis. Praesent nunc ante, feugiat vitae dignissim vel, porta at arcu. Fusce feugiat quis nunc sit amet malesuada. Suspendisse iaculis neque sed nibh dictum, vitae tempus nisi consequat. In consectetur vitae tellus sed condimentum. Suspendisse et nulla in neque rutrum vulputate. Morbi sodales sodales hendrerit. Suspendisse potenti. Sed adipiscing ante gravida rutrum commodo. Etiam malesuada suscipit augue et cursus. Vivamus pharetra bibendum gravida.</p>\n\n<p>Maecenas mauris urna, fringilla id risus a, pulvinar lobortis purus. Integer suscipit risus in est condimentum dapibus. Nunc aliquet, purus convallis venenatis pretium, est neque elementum risus, non accumsan orci nisl at leo. Vivamus dignissim lacus in mauris auctor aliquam. Sed a velit id nunc bibendum tincidunt. Pellentesque vitae massa nunc. Aenean sagittis nulla mauris, ut porttitor mi varius at. Nam quis congue metus. Cras consectetur fringilla ultricies. Quisque odio orci, tincidunt vitae placerat id, rhoncus sit amet sapien. In a lorem vitae justo aliquet porttitor. Vestibulum et enim commodo, vestibulum nibh ullamcorper, auctor felis. Nulla facilisi. Nullam facilisis posuere metus id imperdiet. In iaculis elementum suscipit. Praesent dignissim turpis at leo sollicitudin, eu ultricies metus consectetur.</p>\n[/et_pb_text]\n[/et_pb_column]\n[et_pb_column type=\"1_4\"]\n[et_pb_sidebar area=\"sidebar-1\" orientation=\"right\"][/et_pb_sidebar]\n[/et_pb_column]\n[/et_pb_row]\n[/et_pb_section]','Page Dual Sidebars','','publish','open','open','','page-dual-sidebars','','','2014-04-16 17:23:09','2014-04-16 17:23:09','',0,'http://pixelbuzz.pro/wordpress1/?post_type=et_pb_layout&p=18',0,'et_pb_layout','',0),(19,1,'2014-04-16 17:23:09','2014-04-16 17:23:09','\n[et_pb_section background_color=\"#7ebec5\" inner_shadow=\"on\" fullwidth=\"on\"]\n[et_pb_fullwidth_header title=\"Page With Left Sidebar\" subhead=\"Here is a basic page layout.\" background_layout=\"dark\"][/et_pb_fullwidth_header]\n[/et_pb_section]\n\n[et_pb_section]\n[et_pb_row]\n[et_pb_column type=\"1_4\"]\n[et_pb_sidebar area=\"sidebar-1\" orientation=\"left\"][/et_pb_sidebar]\n[/et_pb_column]\n[et_pb_column type=\"3_4\"]\n[et_pb_text]\n<h3>Just A Standard Page</h3>\n<p>Nunc et vestibulum velit. Suspendisse euismod eros vel urna bibendum gravida. Phasellus et metus nec dui ornare molestie. In consequat urna sed tincidunt euismod. Praesent non pharetra arcu, at tincidunt sapien. Nullam lobortis ultricies bibendum. Duis elit leo, porta vel nisl in, ullamcorper scelerisque velit. Fusce volutpat purus dolor, vel pulvinar dui porttitor sed. Phasellus ac odio eu quam varius elementum sit amet euismod justo.</p>\n\n<p>Sed sit amet blandit ipsum, et consectetur libero. Integer convallis at metus quis molestie. Morbi vitae odio ut ante molestie scelerisque. Aliquam erat volutpat. Vivamus dignissim fringilla semper. Aliquam imperdiet dui a purus pellentesque, non ornare ipsum blandit. Sed imperdiet elit in quam egestas lacinia nec sit amet dui. Cras malesuada tincidunt ante, in luctus tellus hendrerit at. Duis massa mauris, bibendum a mollis a, laoreet quis elit. Nulla pulvinar vestibulum est, in viverra nisi malesuada vel. Nam ut ipsum quis est faucibus mattis eu ut turpis. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Maecenas nunc felis, venenatis in fringilla vel, tempus in turpis. Mauris aliquam dictum dolor at varius. Fusce sed vestibulum metus. Vestibulum dictum ultrices nulla sit amet fermentum.</p>\n\n<h3>Fusce feugiat quis nunc</h3>\n<p>Suspendisse non lorem eget tellus posuere ornare ut in diam. Quisque dictum libero non luctus malesuada. Mauris pellentesque risus ipsum, at venenatis elit dignissim id. Aenean at porta mauris. Phasellus nec tellus aliquam, vehicula elit sed, pulvinar nulla. Sed eleifend leo adipiscing sem dictum lobortis. Praesent nunc ante, feugiat vitae dignissim vel, porta at arcu. Fusce feugiat quis nunc sit amet malesuada. Suspendisse iaculis neque sed nibh dictum, vitae tempus nisi consequat. In consectetur vitae tellus sed condimentum. Suspendisse et nulla in neque rutrum vulputate. Morbi sodales sodales hendrerit. Suspendisse potenti. Sed adipiscing ante gravida rutrum commodo. Etiam malesuada suscipit augue et cursus. Vivamus pharetra bibendum gravida.</p>\n\n<p>Maecenas mauris urna, fringilla id risus a, pulvinar lobortis purus. Integer suscipit risus in est condimentum dapibus. Nunc aliquet, purus convallis venenatis pretium, est neque elementum risus, non accumsan orci nisl at leo. Vivamus dignissim lacus in mauris auctor aliquam. Sed a velit id nunc bibendum tincidunt. Pellentesque vitae massa nunc. Aenean sagittis nulla mauris, ut porttitor mi varius at. Nam quis congue metus. Cras consectetur fringilla ultricies. Quisque odio orci, tincidunt vitae placerat id, rhoncus sit amet sapien. In a lorem vitae justo aliquet porttitor. Vestibulum et enim commodo, vestibulum nibh ullamcorper, auctor felis. Nulla facilisi. Nullam facilisis posuere metus id imperdiet. In iaculis elementum suscipit. Praesent dignissim turpis at leo sollicitudin, eu ultricies metus consectetur.</p>\n\n<p>Donec diam magna, adipiscing vitae mi a, aliquet condimentum nunc. Pellentesque id augue imperdiet, fringilla ante eget, ornare elit. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Proin in lectus quis dolor gravida rhoncus condimentum nec mi. Suspendisse urna massa, eleifend vel arcu ac, facilisis malesuada sem. Ut a eros ut nisl tempus luctus. Nam pharetra quis dui sed tristique. Duis ultrices cursus rhoncus. Proin tortor lorem, scelerisque quis cursus ac, sodales tempor nisl. Vestibulum posuere quis elit nec faucibus.</p>\n\n<p>Maecenas nec lectus lacus. Proin quis lectus vitae nisi vehicula vulputate bibendum et purus. Aenean vulputate aliquet justo, quis auctor nunc. Curabitur ut mi nibh. Cras consectetur sem a felis tempor, id pretium mauris rhoncus. Sed sodales, turpis eu facilisis dapibus, lectus mi ullamcorper justo, sit amet rutrum ante ligula lobortis libero. Curabitur consequat et neque id malesuada.</p>\n[/et_pb_text]\n[/et_pb_column]\n[/et_pb_row]\n[/et_pb_section]','Page Left Sidebar','','publish','open','open','','page-left-sidebar','','','2014-04-16 17:23:09','2014-04-16 17:23:09','',0,'http://pixelbuzz.pro/wordpress1/?post_type=et_pb_layout&p=19',0,'et_pb_layout','',0),(20,1,'2014-04-16 17:23:09','2014-04-16 17:23:09','\n[et_pb_section background_color=\"#7ebec5\" inner_shadow=\"on\" fullwidth=\"on\"]\n[et_pb_fullwidth_header title=\"Page With Right Sidebar\" subhead=\"Here is a basic page layout.\" background_layout=\"dark\"][/et_pb_fullwidth_header]\n[/et_pb_section]\n\n[et_pb_section]\n[et_pb_row]\n[et_pb_column type=\"3_4\"]\n[et_pb_text]\n<h3>Just A Standard Page</h3>\n<p>Nunc et vestibulum velit. Suspendisse euismod eros vel urna bibendum gravida. Phasellus et metus nec dui ornare molestie. In consequat urna sed tincidunt euismod. Praesent non pharetra arcu, at tincidunt sapien. Nullam lobortis ultricies bibendum. Duis elit leo, porta vel nisl in, ullamcorper scelerisque velit. Fusce volutpat purus dolor, vel pulvinar dui porttitor sed. Phasellus ac odio eu quam varius elementum sit amet euismod justo.</p>\n\n<p>Sed sit amet blandit ipsum, et consectetur libero. Integer convallis at metus quis molestie. Morbi vitae odio ut ante molestie scelerisque. Aliquam erat volutpat. Vivamus dignissim fringilla semper. Aliquam imperdiet dui a purus pellentesque, non ornare ipsum blandit. Sed imperdiet elit in quam egestas lacinia nec sit amet dui. Cras malesuada tincidunt ante, in luctus tellus hendrerit at. Duis massa mauris, bibendum a mollis a, laoreet quis elit. Nulla pulvinar vestibulum est, in viverra nisi malesuada vel. Nam ut ipsum quis est faucibus mattis eu ut turpis. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Maecenas nunc felis, venenatis in fringilla vel, tempus in turpis. Mauris aliquam dictum dolor at varius. Fusce sed vestibulum metus. Vestibulum dictum ultrices nulla sit amet fermentum.</p>\n\n<h3>Fusce feugiat quis nunc</h3>\n<p>Suspendisse non lorem eget tellus posuere ornare ut in diam. Quisque dictum libero non luctus malesuada. Mauris pellentesque risus ipsum, at venenatis elit dignissim id. Aenean at porta mauris. Phasellus nec tellus aliquam, vehicula elit sed, pulvinar nulla. Sed eleifend leo adipiscing sem dictum lobortis. Praesent nunc ante, feugiat vitae dignissim vel, porta at arcu. Fusce feugiat quis nunc sit amet malesuada. Suspendisse iaculis neque sed nibh dictum, vitae tempus nisi consequat. In consectetur vitae tellus sed condimentum. Suspendisse et nulla in neque rutrum vulputate. Morbi sodales sodales hendrerit. Suspendisse potenti. Sed adipiscing ante gravida rutrum commodo. Etiam malesuada suscipit augue et cursus. Vivamus pharetra bibendum gravida.</p>\n\n<p>Maecenas mauris urna, fringilla id risus a, pulvinar lobortis purus. Integer suscipit risus in est condimentum dapibus. Nunc aliquet, purus convallis venenatis pretium, est neque elementum risus, non accumsan orci nisl at leo. Vivamus dignissim lacus in mauris auctor aliquam. Sed a velit id nunc bibendum tincidunt. Pellentesque vitae massa nunc. Aenean sagittis nulla mauris, ut porttitor mi varius at. Nam quis congue metus. Cras consectetur fringilla ultricies. Quisque odio orci, tincidunt vitae placerat id, rhoncus sit amet sapien. In a lorem vitae justo aliquet porttitor. Vestibulum et enim commodo, vestibulum nibh ullamcorper, auctor felis. Nulla facilisi. Nullam facilisis posuere metus id imperdiet. In iaculis elementum suscipit. Praesent dignissim turpis at leo sollicitudin, eu ultricies metus consectetur.</p>\n\n<p>Donec diam magna, adipiscing vitae mi a, aliquet condimentum nunc. Pellentesque id augue imperdiet, fringilla ante eget, ornare elit. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Proin in lectus quis dolor gravida rhoncus condimentum nec mi. Suspendisse urna massa, eleifend vel arcu ac, facilisis malesuada sem. Ut a eros ut nisl tempus luctus. Nam pharetra quis dui sed tristique. Duis ultrices cursus rhoncus. Proin tortor lorem, scelerisque quis cursus ac, sodales tempor nisl. Vestibulum posuere quis elit nec faucibus.</p>\n\n<p>Maecenas nec lectus lacus. Proin quis lectus vitae nisi vehicula vulputate bibendum et purus. Aenean vulputate aliquet justo, quis auctor nunc. Curabitur ut mi nibh. Cras consectetur sem a felis tempor, id pretium mauris rhoncus. Sed sodales, turpis eu facilisis dapibus, lectus mi ullamcorper justo, sit amet rutrum ante ligula lobortis libero. Curabitur consequat et neque id malesuada.</p>\n[/et_pb_text]\n[/et_pb_column]\n[et_pb_column type=\"1_4\"]\n[et_pb_sidebar area=\"sidebar-1\" orientation=\"right\"][/et_pb_sidebar]\n[/et_pb_column]\n[/et_pb_row]\n[/et_pb_section]','Page Right Sidebar','','publish','open','open','','page-right-sidebar','','','2014-04-16 17:23:09','2014-04-16 17:23:09','',0,'http://pixelbuzz.pro/wordpress1/?post_type=et_pb_layout&p=20',0,'et_pb_layout','',0),(21,1,'2014-04-16 17:23:09','2014-04-16 17:23:09','\n[et_pb_section background_color=\"#6aceb6\" inner_shadow=\"on\" fullwidth=\"on\"]\n[et_pb_fullwidth_header title=\"Frequently Asked Questions\" subhead=\"Before contacting us, please browse our FAQ.\" background_layout=\"dark\"][/et_pb_fullwidth_header]\n[/et_pb_section]\n\n[et_pb_section]\n[et_pb_row]\n[et_pb_column type=\"4_4\"]\n[et_pb_toggle title=\"Can I use the themes on multiple sites?\"]\nYes, you are free to use our themes on as many websites as you like. We do not place any restrictions on how many times you can download or use a theme, nor do we limit the number of domains that you can install our themes to.\n[/et_pb_toggle]\n[et_pb_toggle open=\"on\" title=\"What is your refund policy?\"]\nWe offer no-questions-asked refunds to all customers within 30 days of your purchase. If you are not satisfied with our product, then simply send us an email and we will refund your purchase right away. Our goal has always been to create a happy, thriving community. If you are not thrilled with the product or are not enjoying the experience, then we have no interest in forcing you to stay an unhappy member.\n[/et_pb_toggle]\n[et_pb_toggle title=\"What are Photoshop Files?\"]\nElegant Themes offers two different packages: Personal and Developer. The Personal Subscription is ideal for the average user while the Developers License is meant for experienced designers who wish to customize their themes using the original Photoshop files. Photoshop files are the original design files that were used to create the theme. They can be opened using Adobe Photoshop and edited, and prove very useful for customers wishing to change their theme\'s design in some way.\n[/et_pb_toggle]\n[et_pb_toggle title=\"Can I upgrade after signing up?\"]\nYes, you can upgrade at any time after signing up. When you log in as a \"personal\" subscriber, you will see a notice regarding your current package and instructions on how to upgrade.\n[/et_pb_toggle]\n[et_pb_toggle title=\"Can I use your themes with WP.com?\"]\nUnfortunately WordPress.com does not allow the use of custom themes. If you would like to use a custom theme of any kind, you will need to purchase your own hosting account and install the free software from WordPress.org. If you are looking for great WordPress hosting, we recommend giving HostGator a try.[/et_pb_toggle]\n[/et_pb_column]\n[/et_pb_row]\n[/et_pb_section]','FAQ Page','','publish','open','open','','faq-page','','','2014-04-16 17:23:09','2014-04-16 17:23:09','',0,'http://pixelbuzz.pro/wordpress1/?post_type=et_pb_layout&p=21',0,'et_pb_layout','',0),(22,1,'2014-04-16 17:23:39','2014-04-16 17:23:39','[et_pb_section background_image=\"http://www.thepixelbuzz.com/wp-content/uploads/2014/04/textures_wallpapers_374ht.jpg\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"on\"][et_pb_row][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" module_id=\"nopad\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]\r\n\r\nOur new site is currently under construction. In the meantime, we apologize for the inconvenience!\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" background_image=\"http://pixelbuzz.pro/wordpress1/wp-content/uploads/2014/04/textures_wallpapers_374ht.jpg\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"on\"][et_pb_row][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" background_image=\"http://pixelbuzz.pro/wordpress1/wp-content/uploads/2014/04/textures_wallpapers_374ht.jpg\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"on\"][et_pb_row][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" background_image=\"http://pixelbuzz.pro/wordpress1/wp-content/uploads/2014/04/textures_wallpapers_374ht.jpg\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"on\"][et_pb_row][/et_pb_row][/et_pb_section]','About','','publish','open','open','','about','','','2014-04-16 17:45:37','2014-04-16 17:45:37','',0,'http://pixelbuzz.pro/wordpress1/?page_id=22',0,'page','',0),(24,1,'2014-04-16 17:23:55','2014-04-16 17:23:55','[et_pb_section background_image=\"http://pixelbuzz.pro/wordpress1/wp-content/uploads/2014/04/textures_wallpapers_374ht.jpg\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"on\"][et_pb_row][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" module_id=\"nopad\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]\r\n\r\nOur new site is currently under construction. In the meantime, we apologize for the inconvenience!\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" background_image=\"http://pixelbuzz.pro/wordpress1/wp-content/uploads/2014/04/textures_wallpapers_374ht.jpg\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"on\"][et_pb_row][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" background_image=\"http://pixelbuzz.pro/wordpress1/wp-content/uploads/2014/04/textures_wallpapers_374ht.jpg\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"on\"][et_pb_row][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" background_image=\"http://pixelbuzz.pro/wordpress1/wp-content/uploads/2014/04/textures_wallpapers_374ht.jpg\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"on\"][et_pb_row][/et_pb_row][/et_pb_section]','Our Work','','publish','open','open','','our-work','','','2014-04-16 17:47:11','2014-04-16 17:47:11','',0,'http://pixelbuzz.pro/wordpress1/?page_id=24',0,'page','',0),(25,1,'2014-04-16 17:23:50','2014-04-16 17:23:50','','Our Work','','inherit','open','open','','24-revision-v1','','','2014-04-16 17:23:50','2014-04-16 17:23:50','',24,'http://pixelbuzz.pro/wordpress1/?p=25',0,'revision','',0),(26,1,'2014-04-16 17:24:07','2014-04-16 17:24:07','[et_pb_section background_image=\"http://www.thepixelbuzz.com/wp-content/uploads/2014/04/textures_wallpapers_374ht.jpg\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"on\"][et_pb_row][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_contact_form admin_label=\"Contact Form\" captcha=\"off\" email=\"marchirschmann@gmail.com\" /][/et_pb_column][/et_pb_row][et_pb_row][/et_pb_row][et_pb_row][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" background_image=\"http://www.thepixelbuzz.com/wp-content/uploads/2014/04/textures_wallpapers_374ht.jpg\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"on\"][et_pb_row][/et_pb_row][/et_pb_section]','Contact','','publish','open','open','','contact','','','2014-04-16 17:47:25','2014-04-16 17:47:25','',0,'http://pixelbuzz.pro/wordpress1/?page_id=26',0,'page','',0),(27,1,'2014-04-16 17:24:07','2014-04-16 17:24:07','','Contact','','inherit','open','open','','26-revision-v1','','','2014-04-16 17:24:07','2014-04-16 17:24:07','',26,'http://pixelbuzz.pro/wordpress1/?p=27',0,'revision','',0),(28,1,'2014-04-16 17:24:18','2014-04-16 17:24:18','This is an example page. It\'s different from a blog post because it will stay in one place and will show up in your site navigation (in most themes). Most people start with an About page that introduces them to potential site visitors. It might say something like this:\n\n<blockquote>Hi there! I\'m a bike messenger by day, aspiring actor by night, and this is my blog. I live in Los Angeles, have a great dog named Jack, and I like piña coladas. (And gettin\' caught in the rain.)</blockquote>\n\n...or something like this:\n\n<blockquote>The XYZ Doohickey Company was founded in 1971, and has been providing quality doohickies to the public ever since. Located in Gotham City, XYZ employs over 2,000 people and does all kinds of awesome things for the Gotham community.</blockquote>\n\nAs a new WordPress user, you should go to <a href=\"http://netsol003.com/woopWp/wp-admin/\">your dashboard</a> to delete this page and create new pages for your content. Have fun!','Sample Page','','inherit','open','open','','2-revision-v1','','','2014-04-16 17:24:18','2014-04-16 17:24:18','',2,'http://pixelbuzz.pro/wordpress1/?p=28',0,'revision','',0),(29,1,'2014-04-16 17:24:27','0000-00-00 00:00:00','','Home','','draft','open','open','','','','','2014-04-16 17:24:27','0000-00-00 00:00:00','',0,'http://pixelbuzz.pro/wordpress1/?p=29',1,'nav_menu_item','',0),(30,1,'2014-04-16 17:25:36','2014-04-16 17:25:36',' ','','','publish','open','open','','30','','','2014-04-16 17:38:57','2014-04-16 17:38:57','',0,'http://pixelbuzz.pro/wordpress1/?p=30',1,'nav_menu_item','',0),(31,1,'2014-04-16 17:25:36','2014-04-16 17:25:36',' ','','','publish','open','open','','31','','','2014-04-16 17:38:57','2014-04-16 17:38:57','',0,'http://pixelbuzz.pro/wordpress1/?p=31',3,'nav_menu_item','',0),(32,1,'2014-04-16 17:25:36','2014-04-16 17:25:36',' ','','','publish','open','open','','32','','','2014-04-16 17:38:57','2014-04-16 17:38:57','',0,'http://pixelbuzz.pro/wordpress1/?p=32',2,'nav_menu_item','',0),(33,1,'2014-04-16 17:25:58','2014-04-16 17:25:58','Coming Soon!','About','','inherit','open','open','','22-revision-v1','','','2014-04-16 17:25:58','2014-04-16 17:25:58','',22,'http://pixelbuzz.pro/wordpress1/?p=33',0,'revision','',0),(36,1,'2014-04-16 17:45:38','2014-04-16 17:45:38','[et_pb_section background_image=\"http://www.thepixelbuzz.com/wp-content/uploads/2014/04/textures_wallpapers_374ht.jpg\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"on\"][et_pb_row][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" module_id=\"nopad\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]\r\n\r\nOur new site is currently under construction. In the meantime, we apologize for the inconvenience!\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" background_image=\"http://pixelbuzz.pro/wordpress1/wp-content/uploads/2014/04/textures_wallpapers_374ht.jpg\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"on\"][et_pb_row][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" background_image=\"http://pixelbuzz.pro/wordpress1/wp-content/uploads/2014/04/textures_wallpapers_374ht.jpg\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"on\"][et_pb_row][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" background_image=\"http://pixelbuzz.pro/wordpress1/wp-content/uploads/2014/04/textures_wallpapers_374ht.jpg\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"on\"][et_pb_row][/et_pb_row][/et_pb_section]','About','','inherit','open','open','','22-autosave-v1','','','2014-04-16 17:45:38','2014-04-16 17:45:38','',22,'http://pixelbuzz.pro/wordpress1/?p=36',0,'revision','',0),(95,1,'2014-04-16 17:34:26','2014-04-16 17:34:26','[et_pb_section fullwidth=\"off\" background_image=\"http://www.thepixelbuzz.com/wp-content/uploads/2014/04/textures_wallpapers_374ht.jpg\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"on\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.thepixelbuzz.com/wp-content/uploads/2014/04/PIXELBUZZ-1920x600.png\" url_new_window=\"off\" animation=\"right\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" module_id=\"nopad\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]\r\n\r\nPIXELBUZZ grew out of our passion for aerial cinematography. Unmanned aerial cinematography is unique, in that we are able to provide our clients with assets that were previously impossible, and at a fraction of the cost of utlising a full-scale aircraft. We love what we do, and it shows.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"on\" module_id=\"nopad\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"on\"][et_pb_slide background_image=\"http://www.thepixelbuzz.com/wp-content/uploads/2014/04/Screen-Shot-2014-04-08-at-11.08.07-PM.png\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fullwidth=\"on\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"on\"][et_pb_slide background_image=\"http://www.thepixelbuzz.com/wp-content/uploads/2014/04/Screen-Shot-2014-04-13-at-7.05.34-PM.png\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\"]\r\n\r\n<strong> </strong>\r\n\r\n[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fullwidth=\"on\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"on\"][et_pb_slide background_image=\"http://www.thepixelbuzz.com/wp-content/uploads/2014/04/Screen-Shot-2014-04-15-at-11.58.40-PM.png\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fullwidth=\"on\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"on\"][et_pb_slide background_image=\"http://www.thepixelbuzz.com/wp-content/uploads/2014/04/Spoon-City.png\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fullwidth=\"off\" background_image=\"http://www.thepixelbuzz.com/wp-content/uploads/2014/04/textures_wallpapers_374ht.jpg\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"on\"][et_pb_row][et_pb_column type=\"1_3\"][/et_pb_column][et_pb_column type=\"1_3\"][/et_pb_column][et_pb_column type=\"1_3\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" background_image=\"http://www.thepixelbuzz.com/wp-content/uploads/2014/04/textures_wallpapers_374ht.jpg\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"on\"][et_pb_row][/et_pb_row][/et_pb_section]','Home','','publish','open','open','','home','','','2014-04-16 17:34:40','2014-04-16 17:34:40','',0,'http://pixelbuzz.pro/wordpress1/?page_id=95',0,'page','',0),(96,1,'2014-04-16 17:34:26','2014-04-16 17:34:26','','Home','','inherit','open','open','','95-revision-v1','','','2014-04-16 17:34:26','2014-04-16 17:34:26','',95,'http://pixelbuzz.pro/wordpress1/?p=96',0,'revision','',0),(92,1,'2014-04-16 17:30:24','2014-04-16 17:30:24','<p>[et_pb_section fullwidth=\"off\" background_image=\"http://www.thepixelbuzz.com/wp-content/uploads/2014/04/textures_wallpapers_374ht.jpg\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"on\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.thepixelbuzz.com/wp-content/uploads/2014/04/PIXELBUZZ-1920x600.png\" url_new_window=\"off\" animation=\"right\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" module_id=\"nopad\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]</p><p>PIXELBUZZ grew out of our passion for aerial cinematography. Unmanned aerial cinematography is unique, in that we are able to provide our clients with assets that were previously impossible, and at a fraction of the cost of utlising a full-scale aircraft. We love what we do, and it shows.</p><p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"on\" module_id=\"nopad\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"on\"][et_pb_slide background_image=\"http://www.thepixelbuzz.com/wp-content/uploads/2014/04/Screen-Shot-2014-04-08-at-11.08.07-PM.png\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fullwidth=\"on\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"on\"][et_pb_slide background_image=\"http://www.thepixelbuzz.com/wp-content/uploads/2014/04/Screen-Shot-2014-04-13-at-7.05.34-PM.png\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\"]</p><p><strong> </strong></p><p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fullwidth=\"on\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"on\"][et_pb_slide background_image=\"http://www.thepixelbuzz.com/wp-content/uploads/2014/04/Screen-Shot-2014-04-15-at-11.58.40-PM.png\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fullwidth=\"on\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"on\"][et_pb_slide background_image=\"http://www.thepixelbuzz.com/wp-content/uploads/2014/04/Spoon-City.png\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fullwidth=\"off\" background_image=\"http://www.thepixelbuzz.com/wp-content/uploads/2014/04/textures_wallpapers_374ht.jpg\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"on\"][et_pb_row][et_pb_column type=\"1_3\"][/et_pb_column][et_pb_column type=\"1_3\"][/et_pb_column][et_pb_column type=\"1_3\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" background_image=\"http://www.thepixelbuzz.com/wp-content/uploads/2014/04/textures_wallpapers_374ht.jpg\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"on\"][et_pb_row][/et_pb_row][/et_pb_section]</p>','Home','','publish','open','open','','home','','','2014-04-16 17:30:24','2014-04-16 17:30:24','',0,'http://www.thepixelbuzz.com/et_pb_layout/home/',0,'et_pb_layout','',0),(93,1,'2014-04-16 17:30:42','2014-04-16 17:30:42','<p>[et_pb_section background_image=\"http://www.thepixelbuzz.com/wp-content/uploads/2014/04/textures_wallpapers_374ht.jpg\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"on\"][et_pb_row][/et_pb_row][/et_pb_section]</p>','About','','publish','open','open','','about','','','2014-04-16 17:30:42','2014-04-16 17:30:42','',0,'http://www.thepixelbuzz.com/et_pb_layout/about/',0,'et_pb_layout','',0),(94,1,'2014-04-16 17:30:54','2014-04-16 17:30:54','<p>[et_pb_section background_image=\"http://www.thepixelbuzz.com/wp-content/uploads/2014/04/textures_wallpapers_374ht.jpg\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"on\"][et_pb_row][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_contact_form admin_label=\"Contact Form\" captcha=\"off\" email=\"marchirschmann@gmail.com\" /][/et_pb_column][/et_pb_row][et_pb_row][/et_pb_row][et_pb_row][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" background_image=\"http://www.thepixelbuzz.com/wp-content/uploads/2014/04/textures_wallpapers_374ht.jpg\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"on\"][et_pb_row][/et_pb_row][/et_pb_section]</p>','Contact','','publish','open','open','','contact-2','','','2014-04-16 17:30:54','2014-04-16 17:30:54','',0,'http://www.thepixelbuzz.com/et_pb_layout/contact-2/',0,'et_pb_layout','',0),(97,1,'2014-04-16 17:34:40','2014-04-16 17:34:40','[et_pb_section fullwidth=\"off\" background_image=\"http://www.thepixelbuzz.com/wp-content/uploads/2014/04/textures_wallpapers_374ht.jpg\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"on\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.thepixelbuzz.com/wp-content/uploads/2014/04/PIXELBUZZ-1920x600.png\" url_new_window=\"off\" animation=\"right\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" module_id=\"nopad\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]\r\n\r\nPIXELBUZZ grew out of our passion for aerial cinematography. Unmanned aerial cinematography is unique, in that we are able to provide our clients with assets that were previously impossible, and at a fraction of the cost of utlising a full-scale aircraft. We love what we do, and it shows.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"on\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"on\" module_id=\"nopad\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"on\"][et_pb_slide background_image=\"http://www.thepixelbuzz.com/wp-content/uploads/2014/04/Screen-Shot-2014-04-08-at-11.08.07-PM.png\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fullwidth=\"on\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"on\"][et_pb_slide background_image=\"http://www.thepixelbuzz.com/wp-content/uploads/2014/04/Screen-Shot-2014-04-13-at-7.05.34-PM.png\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\"]\r\n\r\n<strong> </strong>\r\n\r\n[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fullwidth=\"on\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"on\"][et_pb_slide background_image=\"http://www.thepixelbuzz.com/wp-content/uploads/2014/04/Screen-Shot-2014-04-15-at-11.58.40-PM.png\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fullwidth=\"on\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"on\"][et_pb_slide background_image=\"http://www.thepixelbuzz.com/wp-content/uploads/2014/04/Spoon-City.png\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fullwidth=\"off\" background_image=\"http://www.thepixelbuzz.com/wp-content/uploads/2014/04/textures_wallpapers_374ht.jpg\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"on\"][et_pb_row][et_pb_column type=\"1_3\"][/et_pb_column][et_pb_column type=\"1_3\"][/et_pb_column][et_pb_column type=\"1_3\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" background_image=\"http://www.thepixelbuzz.com/wp-content/uploads/2014/04/textures_wallpapers_374ht.jpg\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"on\"][et_pb_row][/et_pb_row][/et_pb_section]','Home','','inherit','open','open','','95-revision-v1','','','2014-04-16 17:34:40','2014-04-16 17:34:40','',95,'http://pixelbuzz.pro/wordpress1/?p=97',0,'revision','',0),(98,1,'2014-04-16 17:34:55','2014-04-16 17:34:55','[et_pb_section background_image=\"http://www.thepixelbuzz.com/wp-content/uploads/2014/04/textures_wallpapers_374ht.jpg\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"on\"][et_pb_row][/et_pb_row][/et_pb_section]','About','','inherit','open','open','','22-revision-v1','','','2014-04-16 17:34:55','2014-04-16 17:34:55','',22,'http://pixelbuzz.pro/wordpress1/?p=98',0,'revision','',0),(99,1,'2014-04-16 17:35:08','2014-04-16 17:35:08','[et_pb_section background_image=\"http://www.thepixelbuzz.com/wp-content/uploads/2014/04/textures_wallpapers_374ht.jpg\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"on\"][et_pb_row][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_contact_form admin_label=\"Contact Form\" captcha=\"off\" email=\"marchirschmann@gmail.com\" /][/et_pb_column][/et_pb_row][et_pb_row][/et_pb_row][et_pb_row][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" background_image=\"http://www.thepixelbuzz.com/wp-content/uploads/2014/04/textures_wallpapers_374ht.jpg\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"on\"][et_pb_row][/et_pb_row][/et_pb_section]','Contact','','inherit','open','open','','26-revision-v1','','','2014-04-16 17:35:08','2014-04-16 17:35:08','',26,'http://pixelbuzz.pro/wordpress1/?p=99',0,'revision','',0),(101,1,'2014-04-16 17:36:35','2014-04-16 17:36:35','','PIXELBUZZ 1920x600','','inherit','open','open','','pixelbuzz-1920x600','','','2014-04-16 17:36:35','2014-04-16 17:36:35','',0,'http://pixelbuzz.pro/wordpress1/wp-content/uploads/2014/04/PIXELBUZZ-1920x600.png',0,'attachment','image/png',0),(102,1,'2014-04-16 17:37:21','2014-04-16 17:37:21','','PIXELBUZZ Header 300x100','','inherit','open','open','','pixelbuzz-header-300x100','','','2014-04-16 17:37:21','2014-04-16 17:37:21','',0,'http://pixelbuzz.pro/wordpress1/wp-content/uploads/2014/04/PIXELBUZZ-Header-300x100.png',0,'attachment','image/png',0),(103,1,'2014-04-16 17:41:08','2014-04-16 17:41:08','','textures_wallpapers_374ht','','inherit','open','open','','textures_wallpapers_374ht','','','2014-04-16 17:41:08','2014-04-16 17:41:08','',24,'http://pixelbuzz.pro/wordpress1/wp-content/uploads/2014/04/textures_wallpapers_374ht.jpg',0,'attachment','image/jpeg',0),(104,1,'2014-04-16 17:41:20','2014-04-16 17:41:20','[et_pb_section background_image=\"http://pixelbuzz.pro/wordpress1/wp-content/uploads/2014/04/textures_wallpapers_374ht.jpg\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"on\"][et_pb_row][/et_pb_row][/et_pb_section]','Our Work','','inherit','open','open','','24-revision-v1','','','2014-04-16 17:41:20','2014-04-16 17:41:20','',24,'http://pixelbuzz.pro/wordpress1/?p=104',0,'revision','',0),(110,1,'2014-04-16 17:46:31','2014-04-16 17:46:31','[et_pb_section background_image=\"http://pixelbuzz.pro/wordpress1/wp-content/uploads/2014/04/textures_wallpapers_374ht.jpg\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"on\"][et_pb_row][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" module_id=\"nopad\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]\r\n\r\nOur new site is currently under construction. In the meantime, we apologize for the inconvenience!\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" background_image=\"http://pixelbuzz.pro/wordpress1/wp-content/uploads/2014/04/textures_wallpapers_374ht.jpg\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"on\"][et_pb_row][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" background_image=\"http://pixelbuzz.pro/wordpress1/wp-content/uploads/2014/04/textures_wallpapers_374ht.jpg\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"on\"][et_pb_row][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" background_image=\"http://pixelbuzz.pro/wordpress1/wp-content/uploads/2014/04/textures_wallpapers_374ht.jpg\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"on\"][et_pb_row][/et_pb_row][/et_pb_section]','Our Work','','inherit','open','open','','24-revision-v1','','','2014-04-16 17:46:31','2014-04-16 17:46:31','',24,'http://pixelbuzz.pro/wordpress1/?p=110',0,'revision','',0),(106,1,'2014-04-16 17:43:54','2014-04-16 17:43:54','[et_pb_section background_image=\"http://pixelbuzz.pro/wordpress1/wp-content/uploads/2014/04/textures_wallpapers_374ht.jpg\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"on\"][et_pb_row][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]\r\n\r\nOur new site is currently under construction. In the meantime, we apologize for the inconvenience!\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" background_image=\"http://pixelbuzz.pro/wordpress1/wp-content/uploads/2014/04/textures_wallpapers_374ht.jpg\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"on\"][et_pb_row][/et_pb_row][/et_pb_section]','Our Work','','inherit','open','open','','24-revision-v1','','','2014-04-16 17:43:54','2014-04-16 17:43:54','',24,'http://pixelbuzz.pro/wordpress1/?p=106',0,'revision','',0),(107,1,'2014-04-16 17:44:08','2014-04-16 17:44:08','[et_pb_section background_image=\"http://pixelbuzz.pro/wordpress1/wp-content/uploads/2014/04/textures_wallpapers_374ht.jpg\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"on\"][et_pb_row][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" module_id=\"nopad\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]\r\n\r\nOur new site is currently under construction. In the meantime, we apologize for the inconvenience!\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" background_image=\"http://pixelbuzz.pro/wordpress1/wp-content/uploads/2014/04/textures_wallpapers_374ht.jpg\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"on\"][et_pb_row][/et_pb_row][/et_pb_section]','Our Work','','inherit','open','open','','24-revision-v1','','','2014-04-16 17:44:08','2014-04-16 17:44:08','',24,'http://pixelbuzz.pro/wordpress1/?p=107',0,'revision','',0),(108,1,'2014-04-16 17:45:02','2014-04-16 17:45:02','[et_pb_section background_image=\"http://www.thepixelbuzz.com/wp-content/uploads/2014/04/textures_wallpapers_374ht.jpg\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"on\"][et_pb_row][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" module_id=\"nopad\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]\r\n\r\nOur new site is currently under construction. In the meantime, we apologize for the inconvenience!\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" background_image=\"http://pixelbuzz.pro/wordpress1/wp-content/uploads/2014/04/textures_wallpapers_374ht.jpg\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"on\"][et_pb_row][/et_pb_row][/et_pb_section]','About','','inherit','open','open','','22-revision-v1','','','2014-04-16 17:45:02','2014-04-16 17:45:02','',22,'http://pixelbuzz.pro/wordpress1/?p=108',0,'revision','',0),(109,1,'2014-04-16 17:45:37','2014-04-16 17:45:37','[et_pb_section background_image=\"http://www.thepixelbuzz.com/wp-content/uploads/2014/04/textures_wallpapers_374ht.jpg\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"on\"][et_pb_row][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" module_id=\"nopad\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]\r\n\r\nOur new site is currently under construction. In the meantime, we apologize for the inconvenience!\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" background_image=\"http://pixelbuzz.pro/wordpress1/wp-content/uploads/2014/04/textures_wallpapers_374ht.jpg\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"on\"][et_pb_row][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" background_image=\"http://pixelbuzz.pro/wordpress1/wp-content/uploads/2014/04/textures_wallpapers_374ht.jpg\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"on\"][et_pb_row][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" background_image=\"http://pixelbuzz.pro/wordpress1/wp-content/uploads/2014/04/textures_wallpapers_374ht.jpg\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"on\"][et_pb_row][/et_pb_row][/et_pb_section]','About','','inherit','open','open','','22-revision-v1','','','2014-04-16 17:45:37','2014-04-16 17:45:37','',22,'http://pixelbuzz.pro/wordpress1/?p=109',0,'revision','',0),(111,1,'2014-04-16 17:46:32','2014-04-16 17:46:32','[et_pb_section background_image=\"http://pixelbuzz.pro/wordpress1/wp-content/uploads/2014/04/textures_wallpapers_374ht.jpg\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"on\"][et_pb_row][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"off\" module_id=\"nopad\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]\r\n\r\nOur new site is currently under construction. In the meantime, we apologize for the inconvenience!\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" background_image=\"http://pixelbuzz.pro/wordpress1/wp-content/uploads/2014/04/textures_wallpapers_374ht.jpg\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"on\"][et_pb_row][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" background_image=\"http://pixelbuzz.pro/wordpress1/wp-content/uploads/2014/04/textures_wallpapers_374ht.jpg\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"on\"][et_pb_row][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" background_image=\"http://pixelbuzz.pro/wordpress1/wp-content/uploads/2014/04/textures_wallpapers_374ht.jpg\" background_color=\"#ffffff\" inner_shadow=\"off\" parallax=\"on\"][et_pb_row][/et_pb_row][/et_pb_section]','Our Work','','inherit','open','open','','24-autosave-v1','','','2014-04-16 17:46:32','2014-04-16 17:46:32','',24,'http://pixelbuzz.pro/wordpress1/?p=111',0,'revision','',0); /*!40000 ALTER TABLE `wp_posts` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_term_relationships` -- DROP TABLE IF EXISTS `wp_term_relationships`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `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; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `wp_term_relationships` -- LOCK TABLES `wp_term_relationships` WRITE; /*!40000 ALTER TABLE `wp_term_relationships` DISABLE KEYS */; INSERT INTO `wp_term_relationships` 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),(30,3,0),(32,3,0),(31,3,0); /*!40000 ALTER TABLE `wp_term_relationships` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_term_taxonomy` -- DROP TABLE IF EXISTS `wp_term_taxonomy`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `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 AUTO_INCREMENT=4 DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `wp_term_taxonomy` -- LOCK TABLES `wp_term_taxonomy` WRITE; /*!40000 ALTER TABLE `wp_term_taxonomy` DISABLE KEYS */; INSERT INTO `wp_term_taxonomy` VALUES (1,1,'category','',0,1),(2,2,'link_category','',0,7),(3,3,'nav_menu','',0,3); /*!40000 ALTER TABLE `wp_term_taxonomy` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_terms` -- DROP TABLE IF EXISTS `wp_terms`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `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 AUTO_INCREMENT=4 DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `wp_terms` -- LOCK TABLES `wp_terms` WRITE; /*!40000 ALTER TABLE `wp_terms` DISABLE KEYS */; INSERT INTO `wp_terms` VALUES (1,'Uncategorized','uncategorized',0),(2,'Blogroll','blogroll',0),(3,'Menu 1','menu-1',0); /*!40000 ALTER TABLE `wp_terms` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_usermeta` -- DROP TABLE IF EXISTS `wp_usermeta`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `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 AUTO_INCREMENT=22 DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `wp_usermeta` -- LOCK TABLES `wp_usermeta` WRITE; /*!40000 ALTER TABLE `wp_usermeta` DISABLE KEYS */; INSERT INTO `wp_usermeta` VALUES (1,1,'first_name',''),(2,1,'last_name',''),(3,1,'nickname','Pixelbuzzpro'),(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,'wp_capabilities','a:1:{s:13:\"administrator\";s:1:\"1\";}'),(11,1,'wp_user_level','10'),(12,1,'dismissed_wp_pointers','wp330_toolbar,wp330_media_uploader,wp330_saving_widgets,wp340_choose_image_from_library,wp340_customize_current_theme_link,wp350_media,wp360_revisions'),(13,1,'show_welcome_panel','1'),(14,1,'wp_dashboard_quick_press_last_post_id','3'),(15,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\";}'),(16,1,'metaboxhidden_nav-menus','a:5:{i:0;s:8:\"add-post\";i:1;s:11:\"add-project\";i:2;s:12:\"add-post_tag\";i:3;s:20:\"add-project_category\";i:4;s:15:\"add-project_tag\";}'),(17,1,'closedpostboxes_page','a:0:{}'),(18,1,'metaboxhidden_page','a:6:{i:0;s:20:\"et_settings_meta_box\";i:1;s:12:\"revisionsdiv\";i:2;s:16:\"commentstatusdiv\";i:3;s:11:\"commentsdiv\";i:4;s:7:\"slugdiv\";i:5;s:9:\"authordiv\";}'),(19,1,'nav_menu_recently_edited','3'),(20,1,'wp_user-settings','libraryContent=browse&editor=tinymce'),(21,1,'wp_user-settings-time','1397670229'); /*!40000 ALTER TABLE `wp_usermeta` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_users` -- DROP TABLE IF EXISTS `wp_users`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `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 AUTO_INCREMENT=2 DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `wp_users` -- LOCK TABLES `wp_users` WRITE; /*!40000 ALTER TABLE `wp_users` DISABLE KEYS */; INSERT INTO `wp_users` VALUES (1,'Pixelbuzzpro','$P$BfKIPpY4/VjMcpFeAkJpD7XK.tQFOZ.','Pixelbuzzpro','MarcHirschmann@gmail.com','','2014-04-16 16:19:12','',0,'Pixelbuzzpro'); /*!40000 ALTER TABLE `wp_users` ENABLE KEYS */; UNLOCK TABLES; -- -- Dumping routines for database '1_03976d9_0' -- DELIMITER ;; DELIMITER ; /*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */; /*!40101 SET SQL_MODE=@OLD_SQL_MODE */; /*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */; /*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */; /*!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 */; /*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; -- Dump completed on 2014-09-30 19:28:17