0byt3m1n1
Path:
/
data
/
21
/
3
/
94
/
62
/
3094225
/
meta
/
3448089
/
mysql.backup
/
[
Home
]
File: 1_037cc9e_4.mysqlv105.bak.sql
-- MySQL dump 10.11 -- -- Host: mysqlv105 Database: 1_037cc9e_4 -- ------------------------------------------------------ -- 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=206 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://quantellia.com/tickets','yes'),(2,'blogname','Tickets','yes'),(3,'blogdescription','Just another WordPress site','yes'),(4,'users_can_register','0','yes'),(5,'admin_email','lorien.pratt@quantellia.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','1','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:13:\"wats/wats.php\";}','yes'),(37,'home','http://quantellia.com/tickets','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','twentytwelve','yes'),(46,'stylesheet','twentytwelve','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','26691','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','posts','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'),(91,'embed_size_w','','yes'),(92,'embed_size_h','600','yes'),(93,'page_for_posts','0','yes'),(94,'page_on_front','0','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:5:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:7:{i:0;s:19:\"wats_frontend_stats\";i:1;s:8:\"search-2\";i:2;s:14:\"recent-posts-2\";i:3;s:17:\"recent-comments-2\";i:4;s:10:\"archives-2\";i:5;s:12:\"categories-2\";i:6;s:6:\"meta-2\";}s:9:\"sidebar-2\";a:0:{}s:9:\"sidebar-3\";a:0:{}s:13:\"array_version\";i:3;}','yes'),(104,'cron','a:4:{i:1392387650;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:1392398869;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:1392449723;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;}}}s:7:\"version\";i:2;}','yes'),(157,'_site_transient_timeout_browser_6d44eab61dcf5b1f0e6fa8f6595ee1bc','1392966496','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'),(204,'_site_transient_timeout_theme_roots','1392365296','yes'),(205,'_site_transient_theme_roots','a:2:{s:12:\"twentyeleven\";s:7:\"/themes\";s:12:\"twentytwelve\";s:7:\"/themes\";}','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:29:\"http://quantellia.com/tickets\";s:4:\"link\";s:105:\"http://blogsearch.google.com/blogsearch?scoring=d&partner=wordpress&q=link:http://quantellia.com/tickets/\";s:3:\"url\";s:138:\"http://blogsearch.google.com/blogsearch_feeds?scoring=d&ie=utf-8&num=10&output=rss&partner=wordpress&q=link:http://quantellia.com/tickets/\";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','1392404899','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:76:\"WPTavern: Bucket List Plugin Lets You Create and Manage Goals 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://wptavern.com/?p=16939\";s:7:\"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:198:\"http://wptavern.com/bucket-list-plugin-lets-your-create-and-manage-goals-with-wordpress?utm_source=rss&utm_medium=rss&utm_campaign=bucket-list-plugin-lets-your-create-and-manage-goals-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:2273:\"<p>Bucket List is a new plugin that lets you organize multiple lists of goals within WordPress. In case you’re not familiar with the term, a “bucket list” is a list of things you want to do before you kick the proverbial bucket. Many people get a kick out of crossing these items off one by one as they achieve them throughout life.</p>\n<p>The <a href=\"http://wordpress.org/plugins/bucket-list/\" target=\"_blank\">Bucket List</a> plugin provides an easy way for users to record bucket list items or general goals within multiple categories or lists.</p>\n<p><a href=\"http://wptavern.com/wp-content/uploads/2014/02/bucket-list-items.png\" rel=\"prettyphoto[16939]\"><img src=\"http://wptavern.com/wp-content/uploads/2014/02/bucket-list-items.png\" alt=\"bucket-list-items\" width=\"1668\" height=\"1066\" class=\"aligncenter size-full wp-image-16942\" /></a></p>\n<p>The interface allows you to quickly organize, reorder and edit categories and goals via AJAX (without reloading the page).</p>\n<p>These goals can then be inserted into WordPress posts or pages via a shortcode. Items that have been completed will be shown as crossed out and will display the corresponding date.</p>\n<p><a href=\"http://wptavern.com/wp-content/uploads/2014/02/bucket-list-frontend.png\" rel=\"prettyphoto[16939]\"><img src=\"http://wptavern.com/wp-content/uploads/2014/02/bucket-list-frontend.png\" alt=\"bucket-list-frontend\" width=\"1007\" height=\"647\" class=\"aligncenter size-full wp-image-16948\" /></a></p>\n<p>Additionally, Bucket List comes with a widget that can be customized to display your latest achievements by category.</p>\n<p><a href=\"http://wptavern.com/wp-content/uploads/2014/02/widget.png\" rel=\"prettyphoto[16939]\"><img src=\"http://wptavern.com/wp-content/uploads/2014/02/widget.png\" alt=\"widget\" width=\"1400\" height=\"931\" class=\"aligncenter size-full wp-image-16951\" /></a></p>\n<p>Even if you don’t wish to publish your bucket list on the frontend of the site, you can still use it within the admin to keep track of your lists or goals. <a href=\"http://wordpress.org/plugins/bucket-list/\" target=\"_blank\">Bucket List</a> saves you from having to use another app to record your goals and lets you keep all of this info in the same place where you make your home on the web.</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, 14 Feb 2014 04:53: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: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:76:\"WPTavern: How One Police Chief Is Using WordPress and Jetpack to Fight Crime\";s:7:\"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=16910\";s:7:\"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/how-one-police-chief-is-using-wordpress-and-jetpack-to-fight-crime?utm_source=rss&utm_medium=rss&utm_campaign=how-one-police-chief-is-using-wordpress-and-jetpack-to-fight-crime\";s: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:6060:\"<p><a href=\"http://wptavern.com/wp-content/uploads/2014/02/Chief.jpg\" rel=\"prettyphoto[16910]\"><img src=\"http://wptavern.com/wp-content/uploads/2014/02/Chief.jpg\" alt=\"Chief\" width=\"193\" height=\"311\" class=\"alignright size-full wp-image-16914\" /></a>Eric Blanchard has always been a techy at heart. In 2007 he was working with the Sinton Police Department. He wanted to create a website for the department but had no idea how. After some research he started learning CSS, HTML, MySQL, and PHP with the help of a friend. Blanchard cut his teeth building websites by creating <a href=\"http://www.sintonpd.com/\" target=\"_blank\">sintonpd.com</a> using AOL dial up, before the days of high speed internet.</p>\n<p>In 2012 he was hired as the Chief of Police in Aransas Pass, Texas, right around the time that he discovered WordPress. Blanchard was eager to bring the Aransas Pass Police Department (APPD) into the future. “APPD was still stuck in the 80′s as it pertained to their usage of modern-day technology,” he said. “This time around, I opted to go with WordPress.”</p>\n<p>Blanchard was surprised by how quickly he was able to get <a href=\"http://www.ap-police.com/\" target=\"_blank\">ap-police.com</a> up and running. “I have to say, WordPress is amazing and makes professional looking, feeling websites so easy,” he said. “After the base template was purchased and adapted and the graphics were created, I put my personal touch on it through information and a multitude of helpful plugins.”</p>\n<h3>Keeping the Community Informed with Daily Jetpack-powered Broadcasts</h3>\n<p>Most of what the APPD does through the website is accomplished through third party plugins. “The most useful and required plugin we use is Jetpack,” Blanchard said. He described how <a href=\"http://jetpack.me/\" target=\"_blank\">Jetpack</a> helps him keep the Aransas Pass community informed:</p>\n<blockquote><p>Just to demonstrate how useful Jetpack is to us, we use Jetpack’s automated <a href=\"http://jetpack.me/support/post-by-email/\" target=\"_blank\">Post by Email</a> feature. Every morning we have a scheduler that awakens Excel which runs a script through our RMS SQL DB. The data is then compiled in a human readable format and converted into PDF format for publication. That data is then automatically emailed to the Jetpack feature address and then simultaneously published on our website, Facebook, and our Twitter account.</p></blockquote>\n<p>The whole process is automated so that Blanchard and his staff can focus on fighting crime and protecting citizens. This daily broadcast is part of the police department’s commitment to transparency. “Everyday folks can see what is going on within the City,” he said. “The goal with our site is to be transparent and responsive to our community.”</p>\n<h3>Using WordPress Publishing to Solve Crimes</h3>\n<p><a href=\"http://wptavern.com/wp-content/uploads/2014/02/appd.png\" rel=\"prettyphoto[16910]\"><img src=\"http://wptavern.com/wp-content/uploads/2014/02/appd.png\" alt=\"appd\" width=\"788\" height=\"329\" class=\"aligncenter size-full wp-image-16921\" /></a><br />\nBlanchard said that the most effective tool they have for solving crimes with the website is the police department’s blog, or what they call their “<a href=\"http://ap-police.com/police-blotter/\" target=\"_blank\">police blotter</a>.” Here’s how they do it:</p>\n<blockquote><p>This tool makes publishing information about unresolved or breaking crimes a snap. We attach photos, video, and link to crime reporting resources. It is nothing to get a publication out really quickly to our public.</p></blockquote>\n<p>Recent <a href=\"http://ap-police.com/police-blotter/\" target=\"_blank\">blotter posts</a> include requests for identification of suspects in theft and assault cases, updates on registered sex offenders and various community initiatives.</p>\n<p>Posting on the police blotter also helps to get the media involved in spreading the word. “All the media sources tune in to our police blotter and regurgitate our information on TV when we post,” he said. <strong>“We can now solve several crimes or develop leads on several crimes more quickly and efficiently than ever before.”</strong> The entire community has the opportunity to get involved when they know the details of the crimes the police are working on solving.</p>\n<h4>30 Minutes From Blog Post to Warrant</h4>\n<p>One recent example demonstrates just how fast Blanchard is able to get results by publishing on the blog. “On a more recent post release, even before the media rebroadcasted it, we had the suspect identified and a warrant underway,” he said. “<span class=\"pullquote alignleft\">The total turnaround time for that case from post to warrant was probably within thirty or so minutes.</span> Further, Jetpack is the plugin that makes that all so very easy with their social networking connections for simulcasting.”</p>\n<p>Obviously, building websites with WordPress is not Blanchard’s full-time gig, but he learned to be proficient in order to help the police department work more efficiently and stay in touch with the community. From time to time he still requires help in maintaining <a href=\"http://ap-police.com\" target=\"_blank\">ap-police.com</a>. For support he regularly turns to both the Jetpack and WordPress support forums, as well as ancillary support forums online.</p>\n<p><a href=\"http://ap-police.com/about-us/about-the-chief/\" target=\"_blank\">Chief Eric Blanchard</a> and the <a href=\"http://ap-police.com/\" target=\"_blank\">Aransas Pass Police Department</a> are a fantastic example of how the power of publishing can keep people informed and bring criminals to justice. His story is a good reminder of why it’s so important to continue making WordPress easy to use. Contributions to plugins and support forums make a real difference towards helping the folks on the front lines to fight crime.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 13 Feb 2014 20:19: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: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:75:\"WPTavern: Arcade Basic: A Beautiful Free WordPress Theme Based on Bootstrap\";s:7:\"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=16880\";s:7:\"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/arcade-basic-a-beautiful-free-wordpress-theme-based-on-bootstrap?utm_source=rss&utm_medium=rss&utm_campaign=arcade-basic-a-beautiful-free-wordpress-theme-based-on-bootstrap\";s: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:3037:\"<p>Arcade Basic is new free theme from WordPress theme designer <a href=\"http://bavotasan.com/\" target=\"_blank\">c.bavota</a>, who favors <a href=\"http://getbootstrap.com/\" target=\"_blank\">Bootstrap</a> as a front-end framework for his products. The theme features a fullscreen header image, followed by a large call-to-action, widgetized homepage area and a block of posts at the bottom.</p>\n<p><a href=\"http://wptavern.com/wp-content/uploads/2014/02/arcade.jpg\" rel=\"prettyphoto[16880]\"><img src=\"http://wptavern.com/wp-content/uploads/2014/02/arcade.jpg\" alt=\"arcade\" width=\"551\" height=\"566\" class=\"aligncenter size-full wp-image-16883\" /></a></p>\n<p>Arcade Basic packs in a solid set of features under the hood and can be customized in many ways:</p>\n<ul>\n<li>Built using SASS, Compass and Bootstrap 3</li>\n<li>Support for 8 post formats: Video, Image, Aside, Status, Audio, Quote, Link and Gallery</li>\n<li>Includes styles for JetPack galleries to create a tiled view and jQuery carousel</li>\n<li>Compatible with bbPress & BuddyPress</li>\n<li>Support for <a href=\"http://fortawesome.github.io/Font-Awesome/\" target=\"_blank\">Font Awesome</a> icons (can be customzied with CSS)</li>\n<li>Full-width page option</li>\n<li>Options to show or hide post meta</li>\n</ul>\n<p>Of course, as all Bootstrap-based themes are, Arcade is fully responsive and designed to display nicely on devices of any size. Check out a <a href=\"http://demos.bavotasan.com/arcade/\" target=\"_blank\">live demo</a> of the theme and resize the browser to see how it responds.</p>\n<p><a href=\"http://wptavern.com/wp-content/uploads/2014/02/arcade-responsive.png\" rel=\"prettyphoto[16880]\"><img src=\"http://wptavern.com/wp-content/uploads/2014/02/arcade-responsive.png\" alt=\"arcade-responsive\" width=\"675\" height=\"427\" class=\"aligncenter size-full wp-image-16886\" /></a></p>\n<p>All of the theme options for Arcade can be found in WordPress’ native customizer. It goes way beyond the basics and includes the ability to easily select the featured icon, change the arc of the site name, set a custom header and background, customize post meta and set the background color.</p>\n<p><a href=\"http://wptavern.com/wp-content/uploads/2014/02/arcade-customizer.png\" rel=\"prettyphoto[16880]\"><img src=\"http://wptavern.com/wp-content/uploads/2014/02/arcade-customizer.png\" alt=\"arcade-customizer\" width=\"1705\" height=\"1302\" class=\"aligncenter size-full wp-image-16898\" /></a></p>\n<p>The homepage section with the four icons and link buttons can be easily set via a widget that is included with the theme. It allows you to visually select from all the Font Awesome icons.</p>\n<p>The <a href=\"https://themes.bavotasan.com/themes/arcade/\" target=\"_blank\">commercial version of Arcade</a> provides even more color and font options and support.</p>\n<p><a href=\"http://wordpress.org/themes/arcade-basic\" target=\"_blank\">Arcade Basic</a> is Bavota’s seventh theme listed on WordPress.org. You can download it today via the theme management page in your WordPress admin.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 13 Feb 2014 09:03:54 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s: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: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:52:\"WPTavern: Would You Use An Offline WordPress Editor?\";s:7:\"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=16843\";s:7:\"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:146:\"http://wptavern.com/would-you-use-an-offline-wordpress-editor?utm_source=rss&utm_medium=rss&utm_campaign=would-you-use-an-offline-wordpress-editor\";s: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:7952:\"<p>Eric Mann has <a title=\"http://eamann.com/tech/offline-editor/\" href=\"http://eamann.com/tech/offline-editor/\">put a proposal together</a> for an editor that works offline and would synchronize to WordPress once an internet connection is established. The idea is that if there is no internet connection, you would still be able to create posts or pages and edit existing content. Those changes would then be synchronized with WordPress when a connection is re-established. Eric outlines what the goals would be for an offline editor:</p>\n<ul>\n<li>Navigate to my site in a browser</li>\n<li>Be alerted that I’m offline</li>\n<li>Edit existing content while offline (saving changes to a cache)</li>\n<li>Create <em>new</em> content while offline (saving content to a cache)</li>\n<li>Auto-sync my content with the live server when I’m online again</li>\n</ul>\n<h3>Doesn’t WordPress Already Do That?</h3>\n<p>Some of you may be scratching your head as you read those bullet points. That’s because WordPress 3.6 <a title=\"http://make.wordpress.org/core/2013/01/07/wordpress-3-6-autosave-and-post-locking/\" href=\"http://make.wordpress.org/core/2013/01/07/wordpress-3-6-autosave-and-post-locking/\">introduced autosaves</a> that address the second, third, and fifth points. However, the autosave is limited to the content being edited at the time of disconnection. Once a connection is lost, you can not load or create content. The offline editor would be free of those limitations.</p>\n<div id=\"attachment_16845\" class=\"wp-caption aligncenter\"><a href=\"http://wptavern.com/wp-content/uploads/2014/02/WordPressSavingContentWhenConnectionLost.png\" rel=\"prettyphoto[16843]\"><img class=\"size-large wp-image-16845\" alt=\"WordPress Connection Lost\" src=\"http://wptavern.com/wp-content/uploads/2014/02/WordPressSavingContentWhenConnectionLost-500x69.png\" width=\"500\" height=\"69\" /></a><p class=\"wp-caption-text\">Connection Lost. It’s OK WordPress Has Your Back</p></div>\n<p><a title=\"http://ios.wordpress.org/\" href=\"http://ios.wordpress.org/\">WordPress for iOS</a> is a great example of how this idea can be turned into reality. Although the user experience is not as good as it should be, the app enables users to create new posts when not connected to the internet. Once you’re connected, you have to save the new post and it will be uploaded to your WordPress site.</p>\n<h3>Synchronizing WordPress With XML RPC</h3>\n<p>What makes this all possible is something called <a title=\"http://codex.wordpress.org/XML-RPC_Support\" href=\"http://codex.wordpress.org/XML-RPC_Support\">XML RPC</a>. WordPress has its own implementation for WordPress-specific functionality in an API called the <a title=\"XML-RPC WordPress API\" href=\"http://codex.wordpress.org/XML-RPC_WordPress_API\">WordPress API</a>. Through XML RPC, the WordPress app is able to communicate to a WordPress powered website which enables the ability to keep things synchronized between multiple devices. WordPress developer Brand Kraft <a title=\"http://eamann.com/tech/offline-editor/#comment-2495\" href=\"http://eamann.com/tech/offline-editor/#comment-2495\">has suggested</a> that a desktop version of the mobile app be created.</p>\n<div id=\"attachment_16869\" class=\"wp-caption aligncenter\"><a href=\"http://wptavern.com/wp-content/uploads/2014/02/XMLRPCinWordPress.png\" rel=\"prettyphoto[16843]\"><img class=\"size-large wp-image-16869\" alt=\"XML RPC Settings In WordPress\" src=\"http://wptavern.com/wp-content/uploads/2014/02/XMLRPCinWordPress-500x155.png\" width=\"500\" height=\"155\" /></a><p class=\"wp-caption-text\">XML RPC Settings In WordPress</p></div>\n<p>There are already a number of applications that take advantage of XML RPC to communicate with WordPress. One of the most popular is <a title=\"http://www.microsoft.com/en-us/download/details.aspx?id=8621\" href=\"http://www.microsoft.com/en-us/download/details.aspx?id=8621\">Windows Live Writer.<br />\n</a></p>\n<h3>Desktop Version Of WordPress For iOS Would Be A Good Start</h3>\n<p>Personally, I would love to see a full blown off line version of WordPress. You can sort of accomplish this by using a locally installed version of WordPress that is occasionally synched to the public facing website. But I’ve found this to be a cumbersome approach. I’m looking for something that is simple, fast, has most of the functionality of WordPress but can be used on the desktop with changes that I can manually send to the public site. A desktop version of WordPress for iOS would be a good start.</p>\n<div id=\"attachment_16870\" class=\"wp-caption aligncenter\"><a href=\"http://wptavern.com/wp-content/uploads/2014/02/WordPressForiOSKeyboard.png\" rel=\"prettyphoto[16843]\"><img class=\"size-large wp-image-16870\" alt=\"WordPress For iOS Keyboard\" src=\"http://wptavern.com/wp-content/uploads/2014/02/WordPressForiOSKeyboard-500x373.png\" width=\"500\" height=\"373\" /></a><p class=\"wp-caption-text\">WordPress For iOS Keyboard</p></div>\n<p>Another fascinating aspect to this conversation is that the offline application doesn’t have to look exactly like WordPress. Instead, I’d like to see application designers try their hands at redesigning the WordPress backend interface. It’s an interesting way to experiment with different interface designs without manipulating WordPress itself.</p>\n<h3>Desk.pm In Development By John Saddington</h3>\n<div id=\"attachment_16871\" class=\"wp-caption alignright\"><a href=\"http://wptavern.com/wp-content/uploads/2014/02/DeskPMScreenshot.png\" rel=\"prettyphoto[16843]\"><img class=\"size-thumbnail wp-image-16871\" alt=\"WordPress For iOS Keyboard\" src=\"http://wptavern.com/wp-content/uploads/2014/02/DeskPMScreenshot-150x150.png\" width=\"150\" height=\"150\" /></a><p class=\"wp-caption-text\">Sliver Of Desk.PM</p></div>\n<p>John Saddington who successfully funded and created <a title=\"http://pressgr.am/\" href=\"http://pressgr.am/\">Pressgr.am</a> is looking to go two for two. Within the comments of Eric Mann’s blog post, <a title=\"http://eamann.com/tech/offline-editor/#comment-2500\" href=\"http://eamann.com/tech/offline-editor/#comment-2500\">Mr. Saddington announced</a> a new project he is working on called <a title=\"http://desk.pm/\" href=\"http://desk.pm/\">Desk.pm</a>. He describes the project as “<em>the offline publishing system that I’ve always dreamed of having.</em>” The application will be an OS X native app. Saddington says the long-term vision of Desk.pm is:</p>\n<blockquote><p>To create a never-changing and consistent writing experience <em>regardless</em> of whatever happens at the core admin level. Publish in the same environment today as you will 2, 3, 5 years from now even if the core web-based experience changes.</p></blockquote>\n<p>Desk.pm is in the development stage but if you sign up to the <a title=\"http://eepurl.com/MRJrT\" href=\"http://eepurl.com/MRJrT\">sites email list</a>, you’ll be one of the first to know when it’s released.</p>\n<h3>The Idea Of An External Editor Isn’t New</h3>\n<p>The idea of a desktop application to run WordPress isn’t new. A few years ago, I was in talks with a notable WordPress individual to help create a WordPress desktop application. It would have enabled administrators to manage their sites, reply to comments, update plugins, and do all sorts of other tasks from the desktop. Unfortunately, the outsourced developers didn’t deliver and the project went nowhere. But the idea of managing everything in WordPress from the desktop was refreshing.</p>\n<p>I’m ready for a wave of companies to release their version of WordPress for the desktop. I’m not concerned with administering my site with the application. Instead, I want it to focus entirely on the act of creating content in an offline environment. Would you be interested in using something like this? Do you already use an application to create content that you import into WordPress? If so, what is it?</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 13 Feb 2014 04:35:34 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s: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: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:79:\"WPTavern: WP Think Tank Panel Will Discuss the Future of WordPress on Feb. 25th\";s:7:\"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=16846\";s:7:\"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/wp-think-tank-panel-will-discuss-the-future-of-wordpress-on-feb-25th?utm_source=rss&utm_medium=rss&utm_campaign=wp-think-tank-panel-will-discuss-the-future-of-wordpress-on-feb-25th\";s: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:1434:\"<p>Mark your calendars for Tuesday, Feb 25th. WP Elevation will be hosting <a href=\"http://wpthinktank.com/\" target=\"_blank\">WP Think Tank</a>, a panel discussion about the future of WordPress. The event will take place live on Google Hangouts at <a href=\"http://www.timeanddate.com/worldclock/fixedtime.html?msg=WP+Think+Tank+%231&iso=20140225T20&p1=1440&ah=2\" target=\"_blank\">8PM UTC</a> and participants will be able to join via a chatroom and ask questions.</p>\n<p>Inspired by topics that have come up on the <a href=\"http://www.wpelevation.com/category/podcast/\" target=\"_blank\">WP Elevation podcast</a>, the WP Think Tank will focus on more in-depth discussions about the future of WordPress. Troy Dean will host an impressive group of panelists, including Matt Mullenweg, Jake Goldman, Lisa Sabin-Wilson, Shane Pearlman, Tom Willmot, Miriam Schwab and Scott Basgaard.</p>\n<p><a href=\"http://wptavern.com/wp-content/uploads/2014/02/think-tank.jpg\" rel=\"prettyphoto[16846]\"><img src=\"http://wptavern.com/wp-content/uploads/2014/02/think-tank.jpg\" alt=\"think-tank\" width=\"1187\" height=\"589\" class=\"aligncenter size-full wp-image-16848\" /></a></p>\n<p>This is an excellent mix of people who love WordPress and they’re likely to have some great insights about the future of the publishing platform. Visit the <a href=\"http://wpthinktank.com/\" target=\"_blank\">WP Think Tank</a> website to submit your questions to the 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:\"Thu, 13 Feb 2014 02:10: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: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:71:\"WPTavern: 40 WordPress Community Members Share Their 5 Favorite 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=16822\";s:7:\"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/40-wordpress-community-members-share-their-5-favorite-plugins?utm_source=rss&utm_medium=rss&utm_campaign=40-wordpress-community-members-share-their-5-favorite-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:2010:\"<p>WPKube asked 40 members of the WordPress community what their <a title=\"http://www.wpkube.com/best-wordpress-plugins/\" href=\"http://www.wpkube.com/best-wordpress-plugins/\">five favorite plugins</a> are. Within the list are the usual suspects <strong>Akismet, Jetpack, W3 Total Cache, WordPress SEO By Yoast</strong>, and <strong>Gravity Forms.</strong> I participated in the list and without further adieu, here are my five favorite WordPress plugins.</p>\n<ol>\n<li><a title=\"http://wordpress.org/plugins/akismet/\" href=\"http://wordpress.org/plugins/akismet/\">Akismet</a> – I’d be wasting a lot of time dealing with automated garbage if it were not for Akismet. It’s free, comes bundled with WordPress and it works.</li>\n<li><a href=\"http://wordpress.org/plugins/powerpress/\" target=\"_blank\">Blubrry Powerpress</a> – Without this plugin, I wouldn’t be able to easily publish the WordPress Weekly podcast to iTunes. It handles everything for me after the initial setup so the only thing I need to do is apply a shortcode to a post.</li>\n<li><a href=\"http://wordpress.org/plugins/edit-flow/\" target=\"_blank\">Edit Flow</a> – This plugin has proved to be invaluable for WPTavern since it offers a lot of features that make running a multi-authored website much easier.</li>\n<li><a href=\"http://www.wordpress.org/extend/jetpack\" target=\"_blank\">Jetpack</a> – While Jetpack has a mixed fan club, I like it because I find a lot of the stuff bundled with it useful. For example, the Widget Visibility module or the Jetpack sharing module.</li>\n<li><a href=\"http://wordpress.org/plugins/simple-comment-editing/\" target=\"_blank\">Simple Comment Editing</a> – This plugin provides a simple method for anonymous and registered users to edit their comments within the first 5 minutes of them being published.</li>\n</ol>\n<p>Take a look at the list of 200 plugins on WPKube. When you’re done, let me know in the comments what your absolute, favorite plugin is that you can’t live without.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 13 Feb 2014 01:44: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: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: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:79:\"WPTavern: Buckets: A WordPress Widgets Alternative For Placing Content Anywhere\";s:7:\"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=16812\";s:7:\"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/buckets-a-wordpress-widgets-alternative-for-placing-content-anywhere?utm_source=rss&utm_medium=rss&utm_campaign=buckets-a-wordpress-widgets-alternative-for-placing-content-anywhere\";s: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:\"<div id=\"attachment_16834\" class=\"wp-caption aligncenter\"><a href=\"http://wptavern.com/wp-content/uploads/2014/02/yelllow-buckets.jpg\" rel=\"prettyphoto[16812]\"><img src=\"http://wptavern.com/wp-content/uploads/2014/02/yelllow-buckets.jpg\" alt=\"photo credit: mcfcrandall via photopin cc\" width=\"1380\" height=\"586\" class=\"size-full wp-image-16834\" /></a><p class=\"wp-caption-text\">photo credit: <a href=\"http://www.flickr.com/photos/57340921@N03/7277138992/\">mcfcrandall</a> via <a href=\"http://photopin.com\">photopin</a> <a href=\"http://creativecommons.org/licenses/by-nc-sa/2.0/\">cc</a></p></div>\n<p><a href=\"http://wordpress.org/plugins/buckets/\" target=\"_blank\">Buckets</a> is a plugin that has been providing an alternative to WordPress widgets for the past two years. Created by plugin developer <a href=\"http://matthewrestorff.com/\" target=\"_blank\">Matthew Restorff</a>, Buckets allows you to create reusable pieces of content and place them anywhere on your WordPress site.</p>\n<p>When describing his motivation for creating Buckets, Restorff says that the plugin was meant from the beginning to be an alternative to widgets. “I was tired of the pitfalls of standard WordPress widgets,” he said. “<span class=\"pullquote alignleft\">I wanted a way of creating reusable content that offered more control for the developer and better ease of use for the client.</span>”</p>\n<p>Buckets turned out to be much easier for his clients to use, compared to widgets. Here’s a quick walkthrough of how it works:</p>\n<p>Once installed, Buckets has its own menu where you can go to create new content:</p>\n<p><a href=\"http://wptavern.com/wp-content/uploads/2014/02/bucket-example.jpg\" rel=\"prettyphoto[16812]\"><img src=\"http://wptavern.com/wp-content/uploads/2014/02/bucket-example.jpg\" alt=\"bucket-example\" width=\"654\" height=\"362\" class=\"aligncenter size-full wp-image-16817\" /></a></p>\n<p>This looks and works just like the WordPress post editor. Create some content and click ‘Publish’. When you navigate back to your list of Buckets, it will show you a shortcode for each.</p>\n<pre>[bucket id=\"946\" title=\"Address\"]</pre>\n<p>You can then paste the shortcode wherever you want the content to appear. It works inside posts, pages, custom post types, widgets and even inside another bucket. With the latest version, you don’t even need to know the shortcode, because buckets can be inserted into content using a button in the TinyMCE editor.</p>\n<p>Buckets become even more powerful when paired with the <a href=\"http://wordpress.org/plugins/advanced-custom-fields/\" target=\"_blank\">Advanced Custom Fields</a> plugin. This plugin allows you to create your own sidebars and add new fields to further customize your Buckets, thereby making WordPress fully modular. It is required in order to make use of some of Bucket’s more advanced functionality.</p>\n<h3>How are Buckets different from widgets?</h3>\n<p><a href=\"http://wptavern.com/wp-content/uploads/2014/02/medium_10642583.jpg\" rel=\"prettyphoto[16812]\"><img src=\"http://wptavern.com/wp-content/uploads/2014/02/medium_10642583-300x225.jpg\" alt=\"medium_10642583\" width=\"300\" height=\"225\" class=\"alignright size-medium wp-image-16832\" /></a>Buckets are very similar to widgets but with a few important distinctions that make them more flexible:</p>\n<ul>\n<li>Designed to create content that is easy to reuse in multiple places</li>\n<li>Bucket creation includes ability to use the visual editor and media manager</li>\n<li>Content can be used anywhere, not limited to widgetized areas</li>\n</ul>\n<h3>Recent Major Improvements to Buckets</h3>\n<p>I caught up with Matthew Restorff to find out what kinds of improvements he’s added to the plugin recently. Here are a few of the highlights:</p>\n<ul>\n<li>Button added to the TinyMCE so users can now insert buckets into their content without shortcodes</li>\n<li>Buckets listing page now displays the pages where you have placed buckets</li>\n<li>On page editing/adding so you can edit your entire page’s content without leaving the page</li>\n</ul>\n<p>Many of the changes to the plugin have come directly from feedback provided by Restorff’s clients. He continues to maintain the plugin, because it helps his clients to be more independent. “I’m a huge advocate of making things easier on the client so they can keep their sites up to date,” he said. “<span class=\"pullquote alignleft\">I love the idea of someone with not much experience being able to maintain a really robust website.</span>”</p>\n<h3>A New Way of Looking at WordPress Content Management</h3>\n<p>I am intrigued by the idea of Buckets, because it provides a new way of looking at WordPress. Traditionally, we let themes dictate the widgetized areas where the user can easily drop in dynamic pieces of content. With Buckets and Advanced Custom Fields working together, you wouldn’t need sidebars or widgets at all, in theory, although they do help to keep a design more uniform. Buckets gives you full control of where you want content to be placed. You’re not limited by what your theme offers you in terms of sidebars.</p>\n<p>If widgets just aren’t flexible enough for you, or if they prove to be too confusing for your clients, consider giving Buckets a try. If you install this plugin, you’ll still be able to use your widgets in addition to Buckets. The two do not conflict. <a href=\"http://wordpress.org/plugins/buckets/\" target=\"_blank\">Buckets</a> has received all 5-star reviews on WordPress.org so far. Documentation for the plugin can be found in this <a href=\"https://docs.google.com/document/d/1fDhqmtKWTy-0oxTP8GUg7wdhv-VULNoBFkJbLvKNdzo/edit\" target=\"_blank\">Google doc</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 13 Feb 2014 00:10: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: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:7;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:76:\"WPTavern: Exploring WordPress Theme Designers’ Love Affair With Mint Green\";s:7:\"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=16722\";s:7:\"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/exploring-wordpress-theme-designers-love-affair-with-mint-green?utm_source=rss&utm_medium=rss&utm_campaign=exploring-wordpress-theme-designers-love-affair-with-mint-green\";s: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:5857:\"<p>There’s a curious design trend among WordPress themes that shows no signs of stopping. The prominent use of mint green has become designers’ favorite highlight color.</p>\n<p>The trend started in the greater design community, as recently illustrated by Automattic design engineer Mel Choyce in her <a href=\"https://twitter.com/melchoyce/status/432888899862794240\" target=\"_blank\">tweet commentary</a>:</p>\n<blockquote class=\"twitter-tweet\" width=\"550\"><p>Some interesting color trends appearing on dribbble: <a href=\"https://t.co/JUOl11VFnS\">https://t.co/JUOl11VFnS</a></p>\n<p>— Mel Choyce (@melchoyce) <a href=\"https://twitter.com/melchoyce/statuses/432888899862794240\">February 10, 2014</a></p></blockquote>\n<p></p>\n<p>The color is often seen accompanying a flat design. “It’s in kind of the weird space between green and blue,” Choyce <a href=\"https://twitter.com/melchoyce/status/432893291936612352\" target=\"_blank\">commented</a> before suggesting the name “Frosted Cyan.”</p>\n<p>It’s as if someone merged turquoise and seafoam green to create the next design obsession. You’ll find it everywhere from fashion to product design to interior decorating, as seen on <a href=\"http://www.etsy.com/market/seafoam_green\" target=\"_blank\">Etsy</a> to <a href=\"http://www.pinterest.com/buddahen/turquoise-seafoam-green/\" target=\"_blank\">Pinterest</a>.</p>\n<p><a href=\"http://wptavern.com/wp-content/uploads/2014/02/mint-green.jpg\" rel=\"prettyphoto[16722]\"><img src=\"http://wptavern.com/wp-content/uploads/2014/02/mint-green.jpg\" alt=\"mint-green\" width=\"1240\" height=\"628\" class=\"aligncenter size-full wp-image-16772\" /></a></p>\n<p>Both “<a href=\"http://www.etsy.com/market/vintage_aqua\" target=\"_blank\">Vintage Aqua</a>” and “<a href=\"http://www.etsy.com/market/aquamarine\" target=\"_blank\">Arctic Marine Blue</a>” come pretty close to the mark. Whatever you want to call it, the color has now fully infiltrated WordPress theme design. Commercial and free themes alike are making liberal use of mint green and its many derivatives. I’ve compiled a small sampling:</p>\n<p><a href=\"http://wptavern.com/wp-content/uploads/2014/02/minty-themes.jpg\" rel=\"prettyphoto[16722]\"><img src=\"http://wptavern.com/wp-content/uploads/2014/02/minty-themes.jpg\" alt=\"minty-themes\" width=\"1469\" height=\"557\" class=\"aligncenter size-full wp-image-16783\" /></a></p>\n<h3>The Psychology Behind Mint Green</h3>\n<p>How does a color become trendy? Do colors have inherent meanings or do they simply remind us of things we’ve seen in the world? Color psychology is a fascinating science to explore, given that colors are proven to have patterns in how they effect large portions of the populace when empirically tested. Throw history and culture in the mix, along with the physiological effects of colors and you have a whole spectrum of insight when experimenting with specific hues.</p>\n<div id=\"attachment_16799\" class=\"wp-caption alignright\"><a href=\"http://wptavern.com/wp-content/uploads/2014/02/visible-light.gif\" rel=\"prettyphoto[16722]\"><img src=\"http://wptavern.com/wp-content/uploads/2014/02/visible-light.gif\" alt=\"credit: NASA\" width=\"317\" height=\"147\" class=\"size-full wp-image-16799\" /></a><p class=\"wp-caption-text\">credit: <a href=\"http://science.hq.nasa.gov/kids/imagers/ems/visible.html\">NASA</a></p></div>\n<p>Colors exist in different wavelengths and stimulate the eyes and mind in various, measurable ways. Red is on one end of the electromagnetic spectrum of light visible to humans and has the longest wavelength. Violet is on the other end with the shortest wavelength. Green is right in the middle and is the easiest to perceive.</p>\n<p><a href=\"http://www.colour-affects.co.uk/\" target=\"_blank\">Colour Effects</a>, a London-based color consultancy, has this to say about the <a href=\"http://www.colour-affects.co.uk/psychological-properties-of-colours\" target=\"_blank\">psychological properties</a> of green:</p>\n<blockquote><p>Green strikes the eye in such a way as to require no adjustment whatever and is, therefore, restful. Being in the centre of the spectrum, it is the colour of balance – a more important concept than many people realise. When the world about us contains plenty of green, this indicates the presence of water, and little danger of famine, so we are reassured by green, on a primitive level. Negatively, it can indicate stagnation and, incorrectly used, will be perceived as being too bland.</p></blockquote>\n<p>So what is it about mint green? For many, a light green hue evokes feelings of freshness or lightness. Designers seem to be quite fond of using it in contrast to a flat grey in their latest creations. The color was, of course, first inspired by nature, with which so many of us have lost touch. Mint green, or a muted/pastel shade, is said to represent tranquility to many people and has a calming effect. Perhaps this is why it’s often used in hospitals.</p>\n<h3>Why is Mint Green Trending?</h3>\n<p>The fact that mint green is trending probably says more about us and our digital culture than it does about the products themselves. In an era where many of us are chained to our electronic devices, the trending mint green color may be a subconscious attempt to reconnect with nature. These electronic devices and the near constant flow of information they provide are often a cause of stress. Instant access to traumatic events happening around the globe and the pressure to stay connected may have a deeper psychological impact on us than we know. It’s no wonder that we are gravitating towards colors that convey tranquility and balance.</p>\n<p>This particular mint green design trend started in 2012 and held strong throughout 2013. Has it reached its zenith? Why do you think it’s been so popular?</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, 12 Feb 2014 20:23: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: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:60:\"WPTavern: WordPress Businesses Should No Longer Fear Refunds\";s:7:\"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=16626\";s:7:\"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/wordpress-businesses-should-no-longer-fear-refunds?utm_source=rss&utm_medium=rss&utm_campaign=wordpress-businesses-should-no-longer-fear-refunds\";s: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:8224:\"<p>How many times have you bought a theme that would look perfect for your next project only to discover it’s not the right fit? I have gone through this experience multiple times but the companies I dealt with didn’t have refund policies. Instead, I had to learn a $60-70 lesson with no recourse. Unfortunately, the only way to know if a commercial theme or plugin will work for a specific use case is to buy it.</p>\n<div id=\"attachment_16776\" class=\"wp-caption aligncenter\"><a href=\"http://wptavern.com/wp-content/uploads/2014/02/RefundFeaturedImage.png\" rel=\"prettyphoto[16626]\"><img class=\"size-large wp-image-16776\" alt=\"Refund Featured Image\" src=\"http://wptavern.com/wp-content/uploads/2014/02/RefundFeaturedImage-500x156.png\" width=\"500\" height=\"156\" /></a><p class=\"wp-caption-text\">photo credit: <a href=\"http://www.flickr.com/photos/tantek/5221014003/\">tantek</a> – <a href=\"http://creativecommons.org/licenses/by-nc/2.0/\">cc</a></p></div>\n<p>Steven Gliebe creator of <a title=\"http://churchthemes.com/\" href=\"http://churchthemes.com/\">Churchthemes.com</a> has published an <a title=\"http://stevengliebe.com/2013/12/31/offer-refunds-wordpress-themes-plugins/\" href=\"http://stevengliebe.com/2013/12/31/offer-refunds-wordpress-themes-plugins/\">excellent post</a> that asks WordPress plugin and theme companies to offer refunds. As a customer, Steve describes exactly how I’d want to be treated by a company issuing a refund. Despite themes and plugins being digital products, Steve argues that companies should still offer them.</p>\n<blockquote><p>My view is that since themes and plugins are non-tangible, they are actually easier to refund. There is no dealing with damage, missing parts, repackaging, etc. All the seller needs to do is give the customer their money back and cease to provide support/updates. We offer a 45 day refund period at churchthemes.com because it really is useful to try a theme to see if it is the right solution.</p></blockquote>\n<p>Within the comments of his post, <a title=\"http://stevengliebe.com/2013/12/31/offer-refunds-wordpress-themes-plugins/#comment-5093\" href=\"http://stevengliebe.com/2013/12/31/offer-refunds-wordpress-themes-plugins/#comment-5093\">Bill Robbins makes an excellent point</a> explaining why some WordPress theme companies still don’t offer refunds.</p>\n<blockquote><p>I believe the common “no refunds” policy came into being because so many people were already robbing theme and plugin companies through chargebacks in the early days of commercial WordPress products. Since people were already willing to lie and issue a chargeback which left the user with the theme and the company with an extra fee for their work, many shops felt that making this process easier would be a bad decision. That had a lot to do with this being a standard that was frequently adopted.</p></blockquote>\n<p>On the topic of chargebacks and fear of losing money, I asked three of the largest commercial theme companies to give me their percentage of refunds within the past 3-6 months and how many chargebacks they’ve processed. One of these companies doesn’t offer refunds but after reading Steve’s article, they plan on revisiting their policy in the near future.</p>\n<h3>StudioPress</h3>\n<p>From July-December 2013, StudioPress issued:</p>\n<ul>\n<li>chargeback 0.07%</li>\n<li>complete 95.73%</li>\n<li>comp 1.50%</li>\n<li>refund 2.70%</li>\n</ul>\n<p>However, within the past six months, StudioPress has seen very few chargebacks thanks in large part to their tightened security measures they put in place last Summer. Prior to those security measures, the company still saw less than <strong>1%</strong> of their total sales dedicated to chargebacks. StudioPress has a team that watches transactions every day and if they notice a fraudulent charge, they usually catch it in time before the cardholder does, preventing the chargeback from occurring.</p>\n<p>Jessica Commins, Executive Vice President of Operations of Copyblogger Media, told me sales continue to go up while the refund rate has decreased. This means customers are satisfied with their purchases.</p>\n<blockquote><p>We firmly believe that offering everyone a 30-day guarantee is the best policy, because we are committed to our customers’ happiness. We’ve seen firsthand that happy customers lead to more happy customers, and while that’s not why we do what we do, it’s proof that doing the right thing for the right reasons can lead to sustainable rewards.</p></blockquote>\n<h3>WooThemes</h3>\n<p>The data I obtained from WooThemes is not strictly tied to their themes but the company as a whole. Mark Forrester co-founder of WooThemes says the average refund rate across the board is about <strong>4.8%</strong>. Forrester also told me:</p>\n<blockquote><p>Based on conversations the company has had with customers requiring refunds, it’s always a very positive interaction and more often than not the customer has assured us they will be back again because of the great customer service they experienced.</p></blockquote>\n<p>Considering how many products WooThemes has and how long they’ve been in business, I think 4.8% is a low number. It’s definitely in line with StudioPress and Churchthemes.</p>\n<h3>iThemes</h3>\n<p>iThemes is one of the earliest WordPress commercial theme businesses. I was surprised to find out they <a title=\"http://ithemes.com/frequently-asked-questions/\" href=\"http://ithemes.com/frequently-asked-questions/\">don’t offer refunds</a>.</p>\n<blockquote><p>Because of the nature of our themes and plugins—which are digitally delivered and non-tangible goods—we cannot offer refunds or chargebacks for purchases. Please read our FAQs and Terms of Service carefully before purchasing your theme or plugin. And as always, you can email questions or contact us in advance.</p></blockquote>\n<p>When I asked Cory Miller why the company doesn’t offer refunds, he told me:</p>\n<blockquote><p>Probably like a lot of people, in the early days we were worried more about people simply buying then asking for a refund and the cost and hassle associated with that. I’ve found though after all the years of being a GPL software company that most people want to pay you for your hard work and support. They want to give you money in exchange for the value you offer and aren’t trying to work around the system. The ones who seek to work around the system have never been our customers.</p>\n<p>I should note though that although not formal, if a product doesn’t work for a customer though, we do and have offered refunds on a case by case basis.</p>\n<p>Having said that, we would be open to revising our refund policy for this and a number of other reasons and will likely be working through that in the next iteration of what we do.</p></blockquote>\n<p>The reasons Bill Robbins laid out in his comment are some of the same reasons why iThemes never offered a refund policy. As Steve mentioned in his post, “<em>if you don’t have a strong refund policy and your competitor does, you’re at a disadvantage.</em>”</p>\n<h3>Refunds Make Cents</h3>\n<p>If you’re selling goods whether they are tangible or non-tangible, refunds or money back guarantees give consumers confidence. Without them, there is more risk associated with a purchase. If you plan to offer refunds, Steven Gliebe has a great five step process. I would be thrilled if I were treated in this manner when requesting my money back.</p>\n<ol>\n<li>Be as courteous as if it was a pre-sales inquiry</li>\n<li>Don’t try to change their mind and don’t ask pesky questions</li>\n<li>Initiate their refund immediately and tell them when to expect the funds</li>\n<li>Thank them for giving you a try and apologize if there was any inconvenience</li>\n<li>Ask them if they have any questions</li>\n</ol>\n<p>Considering how many readers of WPTavern purchase products from commercial WordPress theme and plugin businesses, what has your experience been like getting refunds from those companies? From a customer’s perspective, if there was one piece of advice you could give these companies, what would be?</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, 12 Feb 2014 19:56: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: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: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:77:\"WPTavern: Large Bruteforce Attack Against WordPress Sites Starting To Subside\";s:7:\"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=16747\";s:7:\"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:198:\"http://wptavern.com/large-bruteforce-attack-against-wordpress-sites-starting-to-subside?utm_source=rss&utm_medium=rss&utm_campaign=large-bruteforce-attack-against-wordpress-sites-starting-to-subside\";s: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:4893:\"<p>Security company <a title=\"http://www.wordfence.com/\" href=\"http://www.wordfence.com/\">Wordfence</a> is <a title=\"http://www.wordfence.com/blog/2014/02/large-distributed-brute-force-attack-underway/\" href=\"http://www.wordfence.com/blog/2014/02/large-distributed-brute-force-attack-underway/\">reporting</a> that the large distributed brute force attack on WordPress sites is starting to subside. On the morning of February 10th, employees noticed a large increase in the volume of attacks. Their real-time activity map was showing so much activity, they had to throttle the amount of data displayed. I asked <a title=\"http://bruteprotect.com/\" href=\"http://bruteprotect.com/\">BruteProtect</a> if they were seeing the same amount of attacks using their monitoring system:</p>\n<blockquote><p>Yes, we’ve been watching it going crazy. We’ve been seeing levels about 8 times higher than average. Interestingly, while this is definitely a large attack, it’s not the biggest we’ve seen. We were seeing nearly twice as much activity for a 4-day period in mid-January.</p></blockquote>\n<p>Wordfence released an update earlier today saying the attacks have subsided but there are still occasional surges. Think of it like aftershocks after a powerful earthquake.</p>\n<h3>How These Services Work To Protect WordPress Sites</h3>\n<p>BruteProtect and Wordfence use the power of many to protect users against distributed attacks. The idea is similar to how <a href=\"http://akismet.com/\" title=\"http://akismet.com/\">Akismet</a> operates. Both companies track failed logins across a large number of WordPress sites, then analyze the data to find patterns and identify attack bots. The more people using their plugin, the more data they have to work with. This results in more protection for site owners and fewer false positives.</p>\n<p><a href=\"http://wptavern.com/wp-content/uploads/2014/02/BruteForceFeaturedImage.jpg\" rel=\"prettyphoto[16747]\"><img src=\"http://wptavern.com/wp-content/uploads/2014/02/BruteForceFeaturedImage-500x153.jpg\" alt=\"Brute Force Featured Image\" width=\"500\" height=\"153\" class=\"aligncenter size-large wp-image-16757\" /></a></p>\n<h3>Cost Of Protection</h3>\n<p>The service offered by BruteProtect is free with no limits attached. Wordfence is also free but they offer additional protection such as <strong>country blocking, scheduled scans, and remote scans</strong> for <strong>$39 per year</strong>. While the primary goal of BruteProtect is to protect the login page against distributed attacks, Wordfence is more like a full security suite similar to <a href=\"http://vaultpress.com/\" title=\"http://vaultpress.com/\">VaultPress</a>.</p>\n<p><a href=\"http://wordpress.org/plugins/limit-login-attempts/\" title=\"http://wordpress.org/plugins/limit-login-attempts/\">Limit Login Attempts</a> is a popular plugin used to limit the attempts an IP address can login. This is a great alternative but I like Wordfence and Bruteprotect for the simple fact that many sites grouped together through a service is a more effective strategy than battling brute force attacks alone.</p>\n<p><a href=\"http://wptavern.com/wp-content/uploads/2014/02/BruteProtection.png\" rel=\"prettyphoto[16747]\"><img src=\"http://wptavern.com/wp-content/uploads/2014/02/BruteProtection-500x107.png\" alt=\"BruteProtection\" width=\"500\" height=\"107\" class=\"aligncenter size-large wp-image-16761\" /></a></p>\n<h3>Use A Strong Password</h3>\n<p>It’s hard to protect a website from a distributed attack but the easiest thing site owners can do to protect themselves is to use a strong password. WordPress 3.7 <a href=\"http://wptavern.com/ridiculously-smart-password-meter-coming-to-wordpress-3-7\" title=\"http://wptavern.com/ridiculously-smart-password-meter-coming-to-wordpress-3-7\">shipped with a password strength meter</a> that does an excellent job with informing you whether your password is strong or not. Using a strong password will lower the chances of a distributed attack from succeeding to gain access.</p>\n<h3>The Problem Is Only Going To Get Worse</h3>\n<p>Unfortunately, these types of attacks are becoming more common. <a href=\"http://arstechnica.com/security/2013/04/huge-attack-on-wordpress-sites-could-spawn-never-before-seen-super-botnet/\" title=\"http://arstechnica.com/security/2013/04/huge-attack-on-wordpress-sites-could-spawn-never-before-seen-super-botnet/\">Early in 2013</a>, a huge botnet was used to perform brute force attacks on WordPress websites to crack the administrative credentials of users.</p>\n<p>Services like Wordfence and Bruteprotect are playing a pivotal role in helping users to combat this annoying type of attack. These plugins/services are going to be as common place on WordPress sites as Akismet. <strong>Are you using either of them on your site? If not, what precautions do you have in place to help protect against brute force attacks?</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:\"Wed, 12 Feb 2014 05:29:03 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s: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:58:\"WPTavern: How to Add Special Characters to WordPress Posts\";s:7:\"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=16746\";s:7:\"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/how-to-add-special-characters-to-wordpress-posts?utm_source=rss&utm_medium=rss&utm_campaign=how-to-add-special-characters-to-wordpress-posts\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1778:\"<p>Did you know that WordPress has built-in support for finding and using special characters in your content? This was news to me, after noticing a <a href=\"https://twitter.com/melchoyce/status/433367978483011584\" target=\"_blank\">tweet</a> from Mel Choyce, inquiring if anyone ever used the feature. The replies indicate that most have never used it.</p>\n<p>But what if that’s because nobody knows it’s there? After poking around, I found the special character button within the kitchen sink of the visual editor. It’s the button with an Omega on it (the character that looks like a horseshoe).</p>\n<p><a href=\"http://wptavern.com/wp-content/uploads/2014/02/special-characters.png\" rel=\"prettyphoto[16746]\"><img class=\"aligncenter size-full wp-image-16750\" alt=\"special-characters\" src=\"http://wptavern.com/wp-content/uploads/2014/02/special-characters.png\" width=\"1381\" height=\"1002\" /></a></p>\n<p>There are several compelling reasons for this feature. It comes in handy for English speakers who occasionally use foreign words with special characters. It’s useful for non-English speakers who are creating content while traveling on keyboards that don’t contain the special characters they need, i.e. Swedish ÅÄÖ characters. The special characters feature can also save you a trip to Google when searching for a character that you don’t often use. A visual reference helps you to find it without having to know the exact name of the character.</p>\n<p>On the other hand, given that it may not be used frequently by the vast majority of WordPress users, would this feature be a good candidate for removal? Would a special character reference be better left to plugin territory? How many of you actually use this on a semi-regular basis?</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, 12 Feb 2014 05:02:24 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s: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:43:\"WP iPhone: WordPress for iOS 3.9.1 Released\";s:7:\"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:\"http://ios.wordpress.org/?p=1535\";s:7:\"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://ios.wordpress.org/2014/02/12/wordpress-for-ios-3-9-1-released/\";s: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:1955:\"<p>WordPress for iOS 3.9.1 is out and now available to download from the App Store.</p>\n<p>Some of the fixes included in this version are:</p>\n<ul>\n<li>Added: Ability to dismiss commenting by tapping on the background.</li>\n<li>Fixed: The last tab you selected is now loaded when returning to the app.</li>\n<li>Fixed: Timezone is now correctly preserved after updating a post.</li>\n<li>Fixed: You can now add links to longer posts.</li>\n<li>Various other improvements.</li>\n</ul>\n<p><a href=\"https://github.com/wordpress-mobile/WordPress-iOS/issues?milestone=13&state=closed\">Full list of changes in version 3.9.1</a>.</p>\n<h3>What’s next?</h3>\n<p>We are currently hard at work on the next major version of the app (4.0) where the major feature will be changing the stats feature to be completely native, which means they will load faster and look great too. For a sneak peek of what’s coming, take a look <a href=\"https://github.com/wordpress-mobile/WordPress-iOS/issues?milestone=12&page=1&state=open\">here</a>.</p>\n<p>A huge thanks to the contributors who worked on this release:<a href=\"https://github.com/koke\">@koke</a>, <a href=\"https://github.com/sendhil\">@sendhil</a> , <a href=\"https://github.com/astralbodies\">@astralbodies</a>, <a href=\"https://github.com/koke\">@koke</a>, <a href=\"https://github.com/dannylagrouw\">@dannylagrouw</a>, <a href=\"https://github.com/irbrad\">@irbrad</a>, <a href=\"https://github.com/daniloercoli\">@daniloercoli</a>.</p>\n<p>Have feedback? Leave a comment below or tweet us <a href=\"https://twitter.com/WordPressiOS\">@WordPressiOS</a></p><br /> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wpiphone.wordpress.com/1535/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wpiphone.wordpress.com/1535/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=ios.wordpress.org&blog=3882653&post=1535&subd=wpiphone&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:\"Wed, 12 Feb 2014 01:40: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:7:\"Sendhil\";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:98:\"WPTavern: WordPress E-Commerce Plugins Update to Support Stripe’s Global Expansion of Currencies\";s:7:\"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=16724\";s:7:\"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:234:\"http://wptavern.com/wordpress-e-commerce-plugins-update-to-support-stripes-global-expansion-of-currencies?utm_source=rss&utm_medium=rss&utm_campaign=wordpress-e-commerce-plugins-update-to-support-stripes-global-expansion-of-currencies\";s: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:3001:\"<p><a href=\"http://wptavern.com/wp-content/uploads/2014/02/currencies.jpg\" rel=\"prettyphoto[16724]\"><img src=\"http://wptavern.com/wp-content/uploads/2014/02/currencies.jpg\" alt=\"currencies\" width=\"1600\" height=\"691\" class=\"aligncenter size-full wp-image-16732\" /></a></p>\n<p>Stripe <a href=\"https://stripe.com/blog/new-currencies\" target=\"_blank\">announced</a> that it now supports <a href=\"https://support.stripe.com/questions/in-which-currencies-can-i-charge-my-customers\" target=\"_blank\">139 currencies</a> in an effort to increase patrons’ ability to sell to worldwide audiences. The update allows those using Stripe to charge customers using any of the new currencies. Stripe handles the conversion and transfers funds to its patrons in their home currencies with a 2% fee added on top.</p>\n<p>This massive expansion of available currencies is prompting WordPress e-commerce developers to update their Stripe payment processing extensions. The process is not complicated, according to Lew Ayotte, developer of <a href=\"http://ithemes.com/exchange/\" target=\"_blank\">iThemes Exchange</a>. He pushed the updates this morning to their free <a href=\"http://ithemes.com/purchase/stripe-add-on/\" target=\"_blank\">Stripe gateway</a>. “It was actually pretty easy,” he said. “We modified the add-on to pull the supported currencies from Stripe’s API, which we then use to list as the usable currencies in Exchange. Beforehand it was a manual process.”</p>\n<p>Pippin Williamson confirmed that the Easy Digital Downloads <a href=\"https://easydigitaldownloads.com/extensions/stripe-payment-gateway/\" target=\"_blank\">Stripe gateway extension</a> is being modified and will also support all 139 currencies.</p>\n<p>WordPress e-commerce solutions that support Stripe are not required to add all of the additional currencies, although it is highly encouraged. The conversion rates are calculated in real-time. Stripe representatives claim that “localized pricing increases checkout completion rates by eliminating uncertainty for your customers and letting them avoid conversion fees.”</p>\n<p>To start accepting new currencies, there’s nothing that needs to be enabled within the account dashboard – it’s all done via the API. WordPress developers updating Stripe extensions can find examples in the documentation. Stripe’s <a href=\"https://stripe.com/docs/api#account\" target=\"_blank\">Account API</a> includes the <em>currencies_supported</em> method for identifying which currencies an account can submit when creating charges.</p>\n<p>Although Stripe is becoming an increasingly popular way to manage payment processing, it is still only available for use in a handful of countries. The team is working diligently to expand its services beyond the US and Europe. Hopefully, when that day arrives, the changes required to the software ecosystem surrounding Stripe will be just as easy to implement as the new currencies announced today.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 11 Feb 2014 22:25: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: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:86:\"WPTavern: WordPress.com Joins Google, Reddit and Tumblr in Protesting NSA Surveillance\";s:7:\"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=16704\";s:7:\"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:214:\"http://wptavern.com/wordpress-com-joins-google-reddit-and-tumblr-in-protesting-nsa-surveillance?utm_source=rss&utm_medium=rss&utm_campaign=wordpress-com-joins-google-reddit-and-tumblr-in-protesting-nsa-surveillance\";s: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:3782:\"<p>WordPress.com <a href=\"http://en.blog.wordpress.com/2014/02/11/the-day-we-fight-back/\" target=\"_blank\">announced</a> that it is joining forces with other organizations and companies around the globe to protest NSA surveillance. Earlier this morning <a href=\"http://googlepublicpolicy.blogspot.com/2014/02/its-time-to-reform-government.html\" target=\"_blank\">Google endorsed the USA Freedom Act</a>, new legislation with bi-partisan authorship that calls for NSA reform. Today WordPress.com joins Google and <a href=\"http://blog.reddit.com/2014/02/the-day-we-fight-back-against-mass.html\" target=\"_blank\">Reddit</a>, <a href=\"http://staff.tumblr.com/post/76334694062/the-day-we-fight-back\" target=\"_blank\">Tumblr</a>, <a href=\"http://blog.mozilla.org/press/2014/02/fighting-back-against-surveillance/\" target=\"_blank\">Mozilla</a>, the <a href=\"https://www.eff.org/\" target=\"_blank\">Electronic Frontier Foundation</a>, <a href=\"https://www.cloudflare.com/apps/the_day_we_fight_back\" target=\"_blank\">Cloudflare</a> and many others in the effort to stop NSA surveillance.</p>\n<p>This <a href=\"http://sensenbrenner.house.gov/legislation/theusafreedomact.htm\" target=\"_blank\">proposed legislation</a> calls for an end to the indiscriminate bulk collection of Americans’ communication records, reformation of the Foreign Intelligence Surveillance Court and an increase in government transparency.</p>\n<p>WordPress.com opted to support <a href=\"https://thedaywefightback.org/\" target=\"_blank\">The Day We Fight Back</a> by offering a slightly modified “Stop NSA Surveillance” banner to sites hosted on its network.</p>\n<p><a href=\"http://wptavern.com/wp-content/uploads/2014/02/stop-nsa-surveillance.png\" rel=\"prettyphoto[16704]\"><img src=\"http://wptavern.com/wp-content/uploads/2014/02/stop-nsa-surveillance.png\" alt=\"stop-nsa-surveillance\" width=\"1196\" height=\"597\" class=\"aligncenter size-full wp-image-16711\" /></a></p>\n<p>You can see the banner in action on the <a href=\"http://en.blog.wordpress.com/\" target=\"_blank\">WordPress.com blog</a>.</p>\n<p>WordPress.com has historically been strongly in support of freedom of speech, demonstrated by its recent efforts to strike back against censorship and commitment to <a href=\"http://en.blog.wordpress.com/2010/07/01/support-the-first-amendment-with-1-for-all/\" target=\"_blank\">raising awareness about the First Amendment</a>. These issues are closely related to online privacy.</p>\n<p>The Freedom of the Press Foundation nicely <a href=\"https://pressfreedomfoundation.org/blog/2014/02/heres-how-you-can-join-us-calling-nsa-reform-congress\" target=\"_blank\">summarized</a> the damaging effects of surveillance on the freedom of speech:</p>\n<blockquote><p>Free speech is chilled by the specter of ubiquitous surveillance. Just as journalists rely on secure and private communications to investigate stories and communicate with sources, individuals worldwide need to have the freedom to communicate, access information and use technology without big brother’s watching eyes.</p></blockquote>\n<p>It speaks volumes that WordPress.com, which powers many of the world’s top blogs and news outlets, stands firmly in support of freedoms and privacy.</p>\n<p>If you want to join WordPress.com and millions of others in the fight to stop the American government from using its power to spy on its citizens and the rest of the world, it’s not too late to add the banner to your site. Self-hosted WordPress sites can join in by installing <a href=\"http://wptavern.com/new-wordpress-plugin-aims-to-fight-back-against-mass-surveillance\" target=\"_blank\">The Day We Fight Back plugin</a>, now available for <a href=\"http://wordpress.org/plugins/tdwfb/\" target=\"_blank\">download</a> from the WordPress plugin repository.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 11 Feb 2014 19:37: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: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:49:\"WPTavern: Where to Find BuddyPress Language 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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wptavern.com/?p=16682\";s:7:\"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:142:\"http://wptavern.com/where-to-find-buddypress-language-files?utm_source=rss&utm_medium=rss&utm_campaign=where-to-find-buddypress-language-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:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3352:\"<p>Did you know that BuddyPress can be used in different languages? It’s actually a very international community. Based on the results from a <a href=\"http://wptavern.com/7-surprising-results-from-the-2013-buddypress-codex-survey\" target=\"_blank\">survey</a> conducted in 2013, nearly 50% of BuddyPress sites are in languages other than English.</p>\n<p><a href=\"http://wptavern.com/wp-content/uploads/2013/09/international.jpg\" rel=\"prettyphoto[16682]\"><img class=\"aligncenter size-full wp-image-8920\" alt=\"international\" src=\"http://wptavern.com/wp-content/uploads/2013/09/international.jpg\" width=\"820\" height=\"449\" /></a></p>\n<p>With BuddyPress being used in so many different countries, it’s important to know where to find BuddyPress language files. Unfortunately, many of them are scattered throughout the web, as there isn’t a centralized place for them yet.</p>\n<p>The largest collection of files can be found at <a href=\"http://translate.wordpress.org/projects/buddypress/dev\" target=\"_blank\">translate.wordpress.org</a>. It isn’t readily apparent how to get translation files from this location, but the process is very simple, as outlined in the <a href=\"http://codex.buddypress.org/developer/translations/\" target=\"_blank\">BuddyPress codex</a>:</p>\n<ul>\n<li>Select your language</li>\n<li>At the bottom of the page select ‘all current’ as ‘.mo’ and press ‘export’</li>\n<li>Do the same to get the ‘.po’ file</li>\n</ul>\n<p><a href=\"http://wptavern.com/wp-content/uploads/2014/02/export-language-file.png\" rel=\"prettyphoto[16682]\"><img src=\"http://wptavern.com/wp-content/uploads/2014/02/export-language-file.png\" alt=\"export-language-file\" width=\"1055\" height=\"149\" class=\"aligncenter size-full wp-image-16687\" /></a></p>\n<p>If your language isn’t represented there, you might also try the BuddyPress <a href=\"http://i18n.trac.buddypress.org/browser\" target=\"_blank\">i18n repo</a>.</p>\n<h3>How to Contribute to BuddyPress Translations</h3>\n<p>You don’t necessarily have to know another language to contribute to translation. Given the international makeup of the BuddyPress community, it’s imperative that plugin authors <a href=\"http://buddypress.org/support/topic/localize-your-buddypress-plugins/\" target=\"_blank\">internationalize their plugins</a> in order to make sure that users are able to translate them. This is one surefire way to widen your audience.</p>\n<p>If you are able to contribute a translation or help with an incomplete translation, you can do so online at the <a href=\"http://translate.wordpress.org/projects/buddypress/dev\" target=\"_blank\">BuddyPress translation project</a>. You can also create a translation independently using software like <a href=\"http://www.poedit.net/\" target=\"_blank\">PoEdit</a>.</p>\n<p>Translations are some of the most overlooked contributions, but they are vital to BuddyPress’ global user base. The number of translatable strings in the BuddyPress.pot file has increased with each major release, from 910 strings in 1.0 to 1,311 strings in 1.9. That means that translations usually require updates every time there’s a new version of BuddyPress. Contributing a translation of BuddyPress in your language helps make it possible for people around the world to use this powerful plugin to create their own social networks.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 11 Feb 2014 05:58:48 +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: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:72:\"WPTavern: Could WordPress Plugin Adoption Lower the Rate of Abandonment?\";s:7:\"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=16497\";s:7:\"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/could-wordpress-plugin-adoption-lower-the-rate-of-abandonment?utm_source=rss&utm_medium=rss&utm_campaign=could-wordpress-plugin-adoption-lower-the-rate-of-abandonment\";s: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:6782:\"<div id=\"attachment_16677\" class=\"wp-caption aligncenter\"><a href=\"http://wptavern.com/wp-content/uploads/2014/02/yellow-plug.jpg\" rel=\"prettyphoto[16497]\"><img src=\"http://wptavern.com/wp-content/uploads/2014/02/yellow-plug.jpg\" alt=\"photo credit: jono dot com - cc\" width=\"840\" height=\"396\" class=\"size-full wp-image-16677\" /></a><p class=\"wp-caption-text\">photo credit: <a href=\"http://www.flickr.com/photos/jono/4867550/\">jono dot com</a> – <a href=\"http://creativecommons.org/licenses/by-nc-sa/2.0/\">cc</a></p></div>\n<p>In light of recent events wherein <a href=\"http://wptavern.com/wordpress-org-plugin-authors-receive-suspicious-requests-for-repository-access\" target=\"_blank\">WordPress.org plugin authors have been receiving suspicious requests</a> for repository access, Mika Epstein posted a <a href=\"https://make.wordpress.org/plugins/2014/02/06/clarification-on-taking-over-plugins/\" target=\"_blank\">clarification on taking over plugins</a>. The plugin team does not give out plugin author emails. Instead, the team acts as an intermediary to send the author an email, notifying them of a third-party trying to get in touch.</p>\n<p>Her note also assures developers that WordPress.org will never give away a plugin unless they have received the author’s explicit permission:</p>\n<blockquote><p>Your plugin is yours. We will only close it if there are security issues or guideline violations, and we will always email you about that (so remember to keep your email up to date in your forum profile!). We also will never just give away your plugin without contacting you first, and getting your approval.</p></blockquote>\n<p>Developers who no longer wish to maintain a plugin are also urged to consider giving it away to someone else before requesting removal from the repository. There is a chance that someone may be willing to take the plugin on to continue it. But how will other developers find plugins that are up for adoption?</p>\n<h3>How to Put Your Plugin Up For Adoption</h3>\n<p>There are two simple things you can do right away:</p>\n<p><strong>1. Add a Note to the Readme.txt File</strong><br />\nEpstein recommends updating your readme.txt file as a first step towards letting others know that your plugin is available to be adopted.</p>\n<p><strong>2. Add a Sticky Topic to the Plugin’s Forums</strong><br />\nAndrew Nacin <a href=\"https://make.wordpress.org/plugins/2014/02/06/clarification-on-taking-over-plugins/#comment-38429\" target=\"_blank\">suggested</a> that plugin authors create a sticky post in their plugin’s forum to put a plugin up for adoption and add a link to it in the readme.txt file. Interested parties can then comment in the forums and ask questions.</p>\n<p>Both of these suggestions are useful if someone is specifically interested in your plugin. If the readme.txt and forum sticky are all developers have to depend on, it’s unlikely that someone will stumble upon your plugin with the intention to adopt.</p>\n<h3>A Standard Adoption Tag</h3>\n<p>In the followup comments to the post, several developers chimed in to suggest that a standard tag might be a good option. A <a href=\"http://wordpress.org/plugins/tags/\" target=\"_blank\">plugin tag</a> would provide a centralized way for developers to search for plugins that need a new owner.</p>\n<p>For example, a “needs-takeover” or “adopt-me” tag could be applied to indicate the plugin’s availability. It might even be useful to have a separate tag to indicate that the author is looking for a collaborator, which could help connect developers and prevent orphaned plugins.</p>\n<p>I asked Samuel Wood, better known as “Otto”, about the possibility of the project designating an official tag. He said that this is unlikely, given that tagging plugins is entirely voluntary to begin with and not something that you can organize with a standard:</p>\n<blockquote><p>Anybody can create and use such a tag and add it to their plugins, we don’t have tag limits on plugins like we do on themes. If somebody wants to make it an unofficial thing, there’s nothing stopping them from doing so, but I don’t think it will take off because it’s edge-casey and relies on authors giving away their plugins intentionally instead of simply letting them die from neglect.</p></blockquote>\n<p>If an unofficial tag is to catch on, it will require a group of developers with plugins for adoption to get behind their selected tag and help to make sure that others know about it.</p>\n<h3>Adopting vs. Forking</h3>\n<p><a href=\"http://wptavern.com/wp-content/uploads/2014/02/abandoned-plugin.jpg\" rel=\"prettyphoto[16497]\"><img src=\"http://wptavern.com/wp-content/uploads/2014/02/abandoned-plugin-233x300.jpg\" alt=\"abandoned-plugin\" width=\"233\" height=\"300\" class=\"alignright size-medium wp-image-16679\" /></a>The recent suspicious requests aside, would any WordPress developer actually favor adopting a plugin over forking it?</p>\n<p>Alex Mills (Viper007Bond) doesn’t think that a list of plugins available for adoption would be of much use to anyone. “Mika’s suggestion of editing the readme to say so is probably better,” he <a href=\"https://make.wordpress.org/plugins/2014/02/06/clarification-on-taking-over-plugins/#comment-38443\" target=\"_blank\">said</a>. “As it’s unlikely it’d be useful to have a list of plugins that need new ownership.”</p>\n<p>While adoption has its benefits, including a built in user base and history on WordPress.org, forking a plugin is less of a hassle, since it doesn’t require permission. Forks also usually make a good number of changes right off the bat.</p>\n<p>Last year Jeff Chandler wrote about the growing concern of <a href=\"http://wptavern.com/how-to-adopt-a-plugin-or-put-it-up-for-adoption\" target=\"_blank\">abandoned WordPress plugins</a>. As the repository is now approaching 30,000 plugins, the discussion continues.</p>\n<p>Too much orphan-ware can quickly add up and paint a less than inspiring picture of the repository, which is frustrating to users who just want something that works.</p>\n<p>Even if the incidence of plugin adoption remains low, every bit counts towards making the repository a better resource. If we can providing a clear path for adoption and better ways for plugin developers to collaborate, there may be some hope for lowering the rate of <a href=\"http://digwp.com/wp-content/uploads/2012/10/infographic-abandoned-wp-plugins.jpg\" rel=\"prettyphoto[16497]\" target=\"_blank\">plugin abandonment</a>.</p>\n<p>Let’s hear from our readers. Would you favor an unofficial tag for adoption? Is it best left to readme.txt notices and sticky forum posts? Have you ever adopted a plugin or had one of yours adopted?</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, 10 Feb 2014 22:15: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: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: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:91:\"WPTavern: UpThemes Publishes Open Letter, Sounds Wakeup Call To Other WordPress Theme Shops\";s:7:\"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=16660\";s:7:\"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/upthemes-publishes-open-letter-sounds-wakeup-call-to-other-wordpress-theme-shops?utm_source=rss&utm_medium=rss&utm_campaign=upthemes-publishes-open-letter-sounds-wakeup-call-to-other-wordpress-theme-shops\";s: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:4009:\"<p><a href=\"http://wptavern.com/wp-content/uploads/2014/02/UpThemesLogo.jpg\" rel=\"prettyphoto[16660]\"><img class=\"alignright size-full wp-image-16664\" alt=\"UpThemes Logo\" src=\"http://wptavern.com/wp-content/uploads/2014/02/UpThemesLogo.jpg\" width=\"131\" height=\"61\" /></a>The founders of <a title=\"https://upthemes.com\" href=\"https://upthemes.com\">UpThemes</a>, a commercial WordPress theme business started in March of 2010 has published an <a title=\"https://upthemes.com/open-letter/\" href=\"https://upthemes.com/open-letter/\">open letter</a> to their customers and to the wider WordPress community. It’s a fascinating look into how the company has evolved over the past four years. The letter is filled with lessons learned and contains what I consider a wake up call to other WordPress theme shops.</p>\n<blockquote><p>Our new approach to theme development is this: we no longer build bloated themes full of features, options, and code that changes the color of your flexslider’s navigation buttons. We want our products to be easy to use and theme support to be a joy for our users and support reps alike. That’s why we’re building themes with <em><strong>simplicity as the feature</strong>.</em></p></blockquote>\n<p>This letter is like a breath of fresh air for many in the WordPress theme community as it solidifies the trend of returning to the roots of good website design, the integral separation between functionality and content. Jonathan Atkinson who <a title=\"http://wptavern.com/wpweekly-episode-137-making-a-living-on-themeforest-with-jonathan-atkinson\" href=\"http://wptavern.com/wpweekly-episode-137-making-a-living-on-themeforest-with-jonathan-atkinson\">we interviewed last week</a> mentioned theme authors can create beautiful themes without bundling everything under the sun and still make a profit. Justin Tadlock is living proof <a title=\"http://justintadlock.com/archives/2013/09/11/the-themeforest-experiment-one-year-later\" href=\"http://justintadlock.com/archives/2013/09/11/the-themeforest-experiment-one-year-later\">it can be done</a>.</p>\n<div id=\"attachment_16663\" class=\"wp-caption aligncenter\"><a href=\"http://wptavern.com/wp-content/uploads/2014/02/UpThemesPhotolia.jpg\" rel=\"prettyphoto[16660]\"><img class=\"size-large wp-image-16663\" alt=\"Photolia By UpThemes\" src=\"http://wptavern.com/wp-content/uploads/2014/02/UpThemesPhotolia-500x373.jpg\" width=\"500\" height=\"373\" /></a><p class=\"wp-caption-text\">Photolia By UpThemes</p></div>\n<p>Because of poor development practices used earlier in the history of the company, themes filled with options, sliders, color schemes, etc. ended up causing their profit margins to disappear forcing them to re-evaluate their entire business.</p>\n<blockquote><p>Because of the time it took to manage all our server-side code and third-party applications, marketing, support, accounting, etc., UpThemes was no longer profitable, nor was it a priority for us. Building awesome themes—the thing we started out to do—screeched to a grinding halt.</p></blockquote>\n<p>This is the first time I’ve read a post that explains how the profit of a WordPress commercial theme business dried up because of the way their themes were developed. Thankfully, UpThemes has revamped the entire way they are doing business and are now in a better situation.</p>\n<h3>A Lot Of Lessons To Be Learned</h3>\n<p>I applaud the team behind UpThemes for publishing the <a title=\"https://upthemes.com/open-letter/\" href=\"https://upthemes.com/open-letter/\">open letter</a> as it’s more or less a public gut check. It contains valuable lessons that can be applied to general theme development. I hope it influences theme authors to stick with simplicity and to stop putting everything including the kitchen sink into WordPress themes. While it may seem like they’re satisfying consumer demand, all they’re really doing is hurting themselves and their customers in the long-term.</p>\n<p><strong>What do you think of the letter?</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, 10 Feb 2014 20:36: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: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:66:\"WordPress.tv: Matt Adams: Creating Themes And Customizing Admin\";s:7:\"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=30867\";s:7:\"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:89:\"http://wordpress.tv/2014/02/10/matt-adams-creating-themes-%e2%80%8band-customizing-admin/\";s: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:687:\"<div id=\"v-o6PEQKeP-1\" class=\"video-player\">\n</div><br /> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/30867/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/30867/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=30867&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2014/02/10/matt-adams-creating-themes-%e2%80%8band-customizing-admin/\"><img alt=\"Matt Adams: Creating Themes And Customizing Admin\" src=\"http://videos.videopress.com/o6PEQKeP/video-0368995d95_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, 10 Feb 2014 19:32: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: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: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:89:\"WPTavern: WPCollab Provides Collaborative Opportunity For New WordPress Plugin 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=16624\";s:7:\"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/wpcollab-provides-collaborative-opportunity-for-new-wordpress-plugin-developers?utm_source=rss&utm_medium=rss&utm_campaign=wpcollab-provides-collaborative-opportunity-for-new-wordpress-plugin-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:3890:\"<p><a href=\"http://wptavern.com/wp-content/uploads/2014/02/WPCollabLogo.jpg\" rel=\"prettyphoto[16624]\"><img class=\"alignright size-full wp-image-16641\" alt=\"WPcollab Logo\" src=\"http://wptavern.com/wp-content/uploads/2014/02/WPCollabLogo.jpg\" width=\"231\" height=\"72\" /></a>It started off as a blog post. Fresh out of WordCamp Norway, Slobodan Manic <a title=\"http://slobodanmanic.com/541/lets-release-plugin-together/\" href=\"http://slobodanmanic.com/541/lets-release-plugin-together/\">shared his experience</a> at the event. Near the end of the post, Slobodan asked fellow developers if they’d like to release a plugin together. The idea being that working together creates more opportunities to learn. The plugin would have a few caveats though.</p>\n<blockquote><p>It has to be free, released to wordpress.org repository and lean. Other than that, anything goes. So, let’s do it together. Leave a comment or send me a tweet if you’re interested.</p></blockquote>\n<p>The post generated over 30 comments and thus, <a title=\"http://make.wpcollab.co/\" href=\"http://make.wpcollab.co/\">WPCollab</a> was born. WPCollab is made up of a P2, <a title=\"https://github.com/WPCollab\" href=\"https://github.com/WPCollab\">Github account</a>, and the Twitter hashtag <a title=\"https://twitter.com/search?src=typd&q=%23wpcollab\" href=\"https://twitter.com/search?src=typd&q=%23wpcollab\">#wpcollab</a>.</p>\n<p><a href=\"http://wptavern.com/wp-content/uploads/2014/02/EmojiInAction.jpg\" rel=\"prettyphoto[16624]\"><img class=\"alignright size-thumbnail wp-image-16629\" alt=\"Emoji In Action\" src=\"http://wptavern.com/wp-content/uploads/2014/02/EmojiInAction-150x150.jpg\" width=\"150\" height=\"150\" /></a>The groups first plugin is <a title=\"https://github.com/WPCollab/hello-emoji\" href=\"https://github.com/WPCollab/hello-emoji\">Hello-Emoji</a>. The plugin provides an easy way to access an auto-complete list of emoji icons. Emoji are graphical representations of things like smiles. Emoticons are text-based versions of emotions.</p>\n<p>Functionality aside, the more important aspect of this plugin is that it was created by <strong>five people</strong> from <strong>four different continents</strong> in a <strong>two week</strong> time period. Prior to Slobodan’s post, these people didn’t know each other. The first part of the plugin description illustrates the project perfectly.</p>\n<blockquote><p>Hello Emoji is more than a plugin, it represents the hopes of a generation. It is going to be proof of the idea that WordPress represents: that free software can bring people together to accomplish something that they couldn’t do themselves, while adding something of value to the commons for all to share.</p></blockquote>\n<p>Hello Emoji is almost ready to be submitted to the WordPress plugin repository. Until then, <a title=\"http://make.wpcollab.co/2014/02/10/trello-plugin-scope/\" href=\"http://make.wpcollab.co/2014/02/10/trello-plugin-scope/\">discussion has started</a> on the groups second plugin, Trello. Outside of Hello Emoji, WPCollab also has a <a title=\"https://github.com/WPCollab/wpcollab-plugin-skeleton\" href=\"https://github.com/WPCollab/wpcollab-plugin-skeleton\">skeleton plugin available</a> that is used as a framework.</p>\n<h3>Collaboration Outside Of WordPress.org</h3>\n<p>Slobodan tells me that everyone part of the project will be providing support for any plugins released. WPCollab is open to anyone who wants to contribute and learn with others. So far, the group seems to have good chemistry. The idea of creating plugins with a monetization strategy has been brought up but they have decided to continue working on free plugins for now.</p>\n<p>It’s great to see projects like WPCollab take off. It’s a good starting point for new plugin developers and who knows, perhaps in the future the site will turn into a collaborative plugin factory.</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, 10 Feb 2014 16:35: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: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:\"WordPress.tv: Zac Gordon: Learning Web Design Via 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=30865\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:76:\"http://wordpress.tv/2014/02/10/zac-gordon-learning-web-design-via-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:673:\"<div id=\"v-iZESYXYq-1\" class=\"video-player\">\n</div><br /> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/30865/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/30865/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=30865&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2014/02/10/zac-gordon-learning-web-design-via-wordpress/\"><img alt=\"Zac Gordon: Learning Web Design Via WordPress\" src=\"http://videos.videopress.com/iZESYXYq/video-eb752faf0a_scruberthumbnail_1.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, 10 Feb 2014 15:00: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:\"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: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:56:\"WPTavern: Sorbet: A Free WordPress Theme From Automattic\";s:7:\"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=16595\";s:7:\"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:154:\"http://wptavern.com/sorbet-a-free-wordpress-theme-from-automattic?utm_source=rss&utm_medium=rss&utm_campaign=sorbet-a-free-wordpress-theme-from-automattic\";s: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:3062:\"<p>Sorbet is a beautiful responsive blogging theme with <a href=\"http://codex.wordpress.org/Post_Formats\" title=\"WordPress Post Formats\" target=\"_blank\">post formats</a> on parade. The theme has been a big hit on <a href=\"http://theme.wordpress.com/themes/sorbet/\" title=\"Sorbet on WordPress.com\" target=\"_blank\">WordPress.com</a> ever since it was added at the end of January. This weekend Sorbet made its debut in the WordPress Themes Directory and is already a favorite, with more than 1,000 downloads in less than 24 hours after its release.</p>\n<p>What makes Sorbet so special? This theme has a uniquely pleasing balance of color, space and typography. It’s bright without being garish and it’s clean without looking plain.</p>\n<p><a href=\"http://wptavern.com/wp-content/uploads/2014/02/sorbet.png\" rel=\"prettyphoto[16595]\"><img class=\"aligncenter size-full wp-image-16602\" alt=\"sorbet\" src=\"http://wptavern.com/wp-content/uploads/2014/02/sorbet.png\" width=\"880\" height=\"660\" /></a></p>\n<p>One interesting highlight of Sorbet is that its widget area, social icons, main navigation and search bar are all hidden with icons at the top to pull each into the display. The resulting display gives your content plenty of room to breathe.</p>\n<p><a href=\"http://wptavern.com/wp-content/uploads/2014/02/sorbet-single-column.png\" rel=\"prettyphoto[16595]\"><img src=\"http://wptavern.com/wp-content/uploads/2014/02/sorbet-single-column-300x200.png\" alt=\"sorbet-single-column\" width=\"300\" height=\"200\" class=\"alignright size-medium wp-image-16609\" /></a>Another handy feature is the optional, intuitive sidebar. If you don’t add any widgets to your sidebar, Sorbet automatically recognizes this and changes the display to a centered one-column layout.</p>\n<p>Other features include:</p>\n<ul>\n<li>Colorful support for post formats and sticky posts</li>\n<li>One-column layout – sidebar is optional</li>\n<li>Social links panel</li>\n<li>Matching design for threaded comments</li>\n<li>Four widget areas: sidebar and header columns</li>\n<li>Custom header and background</li>\n<li>Three custom menus</li>\n</ul>\n<p>A <a href=\"http://sorbetdemo.wordpress.com/\" target=\"_blank\">live demo</a> of Sorbet is available on WordPress.com.</p>\n<p><a href=\"http://wptavern.com/wp-content/uploads/2014/02/sorbet-comments.png\" rel=\"prettyphoto[16595]\"><img src=\"http://wptavern.com/wp-content/uploads/2014/02/sorbet-comments-300x202.png\" alt=\"sorbet-comments\" width=\"300\" height=\"202\" class=\"alignleft size-medium wp-image-16613\" /></a>Threaded comments are nicely styled to match the theme and they respond well on mobile devices.</p>\n<p>If you’re looking for a theme where the peripheral aspects of your blog don’t upstage the content, then Sorbet might be just the ticket. It keeps the content in the spotlight and hides all the extras. This marks Automattic’s 37th theme on WordPress.org. Visit your admin panel to download <a href=\"http://wordpress.org/themes/sorbet\" target=\"_blank\">Sorbet</a> for free from the WordPress Themes Directory.</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, 10 Feb 2014 07:01:33 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s: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:41:\"Akismet: Partial API outage, Feb 9th 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:31:\"http://blog.akismet.com/?p=1238\";s:7:\"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://blog.akismet.com/2014/02/10/partial-api-outage-feb-9th-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:857:\"<p>There was a partial outage today that affected the Akismet API.</p>\n<p>Starting around 21:53 UTC a network issue caused approximately 10% of API calls to fail. Our systems team routed traffic to alternate servers and the network problem was fixed. The partial outage lasted 20 minutes.</p>\n<p>The WordPress Akismet plugin will automatically re-try any comments that were not correctly filtered as a result of the problem.</p>\n<p>The API is now back to normal and responding to all traffic.</p><br /> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/akismet.wordpress.com/1238/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/akismet.wordpress.com/1238/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=blog.akismet.com&blog=116920&post=1238&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:\"Mon, 10 Feb 2014 00:31:34 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s: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:88:\"WordPress.tv: Noel Tock: Less Is More – The Journey Of Happytables As A WordPress SaaS\";s:7:\"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=30743\";s:7:\"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:103:\"http://wordpress.tv/2014/02/09/noel-tock-less-is-more-the-journey-of-happytables-as-a-wordpress-saas-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:727:\"<div id=\"v-XBcrFX5x-1\" class=\"video-player\">\n</div><br /> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/30743/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/30743/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=30743&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2014/02/09/noel-tock-less-is-more-the-journey-of-happytables-as-a-wordpress-saas-2/\"><img alt=\"Noel Tock: Less Is More – The Journey Of Happytables As A WordPress SaaS\" src=\"http://videos.videopress.com/XBcrFX5x/video-3c056aa85e_std.original.jpg\" width=\"160\" height=\"120\" /></a></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sun, 09 Feb 2014 14:37: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: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: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:59:\"WordPress.tv: Marc Benzakein: There’s No Place Like Local\";s:7:\"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=30863\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"http://wordpress.tv/2014/02/09/marc-benzakein-theres-no-place-like-local/\";s: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:664:\"<div id=\"v-V30oZz2h-1\" class=\"video-player\">\n</div><br /> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/30863/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/30863/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=30863&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2014/02/09/marc-benzakein-theres-no-place-like-local/\"><img alt=\"Marc Benzakein: There’s No Place Like Local\" src=\"http://videos.videopress.com/V30oZz2h/video-59c488283b_std.original.jpg\" width=\"160\" height=\"120\" /></a></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sun, 09 Feb 2014 13:49: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: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: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:75:\"WPTavern: Trend: More People Getting Commit Access To The Core of 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=14108\";s:7:\"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/trend-more-people-getting-commit-access-to-the-core-of-wordpress?utm_source=rss&utm_medium=rss&utm_campaign=trend-more-people-getting-commit-access-to-the-core-of-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:3486:\"<p>It wasn’t long ago when I could count the number of core WordPress committers on one hand. These days, it’s hard to keep track of who does and doesn’t have access. In fact, some developers are getting temporary access for release cycles to work on specific features.</p>\n<p>I remember in 2010, community member DD32 or Dion Hulse was <a title=\"http://weblogtoolscollection.com/archives/2010/01/13/congrats-dd32/\" href=\"http://weblogtoolscollection.com/archives/2010/01/13/congrats-dd32/\">granted core commit access</a>. When Dion Hulse was hired by Automattic, the move generated discussions on whether or not it was ok for Automattic to have so many employees with core commit access versus those with no affiliation with the company. Fast forward four years later and the subject appears to have been a moot point.</p>\n<p>On the last day of 2013, Andrew Nacin <a title=\"http://make.wordpress.org/core/2013/12/31/commit-announcements-for-3-9/\" href=\"http://make.wordpress.org/core/2013/12/31/commit-announcements-for-3-9/\">outlined the number of people</a> with permanent access to commit code to the core of WordPress as well as those who have received temporary access. It now takes three hands to count all of the people who have the permanent ability to commit code.</p>\n<blockquote><p>Here’s a full list of those with permanent commit: <a href=\"http://make.wordpress.org/core/mentions/markjaquith/\">@markjaquith</a>, <a href=\"http://make.wordpress.org/core/mentions/ryan/\">@ryan</a>, <a href=\"http://make.wordpress.org/core/mentions/westi/\">@westi</a>, <a href=\"http://make.wordpress.org/core/mentions/matt/\">@matt</a>, <a href=\"http://make.wordpress.org/core/mentions/azaozz/\">@azaozz</a>, <a href=\"http://make.wordpress.org/core/mentions/dd32/\">@dd32</a>, @koopersmith, <a href=\"http://make.wordpress.org/core/mentions/duck_/\">@duck_</a>, <a href=\"http://make.wordpress.org/core/mentions/helen/\">@helen</a>, and me (<a href=\"http://make.wordpress.org/core/mentions/nacin/\">@nacin</a>); <a href=\"http://make.wordpress.org/core/mentions/lancewillett/\">@lancewillett</a> for bundled themes; <a href=\"http://make.wordpress.org/core/mentions/iammattthomas/\">@iammattthomas</a> for UI. You might have also seen commits before from <a href=\"http://make.wordpress.org/core/mentions/josephscott/\">@josephscott</a> (XML-RPC), @nbachiyski (internationalization), and <a href=\"http://make.wordpress.org/core/mentions/mdawaffe/\">@mdawaffe</a> (secret weapon for really tricky problems).</p></blockquote>\n<p>It’s great to see so many talented people involved with the core of the project. It would be awesome to see more companies like 10up find a way to <a title=\"http://wptavern.com/10up-sponsors-helen-hou-sandi-to-work-full-time-on-wordpress-core\" href=\"http://wptavern.com/10up-sponsors-helen-hou-sandi-to-work-full-time-on-wordpress-core\">sponsor an employee</a> to work on WordPress full-time. However, you don’t need to be employed to make a huge, positive impact on the project.</p>\n<h3>Qualities Of A Great Contributor</h3>\n<p>If you’re interested in becoming a core contributor, Andrew Nacin has published a fantastic post that looks at the <a title=\"http://nacin.com/2014/02/07/how-wordpress-chooses-committers/\" href=\"http://nacin.com/2014/02/07/how-wordpress-chooses-committers/\">qualities of a great WordPress contributor</a>. The post is making the rounds throughout the community and some have called it <em>required reading</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:\"Sat, 08 Feb 2014 04:04: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: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: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:75:\"WPTavern: Aquarius: A Free Responsive WordPress Theme For Personal Bloggers\";s:7:\"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=16495\";s:7:\"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/aquarius-a-free-responsive-wordpress-theme-for-personal-bloggers?utm_source=rss&utm_medium=rss&utm_campaign=aquarius-a-free-responsive-wordpress-theme-for-personal-bloggers\";s: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:2532:\"<p>Aquarius is a new free theme in the WordPress Themes Directory. The typography features the Georgia font and the home page is geared toward personal bloggers. The single post design focuses on the content with post meta data displayed unobtrusively at the bottom of the page.</p>\n<p>In addition to being fully responsive, Aquarius has two other mobile-friendly features. The slide-out sidebar is hidden from view but can be pulled out when needed. Also, its sticky top menu (fixed navigation) helps mobile visitors move around the site after scrolling far down the page.</p>\n<p><a href=\"http://wptavern.com/wp-content/uploads/2014/02/aquarius.png\" rel=\"prettyphoto[16495]\"><img src=\"http://wptavern.com/wp-content/uploads/2014/02/aquarius.png\" alt=\"aquarius\" width=\"829\" height=\"530\" class=\"aligncenter size-full wp-image-16566\" /></a></p>\n<p><a href=\"http://wordpress.org/themes/aquarius\" target=\"_blank\">Aquarius</a> is a theme that was created to highlight blog content and as such does not include an host of confusing options for customization. It does, however, pack in all the basics one might look for in a modern WordPress blogging theme, including:</p>\n<ul>\n<li>Responsive and retina-ready</li>\n<li>Supports all built-in post formats with basic styling</li>\n<li>Two widgetized areas – sidebar and footer</li>\n<li>Fixed navigation</li>\n<li>Custom navigation overlay pattern</li>\n<li>Clean Georgia-based typography</li>\n<li>Very easy to use – no theme options</li>\n</ul>\n<p>Check out a <a href=\"http://wplovin.com/themes/aquarius/\" target=\"_blank\">live demo</a> to see Aquarius in action with some sample content.</p>\n<p>This is the first theme created by the <a href=\"http://dekciw.lt/\" target=\"_blank\">individual</a> behind <a href=\"http://wplovin.com/\" target=\"_blank\">wplovin.com</a>. He/she plans to expand the collection throughout 2014, as stated on the theme’s homepage: “So, I’ve challenged myself to handcraft twelve free WordPress themes in 2014. That’s one awesome theme per month.” The planned themes will be “newbie-friendly,” easy to use and will follow WordPress’ standard theme development practices. It’s an interesting concept and we’ll be watching the site to see how it unfolds.</p>\n<p>You can check it out on <a href=\"https://github.com/wplovin\" target=\"_blank\">github</a> if you’d like to contribute. Download <a href=\"http://wordpress.org/themes/aquarius\" target=\"_blank\">Aquarius</a> for free 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:\"Fri, 07 Feb 2014 23:37: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: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: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:88:\"WPTavern: WPWeekly Episode 137 – Making A Living On ThemeForest With Jonathan Atkinson\";s:7:\"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=16429&preview_id=16429\";s:7:\"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:212:\"http://wptavern.com/wpweekly-episode-137-making-a-living-on-themeforest-with-jonathan-atkinson?utm_source=rss&utm_medium=rss&utm_campaign=wpweekly-episode-137-making-a-living-on-themeforest-with-jonathan-atkinson\";s: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:3909:\"<p>In this episode of WordPress Weekly, we were joined by Jonathan Atkinson of <a title=\"http://cr3ativ.com/\" href=\"http://cr3ativ.com/\">Cr3ative.com</a> and discussed what it’s like to <a title=\"http://themeforest.net/user/jonathan01/portfolio\" href=\"http://themeforest.net/user/jonathan01/portfolio\">make a living using ThemeForest</a>. We dived into a number of topics including:</p>\n<ul>\n<li>Using ThemeForest as a launch platform</li>\n<li>The reputation of ThemeForest</li>\n<li>Can theme authors profit while coding themes the right way</li>\n<li>How theme authors can differentiate themselves without having every theme option available</li>\n</ul>\n<p>This is a fantastic discussion that I encourage everyone to listen to. I’d especially like to hear feedback from other sellers on ThemeForest. <a title=\"http://marcuscouch.com/\" href=\"http://marcuscouch.com/\">Marcus Couch</a> helped us wrap up the show by providing his three plugin picks of the week.</p>\n<h2>Stories Discussed:</h2>\n<p><a title=\"http://wptavern.com/would-you-attend-a-woocamp\" href=\"http://wptavern.com/would-you-attend-a-woocamp\">Would You Attend A WooCamp?</a><br />\n<a title=\"http://wptavern.com/wiredtree-to-sponsor-all-north-american-wordcamps-in-2014\" href=\"http://wptavern.com/wiredtree-to-sponsor-all-north-american-wordcamps-in-2014\">WiredTree To Sponsor All North American WordCamps In 2014</a><br />\n<a title=\"http://wptavern.com/widget-customizer-approved-for-wordpress-3-9\" href=\"http://wptavern.com/widget-customizer-approved-for-wordpress-3-9\">Widget Customizer Approved For WordPress 3.9</a><br />\n<a title=\"http://wptavern.com/buddypress-2-0-development-kicks-off-today-release-set-for-mid-april\" href=\"http://wptavern.com/buddypress-2-0-development-kicks-off-today-release-set-for-mid-april\">BuddyPress 2.0 Development Kicks Off, Release Set for Mid-April</a></p>\n<h3>Plugins Picked By Marcus:</h3>\n<p><a title=\"http://wordpress.org/plugins/wp-like-system/\" href=\"http://wordpress.org/plugins/wp-like-system/\">WP Like System</a> is a rating system for WordPress posts, based on Facebook likes. Allow users like (and undo) your blog posts. A user’s likes are saved directly on your database, like a WordPress native component, which means users can give you a “like” without a Facebook account. This would be great to change the “like” term to something else, and use an alternative icon instead of the thumbs up. Overall a good plugin.</p>\n<p><a title=\"http://wordpress.org/plugins/responsive-post-preview/\" href=\"http://wordpress.org/plugins/responsive-post-preview/\">Responsive Post Preview</a> has functionality that I envision being a part of WordPress core someday. It allows you to preview a post as it would look on multiple devices. Choose mobile or tablet device size for your preview. This plugin makes it so much easier to format your responsive content to make certain that everything lines up the way you want it to.</p>\n<p><a title=\"http://wordpress.org/plugins/wp-grass/\" href=\"http://wordpress.org/plugins/wp-grass/\">WP Grass</a> – The grass grows higher and higher on the footer when you have not published any new content. Once you create something new, the grass is freshly cut and mowed down.</p>\n<h2>WPWeekly Meta:</h2>\n<p><strong>Next Episode:</strong> Friday, February 14th 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 #137:</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:\"Fri, 07 Feb 2014 22:59: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: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: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:\"Andrew Nacin: The qualities of a great WordPress contributor\";s:7:\"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=4189\";s:7:\"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://nacin.com/2014/02/07/how-wordpress-chooses-committers/\";s: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:19076:\"<p><em>“A few years ago, there were only a handful of people with commit access. Now there are 15 or so with permanent commit. How has this benefited the development of WordPress? In your opinion, is it possible to have too many people with core commit access? What advice can you give for those looking to either gain temporary or permanent access?”</em></p>\n<p>Jeff at <a href=\"http://wptavern.com/\">WP Tavern</a> asked me these questions about a month ago, and while writing a reply, I realized it’d make a great blog post. I’m going to answer these questions, but I also strongly believe you don’t need commit access (or even desire it) to be a great contributor who commands respect and influences the project. So perhaps the most important question I hope to answer here is this: <strong>What are qualities of a great open source contributor?</strong></p>\n<p>A <em>committer</em> is a contributor with the ability to modify the main WordPress repository. If you’re used to a decentralized model, this would be those with push/write access. There have been around three dozen committers to WordPress over the last decade; <a href=\"http://make.wordpress.org/core/2013/12/31/commit-announcements-for-3-9/\">almost twenty</a> currently have access. But in 2009, there were just five.</p>\n<p>The lead developers all got together for the first time at WordCamp Orlando in December 2009, right around the time I started contributing. (So no, I was not there.) At the time, there weren’t any committers who weren’t lead developers. They set a goal to expand the number of people. When they added <a href=\"http://dd32.id.au/\">Dion Hulse</a> that January, Matt <a href=\"https://make.wordpress.org/core/2010/01/12/dd32-whatcha-gonna-do/\">wrote</a>:</p>\n<blockquote><p>One of the goals for the team in 2010 is to greatly expand the number of people with direct commit access, so the emphasis is more on review and collaboration. Right now commit access is tied up with being a “lead developer,” of which we’ve always found a small group of 3-5 works best, but now we want commit to be more a recognition of trust, quality, and most importantly activity, and something that can dynamically flow in and out as their level of commitment (har har) changes and decoupled from the “lead dev” role.</p></blockquote>\n<p>I think it’s great to empower and reward contributors with commit access. When Matt and I are together, he likes to challenge me with one particular thought experiment — he’ll ask what would happen if we just gave everyone the ability to push a change to WordPress. Obviously, that wouldn’t work. But at what point does it not work? 10? 50? 100? 1000? I don’t think it’s a raw minimum or maximum number. I think it has a lot to do with our <a href=\"http://wordpress.org/about/philosophy/\">philosophies</a> and <a href=\"http://make.wordpress.org/core/components/\">how we organize ourselves</a>, for example.</p>\n<h2>How to be a great contributor</h2>\n<p>I’ve been involved in identifying and mentoring new committers for a few years now. Certainly, quality of contributions is important, but it’s only one small piece of the puzzle. Especially as contributors start to start review contributions by others, you start to see a number of other qualities. For example, what’s their judgment and temperament like? Also, you can have the most amazing judgment out there, but without strong communication skills, we’ll never know.</p>\n<p>Attention to detail is extremely important. As a committer taking on the shared responsibility of maintaining a large, sprawling codebase, you need to always be thinking about edge cases, big ramifications of seemingly small changes, backwards compatibility, etc. We’re building something pretty amazing, but at a fifth of the internet, it’s also being run at such an incredible scale that all changes are risky. We’re very cognizant of this: once we hit a release candidate, every commit needs to first be reviewed by two lead developers, even if it’s a lead developer who authored it. It helps to be honest when, for example, you know you are <em>not</em> confident. It’s important to be humble, which includes knowing when to ask for help, when you’re wrong, and when to change your mind. Along these lines, I like citing software developer <a href=\"http://ometer.com/features.html\">Havoc Pennington</a>:</p>\n<blockquote><p>In the presence of good rationale, maintainers should be willing to change their mind often.</p></blockquote>\n<p>It’s not about making mistakes, because we all make them. Being thorough and acutely perceptive just goes an incredibly long way to writing and reviewing code. (Word of the day: <a href=\"http://www.merriam-webster.com/dictionary/perspicacious\">perspicacious</a>.)</p>\n<p>We also take a lot of pride in building user-centric software. You don’t need to have amazing UX skills, but strongly believing in our <a href=\"http://wordpress.org/about/philosophy/\">core philosophies</a> goes a long way. These philosophies have roots in <a href=\"http://ometer.com/free-software-ui.html\">another of Pennington’s essays</a> on creating good user interfaces.</p>\n<p>There is a lot of history embedded in the code, and we don’t make changes without a deep understanding of the code around it. So it’s important to want to <em>learn</em> it. You need to be curious and love to learn. At the same time, the more you work with a codebase, the more frustrated you’re bound to get with it, so you need to have a lot of patience. For years I’ve not only been building a mental map of WordPress in my head, but I’ve been overlaying it with a potential roadmap.</p>\n<p>Patience when communicating with others can reveal a lot about temperament. Thousands of people represent the WordPress project in some way, so it’s important for contributors to lead by example. If a person feels he was treated poorly when he reported a bug, he’s not likely to contribute again. Karl Fogel covers an aspect of this in <a href=\"http://producingoss.com/en/committers.html#choosing-committers\"><em>Producing Open Source Software</em></a>:</p>\n<blockquote><p>Sometimes someone shows technical skill and an ability to work within the project’s formal guidelines, yet is also consistently belligerent or uncooperative in public forums. That’s a serious concern; if the person doesn’t seem to shape up over time, even in response to hints, then we won’t add him as a committer no matter how skilled he is. In a volunteer group, social skills, or the ability to “play well in the sandbox”, are as important as raw technical ability.</p></blockquote>\n<p>Committers are essentially ambassadors of the WordPress project, so it’s important that they lead by example. It doesn’t serve the project to give a leadership role to someone who is often rude, cantankerous, or overly critical. Along the same lines, knowing how to actually handle a <a href=\"http://www.youtube.com/watch?v=Q52kFL8zVoM\">“poisonous person”</a> is helpful. It’s good to reach out to contributors to talk about this kind of behavior.</p>\n<h2>How project priorities affect contributions</h2>\n<p>So what advice can I give to those looking to become a committer? It probably isn’t something I’d make a goal. I’d just work hard to make WordPress better. Regardless of your “access” you are sure to make an impact and receive respect from others.</p>\n<p>I got my start doing a lot of thankless tasks during the 2.9 and 3.0 cycles. I tested the heck out of some of the newer features like trash, and weighed in and patched bugs. When multisite started to be merged in 3.0, I would sit there for hours dissecting it and seeing what I could do to understand it (and clean it up). I <a href=\"http://irclogs.wordpress.org/chanlog.php?channel=wordpress-dev&day=2010-02-04&sort=asc#m64323\">volunteered for tasks</a> no one else wanted to work on because I knew it was important to the project. I’d look out to see which tickets were being flagged for the current release, then tackle them, one by one. It was definitely noticed that the committers could reliably turn to me during crunch times to get things done. Being responsive to the needs of the project is key.</p>\n<p>I’m not suggesting you need to work on things you don’t enjoy. You can totally make the project better while sticking to an area of interest. You could even spend time in an area that overlaps significantly with what you’re employed to do, if contributing isn’t just a hobby for you. For example, <a href=\"http://scotty-t.com/\">Scott Taylor</a> initially invested a lot of his time on making audio and video support better while he was at <a href=\"http://www.emusic.com/\">emusic</a> (though music is certainly also passion of his). A lot of contributors have stepped up to improve an API after digging deep into it for a project.</p>\n<p>Worth mentioning: Discussing with your employer about contributing is not an easy conversation. While <em>hiring</em> based solely on open source contributions <a href=\"http://ashedryden.com/blog/the-ethics-of-unpaid-labor-and-the-oss-community\">can be fraught</a>, companies that encourage their employees to contribute are helping themselves, too. Contributing not only gives back or helps to establish a voice in the community, but it’s also an enriched learning environment. I learned more in my first three months contributing than I did in three previous years of web development. It never hurts to have a subject matter expert on staff. And if you’re a consultant, you’ll be worth more to your clients.</p>\n<p>Many committers are “generalists” with a wide knowledge of WordPress, who have contributed extensively to all sorts of areas. Some are “specialists,” who work hard on a particular feature (perhaps a feature plugin), component (like multisite), or have a particular focus (like JavaScript). Becoming an expert in an area is hugely beneficial to the project. Some of our more recent process changes mean we are trying to empower more people to help “maintain” these different areas. This is great because it means more contributors will be able to make bigger differences, whether it’s triaging new or old tickets, providing feedback, helping to build out a roadmap for a particular component, or mentoring newer contributors. Not everything is exciting (like digging through old tickets on Trac, as if looking for diamonds in the rough) but your contributions will definitely be noticed.</p>\n<p>You may not see it right away when you start out as a contributor, but it’s important to place the project’s goals ahead of your own. You might have reported a dozen tickets and it’s possible you disagree with how ten of them were handled. You can and should work to fix tickets you reported, but at some point, you’ll hopefully run out of those and need to look elsewhere to get your fix. Many contributors — including every committer — have “wish lists” or “pet projects” or “pet bugs” that they still haven’t gotten to, because they realize the project isn’t ready for them, or because their solution isn’t ready for the project, or because it simply isn’t a priority.</p>\n<p>Some have said contributing to WordPress is more politics than code. I don’t think that’s true, but it can be easy to think that when you wonder why some things are moving faster than some individual ticket (of thousands). Scott Taylor recently wrote:</p>\n<blockquote><p>For a lot of people, I know the wait can be frustrating, but I would try viewing it in a larger context: we all have things we would love to go in immediately, but as responsible committers, we have to weigh the pros and cons of tossing code onto 20% of internet. I have tickets that have been open for 7 releases, but for each I either:</p>\n<ol>\n<li>don’t think the idea is fully-baked</li>\n<li>don’t have absolute confidence that the feature/code is necessary</li>\n<li>haven’t made a good enough case for it</li>\n<li>haven’t provided bulletproof evidence that it’s going to make WP better</li>\n</ol>\n</blockquote>\n<p>More from Havoc Pennington:</p>\n<blockquote><p>Please don’t assume that the key issue for accepting a feature is whether there’s a patch. It isn’t. It’s easy to write a patch. It’s hard to maintain a software project over the long term. Maintainers absolutely have to <i>understand the rationale</i> for each feature, not just rubber stamp the patches. If they don’t understand a feature they can’t maintain it over time. There will be future decisions about how the feature works, or how related features work, and the maintainer will have to make those decisions.</p></blockquote>\n<p>This is probably the least understood reason why certain tickets move slower than others: maintaining things is hard. When something is committed, that committer is taking on a lot of extra responsibility. That bug or feature isn’t necessarily the problem — it’s also the bugs, features, and even security issues that follow it. Our firm commitment to backwards compatibility also means it will be harder to take a wrong turn now and correct it later. Very simply, there are a lot of things to work out.</p>\n<p>What does describe WordPress well is that it’s more communication than code. I think this is also incredibly healthy. Communication and collaboration are the lifeblood for an open source project.</p>\n<p>As Matt cited in 2010, activity for committers is important, as you need to be following development discussions and an often fast-moving codebase. A lot of contributors don’t venture beyond the bug tracker; you’ll want to pay close attention to the <a href=\"http://make.wordpress.org/core/\">development blog</a> and be active in IRC. Some of our committers have gotten less active over time, and that’s also okay, because we know we can trust their judgment. When they wish to commit something, <a href=\"http://producingoss.com/en/committers.html#dormant-committers\">they’ll know they’re behind</a> and will first need to get caught up.</p>\n<p>So ask yourself how you want to contribute, and what kind of impact you want to have. Some of our best contributors don’t have commit access, including a few who are significantly smarter than me. They either don’t want the responsibility of making decisions as a maintainer, or don’t have the time for it — and that’s totally okay!</p>\n<h2>How the WordPress lead developers choose committers</h2>\n<p>In the interest of transparency and <a href=\"http://producingoss.com/en/committers.html\">avoiding mystery</a>, let me explain the specifics of the decision-making process. For a few years now, we’ve been granting commit access for individual release cycles at first, on a temporary or “guest” basis. It’s often because they’re working on a particular feature, though it of course can double as a trial period. Sometimes a contributor is given commit access to a particular area or focus. (We use a <a href=\"http://producingoss.com/en/vc.html#vc-authz\">relaxed approach</a> for partial or “component” commit.)</p>\n<p>The lead developers keep pretty close tabs on what’s going on, and we always have people in mind for commit access. Typically, someone catches our eye and we’ll privately mention it to each other. This can happen very early on — sometimes, someone’s first bug report or patch just knocks your socks off. If you do good work, you will get noticed. A potential committer will often end up working on projects one-on-one with an existing committer. These projects end up being great opportunities to mentor that contributor, see what they’re interested in, get a feel for how they think, and so on. We make it a point to request feedback from other core developers and guest committers, what they think of so-and-so.</p>\n<p>The lead developers discuss commit access over email before each release cycle. We’ll review current guest committers and proposed new committers. We mention contributors we’re keeping an eye on. Nothing is rigid about this process. There’s no formal “voting” procedures; there’s never been anything short of a consensus. A proposal can come at any time, not just at the start of a cycle (that’s just when we check in on guest committers). A few times we’ve essentially agreed ahead of time to grant commit access once conditions are met. Some examples: they’ll be ready in another month or two; we want a documentation committer, so let’s see who steps up after we start this initiative; or let’s try to get the main developer of this feature plugin commit access if the merge goes well. (Building features as plugins first has perhaps lessened the need for granting someone commit access for a cycle, but I think it’s too early to tell.)</p>\n<p>Once a committer accepts, I usually go over a few guidelines. They go something like this:</p>\n<ul>\n<li>For your first half-dozen commits or so, run them by me or another lead (either in IRC or privately) just while you get the hang of things.</li>\n<li>The first sentence of your commit message gets used as the subject for the wp-svn mailing list. Add more details after that and don’t forget props or tickets.</li>\n<li>Try to be on IRC when you’re committing; for the occasional instant feedback.</li>\n<li>Aim to wait for some kind of consensus on the big or controversial stuff. Even Ryan and I, for example, rarely move on anything hefty without the other glancing at it. On the other hand, don’t let us slow you down — we are known bottlenecks.</li>\n<li>Ryan and I miss things weekly and we have 12,000 commits between us. Code can always be reverted. <a href=\"http://blog.ftwr.co.uk/\">Peter</a> will revert you at least once; wear it as a badge of honor.</li>\n</ul>\n<p>Often, the final trigger for commit access is <em>I’m getting tired of committing all of your patches, because I never need to do anything to them.</em> That’s what Ryan Boren told me on February 8, 2010, when he asked if I wanted commit, four years ago tomorrow. I’ve been really lucky to have had the pleasure of passing that sentiment on.</p>\n<p class=\"share-sfc-stc\"><a href=\"http://twitter.com/share?url=http%3A%2F%2Fwp.me%2FpQEdq-15z&count=horizontal&related=nacin&text=The%20qualities%20of%20a%20great%20WordPress%20contributor\" 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:\"Fri, 07 Feb 2014 19:41: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: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: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: Joost de Valk Author Of The WordPress SEO Plugin Acquires WPForce.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:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wptavern.com/?p=16537\";s:7:\"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/joost-de-valk-author-of-the-wordpress-seo-plugin-acquires-wpforce-com?utm_source=rss&utm_medium=rss&utm_campaign=joost-de-valk-author-of-the-wordpress-seo-plugin-acquires-wpforce-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:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2273:\"<p>Joost de Valk <a title=\"https://yoast.com/yoast-acquires-wpforce-com/\" href=\"https://yoast.com/yoast-acquires-wpforce-com/\">has announced</a> he’s acquired <a title=\"http://wpforce.com/\" href=\"http://wpforce.com/\">WPForce.com</a> from Jonathan Dingman for an undisclosed amount. WPForce was created in 2011 as an outlet for Jonathan to share opinions and news with the WordPress community. Along with the acquisition, Joost shared details of the process he had to go through to transfer the site into his possession.</p>\n<p><a href=\"http://wptavern.com/wp-content/uploads/2013/10/wpforcelogo.jpg\" rel=\"prettyphoto[16537]\"><img class=\"aligncenter size-full wp-image-10183\" alt=\"WPForce Logo\" src=\"http://wptavern.com/wp-content/uploads/2013/10/wpforcelogo.jpg\" width=\"372\" height=\"77\" /></a></p>\n<h3>This Isn’t The First Acquisition For Yoast</h3>\n<p>This is the second WordPress community asset I’ve seen acquired by Joost De Valk. The first was <a title=\"http://wp-community.org/\" href=\"http://wp-community.org/\">WP-Community.org</a>, <a title=\"http://wptavern.com/good-luck-charles-stricklin\" href=\"http://wptavern.com/good-luck-charles-stricklin\">the previous home</a> of The WordPress Community podcast in 2009. At the time, Joost was producing a podcast called <a title=\"http://www2.webmasterradio.fm/press-this/\" href=\"http://www2.webmasterradio.fm/press-this/\">PressThis</a> with co-host Frederick Townes, author of the W3 Total Cache plugin. The two podcasts were merged but soon after, the podcast went silent.</p>\n<h3>The Future Of WPForce</h3>\n<p>Yoast states they will be toying with the old content of WPForce and the established business directory on the site. He hints that we’ll soon find out what their plans are. In a <a title=\"https://yoast.com/yoast-acquires-wpforce-com/#comment-193010\" href=\"https://yoast.com/yoast-acquires-wpforce-com/#comment-193010\">follow-up comment,</a> Yoast mentions the site will be a great testbed for upcoming themes they are developing.</p>\n<p>Are there more WordPress site acquisitions in the future? In a comment published on the acquisition, Yoast said “<em>We’d be interested in buying just about <em>any</em> good WordPress site or product that fits into what we do</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:\"Fri, 07 Feb 2014 19:19: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: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:93:\"WordPress.tv: Srdjan Jocic: Going Global – Build And Manage WordPress Multilingual Websites\";s:7:\"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=30747\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:106:\"http://wordpress.tv/2014/02/07/srdjan-jocic-going-global-build-and-manage-wordpress-multilingual-websites/\";s: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:731:\"<div id=\"v-XFxQ5LY9-1\" class=\"video-player\">\n</div><br /> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/30747/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/30747/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=30747&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2014/02/07/srdjan-jocic-going-global-build-and-manage-wordpress-multilingual-websites/\"><img alt=\"Srdjan Jocic: Going Global – Build And Manage WordPress Multilingual Websites\" src=\"http://videos.videopress.com/XFxQ5LY9/video-3c59c7b506_std.original.jpg\" width=\"160\" height=\"120\" /></a></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 07 Feb 2014 19:11: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: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:30;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:95:\"WPTavern: Piklist WordPress Development Framework Rebrands, Plans to Launch Commercial Products\";s:7:\"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=16528\";s:7:\"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:232:\"http://wptavern.com/piklist-wordpress-development-framework-rebrands-plans-to-launch-commercial-products?utm_source=rss&utm_medium=rss&utm_campaign=piklist-wordpress-development-framework-rebrands-plans-to-launch-commercial-products\";s: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:4018:\"<p><a href=\"http://wptavern.com/wp-content/uploads/2014/02/piklist.jpg\" rel=\"prettyphoto[16528]\"><img src=\"http://wptavern.com/wp-content/uploads/2014/02/piklist-271x300.jpg\" alt=\"piklist\" width=\"271\" height=\"300\" class=\"alignright size-medium wp-image-16539\" /></a>The <a href=\"http://piklist.com/\" target=\"_blank\">Piklist</a> rapid development framework for WordPress has rebranded and relaunched its website with the 0.9.0 release. The framework helps developers to quickly build things like fields for settings pages, widgets, custom post types, custom taxonomies and user profiles with minimal code.</p>\n<p>The most recent <a href=\"http://piklist.com/2014/02/04/new-piklist-new-piklist-com/\" target=\"_blank\">0.9.0 release</a> includes the ability to easily create your own list tables, add post-to-post relationships, group users by taxonomy and much more. Piklist now automatically creates and supports multiple user roles, a feature that WordPress currently supports without a UI.</p>\n<h3>Piklist Plans to Add Commercial Plugins and Support Packages</h3>\n<p>The project is maintained by two main contributors, Steve Bruner and Kevin Miller. I spoke to Bruner about Piklist rebranding. He said the new logo and site design are part of a new era and symbolize their mission for the future. “This year we plan on releasing other plugins that will be built on our framework,” he said. “Each Piklist plugin will connect, enhance and collaborate with other Piklist plugins.”</p>\n<p>With Piklist’s continual improvement and plans to expand into plugins, it’s clear that this framework has found a solid user base. I asked Bruner if he thinks every WordPress developer needs a framework and why many of them are turning to Piklist. “<span class=\"pullquote alignleft\">We believe that Piklist is to WordPress what Rails is to Ruby</span>,” he said. “Not every developer is going to use Piklist, but the ones who do are going to finish projects quicker and never look back. It simplifies many of the more difficult tasks in WordPress and adds functionality not presently common in WordPress core. <strong>Anything you can build with WordPress can be done in less time with Piklist.</strong> It’s that simple.”</p>\n<p>Bruner and Miller have been supporting Piklist for the past two years without monetizing it in any way. The plan to release commercial plugins and support packages will help to fund the future of the framework. “We’ve helped businesses achieve higher levels of productivity by using Piklist,” Bruner said. “Their donations have funded Piklist until now. We hope that our reputation for quality and ease-of-use will convince users that they can’t do with out Piklist, and the (soon-to-be-released) Piklist family of plugins.”</p>\n<h3>The Future of Piklist</h3>\n<p>In the meantime, the team at Piklist is locking down features for the upcoming 1.0 version. Their next major release will be plugins based on the framework and they have more products in the pipeline that Bruner believes “will be as revolutionary as Piklist itself.” A drag-and-drop field and form builder is in the works. The team also plans to develop some out-of-the-box applications, such as a contact manager and order management.</p>\n<p>All of the <a href=\"http://piklist.com/user-guide/\" target=\"_blank\">documentation</a> and screenshots have been updated for 0.9.0 and tutorials have been added for the new features. Piklist is available for <a href=\"http://wordpress.org/plugins/piklist/\" target=\"_blank\">download</a> on WordPress.org. If you want to learn more about the framework, check out <a href=\"http://wordpress.tv/2012/09/04/steve-bruner-and-kevin-miller-building-powerful-websites-and-web-applications-with-piklist/\" target=\"_blank\">Building Powerful Websites and Web Applications with Piklist</a> on WordPress.tv.</p>\n<p>Have you tried Piklist? Do you use a development framework to build your themes and plugins?</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, 07 Feb 2014 18:52:50 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s: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:67:\"WordPress.tv: Konstantin Dankov: This Doesn’t Look Like 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=30749\";s:7:\"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:81:\"http://wordpress.tv/2014/02/07/konstantin-dankov-this-doesnt-look-like-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:680:\"<div id=\"v-MaUOj3OM-1\" class=\"video-player\">\n</div><br /> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/30749/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/30749/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=30749&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2014/02/07/konstantin-dankov-this-doesnt-look-like-wordpress/\"><img alt=\"Konstantin Dankov: This Doesn’t Look Like WordPress\" src=\"http://videos.videopress.com/MaUOj3OM/video-0031daf866_std.original.jpg\" width=\"160\" height=\"120\" /></a></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 07 Feb 2014 16:30:55 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s: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: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:69:\"WPTavern: Theme Review Guideline Revisions Proposed For 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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wptavern.com/?p=16519\";s:7:\"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:182:\"http://wptavern.com/theme-review-guideline-revisions-proposed-for-wordpress-3-9?utm_source=rss&utm_medium=rss&utm_campaign=theme-review-guideline-revisions-proposed-for-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:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1528:\"<p>Chip Bennett has outlined a list of <a title=\"http://make.wordpress.org/themes/2014/02/07/wordpress-3-9-guidelines-revisions-proposal/\" href=\"http://make.wordpress.org/themes/2014/02/07/wordpress-3-9-guidelines-revisions-proposal/\">proposed changes</a> and revisions to the WordPress Theme Review guidelines. The changes are listed in two sections, <strong>required</strong> and <strong>recommended</strong>. The required changes would take effect immediately while those that are recommended could become guidelines in the future. Some of the recommendations include:</p>\n<ul>\n<li><strong>Bundled Plugins:</strong> Themes must not bundle Plugins.</li>\n<li><strong>Arbitrary Header/Footer Scripts:</strong> Themes must not provide Theme options for arbitrary header/footer scripts.</li>\n<li><strong>License:</strong> Themes are required to document in the Theme readme file the copyright/license attribution for all bundled resources.</li>\n<li><strong>Theme Credit Links:</strong> ThemeURI and AuthorURI, if both are used, must be from distinctly separate sites.</li>\n</ul>\n<p>The guidelines and recommendations are currently in the discussion phase. If you’re a theme author and have additional recommendations or guideline please provide your <a title=\"http://make.wordpress.org/themes/2014/02/07/wordpress-3-9-guidelines-revisions-proposal/\" href=\"http://make.wordpress.org/themes/2014/02/07/wordpress-3-9-guidelines-revisions-proposal/\">input on the post</a>. There’s already a lively discussion underway.</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, 07 Feb 2014 16:04:37 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s: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: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:75:\"WPTavern: New WordPress Plugin Aims To Fight Back Against Mass Surveillance\";s:7:\"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=16452\";s:7:\"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:194:\"http://wptavern.com/new-wordpress-plugin-aims-to-fight-back-against-mass-surveillance?utm_source=rss&utm_medium=rss&utm_campaign=new-wordpress-plugin-aims-to-fight-back-against-mass-surveillance\";s: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:3304:\"<p><a href=\"http://wptavern.com/wp-content/uploads/2014/02/mass-surveillance.jpg\" rel=\"prettyphoto[16452]\"><img src=\"http://wptavern.com/wp-content/uploads/2014/02/mass-surveillance.jpg\" alt=\"mass-surveillance\" width=\"800\" height=\"299\" class=\"aligncenter size-full wp-image-16493\" /></a></p>\n<p>On February 11th, 2014, internet users around the world plan to fight back in protest against mass surveillance. The setup is similar to the protest that was held in January 2012, which helped to defeat SOPA and PIPA censorship legislation. The February 11th event is called <a href=\"https://thedaywefightback.org/\" target=\"_blank\">The Day We Fight Back</a> and the mission is:</p>\n<blockquote><p>Together we will push back against powers that seek to observe, collect, and analyze our every digital action. Together, we will make it clear that such behavior is not compatible with democratic governance.</p></blockquote>\n<p>Websites can participate in the protest using the embeddable banner, which changes based on the the nationality of the visitors and includes different calls to action. Here’s what the banner looks like for visitors in the United States:</p>\n<p><a href=\"http://wptavern.com/wp-content/uploads/2014/02/tdwfb-banner.png\" rel=\"prettyphoto[16452]\"><img src=\"http://wptavern.com/wp-content/uploads/2014/02/tdwfb-banner.png\" alt=\"tdwfb-banner\" width=\"1138\" height=\"349\" class=\"aligncenter size-full wp-image-16502\" /></a></p>\n<p>The banner makes it easy for your visitors to contact their legislators to ask that they oppose the<a href=\"https://www.aclu.org/blog/national-security-technology-and-liberty/sen-dianne-feinsteins-nsa-reforms-bad-privacy-bad\" target=\"_blank\"> FISA Improvements Act</a>, support the <a href=\"https://www.aclu.org/blog/national-security/usa-freedom-act-real-spying-reform\" target=\"_blank\">USA Freedom Act</a>, and enact protections for non-Americans.</p>\n<h3>WordPress Plugin For The Day We Fight Back</h3>\n<p>If you’re using WordPress and you want the banner on your site, there’s a plugin you can install to join the protest. Ryan Fugate’s <a href=\"http://wordpress.org/plugins/tdwfb/\" target=\"_blank\">The Day We Fight Back WordPress plugin</a> is based on <a href=\"https://github.com/tfrce/thedaywefightback.js\" target=\"_blank\">thedaywefightback.js</a>. It will automatically display the banner at midnight on 2/11 for 24 hours. If you want to display the banner now, there’s an option in the settings for that, too.</p>\n<p><a href=\"http://wptavern.com/wp-content/uploads/2014/02/tdwfb-settings.jpg\" rel=\"prettyphoto[16452]\"><img src=\"http://wptavern.com/wp-content/uploads/2014/02/tdwfb-settings.jpg\" alt=\"tdwfb-settings\" width=\"769\" height=\"335\" class=\"aligncenter size-full wp-image-16506\" /></a></p>\n<p>When asked why he took the time to create the plugin, Fugate replied, “<strong>WordPress sites make up a large percentage of the internet and can have a powerful impact. Plugins make it easy to allow voices to be heard.”</strong> Check out a <a href=\"http://modemlooper.me/\" target=\"_blank\">live demo</a> of the banner in action on his site. If you want to join the protest, download <a href=\"http://wordpress.org/plugins/tdwfb/\" target=\"_blank\">The Day We Fight Back WordPress plugin</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:\"Fri, 07 Feb 2014 01:09: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: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:88:\"WPTavern: WordPress.org Plugin Authors Receive Suspicious Requests For Repository Access\";s:7:\"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=16458\";s:7:\"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:220:\"http://wptavern.com/wordpress-org-plugin-authors-receive-suspicious-requests-for-repository-access?utm_source=rss&utm_medium=rss&utm_campaign=wordpress-org-plugin-authors-receive-suspicious-requests-for-repository-access\";s: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:6446:\"<p>A suspicious request has been circulating via email, soliciting WordPress.org plugin authors to give a third party write access to their repositories. The originator of these requests goes by the username <a href=\"https://wordpress.org/support/profile/bestweblayout\" target=\"_blank\">bestweblayout</a> on WordPress.org and operates the <a href=\"http://bestweblayout.com/\" target=\"_blank\">bestweblayout.com</a> domain.</p>\n<p>The issue was first <a href=\"https://wordpress.org/support/topic/a-strange-offer-from-third-party-to-give-them-repository-access\" target=\"_blank\">reported</a> by WordPress user <a href=\"https://wordpress.org/support/profile/fractalizer\" target=\"_blank\">FractalizeR</a>, who posted the contents of the email:</p>\n<blockquote><p>“Hello Vladislav.</p>\n<p>My name is Grigoriy and I am a representative of BestWebLayout. Our team specializes in WordPress development services.</p>\n<p>We saw that your WP-SynHighlight plugin was updated more than 4 years ago. We would like to offer you our assistance and participation in further development and maintenance of this plugin. In other words, we would like to get your permission and access to plugin repository on wordpress.org. In such way we will become the plugin contributors along with you and will be able to control testing and development of this tool within the WordPress community.</p>\n<p>Our activity will include plugin updates, compatibility testing, support, etc.</p>\n<p>We have already talked to WordPress support team (they said that WordPress is open-source community and such contribution is welcome), who asked us to contact you with such a request. Please let me know if you are ready to accept our offer. Feel free to contact me with any questions.</p>\n<p>Thanks!</p>\n<p>Grigoriy”</p></blockquote>\n<p>FractalizeR’s initial reaction to the email was one of suspicion. “The offer itself is a little strange,” he said. <span class=\"pullquote alignleft\">“If I want to contribute, I donate code. I don’t ask write access to the repository.”</span></p>\n<p><a href=\"https://wordpress.org/support/profile/codix\" target=\"_blank\">@Codix</a>, another recipient of the email, decided to ask for contributions first. “I got the same offer and I suggested they should submit a patch to one issue before I can grant them access,” he said. “Still they insist they need to be listed as a contributor.”</p>\n<p>A handful of other plugin developers reported on the same thread that they have received the same email, which they forwarded to plugins@wordpress.org. Mika Epstein, a member of the WordPress.org plugin review team, confirmed that they did not ask bestweblayout to get in touch with the authors.</p>\n<p>In the meantime, bestweblayout <a href=\"https://wordpress.org/support/topic/a-strange-offer-from-third-party-to-give-them-repository-access?replies=16#post-5173167\" target=\"_blank\">posted</a> on the thread in defense of the email solicitations:</p>\n<blockquote><p>We aren’t involved in any illegal affairs. Earlier on forum there was a question about the possibility of cooperation with the authors of neglected plugins. And it said that it is not a problem to cooperate with the authors. So we decided to help WordPress community with these plugins. We only collect information about plugins, which were simply neglected by authors and have not been updated with the latest changes of WordPress. Some of the authors refused, but some of them agreed. Sorry that it looks like spam. </p></blockquote>\n<p>Those who have reported having received the requests are uniformly suspicious of the technique that is being employed for gaining write access to their repositories. Epstein addressed bestweblayouts to explain why their requests are not being well-received. “It looks like spam because you’re sending this out to a LOT of people, and as of yet, haven’t done anything with the plugins,” she said. <span class=\"pullquote alignleft\">“Which is, sadly, a tactic of some spammers. They’ll take over legit plugins and turn them into guideline violation spam fests.” </span></p>\n<p>WordPress plugin developer Jeff Sayre was another recipient of the email and he <a href=\"https://wordpress.org/support/topic/a-strange-offer-from-third-party-to-give-them-repository-access?replies=16#post-5201320\" target=\"_blank\">cites several issues with the approach</a> that indicate it may be a potential threat. The fact that anyone is free to fork a plugin and develop their own version was the first indication. Developers can let the original author know, as a courtesy, but permission is not required.</p>\n<p>Secondly, the “approval” implied in the email request is suspect. “The fact that the email makes it appear that they have “approval” from the WP repo team to contact me is another big, red flag,” Sayre said. “No one requires approval from anyone at WP to contact a plugin author. I receive emails all the time about updating my plugins.” Despite Epstein having made it clear that approval has not been given, the folks at bestweblayout continue to circulate the same email without modification.</p>\n<h3>A Warning to All WordPress.org Plugin Authors</h3>\n<p>Sayre has some sage words of warning to anyone who may receive this request or something similar. In case the offer of free updates to your plugin sounded like a dream come true to you, it’s a good idea to consider what is at stake. He cautions all concerned:</p>\n<blockquote><p>Providing such credentials to an unknown, therefore untrusted party, is never wise as it could be a significant security threat. Malicious code could be entered into your plugin and you, in effect, would be complicit in its insertion. If you do not know someone, it is never wise to team up with them without fully vetting their integrity and the quality of their work.</p></blockquote>\n<p>Obviously, you should be very wary of giving anyone write access to your plugin repositories. The motivation for the request could be harmless or it could be a ploy to gain access to WordPress.org plugins in order to unleash spamagaddon. When it comes to collaborating on code, it’s best to work only with developers you trust. If you’re not interested in collaborating, the safest route would be to suggest that they fork your work and credit 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, 06 Feb 2014 21:16: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: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:62:\"Gravatar: Manage Multiple Identities with One Gravatar Account\";s:7:\"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.gravatar.com/?p=481\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"http://blog.gravatar.com/2014/02/06/multiple-identities/\";s: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:2472:\"<p>Did you know that you can have multiple email addresses associated with your Gravatar account? And that each email address can use a different image? Managing multiple email addresses with Gravatar is a snap.</p>\n<p>Many of us have multiple email accounts — for work, school, our personal lives, our blogs, online groups we belong to, and more. Many of us also use different images of ourselves on different websites. You might not want your professional image to be the same as what you’d use on Twitter or Facebook.</p>\n<p>Gravatar can help you manage these identities by allowing you to use associate a different image with each email address you’ve connected to Gravatar. To get started, sign in to Gravatar. You’ll see all the email addresses associated with your account, and all the images you’ve uploaded:</p>\n<p><a href=\"http://gravatar.files.wordpress.com/2014/02/gravatar.png\"><img class=\"aligncenter size-large wp-image-484\" alt=\"gravatar\" src=\"http://gravatar.files.wordpress.com/2014/02/gravatar.png?w=660&h=363\" width=\"660\" height=\"363\" /></a></p>\n<p>Pick the email address you’d like to edit, and select an image (or add a new one using the blue link at the top). We’ll double-check with you to make sure you want to make this change:</p>\n<p><a href=\"http://gravatar.files.wordpress.com/2014/02/gravatar-confirm-copy.png\"><img class=\"aligncenter size-large wp-image-483\" alt=\"gravatar confirm copy\" src=\"http://gravatar.files.wordpress.com/2014/02/gravatar-confirm-copy.png?w=660&h=369\" width=\"660\" height=\"369\" /></a></p>\n<p>And there you go!</p>\n<p><a href=\"http://gravatar.files.wordpress.com/2014/02/gravatar-climax.png\"><img class=\"aligncenter size-large wp-image-482\" alt=\"gravatar climax\" src=\"http://gravatar.files.wordpress.com/2014/02/gravatar-climax.png?w=660&h=367\" width=\"660\" height=\"367\" /></a></p>\n<p>Make sure you use this email address when participating online, and the appropriate Gravatar will appear alongside. Now, your online identities are neatly separated, and you’re presenting yourself exactly as you prefer.</p><br /> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/gravatar.wordpress.com/481/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/gravatar.wordpress.com/481/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=blog.gravatar.com&blog=1886259&post=481&subd=gravatar&ref=&feed=1\" width=\"1\" height=\"1\" />\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 06 Feb 2014 21:12:50 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"michelle w.\";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:88:\"WPTavern: Fine-Grained WordPress Trac Notifications Help Core Contributors to Specialize\";s:7:\"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=16340\";s:7:\"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:220:\"http://wptavern.com/fine-grained-wordpress-trac-notifications-help-core-contributors-to-specialize?utm_source=rss&utm_medium=rss&utm_campaign=fine-grained-wordpress-trac-notifications-help-core-contributors-to-specialize\";s: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:2759:\"<p>If you visit <a href=\"http://make.wordpress.org/core/\" target=\"_blank\">make.wordpress.org/core</a>, you’ll find that there’s a new greeting in place. This addition is part of Andrew Nacin’s most recent round of <a href=\"http://make.wordpress.org/core/2014/02/05/fine-grained-trac-notifications/\" target=\"_blank\">updates</a> for WordPress contributors. The greeting serves to introduce visitors to the development blog and weekly meetings, and also helps to quickly funnel bug filing and contributions to the appropriate screens.</p>\n<h4>Simplified Ticket Form</h4>\n<p>The ticket creation form has been simplified and cleaned up. The objective, according to Nacin, was to make the ticket creation process “much less intimidating.”</p>\n<p><a href=\"http://wptavern.com/wp-content/uploads/2014/02/simplified-ticket-form.jpg\" rel=\"prettyphoto[16340]\"><img src=\"http://wptavern.com/wp-content/uploads/2014/02/simplified-ticket-form.jpg\" alt=\"simplified-ticket-form\" width=\"747\" height=\"431\" class=\"aligncenter size-full wp-image-16448\" /></a></p>\n<h4>Fine-Grained WordPress Trac Notifications</h4>\n<p>One of the most exciting additions is the new notifications preferences. Visit your <a href=\"https://make.wordpress.org/core/notifications/\" target=\"_blank\">trac notifications page</a> and you can now subscribe to activity that you’re interested in, based on component, focus or milestone. There’s also an option to subscribe to new tickets as they come in. However, in order to receive comments on the ticket you will need to star it.</p>\n<p><a href=\"http://wptavern.com/wp-content/uploads/2014/02/focuses.jpg\" rel=\"prettyphoto[16340]\"><img src=\"http://wptavern.com/wp-content/uploads/2014/02/focuses.jpg\" alt=\"focuses\" width=\"729\" height=\"635\" class=\"aligncenter size-full wp-image-16455\" /></a></p>\n<p>These new notification preferences allow contributors to specialize in their areas of interest without being overwhelmed by irrelevant notifications. When you subscribe to a component, you’ll show up on that particular <a href=\"http://make.wordpress.org/core/2014/02/05/fine-grained-trac-notifications/make.wordpress.org/core/components/\" target=\"_blank\">component page</a> as one of the contributors. This information may possibly make its way into WordPress.org profiles, as Nacin hinted in the comments, “And in the future, there’s no reason this can’t also be a part of your WP.org profile.”</p>\n<p>This round of updates will be the last of the shiny new trac toys for awhile. Nacin says that he doesn’t have anything else planned at the moment. Thanks to his efforts, life is much easier for existing WordPress contributors and more inviting for those who are new to the table.</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, 06 Feb 2014 19:30: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: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:82:\"WPTavern: WordPress Service Provider BruteProtect Secures Funding, Forms Parka LLC\";s:7:\"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=15557\";s:7:\"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/wordpress-service-provider-bruteprotect-secures-funding-forms-parka-llc?utm_source=rss&utm_medium=rss&utm_campaign=wordpress-service-provider-bruteprotect-secures-funding-forms-parka-llc\";s: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:4721:\"<p><a title=\"http://bruteprotect.com/\" href=\"http://bruteprotect.com/\">BruteProtect</a>, the cloud-powered brute force attack prevention service that <a title=\"http://wptavern.com/bruteprotect-protecting-against-brute-force-attacks\" href=\"http://wptavern.com/bruteprotect-protecting-against-brute-force-attacks\">we wrote about back in July of 2013</a> has <a href=\"http://bruteprotect.com/hotchkiss-consulting-group-announces-parka-llc-angel-investment/\" title=\"http://bruteprotect.com/hotchkiss-consulting-group-announces-parka-llc-angel-investment/\">successfully closed a seed round of venture capital funding</a> with a private angel investor in California. <a title=\"http://jes.se.com/\" href=\"http://jes.se.com/\">Jesse Friedman</a> who previously worked for <a title=\"http://www.astonish.com/\" href=\"http://www.astonish.com/\">Astonish</a>, has been hired on as the director of innovation. BruteProtect is looking to hire two more developers and currently has major updates scheduled to occur in April.</p>\n<div id=\"attachment_15582\" class=\"wp-caption aligncenter\"><a href=\"http://wptavern.com/wp-content/uploads/2014/01/BruteProtectFunding.jpg\" rel=\"prettyphoto[15557]\"><img src=\"http://wptavern.com/wp-content/uploads/2014/01/BruteProtectFunding.jpg\" alt=\"BruteProtect Funding Image\" width=\"638\" height=\"200\" class=\"size-full wp-image-15582\" /></a><p class=\"wp-caption-text\">photo credit: <a href=\"http://www.flickr.com/photos/tracy_olson/61056391/\">Tracy O</a> – <a href=\"http://creativecommons.org/licenses/by-sa/2.0/\">cc</a></p></div>\n<h3>What BruteProtect Plans To Do With The Funding</h3>\n<p>When I asked Sam Hotchkiss what he plans on doing with the funding, he told me that they want to hire additional personnel to focus on fulfilling the vision he has for the software. What once was a side project is now the main focus of a dedicated team. I found it surprising that something as simple as BruteProtect would be successful to the point of receiving venture capital funding. Sam however, was not surprised.</p>\n<blockquote><p>I’m not at all surprised at the success we’ve had with BruteProtect so far. It’s a drop-dead simple to install plugin that provides the most comprehensive solution to the growing problem of distributed brute force attacks. It’s pretty incredible what a large problem this is. We’ve identified over 2 million infected machines that are a part of a distributed botnet and have blocked over 41 million attacks now. That number is growing by over 1 million a day on average at this point.</p></blockquote>\n<h3>BruteProtect Is Just The Beginning</h3>\n<p>BruteProtect is sort of like Akismet, but for the WordPress login page. It tracks failed logins across a large number of WordPress sites, then analyzes that data to find patterns and identify attack bots. The more sites using the service, the more data they have to work with. Sam believes that BruteProtect is just the tip of the iceberg. To that end, Jesse and Sam have created a new parent company called <strong><a href=\"http://GetParka.com\" title=\"http://GetParka.com\">Parka, LLC</a></strong> with the goal to allow websites to work together to solve problems.</p>\n<h3>WordCamp Road Trip</h3>\n<p>Sam and his wife have purchased a camper and will be traveling the United States of America stopping at numerous WordCamps along the way. Check out the license plate that will be on the bumper of their new camper.</p>\n<p><a href=\"http://wptavern.com/wp-content/uploads/2014/01/WordCamperLicensePlate.jpg\" rel=\"prettyphoto[15557]\"><img class=\"aligncenter size-full wp-image-15580\" alt=\"WordCamp License Plate\" src=\"http://wptavern.com/wp-content/uploads/2014/01/WordCamperLicensePlate.jpg\" width=\"300\" height=\"225\" /></a></p>\n<p>Here is a tentative list of upcoming WordCamps that Sam and his wife are planning to visit.</p>\n<ul>\n<li>March 1, 2014: WordCamp St. Louis</li>\n<li>March 15, 2014: WordCamp Atlanta</li>\n<li>April 10, 2014: Albuquerque WordPress Meetup</li>\n<li>April 26-27, 2014: WordCamp Minneapolis</li>\n<li>May 2-3, 2014: WordCamp North Canton</li>\n<li>May 10, 2014: WordCamp Connecticut</li>\n<li>May 17, 2014: WordCamp Charleston</li>\n<li>May 30 – June 1, 2014: WordCamp Asheville</li>\n<li>June 13-15, 2014: WordCamp Chicago</li>\n<li>October 25-26, 2014: WordCamp San Francisco</li>\n</ul>\n<p>You can follow their adventure via <a title=\"http://wordcamper.com/\" href=\"http://wordcamper.com/\">WordCamper.com.</a> While the domain currently violates the WordCamp trademark, Sam says they are in the process of changing the domain and will redirect it to its new home. If you see their license plate while driving, be sure to give them a friendly wave!</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, 06 Feb 2014 18:17: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:\"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: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:59:\"WPTavern: WordPress Theme Trends To Keep An Eye On For 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=16267\";s:7:\"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:180:\"http://wptavern.com/9-wordpress-theme-design-trends-to-keep-an-eye-on-for-2014?utm_source=rss&utm_medium=rss&utm_campaign=9-wordpress-theme-design-trends-to-keep-an-eye-on-for-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:2885:\"<p><a href=\"http://wptavern.com/wp-content/uploads/2014/02/wpkubelogo2.jpg\" rel=\"prettyphoto[16267]\"><img class=\"alignright size-full wp-image-16417\" alt=\"WPKube.com Logo\" src=\"http://wptavern.com/wp-content/uploads/2014/02/wpkubelogo2.jpg\" width=\"165\" height=\"61\" /></a>Prospecting theme designers should take note of the <a title=\"http://www.wpkube.com/9-wordpress-design-trends-look-2014/\" href=\"http://www.wpkube.com/9-wordpress-design-trends-look-2014/\">nine WordPress design trends</a> outlined by Rachel Adnyana of WPKube.com. Many of the trends on her list are carry overs from last year. Responsive is definitely not a trend but an expectation. Websites that are not responsive are at a serious disadvantage considering at least <a title=\"http://mashable.com/2013/08/20/mobile-web-traffic/\" href=\"http://mashable.com/2013/08/20/mobile-web-traffic/\">17.4% of web traffic comes through mobile</a> according to a study by <a title=\"http://www.statista.com/\" href=\"http://www.statista.com/\">Statista</a> in 2013.</p>\n<h3>Fullscreen Background Images</h3>\n<p>One particular trend that I don’t understand is full-screen background images and videos. Where are people finding gigantic videos and images to use with these themes? Granted, if designed properly with the right images, these types of sites look great. <a title=\"http://graphpaperpress.com/themes/wall-street/#demo-full\" href=\"http://graphpaperpress.com/themes/wall-street/#demo-full\">Wall Street</a> by Graph Paper Press is a great example of a design that looks good using fullscreen images. I’m just unsure of their practicality.</p>\n<div id=\"attachment_16414\" class=\"wp-caption aligncenter\"><a href=\"http://wptavern.com/wp-content/uploads/2014/02/WallStreetByGraphPaperPress.jpg\" rel=\"prettyphoto[16267]\"><img class=\"size-full wp-image-16414\" alt=\"Wall Street By Graph Paper Press\" src=\"http://wptavern.com/wp-content/uploads/2014/02/WallStreetByGraphPaperPress.jpg\" width=\"506\" height=\"317\" /></a><p class=\"wp-caption-text\">Wall Street By Graph Paper Press</p></div>\n<h3>One Page Websites</h3>\n<p>The other trend I’ve taken note of is one page sites. Instead of the typical site layout with links to informative pages, all of the pages are combined into one page. As you scroll, different pages of information are shown. Thanks to the simplified display of content, navigation can be determined with clever graphical elements instead of an entire column of links. I’m not a fan of this design but I realize not every website has to convey information in the same manner.</p>\n<p>Amongst the trends listed on WPKube.com, which stand out to you? What <strong>new</strong> trends will we see in 2014? I’m predicting more WordPress themes in 2014 will take advantage of <a title=\"https://css-tricks.com/examples/IconFont/\" href=\"https://css-tricks.com/examples/IconFont/\">icon fonts</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, 06 Feb 2014 17:15: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: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: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:88:\"WPTavern: WordPress Developer Tom McFarlin Advocates Markdown As A Choice Not A Standard\";s:7:\"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=16400\";s:7:\"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:220:\"http://wptavern.com/wordpress-developer-tom-mcfarlin-advocates-markdown-as-a-choice-not-a-standard?utm_source=rss&utm_medium=rss&utm_campaign=wordpress-developer-tom-mcfarlin-advocates-markdown-as-a-choice-not-a-standard\";s: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:3418:\"<p>Tom McFarlin has <a title=\"http://tommcfarlin.com/markdown-syntax/\" href=\"http://tommcfarlin.com/markdown-syntax/\">published an awesome blog post</a> about developer’s tunnel vision. The gist of the post is that although <a title=\"https://daringfireball.net/projects/markdown/\" href=\"https://daringfireball.net/projects/markdown/\">Markdown</a> is a simplified markup language that makes it easier to format and style content, it shouldn’t be forced onto users. In the post, Tom goes on to say:</p>\n<blockquote><p>To that end, I will <em>always</em> advocate for markdown being a choice – not a standard – for people to draft their content, but I also believe that it’s important we not expect non-technical users to want to author their content in that way.</p></blockquote>\n<p>When we wrote about <a title=\"http://wptavern.com/wordpress-com-adds-support-for-markdown-is-tinymce-on-its-way-out\" href=\"http://wptavern.com/wordpress-com-adds-support-for-markdown-is-tinymce-on-its-way-out\">support for Markdown being added to WordPress.com</a> and then through Jetpack as a module, some questioned whether it would outright replace the TinyMCE editor in WordPress. The reviews were mixed but I’m glad to see TinyMCE isn’t going anywhere. In fact, WordPress 3.9 will have a <a title=\"http://wptavern.com/wordpress-developers-take-note-tinymce-4-0-merged-into-core\" href=\"http://wptavern.com/wordpress-developers-take-note-tinymce-4-0-merged-into-core\">shiny new version of TinyMCE</a> for users to play with.</p>\n<div id=\"attachment_16410\" class=\"wp-caption aligncenter\"><a href=\"http://wptavern.com/wp-content/uploads/2014/02/HeadersInMarkdown.jpg\" rel=\"prettyphoto[16400]\"><img class=\"size-full wp-image-16410\" alt=\"Header Code In Markdown\" src=\"http://wptavern.com/wp-content/uploads/2014/02/HeadersInMarkdown.jpg\" width=\"578\" height=\"214\" /></a><p class=\"wp-caption-text\">Header Code In Markdown</p></div>\n<p>One thing I’ve enjoyed since we started using <a title=\"http://themehybrid.com/themes/stargazer\" href=\"http://themehybrid.com/themes/stargazer\">Stargazer</a> by Justin Tadlock is the visual editor. In Stargazer, Justin modified <a title=\"http://codex.wordpress.org/Editor_Style\" href=\"http://codex.wordpress.org/Editor_Style\">editor-style.css</a> so that the content within the visual editor looks just like it would if it were published. It brings users closer to the principle of <strong>what you see is what you get</strong>. I bring this up because Tom drafts all of his posts in WordPress using the visual editor instead of using Markdown. He explains why:</p>\n<blockquote><p>As someone who enjoys writing, programming, and obviously markdown, I can also say that I’m someone who drafts all of his posts in the WYSIWYG editor of WordPress using editor-style.css because, when done right, it helps me to see clearly see what my content is going to look like when it’s published, and shortcuts save me just as much time as do syntax of markdown.</p></blockquote>\n<p>Thank you Tom for advocating choice instead of forcing Markdown on users as the standard to formatting content. I agree with Tom’s last statement in his post and it bears repeating. “<em>Give ‘em the choice of how they want to write; otherwise, we risk making something that should be fulfilling – that is, writing and publishing – a bit of a frustrating chore.</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:\"Thu, 06 Feb 2014 15:00:37 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s: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: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:92:\"WordPress.tv: Michelle Schulp: A Website Is Not A Poster: Designing Successfully For The Web\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wordpress.tv/?p=30603\";s:7:\"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:108:\"http://wordpress.tv/2014/02/06/michelle-schulp-a-website-is-not-a-poster-designing-successfully-for-the-web/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:732:\"<div id=\"v-zPJ26qEl-1\" class=\"video-player\">\n</div><br /> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/30603/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/30603/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=30603&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2014/02/06/michelle-schulp-a-website-is-not-a-poster-designing-successfully-for-the-web/\"><img alt=\"Michelle Schulp: A Website Is Not A Poster: Designing Successfully For The Web\" src=\"http://videos.videopress.com/zPJ26qEl/video-214e24bcb8_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:\"Thu, 06 Feb 2014 14:26: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: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: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:73:\"WPTavern: BuddyPress 2.0 Development Kicks Off, Release Set for Mid-April\";s:7:\"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=16379\";s:7:\"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/buddypress-2-0-development-kicks-off-today-release-set-for-mid-april?utm_source=rss&utm_medium=rss&utm_campaign=buddypress-2-0-development-kicks-off-today-release-set-for-mid-april\";s: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:3208:\"<p><a href=\"http://wptavern.com/wp-content/uploads/2014/02/bpmobilewallpaper.png\" rel=\"prettyphoto[16379]\"><img src=\"http://wptavern.com/wp-content/uploads/2014/02/bpmobilewallpaper-300x225.png\" alt=\"bpmobilewallpaper\" width=\"300\" height=\"225\" class=\"alignright size-medium wp-image-16159\" /></a>BuddyPress <a href=\"http://codex.buddypress.org/developer/releases/version-1-9-2/\" target=\"_blank\">1.9.2</a> was released today. This maintenance release includes two important security fixes related to group creation. It also adds a few improvements to WordPress menus integration, bp-default theme switching and theme compatibility.</p>\n<p>Today is also the beginning of the <a href=\"http://buddypress.org/2014/02/buddypress-2-0-development/\" target=\"_blank\">BuddyPress 2.0 development</a> cycle. The plugin’s core contributors have finalized dates for beta 1 and the release:</p>\n<ul>\n<li>Development starts (today): Wednesday, February 4, 2014</li>\n<li>Beta 1 (8 weeks from today): Wednesday, March 26, 2014</li>\n<li>Release (3 weeks after beta): Wednesday, April 16, 2014</li>\n</ul>\n<h3>What’s Coming in BuddyPress 2.0?</h3>\n<p>Today’s BuddyPress development meeting focused on setting goals and exceptions for the 2.0 release. Here’s a quick overview of what you can expect to see in mid-April, barring any major roadblocks:</p>\n<ul>\n<li>bp-forums will be retiring</li>\n<li>WordPress Rewrite Rules API integration</li>\n<li>Move XProfile visibility from each field into Settings</li>\n<li>last_activity usermeta improvements</li>\n<li>Activity comment sync for comments</li>\n<li>Ticket triage and general maintenance</li>\n<li>BuddyPress Profile editing within the WordPress admin</li>\n<li>New template pack</li>\n</ul>\n<p>The newest addition to this roadmap is the ability to <a href=\"http://wptavern.com/buddypress-2-0-to-add-profile-editing-in-the-wordpress-admin\" target=\"_blank\">edit BuddyPress profiles directly within the admin</a>. Administrators will appreciate not having to navigate to the front end in order to view/edit profiles. Performance improvements are also a major focus in this release, as Boone Gorges is working on <a href=\"https://buddypress.trac.wordpress.org/ticket/5349\" target=\"_blank\">refactoring the Activity query</a> and implementing persistent caching for the components.</p>\n<p>The BuddyPress documentation team is <a href=\"http://bpdevel.wordpress.com/2014/02/05/the-codex-into-2014/\" target=\"_blank\">gearing up for another push</a> to expand codex articles and refactor the “Getting Started” section into a “User’s Manual.” Boone Gorges is also heading up an <a href=\"http://bpdevel.wordpress.com/2014/01/05/inline-documentation-initiative/\" target=\"_blank\">initiative</a> to improve BuddyPress’ inline documentation coverage. If you can help document the plugin’s many action and filter hooks, please get in touch.</p>\n<p>BuddyPress 2.0 is shaping up to be an exciting release. There’s a lot going on under the hood that will help the plugin perform better. Community management within the admin is on track for big improvements as well. What are you looking forward to in the upcoming 2.0 release?</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, 06 Feb 2014 01:04: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: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: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:54:\"WPTavern: Widget Customizer Approved For 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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://wptavern.com/?p=16348\";s:7:\"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:152:\"http://wptavern.com/widget-customizer-approved-for-wordpress-3-9?utm_source=rss&utm_medium=rss&utm_campaign=widget-customizer-approved-for-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:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2551:\"<p>The <a href=\"http://wptavern.com/widget-customizer-proposed-for-wordpress-3-9\" target=\"_blank\">Widget Customizer</a> plugin is now cleared for takeoff and will land in WordPress 3.9. During the core development meeting today, the plugin was approved to be merged into the WordPress trunk. The days of editing widgets blind will soon be over, as widget editing with live previews will now be a native part of the WordPress publishing experience.</p>\n<p><a href=\"http://wptavern.com/wp-content/uploads/2014/01/widget-actions.png\" rel=\"prettyphoto[16348]\"><img src=\"http://wptavern.com/wp-content/uploads/2014/01/widget-actions.png\" alt=\"widget-actions\" width=\"1190\" height=\"894\" class=\"aligncenter size-full wp-image-15709\" /></a></p>\n<p>Weston Ruter, the project’s lead developer, submitted a detailed <a href=\"http://make.wordpress.org/core/2014/01/28/widget-customizer-feature-as-plugin-merge-proposal/\" target=\"_blank\">proposal</a> on the new feature last week. After several rounds of feedback and testing, the feature needs only a few minor adjustments and a bit more polishing in the accessibility department before making its debut in WordPress 3.9.</p>\n<h3>What Can You Do With The Widget Customizer?</h3>\n<p>If you haven’t tested the plugin yet, prepare to be impressed. The widget customizer offers live previews for every action associated with widgets, including:</p>\n<ul>\n<li>Editing existing widgets</li>\n<li>Adding a new widget</li>\n<li>Reordering widgets</li>\n<li>Dragging widgets to other sidebars</li>\n<li>Removing widgets entirely</li>\n</ul>\n<p>Widgets have long been one of the most user-friendly and approachable features in WordPress. The original WordPress widgets feature was actually first built as a plugin and then brought into core. When Matt Mullenweg first introduced widgets in <a href=\"http://wordpress.org/news/2007/05/wordpress-22/\" target=\"_blank\">WordPress 2.2 (Getz)</a>, he described their purpose:</p>\n<blockquote><p>WordPress Widgets allow you to easily rearrange and customize areas of your weblog (usually sidebars) with drag-and-drop simplicity.</p></blockquote>\n<p>The new widget customizer feature seems like a natural fit for the original intent to help users customize their sites more easily. Where would WordPress be without widgets? It’s safe to say that without this feature it would not be the CMS powerhouse that it is today. With live previews now on deck for every aspect of widget management, WordPress users will wonder how they ever lived without the widget customizer.</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, 05 Feb 2014 22:58:55 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s: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: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:88:\"WPTavern: Prevent Publishing Mishaps In WordPress With The Publisher Confirmation 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:28:\"http://wptavern.com/?p=16338\";s:7:\"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:220:\"http://wptavern.com/prevent-publishing-mishaps-in-wordpress-with-the-publisher-confirmation-plugin?utm_source=rss&utm_medium=rss&utm_campaign=prevent-publishing-mishaps-in-wordpress-with-the-publisher-confirmation-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:1982:\"<p>As I was writing a post the other night, I mistakenly clicked the publish button thinking it would update the post. This sent me into panic mode. I watched the animated circle spinning endlessly as if it were laughing at me. Not knowing what to do, I clicked a few buttons, including the Trash link but the damage had been done. The post was published and all it contained was a text link.</p>\n<p>This is the second time I’ve been burned by the Publish button. Thanks to the <a title=\"http://wordpress.org/plugins/publish-confirmation/\" href=\"http://wordpress.org/plugins/publish-confirmation/\">Publisher Confirmation plugin</a>, it will be the last.</p>\n<p><a href=\"http://wptavern.com/wp-content/uploads/2014/02/PublishConfirmation.jpg\" rel=\"prettyphoto[16338]\"><img class=\"aligncenter size-full wp-image-16343\" alt=\"Publish Confirmation Box\" src=\"http://wptavern.com/wp-content/uploads/2014/02/PublishConfirmation.jpg\" width=\"253\" height=\"140\" /></a></p>\n<p>Publisher Confirmation was created by <a title=\"http://profiles.wordpress.org/tristanh/\" href=\"http://profiles.wordpress.org/tristanh/\">TristanH</a> and is simple to use. There are no configuration options. After the plugin is activated, when you click the Publish button, a dialogue box will open confirming if you’d like the post to be published or not. The plugin hasn’t been updated in 2 years so you’ll see a warning box on the plugin directory when searching for it. However, it works just fine with WordPress 3.8.</p>\n<p>One update I’d like to see is a change in the wording from <strong>OK</strong> and <strong>Cancel</strong> to <strong>YES</strong> or <strong>NO</strong>. Ok and Cancel do not convert very well to Yes and No. Other than that, the plugin works exactly as intended and it’s already saved me once since activating it.</p>\n<p><strong>How many of you have accidentally published a post by mistake by clicking the Publish button instead of Update?</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:\"Wed, 05 Feb 2014 21:42: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: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:38:\"BuddyPress: BuddyPress 2.0 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:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"http://buddypress.org/?p=177987\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:57:\"http://buddypress.org/2014/02/buddypress-2-0-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:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2015:\"<p>Today marks the first official day of BuddyPress 2.0′s development cycle. As such, we want to keep everyone in the loop about what we’re planning for 2.0, and what our release dates are, so you can better plan your sites, updates, contributions, and testing.</p>\n<p>Features:</p>\n<ul>\n<li>bp-forums retirement <a title=\"defect (bug): bp-forums retirement (assigned)\" href=\"https://buddypress.trac.wordpress.org/ticket/5351\">#5351</a> (johnjamesjacoby)</li>\n<li>WordPress Rewrite Rules API integration <a title=\"task: Migrate BP\'s custom URI parser to use WP\'s Rewrite API (new)\" href=\"https://buddypress.trac.wordpress.org/ticket/4954\">#4954</a> (johnjamesjacoby)</li>\n<li>Move XProfile visibility from each field into Settings <a title=\"enhancement: Move XProfile visibility into Settings extension (new)\" href=\"https://buddypress.trac.wordpress.org/ticket/5352\">#5352</a> (johnjamesjacoby)</li>\n<li>last_activity usermeta improvements <a title=\"enhancement: Move user and group last_activity out of wp_usermeta (new)\" href=\"https://buddypress.trac.wordpress.org/ticket/5128\">#5128</a> (boonebgorges)</li>\n<li>Activity comment sync for comments (r-a-y)</li>\n<li>Ticket triage and general maintenance (paulgibbs)</li>\n<li>BuddyPress Profile editing from wp-admin (imath)</li>\n<li>New template pack <a title=\"enhancement: New template pack for BuddyPress (new)\" href=\"https://buddypress.trac.wordpress.org/ticket/4952\">#4952</a> (karmatosed)</li>\n</ul>\n<p>Dates:</p>\n<ul>\n<li>Development starts (today): Wednesday, February 4, 2014</li>\n<li>Beta 1 (8 weeks from today): Wednesday, March 26, 2014</li>\n<li>Release (3 weeks after beta): Wednesday, April 16, 2014</li>\n</ul>\n<p>If you’d like to tag along with us for the next 8 weeks, the <a href=\"https://buddypress.trac.wordpress.org/milestone/2.0\">2.0 Roadmap</a> is a great place to start. On behalf of the core development team, we’re really excited about what we have planned for 2.0, and can’t wait to get started!</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, 05 Feb 2014 21:09: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:17:\"John James Jacoby\";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:28:\"BuddyPress: BuddyPress 1.9.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:31:\"http://buddypress.org/?p=177981\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:47:\"http://buddypress.org/2014/02/buddypress-1-9-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:1098:\"<p>BuddyPress 1.9.2 is available. This is a security and maintenance release, fixing two possible security issues with Group creation (responsibly disclosed by Pietro Oliva) along with some fixes to our WordPress Menus integration, bp-default theme switching, and improvements to theme compatibility.</p>\n<p>A complete list of closed tickets can be found at <a href=\"http://buddypress.trac.wordpress.org/query?group=status&milestone=1.9.2\">the 1.9.2 milestone</a>, and a full changelog is at <a href=\"http://codex.buddypress.org/developer/releases/version-1-9-2/\">http://codex.buddypress.org/developer/releases/version-1-9-2/</a>.</p>\n<p>This is a recommended update for all installations of BuddyPress 1.5+.</p>\n<p>Upgrade via your WordPress Dashboard > Updates. You can also download the latest version at <a href=\"http://wordpress.org/plugins/buddypress/\">http://wordpress.org/plugins/buddypress</a>.</p>\n<p>Questions or comments? Check out our <a href=\"http://buddypress.org/support\">support community</a> and <a href=\"http://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, 05 Feb 2014 20:45:16 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:17:\"John James Jacoby\";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:66:\"WPTavern: Why You Should Clean Out Your WordPress Themes Directory\";s:7:\"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=16288\";s:7:\"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/why-you-should-clean-out-your-wordpress-themes-directory?utm_source=rss&utm_medium=rss&utm_campaign=why-you-should-clean-out-your-wordpress-themes-directory\";s: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:4642:\"<div id=\"attachment_16322\" class=\"wp-caption aligncenter\"><a href=\"http://wptavern.com/wp-content/uploads/2014/02/cleaning.jpg\" rel=\"prettyphoto[16288]\"><img src=\"http://wptavern.com/wp-content/uploads/2014/02/cleaning.jpg\" alt=\"photo credit: 13Moya 十三磨牙 - cc\" width=\"1146\" height=\"549\" class=\"size-full wp-image-16322\" /></a><p class=\"wp-caption-text\">photo credit: <a href=\"http://www.flickr.com/photos/ericqian/4447132325/\">13Moya 十三磨牙</a> – <a href=\"http://creativecommons.org/licenses/by-nc-nd/2.0/\">cc</a></p></div>\n<p>You’ve probably heard the advice that you should delete old or unwanted plugins from your WordPress installation. Plugins are often on the forefront of WordPress housekeeping lists. This is probably due to the fact that on a normal WordPress site you’re usually running just one theme and then multiple, sometimes dozens, of plugins. Unused plugins in the mix make it inconvenient to scroll through the list and troubleshoot conflicts. They can also pose a security risk if they’re not updated.</p>\n<p>But what about themes? Cleaning out your WordPress themes directory is just as important as plugin housekeeping. The current WordPress download package comes with three default themes pre-installed: Twenty Fourteen, Twenty Thirteen and Twenty Twelve. You may even have Twenty Eleven left over on your site, along with themes you’ve previously tested.</p>\n<p><a href=\"http://wptavern.com/wp-content/uploads/2014/02/800px-themes.png\" rel=\"prettyphoto[16288]\"><img src=\"http://wptavern.com/wp-content/uploads/2014/02/800px-themes.png\" alt=\"800px-themes\" width=\"800\" height=\"548\" class=\"aligncenter size-full wp-image-16297\" /></a></p>\n<p>Chances are that you won’t need all of these. Any theme not in use has got to go – with one important exception: a default theme for fallback. You can always re-install a theme further down the road if you decide you need it.</p>\n<p>Trying on a bunch of themes and then leaving them in your themes directory is somewhat akin to leaving your clothes all over the floor, instead of putting them in the laundry bin. When it comes to WordPress themes, however, this careless practice can have some serious consequences.</p>\n<h3>WordPress Themes Can Be An Entry Point For Hackers</h3>\n<p>Because WordPress is now powering more than 1 in 5 websites on the internet, WordPress sites are a prime target for hackers and spammers. If your site isn’t secure, hackers can use your themes as entry points. They’ve studied WordPress themes and know how to take advantage of them to forge an all-out attack on your site, your server and its resources.</p>\n<p>Hackers may insert malicious files or edits to your theme to try to hijack your site. Sometimes they get in through vulnerable scripts, as was the case with the historic <a href=\"http://markmaunder.com/2011/08/01/zero-day-vulnerability-in-many-wordpress-themes/\" target=\"_blank\">timthumb.php attack in 2011</a>, which posed a serious security risk for millions of WordPress sites using themes bundled with the script.</p>\n<p>Once a hack is successful, you’ll spend more time than you’d like in unraveling what they’ve done and convincing your host to turn your site back on.</p>\n<h3>WordPress Theme Housekeeping Checklist</h3>\n<p>Outdated versions of WordPress, themes and plugins are the most common cause of hacked sites. At the very least, you’ll want to keep everything up to date. Enabling <a href=\"http://wptavern.com/how-to-configure-automatic-core-updates-for-wordpress-3-7\" target=\"_blank\">automatic background updates</a> is a great way to stay current, especially for sites that you own but rarely visit.</p>\n<p>Here’s a checklist of what you can do right now to clean out your WordPress themes directory:</p>\n<ul>\n<li>Remove all unused WordPress themes (with the exception of one default for fallback)</li>\n<li>Update any themes that you are keeping</li>\n<li>Make sure <a href=\"http://codex.wordpress.org/Changing_File_Permissions\" target=\"_blank\">permissions</a> on your wp-content and themes directories are 0755</li>\n<li>Enable automatic background updates</li>\n</ul>\n<p>This checklist should have you covered for the basics, but more advanced measures can be put in place if you’re keen on exploring additional security options. For more information about <a href=\"http://codex.wordpress.org/Hardening_WordPress\" target=\"_blank\">hardening WordPress</a> against intrusions, check out the codex and its <a href=\"http://codex.wordpress.org/Hardening_WordPress#Resources\" target=\"_blank\">recommended resources</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, 05 Feb 2014 20:36:55 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s: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: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:62:\"WPTavern: Daily Plugin – Maps, Mobile, Money and Maintenance\";s:7:\"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=16271\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:110:\"http://wptavern.com/daily-plugin-02-05-2014?utm_source=rss&utm_medium=rss&utm_campaign=daily-plugin-02-05-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:8508:\"<p><img class=\"alignleft wp-image-16289\" alt=\"Daily Plugin for Wednesday 02-05-2014\" src=\"http://wptavern.com/wp-content/uploads/2014/02/custom_classifieds_12091-300x253.png\" width=\"180\" height=\"152\" />Here we are, half way through the week! What a busy week it’s been for the WordPress Plugin Repository! A lot of plugin developer “<em>New Years Resolutions</em>” are starting to bear fruit and are being released into the repository this week after a long month of development. We have a good sampling of fruit this week. Today it’s about <strong>Maps, Mobility, Menus, Money and Maintenance</strong>. Let’s get plugged in!</p>\n<h3>Overlay Multiple Location Markers on a Map as Custom Post Types</h3>\n<p>For a few months I have been working on a business/industry directory site using a premium directory theme from ThemeForest and some custom programming. The theme worked well for about 6 weeks until suddenly it broke. The developer vanished off the face of the Earth. As my fellow theme buyers gathered with their pitchforks and torches, the entire theme was removed from ThemeForest due to lack of support. I’ve not been able to find the same functionality for maps <strong>until now</strong>.</p>\n<p><a href=\"http://wptavern.com/wp-content/uploads/2014/02/screenshot-31.png\" rel=\"prettyphoto[16271]\"><img class=\"alignleft size-medium wp-image-16276\" alt=\"gMap Point List\" src=\"http://wptavern.com/wp-content/uploads/2014/02/screenshot-31-300x188.png\" width=\"300\" height=\"188\" /></a><strong><a title=\"gMap Point List\" href=\"http://wordpress.org/plugins/gmap-point-list/\" target=\"_blank\">Gmap Point List</a></strong> by Rafel Sans is a plugin that lets you create your own jQuery based map from the Google Maps API and then overlay your pins, or “<em>markers</em>” on top of the map. Each of the markers represents a custom post type that contains the data about the specific location. Because it is a custom post type, there is no limit to the data fields that are available when compiling data about a specific business listing. Pins can be added with address, lat/long Geo-coordinates or simply dropped on the map. The plugin is new and the documentation is currently only available in Spanish, but it was simple enough to use without it.</p>\n<h3>How Much is a BitCoin Worth Anyway?</h3>\n<p><a href=\"http://wptavern.com/wp-content/uploads/2014/02/screenshot-11.png\" rel=\"prettyphoto[16271]\"><img class=\"alignleft size-full wp-image-16281\" alt=\"BitCoin Exchage Rate\" src=\"http://wptavern.com/wp-content/uploads/2014/02/screenshot-11.png\" width=\"219\" height=\"143\" /></a>I’ve seen several BitCoin based plugins float by in the repository lately. There are several donation widgets that accept it, but I’m always resorting to a Google search to figure out exactly what my coins are worth. In comes the <a title=\"BitCoin Exchange Widget\" href=\"http://wordpress.org/plugins/btc-exchange-widget/\" target=\"_blank\"><strong>BTC Exchange Widget</strong></a>. This is a quick and easy widget that adds an area for visitors to enter the amount of BitCoins and select their preferred exchange currency, such as USD for US Dollars. In just one click, the current exchange rate is provided. While I am personally still a bit of a skeptic when it comes to BitCoin, fans of this virtual currency should find this plugin useful.</p>\n<h3>Preview Your Posts as a Tablet or Mobile device in one click!</h3>\n<p>Responsive design was supposed to make our lives easier. Instead of having to create a different mobile and tablet theme, the responsive set was billed as the end-all of design. While that advancement has certainly warranted applause, creating responsive content has not gotten much easier. This is mostly due to our inability to view our content as it would look on a device. Enter <a title=\"Responsive Post Preview\" href=\"http://wordpress.org/plugins/responsive-post-preview/\" target=\"_blank\"><strong>Responsive Post Preview</strong></a> by Jake Bresnehan. This plugin provides an easy, quick way to test how your content looks at various sizes.</p>\n<p><strong>Have a look at the demo, straight from the developer.</strong></p>\n<p><span class=\"embed-youtube\"></span></p>\n<p>This plugin will undoubtedly save a lot of time when in development mode. The instant view provided by Response Post Preview may be something that will find its way into WordPress Core functionality sooner than later.</p>\n<h3>A clean, responsive way to show a site is still under construction.</h3>\n<p>In the old days, we used an animated GIF of a construction tractor to show the world a site was not ready for public viewing. While that may have worked well in 2005, a domain today is considered a valuable web property. Every single site viewer should be seen as a potential lead or subscriber. That’s why it’s important to provide as much information as possible on your “<em>Coming Soon</em>” page. Even though the site isn’t ready, you can still connect with your audience.</p>\n<p><a href=\"http://wptavern.com/wp-content/uploads/2014/02/screenshot-41.jpg\" rel=\"prettyphoto[16271]\"><img class=\"alignleft size-medium wp-image-16283\" alt=\"Easy Maintenance Mode Coming Soon\" src=\"http://wptavern.com/wp-content/uploads/2014/02/screenshot-41-300x142.jpg\" width=\"300\" height=\"142\" /></a>The <a title=\"Easy Maintenance Mode\" href=\"http://wordpress.org/plugins/easy-maintenance-mode-coming-soon/\"><strong>Easy Maintenance Mode</strong></a> plugin allows to you quickly create a maintenance or under construction page. Upon plugin activation you are presented with a few options to get you going, including Facebook, Twitter and Google+ connectivity options, HTML-enabled text area, customization of the background, fonts, colors and style. The plugin is also responsive, allowing you to provide the same message social connections across any platform. The great thing about this plugin is that a logged-in user does not see the “<em>Coming Soon</em>” screen. If you’re working on the site and are logged in, you will see the site as you normally would. But if you are a random page surfer or not logged in, you see the maintenance page.</p>\n<h3>Adding Custom Icons to your Category Widget.</h3>\n<p><a href=\"http://wptavern.com/wp-content/uploads/2014/02/screenshot-111.png\" rel=\"prettyphoto[16271]\"><img class=\"alignleft wp-image-16285\" alt=\"Category List Icons\" src=\"http://wptavern.com/wp-content/uploads/2014/02/screenshot-111-263x300.png\" width=\"216\" height=\"247\" /></a>The recently released plugin <a title=\"Category List Icon\" href=\"http://wordpress.org/plugins/category-list-icon/\" target=\"_blank\"><strong>Category List Icon</strong></a> by Hasan Rang provides functionality to add an icon for your categories. I’ve often seen commercial sites that categorize their news with an icon. Now I can have it for myself, and so can you! The plugin provides options for custom category icon sizes and custom CSS for each of the category icon items. This can provide an added punch to a theme from a design perspective. The subtle, yet contextual icons can help your users identify content and navigate through your site accordingly. Page views matter to Google. Present your viewers with rich, content-related icons to navigate your site and you’ll be rewarded with a better looking sidebar category widget as well!</p>\n<h3>Need Custom Icons for a Responsive Display? Check this out!</h3>\n<p><a href=\"http://wptavern.com/wp-content/uploads/2014/02/screenshot-21.png\" rel=\"prettyphoto[16271]\"><img class=\"alignleft size-thumbnail wp-image-16287\" alt=\"Mobile Optimizer Menu\" src=\"http://wptavern.com/wp-content/uploads/2014/02/screenshot-21-77x150.png\" width=\"77\" height=\"150\" /></a><a title=\"Unite Mobile Optimizer Menu\" href=\"http://wordpress.org/plugins/unite-mobile-optimizer-menu/\" target=\"_blank\"><strong>Unite Mobile Optimizer Menu</strong></a> by Amit Keren lets you create a sliding icon list for mobile site viewers. Like the category icon plugin above, you can set up your own custom images and icons for the mobile menu. I found this among the easier mobile menu plugins that I have tested out. I can imagine the different button and icon configurations a person could come up with. But remember to stick with icons that will be familiar to your viewer. Keep it simple!</p>\n<p><strong>Which plugins from today’s list are you most likely to try out? Share your feedback and ideas!<br />\n</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:\"Wed, 05 Feb 2014 20:02:54 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Marcus Couch\";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:104:\"WordPress.tv: Joe Casabona: Making WordPress Mobile: Great Responsive Theming Tips, Tricks And Tutorials\";s:7:\"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=30605\";s:7:\"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:119:\"http://wordpress.tv/2014/02/05/joe-casabona-making-wordpress-mobile-great-responsive-theming-tips-tricks-and-tutorials/\";s: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:755:\"<div id=\"v-G1nKobdE-1\" class=\"video-player\">\n</div><br /> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/30605/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/30605/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=30605&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2014/02/05/joe-casabona-making-wordpress-mobile-great-responsive-theming-tips-tricks-and-tutorials/\"><img alt=\"Joe Casabona: Making WordPress Mobile: Great Responsive Theming Tips, Tricks And Tutorials\" src=\"http://videos.videopress.com/G1nKobdE/video-a234ed4e39_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:\"Wed, 05 Feb 2014 15:07:50 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"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: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:67:\"WPTavern: WiredTree To Sponsor All North American WordCamps In 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=15911\";s:7:\"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:178:\"http://wptavern.com/wiredtree-to-sponsor-all-north-american-wordcamps-in-2014?utm_source=rss&utm_medium=rss&utm_campaign=wiredtree-to-sponsor-all-north-american-wordcamps-in-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:2971:\"<p><a href=\"http://wptavern.com/wp-content/uploads/2014/01/WiredTreeLogo.jpg\" rel=\"prettyphoto[15911]\"><img class=\"alignright size-full wp-image-15914\" alt=\"WiredTree Logo\" src=\"http://wptavern.com/wp-content/uploads/2014/01/WiredTreeLogo.jpg\" width=\"282\" height=\"78\" /></a><a title=\"http://www.wiredtree.com/\" href=\"http://www.wiredtree.com/\">WiredTree</a>, a webhosting company has become a <a title=\"http://central.wordcamp.org/wordcamp-pillar/\" href=\"http://central.wordcamp.org/wordcamp-pillar/\">WordCamp Pillar sponsor</a>. The pillar sponsorship program is a package setup by WordCamp Central that enables businesses to sponsor multiple WordCamp events without having to go through the hassle of sponsoring them individually.</p>\n<p>WordCamp organizers will have a little less to worry about when it comes to funding for their event. WiredTree has upped the ante and will be <a title=\"http://central.wordcamp.org/news/2014/01/31/wiredtree-sponsors-every-wordcamp-in-north-america-for-2014/\" href=\"http://central.wordcamp.org/news/2014/01/31/wiredtree-sponsors-every-wordcamp-in-north-america-for-2014/\">sponsoring all North American based WordCamps</a> in 2014. I got in touch with WiredTree and asked them why they became a pillar sponsor and if sponsoring WordCamps has led to more customers.</p>\n<p>It turns out that the relationship between WordCamps and Wiredtree began at WordCamp Chicago 2013. A client of theirs reached out to Wiredtree on Twitter and asked if they would like to sponsor the event since they were a happy user of both. Zac Cogswell, President of WiredTree agreed that it would be a great fit.</p>\n<blockquote><p>WordPress is the most widely deployed CMS system across our network and many of our clients are actively involved in the WordPress community. Our support team uses it daily so we have a lot of operational experience we can share. WordCamp in particular being non-profit and locally-organized looked like a great way to support the community.</p></blockquote>\n<p>Wiredtree had such a great experience sponsoring WordCamp Chicago, they later went on to sponsor WordCamp Grand Rapids, MI along with a few other events. Getting to connect with clients face-to-face has been invaluable to the company. I then asked Zac whether sponsoring WordCamps correlated with an increase in new customers:</p>\n<blockquote><p>It’s too early yet to say what the effect will be as we’re coming up on the second WordCamp of the year in Dayton, OH, but I can say that feedback on social media has been positive. WordCamp attendees are very passionate folks and we’re passionate about hosting so we think it will go well. In any event, we’re just happy to be a part of it.</p></blockquote>\n<p>I personally want to thank <a title=\"http://www.wiredtree.com/\" href=\"http://www.wiredtree.com/\">Wiredtree</a> for sponsoring all North American based WordCamps during 2014. The less headaches WordCamp organizers have the better.</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, 05 Feb 2014 14:00:04 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s: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:\"Fri, 14 Feb 2014 07:08:19 GMT\";s:12:\"content-type\";s:8:\"text/xml\";s:14:\"content-length\";s:6:\"226270\";s:10:\"connection\";s:5:\"close\";s:4:\"vary\";s:15:\"Accept-Encoding\";s:13:\"last-modified\";s:29:\"Fri, 14 Feb 2014 06:45:15 GMT\";s:4:\"x-nc\";s:11:\"HIT lax 250\";s:13:\"accept-ranges\";s:5:\"bytes\";}s:5:\"build\";s:14:\"20121202214312\";}','no'),(177,'_transient_timeout_feed_a5420c83891a9c88ad2a4f04584a5efc','1392404899','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:\"Fri, 14 Feb 2014 06:41: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: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: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: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:30:\"Google Analytics for WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:70:\"http://wordpress.org/plugins/google-analytics-for-wordpress/#post-2316\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 14 Sep 2007 12:15:27 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"2316@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:\"Track your WordPress site easily and with lots of metadata: views per author & category, automatic tracking of outbound clicks and pageviews.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Joost de Valk\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:4;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s: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: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: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: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: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: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:148:\"Wordfence Security is a free enterprise class security plugin that includes a firewall, virus scanning, real-time traffic with geolocation and more.\";s: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: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: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: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: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:11:\"WP-PageNavi\";s:7:\"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/wp-pagenavi/#post-363\";s: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 23:17: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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"363@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:\"Adds a more advanced paging navigation interface.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Lester Chan\";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:7:\"Captcha\";s:7:\"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/captcha/#post-26129\";s: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, 27 Apr 2011 05:53:50 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"26129@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:79:\"This plugin allows you to implement super security captcha form into web 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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"bestwebsoft\";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: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:122:\"The most popular WordPress gallery plugin and one of the most popular plugins of all time with over 7.5 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: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:12:\"Contact Form\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:60:\"http://wordpress.org/plugins/contact-form-plugin/#post-26890\";s: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, 26 May 2011 07:34: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:\"26890@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:43:\"Add Contact Form to your WordPress 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:11:\"bestwebsoft\";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:40:\"NextScripts: Social Networks Auto-Poster\";s:7:\"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:87:\"http://wordpress.org/plugins/social-networks-auto-poster-facebook-twitter-g/#post-35439\";s: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 Mar 2012 00:28:23 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"35439@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:149:\"Automatically re-publishes blogposts to Facebook, Twitter, Google+, Pinterest, LinkedIn, Blogger, Tumblr, Delicious, Plurk, etc profiles and/or pages\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"NextScripts\";s: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:\"Fri, 14 Feb 2014 07:08:19 GMT\";s:12:\"content-type\";s:23:\"text/xml; charset=UTF-8\";s:10:\"connection\";s:5:\"close\";s:4:\"vary\";s:15:\"Accept-Encoding\";s:7:\"expires\";s:29:\"Fri, 14 Feb 2014 07:16:27 GMT\";s:13:\"cache-control\";s:0:\"\";s:6:\"pragma\";s:0:\"\";s:13:\"last-modified\";s:31:\"Fri, 14 Feb 2014 06:41:27 +0000\";s:4:\"x-nc\";s:11:\"HIT lax 249\";}s:5:\"build\";s:14:\"20121202214312\";}','no'),(175,'_transient_timeout_dash_aa95765b5cc111c56d5993d476b1c2f0','1392404899','no'),(176,'_transient_dash_aa95765b5cc111c56d5993d476b1c2f0','<div class=\"rss-widget\"><ul><li><a class=\'rsswidget\' href=\'http://wptavern.com/bucket-list-plugin-lets-your-create-and-manage-goals-with-wordpress?utm_source=rss&utm_medium=rss&utm_campaign=bucket-list-plugin-lets-your-create-and-manage-goals-with-wordpress\' title=\'Bucket List is a new plugin that lets you organize multiple lists of goals within WordPress. In case you’re not familiar with the term, a “bucket list” is a list of things you want to do before you kick the proverbial bucket. Many people get a kick out of crossing these items off one by one as they achieve them throughout life. The Bucket List plugin provide […]\'>WPTavern: Bucket List Plugin Lets You Create and Manage Goals with WordPress</a></li><li><a class=\'rsswidget\' href=\'http://wptavern.com/how-one-police-chief-is-using-wordpress-and-jetpack-to-fight-crime?utm_source=rss&utm_medium=rss&utm_campaign=how-one-police-chief-is-using-wordpress-and-jetpack-to-fight-crime\' title=\'Eric Blanchard has always been a techy at heart. In 2007 he was working with the Sinton Police Department. He wanted to create a website for the department but had no idea how. After some research he started learning CSS, HTML, MySQL, and PHP with the help of a friend. Blanchard cut his teeth building websites by creating sintonpd.com using AOL dial up, befo […]\'>WPTavern: How One Police Chief Is Using WordPress and Jetpack to Fight Crime</a></li><li><a class=\'rsswidget\' href=\'http://wptavern.com/arcade-basic-a-beautiful-free-wordpress-theme-based-on-bootstrap?utm_source=rss&utm_medium=rss&utm_campaign=arcade-basic-a-beautiful-free-wordpress-theme-based-on-bootstrap\' title=\'Arcade Basic is new free theme from WordPress theme designer c.bavota, who favors Bootstrap as a front-end framework for his products. The theme features a fullscreen header image, followed by a large call-to-action, widgetized homepage area and a block of posts at the bottom. Arcade Basic packs in a solid set of features under the hood and can be customized […]\'>WPTavern: Arcade Basic: A Beautiful Free WordPress Theme Based on Bootstrap</a></li><li><a class=\'rsswidget\' href=\'http://wptavern.com/would-you-use-an-offline-wordpress-editor?utm_source=rss&utm_medium=rss&utm_campaign=would-you-use-an-offline-wordpress-editor\' title=\'Eric Mann has put a proposal together for an editor that works offline and would synchronize to WordPress once an internet connection is established. The idea is that if there is no internet connection, you would still be able to create posts or pages and edit existing content. Those changes would then be synchronized with WordPress when a connection is re-e […]\'>WPTavern: Would You Use An Offline WordPress Editor?</a></li><li><a class=\'rsswidget\' href=\'http://wptavern.com/wp-think-tank-panel-will-discuss-the-future-of-wordpress-on-feb-25th?utm_source=rss&utm_medium=rss&utm_campaign=wp-think-tank-panel-will-discuss-the-future-of-wordpress-on-feb-25th\' title=\'Mark your calendars for Tuesday, Feb 25th. WP Elevation will be hosting WP Think Tank, a panel discussion about the future of WordPress. The event will take place live on Google Hangouts at 8PM UTC and participants will be able to join via a chatroom and ask questions. Inspired by topics that have come up on the WP Elevation podcast, the WP Think Tank will f […]\'>WPTavern: WP Think Tank Panel Will Discuss the Future of WordPress on Feb. 25th</a></li></ul></div>','no'),(183,'_transient_timeout_feed_mod_57bc725ad6568758915363af670fd8bc','1392404900','no'),(184,'_transient_feed_mod_57bc725ad6568758915363af670fd8bc','1392361700','no'),(187,'_transient_timeout_dash_de3249c4736ad3bd2cd29147c4a0d43e','1392404900','no'),(188,'_transient_dash_de3249c4736ad3bd2cd29147c4a0d43e','<h4>Most Popular</h4>\n<h5><a href=\'http://wordpress.org/plugins/social-networks-auto-poster-facebook-twitter-g/\'>NextScripts: Social Networks Auto-Poster</a></h5> <span>(<a href=\'plugin-install.php?tab=plugin-information&plugin=social-networks-auto-poster-facebook-twitter-g&_wpnonce=9c961de891&TB_iframe=true&width=600&height=800\' class=\'thickbox\' title=\'NextScripts: Social Networks Auto-Poster\'>Install</a>)</span>\n<p>Automatically re-publishes blogposts to Facebook, Twitter, Google+, Pinterest, LinkedIn, Blogger, Tumblr, Delicious, Plurk, etc profiles and/or pages</p>\n<h4>Newest Plugins</h4>\n<h5><a href=\'https://wordpress.org/plugins/t2-export-for-specific-pages/\'>T2 Export</a></h5> <span>(<a href=\'plugin-install.php?tab=plugin-information&plugin=t2-export-for-specific-pages&_wpnonce=912bbfdc60&TB_iframe=true&width=600&height=800\' class=\'thickbox\' title=\'T2 Export\'>Install</a>)</span>\n<p>If you need to export specific pages with attachement, you should use this plugin.</p>\n','no'),(181,'_transient_timeout_feed_57bc725ad6568758915363af670fd8bc','1392404900','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:41:\"https://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:\"Fri, 14 Feb 2014 06:47: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: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:12:\"Serp Toolbar\";s:7:\"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:\"https://wordpress.org/plugins/serp-tool/#post-57847\";s: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 Aug 2013 20:48: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:36:\"57847@https://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:41:\"Plugin for check the serp keyword status.\";s: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:\"Rakesh Raushan\";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:9:\"T2 Export\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:70:\"https://wordpress.org/plugins/t2-export-for-specific-pages/#post-63940\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 13 Feb 2014 07:25:19 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"63940@https://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:82:\"If you need to export specific pages with attachement, you should use this 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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"ThemeTon\";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:14:\"Media Item URL\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://wordpress.org/plugins/media-item-url/#post-63955\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 13 Feb 2014 14:40:55 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"63955@https://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:74:\"Get the full attachment URL from the media row table without opening item.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Andrew Norcross\";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:8:\"WP Pipes\";s:7:\"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:\"https://wordpress.org/plugins/wp-pipes/#post-63948\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 13 Feb 2014 10:24: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:36:\"63948@https://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:\"WP Pipes plugin works the same way as Yahoo Pipes or Zapier does, give your Pipes input and get output as your needs.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"Thong Tran\";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:16:\"Healthy Site SEO\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"https://wordpress.org/plugins/healthy-site-seo/#post-63936\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 13 Feb 2014 02:54: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:36:\"63936@https://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:32:\"Optimize/Secure your site today.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"MMDeveloper\";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:27:\"Ultimate Under Construction\";s:7:\"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:\"https://wordpress.org/plugins/ultimate-under-construction/#post-63926\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 12 Feb 2014 19:51: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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"63926@https://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:86:\"Shows an Under Construction holding page for all users who are not logged in or Admin.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Mike Morrow\";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:28:\"CanvasPop Photo Printing API\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:70:\"https://wordpress.org/plugins/canvaspop-photo-printing-api/#post-63824\";s: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, 10 Feb 2014 16:48: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:36:\"63824@https://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:139:\"CanvasPop Photo Printing API is a simple and powerful way to offer customers the ability to purchase world class\nhandcrafted canvas prints.\";s: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:\"karlcanvaspop\";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:10:\"bbPress NL\";s:7:\"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:\"https://wordpress.org/plugins/bbpress-nl/#post-63910\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 12 Feb 2014 10:54: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:36:\"63910@https://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:77:\"This plugin will provide the Dutch translation for your bbPress 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:15:\"Remkus de Vries\";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:19:\"Cookieless 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:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:61:\"https://wordpress.org/plugins/cookieless-comments/#post-63931\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 12 Feb 2014 23:08: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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"63931@https://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:85:\"Disables WordPress comment cookies to simplify EU cookie law compliance requirements.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Samuel Aguilera\";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:\"TITLE ANIMATOR\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://wordpress.org/plugins/title-animator/#post-63923\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 12 Feb 2014 18:14: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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"63923@https://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:\"Animate your website title with five different effects, lightweighted & easy 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:17:\"arkapravamajumder\";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:19:\"Blogger 2 Wordpress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:54:\"https://wordpress.org/plugins/blogger-2-wp/#post-63795\";s: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, 09 Feb 2014 05: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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"63795@https://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:361:\"<p>Set up redirections from your old blogger blog to your new WordPress blog. You can redirect posts, pages and as well as the home page. This plugin will generate a template for your blogger blog that will redirect your old Blogger users to your new WordPress blog.<br />\nThis plugin will get the URL the blogger user visited and redirect to the new post.\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:10:\"Subin Siby\";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:21:\"Custom 404 Error Page\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:63:\"https://wordpress.org/plugins/custom-404-error-page/#post-63916\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 12 Feb 2014 14:55:54 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"63916@https://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:42:\"Use any static page as the 404 error page.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:7:\"Kaspars\";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:19:\"Attachments Handler\";s:7:\"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:\"https://wordpress.org/plugins/attachments-handler/#post-63889\";s: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 Feb 2014 21:42: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:36:\"63889@https://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:80:\"Manage your attachements, detect duplicates, and enable zip downloading of 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:7:\"Sed Lex\";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:11:\"Hello Emoji\";s:7:\"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:\"https://wordpress.org/plugins/hello-emoji/#post-63862\";s: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 Feb 2014 08:38:39 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"63862@https://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:106:\"Get an auto-complete list of emojis suggestions in the editor, and convert emoticons to emojis on display.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"WPCollab\";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:40:\"Remove Open Sans font Link from WP core\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:76:\"https://wordpress.org/plugins/remove-open-sans-font-from-wp-core/#post-63861\";s: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 Feb 2014 05:38: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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"63861@https://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:\"Installs Remove Open Sans font Link from WP core plugin on your wordpress blog so it will doesn't load Open Sans font from Google fonts.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"suifengtec\";s: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:42:\"https://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:\"Fri, 14 Feb 2014 07:08:19 GMT\";s:12:\"content-type\";s:23:\"text/xml; charset=UTF-8\";s:10:\"connection\";s:5:\"close\";s:4:\"vary\";s:15:\"Accept-Encoding\";s:7:\"expires\";s:29:\"Fri, 14 Feb 2014 07:22:52 GMT\";s:13:\"cache-control\";s:0:\"\";s:6:\"pragma\";s:0:\"\";s:13:\"last-modified\";s:31:\"Fri, 14 Feb 2014 06:47:52 +0000\";s:4:\"x-nc\";s:11:\"HIT lax 249\";}s:5:\"build\";s:14:\"20121202214312\";}','no'),(161,'_transient_timeout_feed_mod_16b2eed49b1d356de4631ca9e0397938','1392404898','no'),(162,'_transient_feed_mod_16b2eed49b1d356de4631ca9e0397938','1392361698','no'),(163,'_transient_timeout_dash_20494a3d90a6669585674ed0eb8dcd8f','1392404898','no'),(164,'_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'),(165,'_transient_timeout_feed_ac0b00fe65abe10e0c5b588f3ed8c7ca','1392404898','no'),(166,'_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:\"Thu, 23 Jan 2014 20:54: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:\"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:39:\"http://wordpress.org/?v=3.9-alpha-27111\";s:7:\"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: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: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: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:18739:\"<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/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/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\">cojennin</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/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\">iandunn</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/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/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/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: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: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:\"\";}}}}}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:17:\"WordPress 3.8 RC1\";s:7:\"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/news/2013/12/3-8-almost/\";s: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:54:\"http://wordpress.org/news/2013/12/3-8-almost/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 04 Dec 2013 09:54:48 +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=2760\";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:345:\"We’re entering the quiet but busy part of a release, whittling down issues to bring you all of the new features you’re excited about with the stability you expect from WordPress. There are just a few days from the “code freeze” for our 3.8 release, which includes a number of exciting enhancements, so the focus […]\";s: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:1873:\"<p>We’re entering the quiet but busy part of a release, whittling down issues to bring you all of the new features you’re excited about with the stability you expect from WordPress. There are just a few days from the “code freeze” for our 3.8 release, <a href=\"http://wordpress.org/news/2013/11/wordpress-3-8-beta-1/\">which includes a number of exciting enhancements</a>, so the focus is on identifying any major issues and resolving them as soon as possible.</p>\n<p>If you’ve ever wondered about how to contribute to WordPress, here’s a time you can: download this release candidate and use it in as many ways as you can imagine. Try to break it, and if you do, let us know how you did it so we can make sure it never happens again. If you work for a web host, this is the release you should test as much as possible and start getting your automatic upgrade systems and 1-click installers ready.</p>\n<p><a href=\"http://wordpress.org/wordpress-3.8-RC1.zip\">Download WordPress 3.8 RC1</a> (zip) or use the <a href=\"http://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin (you’ll want “bleeding edge nightlies”).</p>\n<p>If you think you’ve found a bug, 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=\"http://core.trac.wordpress.org/\">file one on the WordPress Trac</a>. There, you can also find <a href=\"http://core.trac.wordpress.org/report/5\">a list of known bugs</a> and <a href=\"http://core.trac.wordpress.org/query?status=closed&group=component&milestone=3.8\">everything we’ve fixed</a> so far.</p>\n<p><em>We’re so close to the</em><br />\n<em>finish line, jump in and help</em><br />\n<em>good karma is yours.</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:50:\"http://wordpress.org/news/2013/12/3-8-almost/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.8 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/2013/11/wordpress-3-8-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/2013/11/wordpress-3-8-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:\"Thu, 21 Nov 2013 05:21:56 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a: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=2754\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:307:\"The first beta of the 3.8 is now available, and the next dates to watch out for are code freeze on December 5th and a final release on December 12th. 3.8 brings together several of the features as plugins projects and while this isn’t our first rodeo, expect this to be more beta than usual. […]\";s: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:2236:\"<p>The first beta of the 3.8 is now available, and the next dates to watch out for are code freeze on December 5th and a final release on December 12th.</p>\n<p>3.8 brings together <a href=\"http://make.wordpress.org/core/features-as-plugins/\">several of the features as plugins projects</a> and while this isn’t our first rodeo, expect this to be more beta than usual. The headline things to test out in this release are:</p>\n<ul>\n<li>The new admin design, especially the responsive aspect of it. Try it out on different devices and browsers, see how it goes, especially the more complex pages like widgets or seldom-looked-at-places like Press This. Color schemes, which you can change on your profile, have also been spruced up.</li>\n<li>The dashboard homepage has been refreshed, poke and prod it.</li>\n<li>Choosing themes under Appearance is completely different, try to break it however possible.</li>\n<li>There’s a new default theme, Twenty Fourteen.</li>\n<li>Over 250 issues closed already.</li>\n</ul>\n<p>Given how many things in the admin have changed it’s extra super duper important to test as many plugins and themes with admin pages against the new stuff. Also if you’re a developer consider how you can make your admin interface fit the MP6 aesthetic better.</p>\n<p>As always, if you think you’ve found a bug, 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=\"http://core.trac.wordpress.org/\">file one on the WordPress Trac</a>. There, you can also find <a href=\"http://core.trac.wordpress.org/report/5\">a list of known bugs</a> and <a href=\"http://core.trac.wordpress.org/query?status=closed&group=component&milestone=3.8\">everything we’ve fixed</a> so far.</p>\n<p><a href=\"http://wordpress.org/wordpress-3.8-beta-1.zip\">Download WordPress 3.8 Beta 1</a> (zip) or use the <a href=\"http://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin (you’ll want “bleeding edge nightlies”).</p>\n<p><em>Alphabet soup of</em><br />\n<em>Plugins as features galore</em><br />\n<em>The future is here</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/2013/11/wordpress-3-8-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: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:35:\"WordPress 3.7.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/2013/10/wordpress-3-7-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/2013/10/wordpress-3-7-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, 29 Oct 2013 21:04: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: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=2745\";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:371:\"WordPress 3.7.1 is now available! This maintenance release addresses 11 bugs in WordPress 3.7, including: Images with captions no longer appear broken in the visual editor. Allow some sites running on old or poorly configured servers to continue to check for updates from WordPress.org. Avoid fatal errors with certain plugins that were incorrectly calling some […]\";s: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:1594:\"<p>WordPress 3.7.1 is now available! This maintenance release addresses 11 bugs in WordPress 3.7, including:</p>\n<ul>\n<li>Images with captions no longer appear broken in the visual editor.</li>\n<li>Allow some sites running on old or poorly configured servers to continue to check for updates from WordPress.org.</li>\n<li>Avoid fatal errors with certain plugins that were incorrectly calling some WordPress functions too early.</li>\n<li>Fix hierarchical sorting in get_pages(), exclusions in wp_list_categories(), and in_category() when called with empty values.</li>\n<li>Fix a warning that may occur in certain setups while performing a search, and a few other notices.</li>\n</ul>\n<p>For a full list of changes, consult the <a href=\"http://core.trac.wordpress.org/query?milestone=3.7.1\">list of tickets</a> and <a href=\"http://core.trac.wordpress.org/log/branches/3.7?stop_rev=25914&rev=25986\">the changelog</a>.</p>\n<p>If you are one of the <a href=\"http://wordpress.org/download/counter/\">nearly two million</a> already running WordPress 3.7, we will start rolling out the all-new <a href=\"http://wordpress.org/news/2013/10/basie/\">automatic background updates</a> for WordPress 3.7.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.7.1</a> or venture over to <strong>Dashboard → Updates</strong> and simply click “Update Now.”</p>\n<p><em>Just a few fixes<br />\nYour new update attitude:<br />\nZero clicks given</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/2013/10/wordpress-3-7-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:6;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:25:\"WordPress 3.7 “Basie”\";s:7:\"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/news/2013/10/basie/\";s: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:49:\"http://wordpress.org/news/2013/10/basie/#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, 24 Oct 2013 22:35: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: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=2736\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:357:\"Version 3.7 of WordPress, named “Basie” in honor of Count Basie, is available for download or update in your WordPress dashboard. This release features some of the most important architectural updates we’ve made to date. Here are the big ones: Updates while you sleep: With WordPress 3.7, you don’t have to lift a finger to […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s: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:17229:\"<p>Version 3.7 of WordPress, named “Basie” in honor of <a href=\"http://en.wikipedia.org/wiki/Count_basie\">Count Basie</a>, is available <a href=\"http://wordpress.org/download/\">for download</a> or update in your WordPress dashboard. This release features some of the most important architectural updates we’ve made to date. Here are the big ones:</p>\n<ul>\n<li><strong>Updates while you sleep</strong>: With WordPress 3.7, you don’t have to lift a finger to apply maintenance and security updates. Most sites are now able to automatically apply these updates in the background. The update process also has been made even more reliable and secure, with dozens of new checks and safeguards.</li>\n<li><strong>Stronger password recommendations</strong>: Your password is your site’s first line of defense. It’s best to create passwords that are complex, long, and unique. To that end, our password meter has been updated in WordPress 3.7 to recognize common mistakes that can weaken your password: dates, names, keyboard patterns (123456789), and even pop culture references.</li>\n<li><strong>Better global support</strong>: Localized versions of WordPress will receive faster and more complete translations. WordPress 3.7 adds support for automatically installing the right language files and keeping them up to date, a boon for the many millions who use WordPress in a language other than English.</li>\n</ul>\n<p>For developers there are lots of options around how to control the new updates feature, including allowing it to handle major upgrades as well as minor ones, more sophisticated date query support, and multisite improvements. As always, if you’re hungry for more <a href=\"http://codex.wordpress.org/Version_3.7\">dive into the Codex</a> or browse the <a href=\"http://core.trac.wordpress.org/query?status=closed&group=resolution&milestone=3.7\">over 400 closed tickets on Trac</a>.</p>\n<h3>A New Wave</h3>\n<p>This release was led by Andrew Nacin, backed up by Dion Hulse and Jon Cave. This is our first release using the new plugin-first development process, with a much shorter timeframe than in the past. (3.6 was released in August.) The 3.8 release, due in December, will continue this plugin-led development cycle that gives much more autonomy to plugin leads and allows us to decouple feature development from a release. You can follow this grand experiment, and what we’re learning from it, <a href=\"http://make.wordpress.org/core/\">on the make/core blog</a>. There are 211 contributors with props in this release:</p>\n<p><a href=\"http://profiles.wordpress.org/technosailor\">Aaron Brazell</a>, <a href=\"http://profiles.wordpress.org/aaroncampbell\">Aaron D. Campbell</a>, <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/ahoereth\">Alexander Hoereth</a>, <a href=\"http://profiles.wordpress.org/viper007bond\">Alex Mills (Viper007Bond)</a>, <a href=\"http://profiles.wordpress.org/sabreuse\">Amy Hendrix (sabreuse)</a>, <a href=\"http://profiles.wordpress.org/andg\">andg</a>, <a href=\"http://profiles.wordpress.org/nacin\">Andrew Nacin</a>, <a href=\"http://profiles.wordpress.org/norcross\">Andrew Norcross</a>, <a href=\"http://profiles.wordpress.org/azaozz\">Andrew Ozz</a>, <a href=\"http://profiles.wordpress.org/andrewspittle\">Andrew Spittle</a>, <a href=\"http://profiles.wordpress.org/askapache\">askapache</a>, <a href=\"http://profiles.wordpress.org/atimmer\">atimmer</a>, <a href=\"http://profiles.wordpress.org/barry\">Barry</a>, <a href=\"http://profiles.wordpress.org/beaulebens\">Beau Lebens</a>, <a href=\"http://profiles.wordpress.org/benmoody\">ben.moody</a>, <a href=\"http://profiles.wordpress.org/bhengh\">Ben Miller</a>, <a href=\"http://profiles.wordpress.org/neoxx\">Bernhard Riedl</a>, <a href=\"http://profiles.wordpress.org/bftrick\">BFTrick</a>, <a href=\"http://profiles.wordpress.org/bananastalktome\">Billy (bananastalktome)</a>, <a href=\"http://profiles.wordpress.org/bmb\">bmb</a>, <a href=\"http://profiles.wordpress.org/kraftbj\">Brandon Kraft</a>, <a href=\"http://profiles.wordpress.org/brianhogg\">brianhogg</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/carldanley\">Carl Danley</a>, <a href=\"http://profiles.wordpress.org/charlesclarkson\">CharlesClarkson</a>, <a href=\"http://profiles.wordpress.org/chipbennett\">Chip Bennett</a>, <a href=\"http://profiles.wordpress.org/chouby\">Chouby</a>, <a href=\"http://profiles.wordpress.org/c3mdigital\">Chris Olbekson</a>, <a href=\"http://profiles.wordpress.org/chrisrudzki\">Chris Rudzki</a>, <a href=\"http://profiles.wordpress.org/aeg0125\">coderaaron</a>, <a href=\"http://profiles.wordpress.org/coenjacobs\">Coen Jacobs</a>, <a href=\"http://profiles.wordpress.org/crrobi01\">Colin Robinson</a>, <a href=\"http://profiles.wordpress.org/andreasnrb\">cyonite</a>, <a href=\"http://profiles.wordpress.org/daankortenbach\">Daan Kortenbach</a>, <a href=\"http://profiles.wordpress.org/danielbachhuber\">Daniel Bachhuber</a>, <a href=\"http://profiles.wordpress.org/convissor\">Daniel Convissor</a>, <a href=\"http://profiles.wordpress.org/dartiss\">dartiss</a>, <a href=\"http://profiles.wordpress.org/koop\">Daryl Koopersmith</a>, <a href=\"http://profiles.wordpress.org/csixty4\">Dave Ross</a>, <a href=\"http://profiles.wordpress.org/davidjlaietta\">David Laietta</a>, <a href=\"http://profiles.wordpress.org/dd32\">Dion Hulse</a>, <a href=\"http://profiles.wordpress.org/dllh\">dllh</a>, <a href=\"http://profiles.wordpress.org/ocean90\">Dominik Schilling (ocean90)</a>, <a href=\"http://profiles.wordpress.org/dpash\">dpash</a>, <a href=\"http://profiles.wordpress.org/drewapicture\">Drew Jaynes</a>, <a href=\"http://profiles.wordpress.org/drprotocols\">DrProtocols</a>, <a href=\"http://profiles.wordpress.org/dustyf\">Dustin Filippini</a>, <a href=\"http://profiles.wordpress.org/dzver\">dzver</a>, <a href=\"http://profiles.wordpress.org/cais\">Edward Caissie</a>, <a href=\"http://profiles.wordpress.org/enej\">enej</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/evansolomon\">Evan Solomon</a>, <a href=\"http://profiles.wordpress.org/faishal\">faishal</a>, <a href=\"http://profiles.wordpress.org/faison\">Faison</a>, <a href=\"http://profiles.wordpress.org/foofy\">Foofy</a>, <a href=\"http://profiles.wordpress.org/fjarrett\">Frankie Jarrett</a>, <a href=\"http://profiles.wordpress.org/frank-klein\">Frank Klein</a>, <a href=\"http://profiles.wordpress.org/garyc40\">Gary Cao</a>, <a href=\"http://profiles.wordpress.org/pento\">Gary Pendergast</a>, <a href=\"http://profiles.wordpress.org/gayadesign\">Gaya Kessler</a>, <a href=\"http://profiles.wordpress.org/georgestephanis\">George Stephanis</a>, <a href=\"http://profiles.wordpress.org/gizburdt\">Gizburdt</a>, <a href=\"http://profiles.wordpress.org/goldenapples\">goldenapples</a>, <a href=\"http://profiles.wordpress.org/gradyetc\">gradyetc</a>, <a href=\"http://profiles.wordpress.org/gcorne\">Gregory Cornelius</a>, <a href=\"http://profiles.wordpress.org/webord\">Gustavo Bordoni</a>, <a href=\"http://profiles.wordpress.org/hakre\">hakre</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/creativeinfusion\">itinerant</a>, <a href=\"http://profiles.wordpress.org/jdgrimes\">J.D. Grimes</a>, <a href=\"http://profiles.wordpress.org/jakubtyrcha\">jakub.tyrcha</a>, <a href=\"http://profiles.wordpress.org/jamescollins\">James Collins</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/jayjdk\">Jesper Johansen (jayjdk)</a>, <a href=\"http://profiles.wordpress.org/joehoyle\">Joe Hoyle</a>, <a href=\"http://profiles.wordpress.org/jkudish\">Joey Kudish</a>, <a href=\"http://profiles.wordpress.org/johnnyb\">John Beales</a>, <a href=\"http://profiles.wordpress.org/johnbillion\">John Blackbourn (johnbillion)</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/johnpbloch\">John P. Bloch</a>, <a href=\"http://profiles.wordpress.org/jond3r\">Jonas Bolinder (jond3r)</a>, <a href=\"http://profiles.wordpress.org/jchristopher\">Jonathan Christopher</a>, <a href=\"http://profiles.wordpress.org/desrosj\">Jonathan Desrosiers</a>, <a href=\"http://profiles.wordpress.org/duck_\">Jon Cave</a>, <a href=\"http://profiles.wordpress.org/jonlynch\">Jon Lynch</a>, <a href=\"http://profiles.wordpress.org/joostdevalk\">Joost de Valk</a>, <a href=\"http://profiles.wordpress.org/josephscott\">Joseph Scott</a>, <a href=\"http://profiles.wordpress.org/betzster\">Josh Betz</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/ketwaroo\">Ketwaroo</a>, <a href=\"http://profiles.wordpress.org/kevinb\">kevinB</a>, <a href=\"http://profiles.wordpress.org/kpdesign\">Kim Parsell</a>, <a href=\"http://profiles.wordpress.org/kitchin\">kitchin</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/koopersmith\">koopersmith</a>, <a href=\"http://profiles.wordpress.org/kurtpayne\">Kurt Payne</a>, <a href=\"http://profiles.wordpress.org/lancewillett\">Lance Willett</a>, <a href=\"http://profiles.wordpress.org/leewillis77\">Lee Willis (leewillis77)</a>, <a href=\"http://profiles.wordpress.org/lessbloat\">lessbloat</a>, <a href=\"http://profiles.wordpress.org/layotte\">Lew Ayotte</a>, <a href=\"http://profiles.wordpress.org/lgedeon\">Luke Gedeon</a>, <a href=\"http://profiles.wordpress.org/iworks\">Marcin Pietrzak</a>, <a href=\"http://profiles.wordpress.org/cimmo\">Marco Cimmino</a>, <a href=\"http://profiles.wordpress.org/marco_teethgrinder\">Marco Galasso</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/melchoyce\">Mel Choyce</a>, <a href=\"http://profiles.wordpress.org/tw2113\">Michael Beckwith</a>, <a href=\"http://profiles.wordpress.org/mikehansenme\">Mike Hansen</a>, <a href=\"http://profiles.wordpress.org/mikeschinkel\">Mike Schinkel</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/mitchoyoshitaka\">mitcho (Michael Yoshitaka Erlewine)</a>, <a href=\"http://profiles.wordpress.org/usermrpapa\">Mr Papa</a>, <a href=\"http://profiles.wordpress.org/Nao\">Naoko Takano</a>, <a href=\"http://profiles.wordpress.org/naomicbush\">Naomi</a>, <a href=\"http://profiles.wordpress.org/alex-ye\">Nashwan Doaqan</a>, <a href=\"http://profiles.wordpress.org/natejacobs\">NateJacobs</a>, <a href=\"http://profiles.wordpress.org/nathanrice\">nathanrice</a>, <a href=\"http://profiles.wordpress.org/niallkennedy\">Niall Kennedy</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/nickmomrik\">Nick Momrik</a>, <a href=\"http://profiles.wordpress.org/nikv\">Nikhil Vimal (NikV)</a>, <a href=\"http://profiles.wordpress.org/nbachiyski\">Nikolay Bachiyski</a>, <a href=\"http://profiles.wordpress.org/noahsilverstein\">noahsilverstein</a>, <a href=\"http://profiles.wordpress.org/nofearinc\">nofearinc</a>, <a href=\"http://profiles.wordpress.org/nukaga\">nukaga</a>, <a href=\"http://profiles.wordpress.org/nullvariable\">nullvariable</a>, <a href=\"http://profiles.wordpress.org/butuzov\">Oleg Butuzov</a>, <a href=\"http://profiles.wordpress.org/paolal\">Paolo Belcastro</a>, <a href=\"http://profiles.wordpress.org/xparham\">Parham</a>, <a href=\"http://profiles.wordpress.org/pbiron\">Paul Biron</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/peterjaap\">peterjaap</a>, <a href=\"http://profiles.wordpress.org/westi\">Peter Westwood</a>, <a href=\"http://profiles.wordpress.org/philiparthurmoore\">Philip Arthur Moore</a>, <a href=\"http://profiles.wordpress.org/mordauk\">Pippin Williamson</a>, <a href=\"http://profiles.wordpress.org/plocha\">plocha</a>, <a href=\"http://profiles.wordpress.org/pollett\">Pollett</a>, <a href=\"http://profiles.wordpress.org/ptahdunbar\">Ptah Dunbar</a>, <a href=\"http://profiles.wordpress.org/ramiy\">Rami Yushuvaev</a>, <a href=\"http://profiles.wordpress.org/rasheed\">Rasheed Bydousi</a>, <a href=\"http://profiles.wordpress.org/raybernard\">RayBernard</a>, <a href=\"http://profiles.wordpress.org/rboren\">rboren</a>, <a href=\"http://profiles.wordpress.org/greuben\">Reuben Gunday</a>, <a href=\"http://profiles.wordpress.org/rfair404\">rfair404</a>, <a href=\"http://profiles.wordpress.org/iamfriendly\">Richard Tape</a>, <a href=\"http://profiles.wordpress.org/r3df\">Rick Radko</a>, <a href=\"http://profiles.wordpress.org/miqrogroove\">Robert Chapin</a>, <a href=\"http://profiles.wordpress.org/rdall\">Robert Dall</a>, <a href=\"http://profiles.wordpress.org/rodrigosprimo\">Rodrigo Primo</a>, <a href=\"http://profiles.wordpress.org/wpmuguru\">Ron Rennick</a>, <a href=\"http://profiles.wordpress.org/rpattillo\">rpattillo</a>, <a href=\"http://profiles.wordpress.org/ryan\">Ryan Boren</a>, <a href=\"http://profiles.wordpress.org/rmccue\">Ryan McCue</a>, <a href=\"http://profiles.wordpress.org/hotchkissconsulting\">Sam Hotchkiss</a>, <a href=\"http://profiles.wordpress.org/coffee2code\">Scott Reilly</a>, <a href=\"http://profiles.wordpress.org/scottsweb\">scottsweb</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/scruffian\">scruffian</a>, <a href=\"http://profiles.wordpress.org/tenpura\">Seisuke Kuraishi (tenpura)</a>, <a href=\"http://profiles.wordpress.org/sergeybiryukov\">Sergey Biryukov</a>, <a href=\"http://profiles.wordpress.org/shinichin\">ShinichiN</a>, <a href=\"http://profiles.wordpress.org/pross\">Simon Prosser</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/sirzooro\">sirzooro</a>, <a href=\"http://profiles.wordpress.org/solarissmoke\">solarissmoke</a>, <a href=\"http://profiles.wordpress.org/sillybean\">Stephanie Leary</a>, <a href=\"http://profiles.wordpress.org/netweb\">Stephen Edgar (@netweb)</a>, <a href=\"http://profiles.wordpress.org/stephenharris\">Stephen Harris</a>, <a href=\"http://profiles.wordpress.org/strangerstudios\">strangerstudios</a>, <a href=\"http://profiles.wordpress.org/sweetie089\">sweetie089</a>, <a href=\"http://profiles.wordpress.org/swissspidy\">swissspidy</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/tlovett1\">Taylor Lovett</a>, <a href=\"http://profiles.wordpress.org/tivnet\">tivnet</a>, <a href=\"http://profiles.wordpress.org/tobiasbg\">TobiasBg</a>, <a href=\"http://profiles.wordpress.org/tomauger\">Tom Auger</a>, <a href=\"http://profiles.wordpress.org/toscho\">toscho</a>, <a href=\"http://profiles.wordpress.org/wpsmith\">Travis Smith</a>, <a href=\"http://profiles.wordpress.org/sorich87\">Ulrich Sossou</a>, <a href=\"http://profiles.wordpress.org/vericgar\">vericgar</a>, <a href=\"http://profiles.wordpress.org/vinod-dalvi\">Vinod Dalvi</a>, <a href=\"http://profiles.wordpress.org/westonruter\">Weston Ruter</a>, <a href=\"http://profiles.wordpress.org/wikicms\">wikicms</a>, <a href=\"http://profiles.wordpress.org/willnorris\">Will Norris</a>, <a href=\"http://profiles.wordpress.org/wojtekszkutnik\">Wojtek Szkutnik</a>, <a href=\"http://profiles.wordpress.org/wycks\">wycks</a>, <a href=\"http://profiles.wordpress.org/yoavf\">Yoav Farhi</a>, and <a href=\"http://profiles.wordpress.org/yurivictor\">Yuri Victor</a>.</p>\n<p>Enjoy what may be one of your last few manual updates. See you soon for version 3.8!</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:45:\"http://wordpress.org/news/2013/10/basie/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: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.7 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/2013/10/wordpress-3-7-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/2013/10/wordpress-3-7-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:\"Wed, 23 Oct 2013 00:05: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: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=2729\";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:417:\"The second release candidate of WordPress 3.7 is now available for testing! Those of you already testing WordPress 3.7 will be updated automatically to RC2. (Nice.) If you’d like to start testing, there’s no time like the present! Try the WordPress Beta Tester plugin (you’ll want “bleeding edge nightlies”) or download the release candidate here (zip). Please post to the Alpha/Beta […]\";s: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:1183:\"<p>The second release candidate of WordPress 3.7 is now available for testing!</p>\n<p>Those of you already testing WordPress 3.7 will be updated automatically to RC2. (<em>Nice.</em>) If you’d like to start testing, there’s no time like the present! Try the <a href=\"http://wordpress.org/extend/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin (you’ll want “bleeding edge nightlies”) or <a href=\"http://wordpress.org/wordpress-3.7-RC2.zip\">download the release candidate here</a> (zip). Please post to the <a href=\"http://wordpress.org/support/forum/alphabeta/\">Alpha/Beta area in the support forums</a> if you think you’ve found a bug, and if any known issues are raised, you’ll be able to <a href=\"http://core.trac.wordpress.org/report/5\">find them here</a>.</p>\n<p>Developers, please test your plugins and themes against WordPress 3.7. If there is a compatibility issue, let us know as soon as possible so we can deal with it before the final release.</p>\n<p>For more on WordPress 3.7, check out the <a href=\"http://wordpress.org/news/2013/10/wordpress-3-7-release-candidate/\">announcement post for Release Candidate 1</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"http://wordpress.org/news/2013/10/wordpress-3-7-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:8;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:18:\"Upcoming WordCamps\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:55:\"http://wordpress.org/news/2013/10/upcoming-wordcamps-4/\";s: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/2013/10/upcoming-wordcamps-4/#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, 22 Oct 2013 19:25: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:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:9:\"Community\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"WordCamp\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"http://wordpress.org/news/?p=2723\";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:368:\"WordCamps are casual, locally-organized conferences that celebrate everything related to WordPress, and are a great opportunity to meet other WordPress users and professionals in your community. This has been a great year for WordCamps — there have been 56 so far in more than 20 countries, and there another 15 on the calendar before the year’s […]\";s: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:\"Jen Mylo\";s: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:3584:\"<p><a href=\"http://central.wordcamp.org/\">WordCamps</a> are casual, locally-organized conferences that celebrate everything related to WordPress, and are a great opportunity to meet other WordPress users and professionals in your community. This has been a great year for WordCamps — there have been 56 so far in more than 20 countries, and there another 15 on the calendar before the year’s over. If there’s one near you, check it out! In addition to getting to know your local WordPress community, most WordCamps attract some traveling visitors a well, giving you the chance to meet contributors to the WordPress open source project and <a href=\"http://make.wordpress.org/\">get involved</a> yourself.</p>\n<p>Here are the WordCamps on the schedule for the rest of this year.</p>\n<p>October 25-27: <strong><a href=\"http://2013.boston.wordcamp.org/\">WordCamp Boston</a></strong>, Boston, MA, USA<br />\nOctober 25-26: <strong><a href=\"http://2013.malaga.wordcamp.org/\">WordCamp Malaga</a></strong>, Spain<br />\nOctober 26: <strong><a href=\"http://2013.nepal.wordcamp.org/\">WordCamp Nepal</a></strong>, Kathmandu, Nepal<br />\nOctober 26: <strong><a href=\"http://2013.sofia.wordcamp.org/\">WordCamp Sofia</a></strong>, Bulgaria<br />\nNovember 7: <strong><a href=\"http://2013.capetown.wordcamp.org/\">WordCamp Cape Town</a></strong>, South Africa<br />\nNovember 9: <strong><a href=\"http://2013.porto.wordcamp.org/\">WordCamp Porto</a></strong>, Portugal<br />\nNovember 9-10: <strong><a href=\"http://2013.kenya.wordcamp.org/\">WordCamp Kenya</a></strong>, Nairobi, Kenya<br />\nNovember 15: <strong><a href=\"http://2013.edmonton.wordcamp.org/\">WordCamp Edmonton</a></strong>, AB, Canada<br />\nNovember 16-17: <strong><a href=\"http://2013.orlando.wordcamp.org/\">WordCamp Orlando</a></strong>, FL, USA<br />\nNovember 16: <strong><a href=\"http://2013.denver.wordcamp.org/\">WordCamp Denver</a></strong>, CO, USA<br />\nNovember 23-24: <strong><a href=\"http://2013.london.wordcamp.org/\">WordCamp London</a></strong>, UK<br />\nNovember 23-24: <strong><a href=\"http://2013.raleigh.wordcamp.org/\">WordCamp Raleigh</a></strong>, NC, USA<br />\nNovember 23: <strong><a href=\"http://2013.saopaulo.wordcamp.org/\">WordCamp São Paulo</a></strong>, Brazil<br />\nDecember 14: <strong><a href=\"http://2013.vegas.wordcamp.org/\">WordCamp Las Vegas</a></strong>, NV, USA<br />\nDecember 14-15: <strong><a href=\"http://2013.sevilla.wordcamp.org/\">WordCamp Sevilla</a></strong>, Spain</p>\n<p>No WordCamps on this list in your area? Not to worry! There are thriving <a href=\"http://wordpress.meetup.com/\">WordPress meetups</a> all over the world where you can meet like-minded people, and we maintain a library of <a href=\"http://wordpress.tv/category/wordcamptv/\">WordCamp videos</a> at <a href=\"http://wordpress.tv/\">WordPress.tv</a>.</p>\n<h3>Get Involved</h3>\n<ul>\n<li>If you’re interested in organizing a WordCamp in your area, check out our <a href=\"http://plan.wordcamp.org/\">WordCamp planning</a> site.</li>\n<li>If you’re interested in <a href=\"http://make.wordpress.org/community/meetup-interest-form/\">starting a WordPress meetup</a> in your area, let us know and we can set up a group on meetup.com for you.</li>\n<li>And speaking of WordCamp videos, we’ve recently enabled volunteer-generated subtitles/closed captioning of the videos on WordPress.tv to make them more accessible. Interested in helping? Check out the <a href=\"http://wordpress.tv/using-amara-org-to-caption-or-subtitle-a-wordpress-tv-video/\">WordPress.tv subtitling instructions</a>.</li>\n</ul>\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/2013/10/upcoming-wordcamps-4/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:31:\"WordPress 3.7 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/2013/10/wordpress-3-7-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/2013/10/wordpress-3-7-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:\"Fri, 18 Oct 2013 19:52: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: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=2718\";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:331:\"The first release candidate for WordPress 3.7 is now available! In RC 1, we’ve made some adjustments to the update process to make it more reliable than ever. We hope to ship WordPress 3.7 next week, but we need your help to get there. If you haven’t tested 3.7 yet, there’s no time like the present. (Please, […]\";s: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:2274:\"<p>The first release candidate for WordPress 3.7 is now available!</p>\n<p>In RC 1, we’ve made some adjustments to the update process to make it more reliable than ever. We hope to ship WordPress 3.7 <em>next week</em>, but we need your help to get there. If you haven’t tested 3.7 yet, there’s no time like the present. (Please, not on a production site, unless you’re adventurous.)</p>\n<p>WordPress 3.7 introduces <strong>automatic background updates</strong> for security and minor releases (like updating from 3.7 to 3.7.1). These are really easy to test — RC 1 will update every 12 hours or so to the latest development version, and then email you the results. (You may get two emails: one for debugging, and one all users of 3.7 will receive.) If something went wrong, you can report it.</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>To test WordPress 3.7 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.7-RC1.zip\">download the release candidate here</a> (zip). If you’d like to learn more about what’s new in WordPress 3.7, visit the awesome About screen in your dashboard (<strong><img alt=\"\" src=\"http://i0.wp.com/core.svn.wordpress.org/branches/3.6/wp-content/themes/twentyten/images/wordpress.png?w=692\" data-recalc-dims=\"1\" /> → About</strong> in the toolbar). There, you can also see if your install is eligible for background updates. WordPress won’t automatically update, for example, if you’re using version control like Subversion or Git.</p>\n<p><strong>Developers,</strong> please test your plugins and themes against WordPress 3.7, so that if there is a compatibility issue, we can figure it out before the final release. Make sure you post any issues to the support forums.</p>\n<p><em>WordPress three seven</em><br />\n<em>A self-updating engine</em><br />\n<em>Lies beneath the hood</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/2013/10/wordpress-3-7-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:\"\";}}}}}}}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:\"Fri, 14 Feb 2014 07:08:18 GMT\";s:12:\"content-type\";s:23:\"text/xml; charset=UTF-8\";s:10:\"connection\";s:5:\"close\";s:4:\"vary\";s:15:\"Accept-Encoding\";s:10:\"x-pingback\";s:36:\"http://wordpress.org/news/xmlrpc.php\";s:13:\"last-modified\";s:29:\"Thu, 23 Jan 2014 20:54:06 GMT\";s:4:\"x-nc\";s:11:\"HIT lax 249\";}s:5:\"build\";s:14:\"20121202214312\";}','no'),(159,'_transient_timeout_feed_16b2eed49b1d356de4631ca9e0397938','1392404898','no'),(160,'_transient_feed_16b2eed49b1d356de4631ca9e0397938','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:56:\"link:http://quantellia.com/tickets/ - 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:93:\"http://www.google.com/search?ie=utf-8&q=link:http://quantellia.com/tickets/&tbm=blg&tbs=sbd:1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:87:\"Your search - <b>link:http://quantellia.com/tickets/</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:\"Fri, 14 Feb 2014 07:08:18 GMT\";s:7:\"expires\";s:2:\"-1\";s:13:\"cache-control\";s:18:\"private, max-age=0\";s:10:\"set-cookie\";a:2:{i:0;s:143:\"PREF=ID=6c68751830481336:FF=0:TM=1392361698:LM=1392361698:S=UyWYU--_JQBhS3Sj; expires=Sun, 14-Feb-2016 07:08:18 GMT; path=/; domain=.google.com\";i:1;s:212:\"NID=67=Y4-MPyplAZTpjl0LZ66BhDSd3VZ3PL6-meIW5D8j-eH523vi2LsSQf3X9mtts7_nCsvaYqMWdktjjLShKPR783y7ytBN-6zYiVXgayh8T6BzObVhNT9GUzctE0uImYAi; expires=Sat, 16-Aug-2014 07:08:18 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:\"20121202214312\";}','no'),(185,'_transient_timeout_plugin_slugs','1392448473','no'),(186,'_transient_plugin_slugs','a:8:{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:13:\"wats/wats.php\";i:7;s:27:\"wp-super-cache/wp-cache.php\";}','no'),(153,'recently_activated','a:0:{}','yes'),(193,'_transient_plugins_delete_result_1','1','yes'),(194,'_site_transient_update_plugins','O:8:\"stdClass\":3:{s:12:\"last_checked\";i:1392363496;s:7:\"checked\";a:8:{s:19:\"akismet/akismet.php\";s:5:\"2.5.9\";s:50:\"google-analytics-for-wordpress/googleanalytics.php\";s:5:\"4.3.5\";s:36:\"google-sitemap-generator/sitemap.php\";s:3:\"3.4\";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.17\";s:13:\"wats/wats.php\";s:6:\"1.0.57\";s:27:\"wp-super-cache/wp-cache.php\";s:3:\"1.4\";}s:8:\"response\";a:0:{}}','yes'),(195,'wats','a:67:{s:13:\"wats_statuses\";a:6:{i:1;s:10:\"Newly open\";i:2;s:19:\"Under investigation\";i:3;s:23:\"Waiting for reoccurence\";i:4;s:19:\"Waiting for details\";i:5;s:18:\"Solution delivered\";i:6;s:6:\"Closed\";}s:15:\"wats_priorities\";a:4:{i:1;s:9:\"Emergency\";i:2;s:8:\"Critical\";i:3;s:5:\"Major\";i:4;s:5:\"Minor\";}s:10:\"wats_types\";a:4:{i:1;s:8:\"Question\";i:2;s:6:\"SW Bug\";i:3;s:20:\"Installation request\";i:4;s:15:\"Feature request\";}s:9:\"wats_slas\";a:3:{i:1;s:4:\"Gold\";i:2;s:6:\"Silver\";i:3;s:6:\"Bronze\";}s:12:\"numerotation\";s:1:\"1\";s:12:\"wats_version\";s:6:\"1.0.57\";s:15:\"wats_guest_user\";i:-1;s:17:\"wats_home_display\";i:1;s:10:\"visibility\";s:1:\"2\";s:13:\"ticket_assign\";i:0;s:29:\"new_ticket_notification_admin\";i:0;s:27:\"comment_menuitem_visibility\";i:0;s:15:\"tickets_tagging\";i:0;s:21:\"tickets_custom_fields\";i:0;s:27:\"ticket_edition_media_upload\";i:0;s:32:\"ticket_edition_media_upload_tabs\";i:0;s:23:\"ticket_assign_user_list\";i:0;s:38:\"ticket_update_notification_all_tickets\";i:0;s:37:\"ticket_update_notification_my_tickets\";i:0;s:27:\"call_center_ticket_creation\";i:0;s:20:\"user_selector_format\";s:10:\"user_login\";s:21:\"filter_ticket_listing\";i:0;s:30:\"filter_ticket_listing_meta_key\";s:4:\"None\";s:26:\"meta_column_ticket_listing\";i:0;s:35:\"meta_column_ticket_listing_meta_key\";s:4:\"None\";s:22:\"notification_signature\";s:44:\"Regards,<br /><br />WATS Notification engine\";s:21:\"user_selector_order_1\";s:9:\"last_name\";s:21:\"user_selector_order_2\";s:10:\"first_name\";s:27:\"frontend_submit_form_access\";i:0;s:34:\"frontend_submit_form_ticket_status\";i:0;s:26:\"submit_form_default_author\";s:11:\"lorienpratt\";s:20:\"ms_ticket_submission\";i:0;s:14:\"ms_mail_server\";s:16:\"mail.example.com\";s:14:\"ms_port_server\";s:3:\"110\";s:15:\"ms_mail_address\";s:17:\"login@example.com\";s:16:\"ms_mail_password\";s:8:\"password\";s:16:\"closed_status_id\";i:6;s:31:\"ticket_notification_bypass_mode\";i:0;s:19:\"default_ticket_type\";i:1;s:21:\"default_ticket_status\";i:1;s:23:\"default_ticket_priority\";i:1;s:20:\"source_email_address\";i:0;s:38:\"prevent_user_profile_mail_modification\";i:0;s:26:\"ticket_product_key_enabled\";i:0;s:25:\"ticket_status_key_enabled\";i:1;s:27:\"ticket_priority_key_enabled\";i:1;s:23:\"ticket_type_key_enabled\";i:1;s:22:\"default_ticket_product\";i:1;s:23:\"profile_country_enabled\";i:0;s:24:\"country_meta_key_profile\";s:7:\"country\";s:28:\"user_expiration_date_enabled\";i:0;s:23:\"profile_company_enabled\";i:0;s:24:\"company_meta_key_profile\";s:12:\"company_name\";s:19:\"profile_sla_enabled\";i:0;s:38:\"ticket_visibility_read_only_capability\";i:0;s:31:\"ticket_notification_custom_list\";i:0;s:30:\"ticket_visibility_same_company\";i:0;s:27:\"internal_comment_visibility\";i:0;s:17:\"template_selector\";s:1:\"0\";s:42:\"wats_default_ticket_listing_active_columns\";a:14:{s:2:\"id\";i:1;s:5:\"title\";i:1;s:8:\"category\";i:1;s:6:\"author\";i:1;s:5:\"owner\";i:1;s:13:\"creation_date\";i:1;s:17:\"modification_date\";i:1;s:12:\"last_updater\";i:1;s:10:\"ticket_age\";i:1;s:12:\"closure_date\";i:1;s:4:\"type\";i:1;s:8:\"priority\";i:1;s:6:\"status\";i:1;s:7:\"product\";i:1;}s:41:\"wats_default_ticket_listing_default_query\";a:7:{s:4:\"type\";i:0;s:8:\"priority\";i:0;s:9:\"status_op\";i:0;s:6:\"status\";i:0;s:7:\"product\";i:0;s:6:\"author\";i:0;s:5:\"owner\";i:0;}s:30:\"display_list_not_authenticated\";i:1;s:30:\"drop_down_user_selector_format\";i:0;s:25:\"wats_ticket_custom_fields\";a:0:{}s:15:\"wats_categories\";a:0:{}s:16:\"fsf_success_init\";i:1;s:24:\"fsf_success_redirect_url\";s:0:\"\";}','yes'),(192,'_site_transient_update_themes','O:8:\"stdClass\":3:{s:12:\"last_checked\";i:1392363465;s:7:\"checked\";a:2:{s:12:\"twentyeleven\";s:3:\"1.7\";s:12:\"twentytwelve\";s:3:\"1.3\";}s:8:\"response\";a:0:{}}','yes'),(158,'_site_transient_browser_6d44eab61dcf5b1f0e6fa8f6595ee1bc','a:9:{s:8:\"platform\";s:7:\"Windows\";s:4:\"name\";N;s:7:\"version\";N;s:10:\"update_url\";s:0:\"\";s:7:\"img_src\";s:0:\"\";s:11:\"img_src_ssl\";s:0:\"\";s:15:\"current_version\";s:0:\"\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;}','yes'),(167,'_transient_timeout_feed_mod_ac0b00fe65abe10e0c5b588f3ed8c7ca','1392404899','no'),(168,'_transient_feed_mod_ac0b00fe65abe10e0c5b588f3ed8c7ca','1392361699','no'),(169,'_transient_timeout_dash_4077549d03da2e451c8b5f002294ff51','1392404899','no'),(170,'_transient_dash_4077549d03da2e451c8b5f002294ff51','<div class=\"rss-widget\"><ul><li><a class=\'rsswidget\' href=\'http://wordpress.org/news/2014/01/wordpress-3-8-1/\' title=\'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 […] […]\'>WordPress 3.8.1 Maintenance Release</a> <span class=\"rss-date\">January 23, 2014</span><div class=\'rssSummary\'>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 […] […]</div></li><li><a class=\'rsswidget\' href=\'http://wordpress.org/news/2013/12/parker/\' title=\'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. […] […]\'>WordPress 3.8 “Parker”</a> <span class=\"rss-date\">December 12, 2013</span><div class=\'rssSummary\'>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. […] […]</div></li></ul></div>','no'),(173,'_transient_timeout_feed_mod_867bd5c64f85878d03a060509cd2f92c','1392404899','no'),(174,'_transient_feed_mod_867bd5c64f85878d03a060509cd2f92c','1392361699','no'),(179,'_transient_timeout_feed_mod_a5420c83891a9c88ad2a4f04584a5efc','1392404899','no'),(180,'_transient_feed_mod_a5420c83891a9c88ad2a4f04584a5efc','1392361699','no'),(189,'_site_transient_timeout_poptags_40cd750bba9870f18aada2478b24840a','1392372534','yes'),(190,'_site_transient_poptags_40cd750bba9870f18aada2478b24840a','a:40:{s:6:\"widget\";a:3:{s:4:\"name\";s:6:\"widget\";s:4:\"slug\";s:6:\"widget\";s:5:\"count\";s:4:\"3898\";}s:4:\"post\";a:3:{s:4:\"name\";s:4:\"Post\";s:4:\"slug\";s:4:\"post\";s:5:\"count\";s:4:\"2456\";}s:6:\"plugin\";a:3:{s:4:\"name\";s:6:\"plugin\";s:4:\"slug\";s:6:\"plugin\";s:5:\"count\";s:4:\"2344\";}s:5:\"admin\";a:3:{s:4:\"name\";s:5:\"admin\";s:4:\"slug\";s:5:\"admin\";s:5:\"count\";s:4:\"1930\";}s:5:\"posts\";a:3:{s:4:\"name\";s:5:\"posts\";s:4:\"slug\";s:5:\"posts\";s:5:\"count\";s:4:\"1856\";}s:7:\"sidebar\";a:3:{s:4:\"name\";s:7:\"sidebar\";s:4:\"slug\";s:7:\"sidebar\";s:5:\"count\";s:4:\"1583\";}s:7:\"twitter\";a:3:{s:4:\"name\";s:7:\"twitter\";s:4:\"slug\";s:7:\"twitter\";s:5:\"count\";s:4:\"1329\";}s:6:\"google\";a:3:{s:4:\"name\";s:6:\"google\";s:4:\"slug\";s:6:\"google\";s:5:\"count\";s:4:\"1325\";}s:8:\"comments\";a:3:{s:4:\"name\";s:8:\"comments\";s:4:\"slug\";s:8:\"comments\";s:5:\"count\";s:4:\"1310\";}s:6:\"images\";a:3:{s:4:\"name\";s:6:\"images\";s:4:\"slug\";s:6:\"images\";s:5:\"count\";s:4:\"1260\";}s:4:\"page\";a:3:{s:4:\"name\";s:4:\"page\";s:4:\"slug\";s:4:\"page\";s:5:\"count\";s:4:\"1225\";}s:5:\"image\";a:3:{s:4:\"name\";s:5:\"image\";s:4:\"slug\";s:5:\"image\";s:5:\"count\";s:4:\"1121\";}s:9:\"shortcode\";a:3:{s:4:\"name\";s:9:\"shortcode\";s:4:\"slug\";s:9:\"shortcode\";s:5:\"count\";s:4:\"1000\";}s:8:\"facebook\";a:3:{s:4:\"name\";s:8:\"Facebook\";s:4:\"slug\";s:8:\"facebook\";s:5:\"count\";s:3:\"982\";}s:5:\"links\";a:3:{s:4:\"name\";s:5:\"links\";s:4:\"slug\";s:5:\"links\";s:5:\"count\";s:3:\"974\";}s:3:\"seo\";a:3:{s:4:\"name\";s:3:\"seo\";s:4:\"slug\";s:3:\"seo\";s:5:\"count\";s:3:\"950\";}s:9:\"wordpress\";a:3:{s:4:\"name\";s:9:\"wordpress\";s:4:\"slug\";s:9:\"wordpress\";s:5:\"count\";s:3:\"844\";}s:7:\"gallery\";a:3:{s:4:\"name\";s:7:\"gallery\";s:4:\"slug\";s:7:\"gallery\";s:5:\"count\";s:3:\"821\";}s:6:\"social\";a:3:{s:4:\"name\";s:6:\"social\";s:4:\"slug\";s:6:\"social\";s:5:\"count\";s:3:\"780\";}s:3:\"rss\";a:3:{s:4:\"name\";s:3:\"rss\";s:4:\"slug\";s:3:\"rss\";s:5:\"count\";s:3:\"722\";}s:7:\"widgets\";a:3:{s:4:\"name\";s:7:\"widgets\";s:4:\"slug\";s:7:\"widgets\";s:5:\"count\";s:3:\"686\";}s:6:\"jquery\";a:3:{s:4:\"name\";s:6:\"jquery\";s:4:\"slug\";s:6:\"jquery\";s:5:\"count\";s:3:\"681\";}s:5:\"pages\";a:3:{s:4:\"name\";s:5:\"pages\";s:4:\"slug\";s:5:\"pages\";s:5:\"count\";s:3:\"678\";}s:5:\"email\";a:3:{s:4:\"name\";s:5:\"email\";s:4:\"slug\";s:5:\"email\";s:5:\"count\";s:3:\"623\";}s:4:\"ajax\";a:3:{s:4:\"name\";s:4:\"AJAX\";s:4:\"slug\";s:4:\"ajax\";s:5:\"count\";s:3:\"615\";}s:5:\"media\";a:3:{s:4:\"name\";s:5:\"media\";s:4:\"slug\";s:5:\"media\";s:5:\"count\";s:3:\"595\";}s:10:\"javascript\";a:3:{s:4:\"name\";s:10:\"javascript\";s:4:\"slug\";s:10:\"javascript\";s:5:\"count\";s:3:\"572\";}s:5:\"video\";a:3:{s:4:\"name\";s:5:\"video\";s:4:\"slug\";s:5:\"video\";s:5:\"count\";s:3:\"570\";}s:10:\"buddypress\";a:3:{s:4:\"name\";s:10:\"buddypress\";s:4:\"slug\";s:10:\"buddypress\";s:5:\"count\";s:3:\"541\";}s:4:\"feed\";a:3:{s:4:\"name\";s:4:\"feed\";s:4:\"slug\";s:4:\"feed\";s:5:\"count\";s:3:\"539\";}s:7:\"content\";a:3:{s:4:\"name\";s:7:\"content\";s:4:\"slug\";s:7:\"content\";s:5:\"count\";s:3:\"530\";}s:5:\"photo\";a:3:{s:4:\"name\";s:5:\"photo\";s:4:\"slug\";s:5:\"photo\";s:5:\"count\";s:3:\"522\";}s:4:\"link\";a:3:{s:4:\"name\";s:4:\"link\";s:4:\"slug\";s:4:\"link\";s:5:\"count\";s:3:\"506\";}s:6:\"photos\";a:3:{s:4:\"name\";s:6:\"photos\";s:4:\"slug\";s:6:\"photos\";s:5:\"count\";s:3:\"505\";}s:5:\"login\";a:3:{s:4:\"name\";s:5:\"login\";s:4:\"slug\";s:5:\"login\";s:5:\"count\";s:3:\"471\";}s:4:\"spam\";a:3:{s:4:\"name\";s:4:\"spam\";s:4:\"slug\";s:4:\"spam\";s:5:\"count\";s:3:\"458\";}s:5:\"stats\";a:3:{s:4:\"name\";s:5:\"stats\";s:4:\"slug\";s:5:\"stats\";s:5:\"count\";s:3:\"453\";}s:8:\"category\";a:3:{s:4:\"name\";s:8:\"category\";s:4:\"slug\";s:8:\"category\";s:5:\"count\";s:3:\"452\";}s:7:\"youtube\";a:3:{s:4:\"name\";s:7:\"youtube\";s:4:\"slug\";s:7:\"youtube\";s:5:\"count\";s:3:\"436\";}s:7:\"comment\";a:3:{s:4:\"name\";s:7:\"comment\";s:4:\"slug\";s:7:\"comment\";s:5:\"count\";s:3:\"432\";}}','yes'),(196,'_site_transient_timeout_wporg_theme_feature_list','1392374048','yes'),(197,'_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:8:\"Features\";a:19:{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\";}s:5:\"Width\";a:2:{i:0;s:11:\"fixed-width\";i:1;s:14:\"flexible-width\";}}','yes'),(198,'theme_mods_twentyeleven','a:1:{s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1392361915;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'),(199,'current_theme','Twenty Twelve','yes'),(200,'theme_mods_twentytwelve','a:1:{i:0;b:0;}','yes'),(201,'theme_switched','','yes'),(203,'category_children','a:0:{}','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=8 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,'_edit_last','1'),(3,4,'_edit_lock','1392363360:1'),(4,4,'wats_ticket_status','5'),(5,4,'wats_ticket_type','3'),(6,4,'wats_ticket_priority','3'),(7,4,'wats_ticket_number','1'); /*!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=6 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','','publish','open','open','','sample-page','','','2012-06-20 17:27:39','2012-06-20 17:27:39','',0,'http://netsol003.com/woopWp/?page_id=2',0,'page','',0),(5,1,'2014-02-14 07:36:34','0000-00-00 00:00:00','','Auto Draft','','auto-draft','open','open','','','','','2014-02-14 07:36:34','0000-00-00 00:00:00','',0,'http://quantellia.com/tickets/?p=5',0,'post','',0),(4,1,'2014-02-14 07:36:00','2014-02-14 07:36:00','This is freeform ticket text','This is a trouble ticket','','publish','open','closed','','this-is-a-trouble-ticket','','','2014-02-14 07:36:00','2014-02-14 07:36:00','',0,'http://quantellia.com/tickets/?post_type=ticket&p=4',0,'ticket','',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); /*!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=3 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); /*!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=3 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); /*!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=15 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','lorienpratt'),(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'),(13,1,'show_welcome_panel','1'),(14,1,'wp_dashboard_quick_press_last_post_id','5'); /*!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,'lorienpratt','$P$BJ7.B0aaP/NnmM1Sf0Y83m5K6qsvIv/','lorienpratt','lorien.pratt@quantellia.com','','2014-02-14 07:06:42','',0,'lorienpratt'); /*!40000 ALTER TABLE `wp_users` ENABLE KEYS */; UNLOCK TABLES; -- -- Dumping routines for database '1_037cc9e_4' -- 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 2015-02-16 1:47:38