0byt3m1n1
Path:
/
data
/
21
/
3
/
94
/
62
/
3094225
/
meta
/
3448089
/
mysql.backup
/
[
Home
]
File: 1_037cc9e_3.mysqlv101.bak.sql
-- MySQL dump 10.11 -- -- Host: mysqlv101 Database: 1_037cc9e_3 -- ------------------------------------------------------ -- 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=288 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/partnerswiki','yes'),(2,'blogname','PartnersWiki','yes'),(3,'blogdescription','Quantellia Partners Wiki','yes'),(4,'users_can_register','1','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','','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:6:{i:0;s:37:\"breadcrumb-navxt/breadcrumb-navxt.php\";i:1;s:50:\"google-analytics-for-wordpress/googleanalytics.php\";i:2;s:19:\"members/members.php\";i:3;s:27:\"pencil-wiki/pencil-wiki.php\";i:4;s:37:\"simple-footnotes/simple-footnotes.php\";i:5;s:47:\"wordpress-wiki-plugin/wordpress-wiki-plugin.php\";}','yes'),(37,'home','http://quantellia.com/partnerswiki','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','-7','yes'),(43,'default_email_category','1','yes'),(44,'recently_edited','a:3:{i:0;s:117:\"\\\\WDP\\DFS\\30\\3\\5\\5\\3047670553\\user\\sites\\3448089.site\\www\\partnerswiki/wp-content/plugins/pencil-wiki/pencil-wiki.php\";i:2;s:109:\"\\\\WDP\\DFS\\30\\3\\5\\5\\3047670553\\user\\sites\\3448089.site\\www\\partnerswiki/wp-content/plugins/akismet/akismet.php\";i:3;s:0:\"\";}','no'),(45,'template','twentyfourteen','yes'),(46,'stylesheet','twentyfourteen','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','page','yes'),(59,'tag_base','','yes'),(60,'show_avatars','1','yes'),(61,'avatar_rating','G','yes'),(62,'upload_url_path','','yes'),(63,'thumbnail_size_w','150','yes'),(64,'thumbnail_size_h','150','yes'),(65,'thumbnail_crop','1','yes'),(66,'medium_size_w','300','yes'),(67,'medium_size_h','300','yes'),(68,'avatar_default','mystery','yes'),(71,'large_size_w','1024','yes'),(72,'large_size_h','1024','yes'),(73,'image_default_link_type','file','yes'),(74,'image_default_size','','yes'),(75,'image_default_align','','yes'),(76,'close_comments_for_old_posts','0','yes'),(77,'close_comments_days_old','14','yes'),(78,'thread_comments','1','yes'),(79,'thread_comments_depth','5','yes'),(80,'page_comments','0','yes'),(81,'comments_per_page','50','yes'),(82,'default_comments_page','newest','yes'),(83,'comment_order','asc','yes'),(84,'sticky_posts','a:0:{}','yes'),(85,'widget_categories','a:2:{i:2;a:4:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:12:\"hierarchical\";i:0;s:8:\"dropdown\";i:0;}s:12:\"_multiwidget\";i:1;}','yes'),(86,'widget_text','a:0:{}','yes'),(87,'widget_rss','a:0:{}','yes'),(88,'uninstall_plugins','a:0:{}','no'),(89,'timezone_string','','yes'),(91,'embed_size_w','','yes'),(92,'embed_size_h','600','yes'),(93,'page_for_posts','0','yes'),(94,'page_on_front','12','yes'),(95,'default_post_format','0','yes'),(96,'initial_db_version','20596','yes'),(97,'wp_user_roles','a:6:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:79:{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:23:\"read_private_wiki_pages\";b:1;s:23:\"edit_private_wiki_pages\";b:1;s:27:\"delete_published_wiki_pages\";b:1;s:24:\"delete_others_wiki_pages\";b:1;s:25:\"delete_private_wiki_pages\";b:1;s:15:\"edit_wiki_pages\";b:1;s:22:\"edit_others_wiki_pages\";b:1;s:25:\"edit_published_wiki_pages\";b:1;s:17:\"delete_wiki_pages\";b:1;s:18:\"publish_wiki_pages\";b:1;s:20:\"edit_root_wiki_pages\";b:1;s:15:\"lock_wiki_pages\";b:1;s:10:\"list_roles\";b:1;s:12:\"create_roles\";b:1;s:12:\"delete_roles\";b:1;s:10:\"edit_roles\";b:1;s:16:\"restrict_content\";b:1;}}s:6:\"editor\";a:2:{s:4:\"name\";s:6:\"Editor\";s:12:\"capabilities\";a:46:{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:23:\"read_private_wiki_pages\";b:1;s:23:\"edit_private_wiki_pages\";b:1;s:27:\"delete_published_wiki_pages\";b:1;s:24:\"delete_others_wiki_pages\";b:1;s:25:\"delete_private_wiki_pages\";b:1;s:15:\"edit_wiki_pages\";b:1;s:22:\"edit_others_wiki_pages\";b:1;s:25:\"edit_published_wiki_pages\";b:1;s:17:\"delete_wiki_pages\";b:1;s:18:\"publish_wiki_pages\";b:1;s:20:\"edit_root_wiki_pages\";b:1;s:15:\"lock_wiki_pages\";b:1;}}s:6:\"author\";a:2:{s:4:\"name\";s:6:\"Author\";s:12:\"capabilities\";a:15:{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:15:\"edit_wiki_pages\";b:1;s:22:\"edit_others_wiki_pages\";b:1;s:25:\"edit_published_wiki_pages\";b:1;s:17:\"delete_wiki_pages\";b:1;s:18:\"publish_wiki_pages\";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;}}s:11:\"wiki_author\";a:2:{s:4:\"name\";s:11:\"Wiki Author\";s:12:\"capabilities\";a:17:{s:4:\"read\";b:1;s:7:\"level_0\";b:1;s:15:\"edit_wiki_pages\";b:1;s:22:\"edit_others_wiki_pages\";b:1;s:25:\"edit_published_wiki_pages\";b:1;s:17:\"delete_wiki_pages\";b:1;s:18:\"publish_wiki_pages\";b:1;s:10:\"edit_posts\";b:1;s:23:\"edit_private_wiki_pages\";b:1;s:24:\"delete_others_wiki_pages\";b:1;s:25:\"delete_private_wiki_pages\";b:1;s:27:\"delete_published_wiki_pages\";b:1;s:20:\"edit_root_wiki_pages\";b:1;s:15:\"lock_wiki_pages\";b:1;s:12:\"manage_links\";b:1;s:23:\"read_private_wiki_pages\";b:1;s:12:\"upload_files\";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:6:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:10:{i:0;s:12:\"bcn_widget-2\";i:1;s:13:\"incsub_wiki-2\";i:2;s:14:\"pwiki_search-2\";i:3;s:19:\"pwiki_widget_tree-2\";i:4;s:29:\"pwiki_widget_edit_page_link-2\";i:5;s:8:\"search-2\";i:6;s:14:\"recent-posts-2\";i:7;s:17:\"recent-comments-2\";i:8;s:10:\"archives-2\";i:9;s:6:\"meta-2\";}s:9:\"sidebar-2\";a:0:{}s:9:\"sidebar-3\";a:1:{i:0;s:28:\"pwiki_widget_add_page_link-2\";}s:18:\"orphaned_widgets_1\";a:1:{i:0;s:12:\"categories-2\";}s:13:\"array_version\";i:3;}','yes'),(104,'cron','a:6:{i:1392387060;a:1:{s:22:\"wpmudev_scheduled_jobs\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}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:1392388080;a:1:{s:20:\"wp_maybe_auto_update\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i: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:1392430845;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','1392948561','yes'),(106,'_transient_random_seed','55e048582bdfca1fc4a5c5c36eb239f1','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'),(268,'theme_mods_twentyeleven','a:1:{s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1392359413;s:4:\"data\";a:6:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:10:{i:0;s:12:\"bcn_widget-2\";i:1;s:13:\"incsub_wiki-2\";i:2;s:14:\"pwiki_search-2\";i:3;s:19:\"pwiki_widget_tree-2\";i:4;s:29:\"pwiki_widget_edit_page_link-2\";i:5;s:8:\"search-2\";i:6;s:14:\"recent-posts-2\";i:7;s:17:\"recent-comments-2\";i:8;s:10:\"archives-2\";i:9;s:6:\"meta-2\";}s:9:\"sidebar-2\";a:0:{}s:9:\"sidebar-3\";a:1:{i:0;s:28:\"pwiki_widget_add_page_link-2\";}s:9:\"sidebar-4\";a:1:{i:0;s:12:\"categories-2\";}s:9:\"sidebar-5\";a:0:{}}}}','yes'),(285,'_site_transient_browser_35945ed20a1898c862f445d4cee839b3','a:9:{s:8:\"platform\";s:9:\"Macintosh\";s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:12:\"33.0.1750.70\";s:10:\"update_url\";s:28:\"http://www.google.com/chrome\";s:7:\"img_src\";s:49:\"http://s.wordpress.org/images/browsers/chrome.png\";s:11:\"img_src_ssl\";s:48:\"https://wordpress.org/images/browsers/chrome.png\";s:15:\"current_version\";s:2:\"18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;}','yes'),(280,'_site_transient_timeout_theme_roots','1392362966','yes'),(281,'_site_transient_theme_roots','a:4:{s:12:\"twentyeleven\";s:7:\"/themes\";s:14:\"twentyfourteen\";s:7:\"/themes\";s:14:\"twentythirteen\";s:7:\"/themes\";s:12:\"twentytwelve\";s:7:\"/themes\";}','yes'),(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:34:\"http://quantellia.com/partnerswiki\";s:4:\"link\";s:110:\"http://blogsearch.google.com/blogsearch?scoring=d&partner=wordpress&q=link:http://quantellia.com/partnerswiki/\";s:3:\"url\";s:143:\"http://blogsearch.google.com/blogsearch_feeds?scoring=d&ie=utf-8&num=10&output=rss&partner=wordpress&q=link:http://quantellia.com/partnerswiki/\";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'),(173,'_transient_timeout_feed_mod_a5420c83891a9c88ad2a4f04584a5efc','1392386964','no'),(174,'_transient_feed_mod_a5420c83891a9c88ad2a4f04584a5efc','1392343764','no'),(171,'_transient_timeout_feed_a5420c83891a9c88ad2a4f04584a5efc','1392386964','no'),(172,'_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 02: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: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:7:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Fri, 14 Feb 2014 02:09:24 GMT\";s:12:\"content-type\";s:23:\"text/xml; charset=UTF-8\";s:10:\"connection\";s:5:\"close\";s:4:\"vary\";s:15:\"Accept-Encoding\";s:13:\"last-modified\";s:29:\"Thu, 02 Aug 2007 12:45:03 GMT\";s:4:\"x-nc\";s:11:\"HIT lax 250\";}s:5:\"build\";s:14:\"20121202214312\";}','no'),(175,'_transient_timeout_feed_867bd5c64f85878d03a060509cd2f92c','1392386964','no'),(176,'_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: 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:6064:\"<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 before 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 Dapartment (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: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: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: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: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: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: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: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: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: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: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: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: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: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: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:8;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:77:\"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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: 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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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:17 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s: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: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: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: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: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: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: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: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:\"\";}}}}}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:49:\"WordPress.tv: Kameron Williams: Design For Humans\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=30601\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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.tv/2014/02/05/kameron-williams-design-for-humans/\";s: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:653:\"<div id=\"v-0c6tdIL3-1\" class=\"video-player\">\n</div><br /> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/30601/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/30601/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=30601&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2014/02/05/kameron-williams-design-for-humans/\"><img alt=\"Kameron Williams: Design For Humans\" src=\"http://videos.videopress.com/0c6tdIL3/video-2855cb23a4_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:\"Wed, 05 Feb 2014 07:34:22 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s: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:\"\";}}}}}}}}}}}}}}}}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 02:09:23 GMT\";s:12:\"content-type\";s:8:\"text/xml\";s:14:\"content-length\";s:6:\"224296\";s:10:\"connection\";s:5:\"close\";s:4:\"vary\";s:15:\"Accept-Encoding\";s:13:\"last-modified\";s:29:\"Fri, 14 Feb 2014 01:45:15 GMT\";s:4:\"x-nc\";s:11:\"HIT lax 249\";s:13:\"accept-ranges\";s:5:\"bytes\";}s:5:\"build\";s:14:\"20121202214312\";}','no'),(161,'_transient_timeout_feed_mod_f030752c0ba1e6aae07737aad6727565','1392386964','no'),(162,'_transient_feed_mod_f030752c0ba1e6aae07737aad6727565','1392343764','no'),(163,'_transient_timeout_dash_20494a3d90a6669585674ed0eb8dcd8f','1392386964','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','1392386964','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 02:09:23 GMT\";s:12:\"content-type\";s:23:\"text/xml; charset=UTF-8\";s:10:\"connection\";s:5:\"close\";s:4:\"vary\";s:15:\"Accept-Encoding\";s: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 250\";}s:5:\"build\";s:14:\"20121202214312\";}','no'),(159,'_transient_timeout_feed_f030752c0ba1e6aae07737aad6727565','1392386964','no'),(160,'_transient_feed_f030752c0ba1e6aae07737aad6727565','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:61:\"link:http://quantellia.com/partnerswiki/ - 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:98:\"http://www.google.com/search?ie=utf-8&q=link:http://quantellia.com/partnerswiki/&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:92:\"Your search - <b>link:http://quantellia.com/partnerswiki/</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 02:09:23 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=0d896c37fb42c6cd:FF=0:TM=1392343763:LM=1392343763:S=X1JqRPEGyFFtBIOW; expires=Sun, 14-Feb-2016 02:09:23 GMT; path=/; domain=.google.com\";i:1;s:212:\"NID=67=Oq3ofkst6ioTcH2KIlMiFr45vkJBzBkAEdUlE8-O1iI8X4Gn2hFK6RyYFNa4U8u4jZ6ltGFFZgVaDOd5c3PyOohr4HAzs6hJalI78XRoW81AqmeWWf-yD5IK3ApNKp12; expires=Sat, 16-Aug-2014 02:09:23 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','1392447533','no'),(186,'_transient_plugin_slugs','a:14:{i:0;s:19:\"akismet/akismet.php\";i:1;s:37:\"breadcrumb-navxt/breadcrumb-navxt.php\";i:2;s:43:\"breadcrumb-navxt/breadcrumb_navxt_admin.php\";i:3;s:50:\"google-analytics-for-wordpress/googleanalytics.php\";i:4;s:36:\"google-sitemap-generator/sitemap.php\";i:5;s:9:\"hello.php\";i:6;s:19:\"jetpack/jetpack.php\";i:7;s:19:\"members/members.php\";i:8;s:27:\"pencil-wiki/pencil-wiki.php\";i:9;s:21:\"podpress/podpress.php\";i:10;s:37:\"simple-footnotes/simple-footnotes.php\";i:11;s:47:\"wordpress-wiki-plugin/wordpress-wiki-plugin.php\";i:12;s:40:\"wpmudev-updates/update-notifications.php\";i:13;s:27:\"wp-super-cache/wp-cache.php\";}','no'),(228,'can_compress_scripts','1','yes'),(249,'members_db_version','2','yes'),(250,'members_settings','a:8:{s:12:\"role_manager\";i:1;s:19:\"content_permissions\";i:1;s:12:\"private_blog\";i:0;s:12:\"private_feed\";i:0;s:17:\"login_form_widget\";i:0;s:12:\"users_widget\";i:0;s:25:\"content_permissions_error\";s:85:\"<p class=\"restricted\">Sorry, but you do not have permission to view this content.</p>\";s:18:\"private_feed_error\";s:80:\"<p class=\"restricted\">You must be logged into the site to view this content.</p>\";}','yes'),(284,'_site_transient_timeout_browser_35945ed20a1898c862f445d4cee839b3','1392967709','yes'),(253,'simple_footnotes','a:2:{s:9:\"placement\";s:7:\"content\";s:10:\"db_version\";i:1;}','yes'),(265,'twentyeleven_theme_options','a:3:{s:12:\"color_scheme\";s:5:\"light\";s:10:\"link_color\";s:7:\"#1b8be0\";s:12:\"theme_layout\";s:15:\"content-sidebar\";}','yes'),(259,'widget_pwiki_widget_add_page_link','a:2:{i:2;a:3:{s:5:\"title\";s:19:\"Add a new wiki page\";s:9:\"link_text\";s:13:\"Add Wiki Page\";s:9:\"cap_check\";b:0;}s:12:\"_multiwidget\";i:1;}','yes'),(260,'widget_pwiki_widget_edit_page_link','a:2:{i:2;a:3:{s:5:\"title\";s:15:\"Edit wiki pages\";s:9:\"link_text\";s:18:\"Edit New Wiki Page\";s:9:\"cap_check\";b:0;}s:12:\"_multiwidget\";i:1;}','yes'),(261,'widget_pwiki_widget_tree','a:2:{i:2;a:2:{s:5:\"title\";s:19:\"List all wiki pages\";s:9:\"tree_args\";a:1:{s:8:\"title_li\";s:0:\"\";}}s:12:\"_multiwidget\";i:1;}','yes'),(262,'widget_pwiki_search','a:2:{i:2;a:1:{s:5:\"title\";s:16:\"Search this wiki\";}s:12:\"_multiwidget\";i:1;}','yes'),(263,'widget_bcn_widget','a:2:{i:2;a:6:{s:5:\"title\";s:40:\"Not sure about this title of breadcrumbs\";s:7:\"pretext\";s:29:\"Text before breadcrumb trail:\";s:4:\"type\";s:5:\"plain\";s:6:\"linked\";b:1;s:7:\"reverse\";b:0;s:5:\"front\";b:0;}s:12:\"_multiwidget\";i:1;}','yes'),(264,'widget_incsub_wiki','a:2:{i:2;a:2:{s:5:\"title\";s:4:\"Wiki\";s:12:\"hierarchical\";s:2:\"no\";}s:12:\"_multiwidget\";i:1;}','yes'),(153,'recently_activated','a:1:{s:40:\"wpmudev-updates/update-notifications.php\";i:1392346983;}','yes'),(227,'_site_transient_update_core','O:8:\"stdClass\":4:{s:7:\"updates\";a:1:{i:0;O:8:\"stdClass\":10:{s:8:\"response\";s:6:\"latest\";s:8:\"download\";s:41:\"https://wordpress.org/wordpress-3.8.1.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:41:\"https://wordpress.org/wordpress-3.8.1.zip\";s:10:\"no_content\";s:52:\"https://wordpress.org/wordpress-3.8.1-no-content.zip\";s:11:\"new_bundled\";s:53:\"https://wordpress.org/wordpress-3.8.1-new-bundled.zip\";s:7:\"partial\";b:0;s:8:\"rollback\";b:0;}s:7:\"current\";s:5:\"3.8.1\";s:7:\"version\";s:5:\"3.8.1\";s:11:\"php_version\";s:5:\"5.2.4\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"3.8\";s:15:\"partial_version\";s:0:\"\";}}s:12:\"last_checked\";i:1392361172;s:15:\"version_checked\";s:5:\"3.8.1\";s:12:\"translations\";a:0:{}}','yes'),(225,'_site_transient_timeout_wporg_theme_feature_list','1392358720','yes'),(226,'_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'),(237,'_site_transient_update_themes','O:8:\"stdClass\":4:{s:12:\"last_checked\";i:1392361173;s:7:\"checked\";a:4:{s:12:\"twentyeleven\";s:3:\"1.7\";s:14:\"twentyfourteen\";s:3:\"1.0\";s:14:\"twentythirteen\";s:3:\"1.1\";s:12:\"twentytwelve\";s:3:\"1.3\";}s:8:\"response\";a:0:{}s:12:\"translations\";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','1392386964','no'),(168,'_transient_feed_mod_ac0b00fe65abe10e0c5b588f3ed8c7ca','1392343764','no'),(169,'_transient_timeout_dash_4077549d03da2e451c8b5f002294ff51','1392386964','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'),(177,'_transient_timeout_feed_mod_867bd5c64f85878d03a060509cd2f92c','1392386964','no'),(178,'_transient_feed_mod_867bd5c64f85878d03a060509cd2f92c','1392343764','no'),(179,'_transient_timeout_dash_aa95765b5cc111c56d5993d476b1c2f0','1392386964','no'),(180,'_transient_dash_aa95765b5cc111c56d5993d476b1c2f0','<div class=\"rss-widget\"><ul><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><li><a class=\'rsswidget\' href=\'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\' title=\'WPKube asked 40 members of the WordPress community what their five favorite plugins are. Within the list are the usual suspects Akismet, Jetpack, W3 Total Cache, WordPress SEO By Yoast, and Gravity Forms. I participated in the list and without further adieu, here are my five favorite WordPress plugins. Akismet – I’d be wasting a lot of time dealing with auto […]\'>WPTavern: 40 WordPress Community Members Share Their 5 Favorite Plugins</a></li></ul></div>','no'),(181,'_transient_timeout_feed_57bc725ad6568758915363af670fd8bc','1392386964','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 01:46: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: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: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: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: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: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: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: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: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: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:\"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: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: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: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: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:7;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:21:\"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: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:\"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: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: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: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: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:\"\";}}}}}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:13:\"WP Owner Mark\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:55:\"https://wordpress.org/plugins/wp-owner-mark/#post-63911\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_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 11:08:25 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"63911@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:100:\"Add Blog Owner Mark into your blog's 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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Jason Ho\";s: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:16:\"WP Hide Category\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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/wp-hide-category/#post-63912\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_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 12:12: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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"63912@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:56:\"Hide Categorys in 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:8:\"Jason Ho\";s: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:30:\"Contact Form 7 : Wysiwyg Field\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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/contact-form-7-wysiwyg-field/#post-63871\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_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 13:58:31 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"63871@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:56:\"Add wysiwyg fields to the popular Contact Form 7 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:\"nicoss01\";s: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:16:\"PicHit.Me Images\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:57:\"https://wordpress.org/plugins/pichitme-images/#post-63913\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_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 12:13: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:\"63913@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:87:\"Search and use PicHit.Me photos in your posts and pages without ever leaving WordPress.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:7:\"iGoMoon\";s: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 02:09:24 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 02:21:53 GMT\";s:13:\"cache-control\";s:0:\"\";s:6:\"pragma\";s:0:\"\";s:13:\"last-modified\";s:31:\"Fri, 14 Feb 2014 01:46:53 +0000\";s:4:\"x-nc\";s:11:\"HIT lax 250\";}s:5:\"build\";s:14:\"20121202214312\";}','no'),(183,'_transient_timeout_feed_mod_57bc725ad6568758915363af670fd8bc','1392386964','no'),(184,'_transient_feed_mod_57bc725ad6568758915363af670fd8bc','1392343764','no'),(187,'_transient_timeout_dash_de3249c4736ad3bd2cd29147c4a0d43e','1392386965','no'),(188,'_transient_dash_de3249c4736ad3bd2cd29147c4a0d43e','<h4>Most Popular</h4>\n<h5><a href=\'http://wordpress.org/plugins/woocommerce/\'>WooCommerce - excelling eCommerce</a></h5> <span>(<a href=\'plugin-install.php?tab=plugin-information&plugin=woocommerce&_wpnonce=8edcb85288&TB_iframe=true&width=600&height=800\' class=\'thickbox\' title=\'WooCommerce - excelling eCommerce\'>Install</a>)</span>\n<p>WooCommerce is a powerful, extendable eCommerce plugin that helps you sell anything. Beautifully.</p>\n<h4>Newest Plugins</h4>\n<h5><a href=\'https://wordpress.org/plugins/ultimate-under-construction/\'>Ultimate Under Construction</a></h5> <span>(<a href=\'plugin-install.php?tab=plugin-information&plugin=ultimate-under-construction&_wpnonce=4e6b9d8dd9&TB_iframe=true&width=600&height=800\' class=\'thickbox\' title=\'Ultimate Under Construction\'>Install</a>)</span>\n<p>Shows an Under Construction holding page for all users who are not logged in or Admin.</p>\n','no'),(278,'_site_transient_timeout_poptags_40cd750bba9870f18aada2478b24840a','1392371938','yes'),(279,'_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'),(192,'wdp_un_limit_to_user','0','yes'),(201,'_site_transient_timeout_wpmudev_profile_data','1392365468','yes'),(194,'wdp_un_refresh_updates_flag','0','yes'),(195,'wdp_un_local_themes','a:0:{}','yes'),(219,'_site_transient_timeout_wpmudev_local_projects','1392347283','yes'),(220,'_site_transient_wpmudev_local_projects','a:2:{i:119;a:3:{s:4:\"type\";s:6:\"plugin\";s:7:\"version\";s:5:\"3.4.2\";s:8:\"filename\";s:40:\"wpmudev-updates/update-notifications.php\";}i:225;a:3:{s:4:\"type\";s:6:\"plugin\";s:7:\"version\";s:7:\"1.0.8.3\";s:8:\"filename\";s:47:\"wordpress-wiki-plugin/wordpress-wiki-plugin.php\";}}','yes'),(198,'wdp_un_redirected','1','yes'),(199,'_site_transient_timeout_wpmudev_updates_data','1392367579','yes'),(200,'_site_transient_wpmudev_updates_data','a:0:{}','yes'),(202,'_site_transient_wpmudev_profile_data','a:0:{}','yes'),(203,'wpmudev_apikey','','yes'),(204,'wdp_un_updates_available','a:0:{}','yes'),(208,'_transient_timeout_feed_1dbb78cbc2a0e2530b00dcb4c4ee29de','1392387698','no'),(209,'_transient_feed_1dbb78cbc2a0e2530b00dcb4c4ee29de','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:62:\"WPMU DEV's Blog - Everything WordPressWPMU DEV - WPMU.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:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"http://premium.wpmudev.org/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:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:99:\"The WPMU DEV WordPress blog provides tutorials, tips, resources and reviews to help out any WP user\";s: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, 13 Feb 2014 16:30: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: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:29:\"http://wordpress.org/?v=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:4:\"item\";a:10:{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 \";s:7:\"attribs\";a: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:50:\"WordPress Email Newsletters Have Never Been Better\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:83:\"http://premium.wpmudev.org/blog/wordpress-email-newsletters-have-never-been-better/\";s: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:92:\"http://premium.wpmudev.org/blog/wordpress-email-newsletters-have-never-been-better/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 11 Feb 2014 13:00: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:8:\"category\";a:4:{i:0;a:5:{s:4:\"data\";s:17:\"WordPress 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:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"WPMU DEV\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:5:\"email\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:10:\"newsletter\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"http://premium.wpmudev.org/blog/?p=125467\";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:204:\"Email newsletters are a key component of any successful website. So, how does professional newsletter and subscriber management direct from your WordPress dashboard and no third-party monthly plans sound?\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Chris Knowles\";s: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:6787:\"<p>Email newsletters are a key component of any successful website.</p>\n<p>When it comes to adding newsletter functionality to your site, you are going to be overwhelmed by the range of options.</p>\n<p>So, how does professional newsletter and subscriber management direct from your WordPress dashboard and no third-party monthly plans sound?</p>\n<p><span id=\"more-125467\"></span></p>\n<figure id=\"attachment_125966\" class=\"wp-caption aligncenter wp-caption-large cgrid-row\" style=\"width: 700px\"><div class=\"cgrid-col cgrid-col-span-full\"><img class=\"size-ratio-large wp-image-125966\" alt=\"Composite image of e-Newsletter\" src=\"http://premium.wpmudev.org/blog/wp-content/uploads/2014/02/e-newsletter-700x192.jpg\" width=\"700\" height=\"192\" /><figcaption class=\"wp-caption-text\">Keep your newsletter functionality and data inside your WordPress site</figcaption></div></figure>\n<p>With a plethora of third-party solutions, it’s tempting to think that you have to learn another interface and split your website member data across multiple systems.</p>\n<figure id=\"attachment_125969\" class=\"wp-caption alignright wp-caption-right cgrid-row\" style=\"width: 177px\"><div class=\"cgrid-col cgrid-col-span-1 cgrid-col-right\"><div class=\"cgrid-col-wide-right\"><img class=\"size-ratio-1-4 wp-image-125969\" alt=\"screenshot of the subscribe form\" src=\"http://premium.wpmudev.org/blog/wp-content/uploads/2014/02/subscribe-frontend-177x304.png\" width=\"177\" height=\"304\" /><figcaption class=\"wp-caption-text\">Fully configurable subscribe forms</figcaption></div></div></figure>\n<p><strong>e-Newsletter</strong> from WPMU DEV provides a solution that tightly integrates with WordPress, letting you manage your newsletters in the familiar environment of the WordPress admin interface whilst keeping all your member’s data in the one place.</p>\n<p>And the latest updates to WPMU DEV’s <strong>e-Newsletter</strong> plugin improve what is already arguably the leading WordPress newsletter plugin:</p>\n<ul>\n<li>the ability to include the recipient’s first name in a newsletter, e.g. Dear Chris</li>\n<li>subscribing and unsubscribing of users in the WordPress admin interface</li>\n<li>improvements to the CSV import</li>\n<li>automatic subscription to nominated groups (including on import)</li>\n</ul>\n<p>These improvements build on an already impressive list of features that provide incredibly flexible newsletter and subscriber management.</p>\n<h2 id=\"creating-and-sending-newsletters\">Creating and Sending Newsletters</h2>\n<p><strong>e-Newsletter</strong> makes managing newsletters a breeze by providing everything you need to create and target stunning emails:</p>\n<ul>\n<li>7 professional email templates</li>\n<li>live preview of your email</li>\n<li>fully clone existing emails</li>\n<li>personalize emails by including first name</li>\n<li>send to all subscribers, a selected group or a specific WordPress role</li>\n<li>use SMTP or PHPMail</li>\n<li>optionally send in the background</li>\n</ul>\n<p><strong>e-Newsletter</strong> uses the WordPress Customize Themes screen, so not only are you building your newsletters in a familiar interface but you also get a live preview!</p>\n<figure id=\"attachment_125963\" class=\"wp-caption aligncenter wp-caption-large cgrid-row\" style=\"width: 559px\"><div class=\"cgrid-col cgrid-col-span-full\"><img class=\"size-full wp-image-125963\" alt=\"Screenshot of the email editing interface\" src=\"http://premium.wpmudev.org/blog/wp-content/uploads/2014/02/e-newsletter-builder.png\" width=\"559\" height=\"493\" /><figcaption class=\"wp-caption-text\">A familiar interface that provides live preview</figcaption></div></figure>\n<h2 id=\"managing-subscribers\">Managing Subscribers</h2>\n<p><strong>e-Newsletter</strong> has a host of features for managing existing and new subscribers:</p>\n<ul>\n<li>segment subscribers by assigning to groups</li>\n<li>nominate a default group for new subscribers (and new site members)</li>\n<li>automatically send a welcome email to new subscribers</li>\n<li>create custom subscribed and unsubscribed pages</li>\n<li>shortcode and widget for front-end display of subscribe form</li>\n<li>use recommended double opt-in method</li>\n<li>CSV import of new subscribers</li>\n</ul>\n<p>e-Newsletter also provides high-level reporting allowing you to see at a glance your overall statistics. You can also drill down to view sent, opens, bounces and waiting for an individual newsletter or even an individual subscriber.</p>\n<p>Add to this bounce management (requires IMAP PHP extension to be installed), comprehensive management of which roles can manage newsletters and subscribers and, of course, full compatibility with the latest version of BuddyPress and WordPress in both single and multisite configuration and it’s not difficult to see why this plugin has had over 50,000 downloads.</p>\n<figure id=\"attachment_125964\" class=\"wp-caption aligncenter wp-caption-large cgrid-row\" style=\"width: 559px\"><div class=\"cgrid-col cgrid-col-span-full\"><img class=\"size-full wp-image-125964\" alt=\"Screenshot of the available templates\" src=\"http://premium.wpmudev.org/blog/wp-content/uploads/2014/02/enewsletter-templates.jpg\" width=\"559\" height=\"314\" /><figcaption class=\"wp-caption-text\">Kick-start your newsletter design with professional templates</figcaption></div></figure>\n<p>If you are looking to add a newsletter to your site and you like the idea of keeping the functionality and your site members’ data all in WordPress then <strong>e-Newsletter</strong> is your perfect solution.</p>\n<p><a href=\"http://premium.wpmudev.org/project/e-newsletter/\" rel=\"nofollow\">Download the e-Newsletter plugin</a>.</p>\n<div class=\'yarpp-related-rss\'>\n<p>Related posts:</p><ol>\n<li><a href=\'http://premium.wpmudev.org/blog/send-html-emails-with-wordpress-and-the-e-newsletter-plugin/\' rel=\'bookmark\' title=\'Send HTML Emails with WordPress and the e-Newsletter Plugin\'>Send HTML Emails with WordPress and the e-Newsletter Plugin</a> <small>We’re very excited to introduce our brand new e-Newsletter plugin...</small></li>\n<li><a href=\'http://premium.wpmudev.org/blog/woo-with-marketpress-2-9/\' rel=\'bookmark\' title=\'Woo With MarketPress 2.9: Attract and Keep Loyal Customers With Universal Analytics\'>Woo With MarketPress 2.9: Attract and Keep Loyal Customers With Universal Analytics</a> <small>We\'re stepping up the game with the latest version of...</small></li>\n<li><a href=\'http://premium.wpmudev.org/blog/bring-the-power-of-google-analytics-into-your-wordpress-dashboard/\' rel=\'bookmark\' title=\'Bring The Power of Google Analytics Into Your WordPress Dashboard\'>Bring The Power of Google Analytics Into Your WordPress Dashboard</a> <small>Track and view Google Analytics statistics for an individual site...</small></li>\n</ol>\n</div>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:88:\"http://premium.wpmudev.org/blog/wordpress-email-newsletters-have-never-been-better/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:\"3\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:1;a:6:{s:4:\"data\";s:63:\"\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:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:83:\"Woo With MarketPress 2.9: Attract and Keep Loyal Customers With Universal Analytics\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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://premium.wpmudev.org/blog/woo-with-marketpress-2-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:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:66:\"http://premium.wpmudev.org/blog/woo-with-marketpress-2-9/#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, 04 Feb 2014 13:00:59 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:8:{i:0;a:5:{s:4:\"data\";s:17:\"WordPress 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:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"WPMU DEV\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:26:\"Google Universal Analytics\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:11:\"marketpress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:4;a:5:{s:4:\"data\";s:20:\"multisite compatible\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:5;a:5:{s:4:\"data\";s:9:\"Pinterest\";s: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:5:{s:4:\"data\";s:6:\"Stripe\";s: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:5:{s:4:\"data\";s:26:\"wordpress ecommerce 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:41:\"http://premium.wpmudev.org/blog/?p=125300\";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:413:\"We\'re stepping up the game with the latest version of MarketPress, giving you an even more comprehensive WordPress eCommerce platform in one tidy and beautifully coded box. MarketPress sets the standard for WordPress eCommerce solutions, providing an elegant shopping experience that supports all major payment gateways and allows you to easily manage distribution and shopping costs with custom shipping options.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}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:\"Raelene Wilson\";s: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:15333:\"<p>We’re stepping up the game with the latest version of <a title=\"MarketPress\" href=\"https://premium.wpmudev.org/project/e-commerce/\" target=\"_blank\">MarketPress</a>, giving you an even more comprehensive WordPress eCommerce platform in one tidy and beautifully coded box.</p>\n<p><a title=\"MarketPress\" href=\"https://premium.wpmudev.org/project/e-commerce/\" target=\"_blank\">MarketPress</a> sets the standard for WordPress eCommerce solutions, providing an elegant shopping experience that supports all major payment gateways and allows you to easily manage distribution and shopping costs with custom shipping options.</p>\n<p>Why spend thousands of dollars on cowboy-coded extensions and add-ons? There’s no need to purchase extra add-ons or special licenses when <a title=\"MarketPress\" href=\"https://premium.wpmudev.org/project/e-commerce/\" target=\"_blank\">MarketPress</a> brings together the power of dozens of different plugins in one solid standalone product.</p>\n<p><iframe src=\"//player.vimeo.com/video/58936647\" height=\"350\" width=\"637\" allowfullscreen=\"\" frameborder=\"0\"></iframe></p>\n<p>Easily sell physical products or digital products with MarketPress. Shipping, coupons, sales pricing, unlimited product variations and just some of this plugin’s features.</p>\n<p><a title=\"MarketPress\" href=\"https://premium.wpmudev.org/project/e-commerce/\" target=\"_blank\">MarketPress</a> works great with any WordPress theme and even better with AJAXy goodness. Want to set up your own network of stores like eBay or Etsy? Multisite compatibility allows you to do just that.</p>\n<p>Want to set up a store in Spain? Or even China? <a title=\"MarketPress\" href=\"https://premium.wpmudev.org/project/e-commerce/\" target=\"_blank\">MarketPress</a> has been fully internationalized by the crew at WPML.</p>\n<p><strong>Highlights in MarketPress 2.9 include:</strong></p>\n<ul>\n<li><strong>Compatibility with Google Universal Analytics</strong></li>\n<li><strong>Stripe embedded form button</strong></li>\n<li><strong>Pinterest “Rich Pins” with advanced oembed endpoint</strong></li>\n<li><strong>Show related products option</strong></li>\n<li><strong>Pickup in-store shipping option</strong></li>\n<li><strong>Ability to assign a custom per-order limit to a product</strong></li>\n<li><strong>Settings to turn off downloadable product default 1 per order limit</strong></li>\n<li><strong>Product and category coupons</strong></li>\n<li><strong>HTTPS support for custom styles</strong></li>\n<li><strong>18 new currencies, various bug fixes and other improvements</strong></li>\n</ul>\n<h2>Retain Loyal Customers With Google Universal Analytics Compatibility</h2>\n<p><a title=\"MarketPress\" href=\"https://premium.wpmudev.org/project/e-commerce/\" target=\"_blank\">MarketPress</a> is now fully compatible with Google Universal Analytics.</p>\n<figure id=\"attachment_125648\" class=\"wp-caption alignright wp-caption-right cgrid-row\" style=\"width: 300px\"><div class=\"cgrid-col cgrid-col-span-2 cgrid-col-right\"><div class=\"cgrid-col-wide-right\"><a href=\"http://premium.wpmudev.org/blog/wp-content/uploads/2014/02/google-universal-analytics1.png\" rel=\"lightbox[125300]\" title=\"Woo With MarketPress 2.9: Attract and Keep Loyal Customers With Universal Analytics\"><img class=\"size-full wp-image-125648\" alt=\"Google Universal Analytics\" src=\"http://premium.wpmudev.org/blog/wp-content/uploads/2014/02/google-universal-analytics1.png\" width=\"300\" height=\"171\" /></a><figcaption class=\"wp-caption-text\">Track and monitor your traffic and sales and find out how to attract and retain loyal customers.</figcaption></div></div></figure>\n<p>Customers today use multiple devices to buy products online. Once upon a time sites just counted site traffic to gauge customer engagement, but this has evolved into technology that also measures your effectiveness in advertising, sales, product usage, support, and retention. Ultimately, this sort of integrated measurement can help you deliver the best service, products and experiences for your customers to get a more “complete vision of the entire marketing funnel.”</p>\n<p>With Google Universal Analytics integration in <a title=\"MarketPress\" href=\"https://premium.wpmudev.org/project/e-commerce/\" target=\"_blank\">MarketPress</a>, track and monitor your traffic and sales and measure how people actually become and remain loyal customers.</p>\n<h2>Product and Category Coupons</h2>\n<p>This one was one of our most requested features – the ability to add per product or per category coupons, so coupons only work for a specific product or category of product.</p>\n<p>Are all the winter gloves in your store on sale? Now you can select only gloves to be 25 per cent off.</p>\n<h2>Checkout is Even Simpler for Stripe Users</h2>\n<p>We’ve made it easier for Stripe users to checkout with the addition of the Stripe embedded form button, allowing customers to easily make payments with the click of a button.</p>\n<h2>A Richer Pinterest Experience with Rich Pins</h2>\n<figure id=\"attachment_125650\" class=\"wp-caption aligncenter wp-caption-large cgrid-row\" style=\"width: 500px\"><div class=\"cgrid-col cgrid-col-span-full\"><a href=\"http://premium.wpmudev.org/blog/wp-content/uploads/2014/02/pinterest-product-pins1.png\" rel=\"lightbox[125300]\" title=\"Woo With MarketPress 2.9: Attract and Keep Loyal Customers With Universal Analytics\"><img class=\"size-full wp-image-125650\" alt=\"Pinterest product pins\" src=\"http://premium.wpmudev.org/blog/wp-content/uploads/2014/02/pinterest-product-pins1.png\" width=\"500\" height=\"259\" /></a><figcaption class=\"wp-caption-text\">Take advantage of Pinterest Rich Pins with price and stock information to drive traffic to your online store.</figcaption></div></figure>\n<p>As the third most popular social media networking site in the world, Pinterest can help drive site traffic and boost sales on your site. We’ve added Rich Pins along with advanced oembed support so your pinned products display information about real-time pricing, availability and where to buy.</p>\n<h2>Easily Display Related Products</h2>\n<p>Keep users browsing through your products with our new related products option. Don’t let customers looking for a decent DSLR camera arrive at your site only to disappear moments later after scrolling through the product information. Display similar products at similar prices and help customers find the right product while spending more time on your site.</p>\n<h2>Pickup In-Store Now a Shipping Option</h2>\n<figure id=\"attachment_125653\" class=\"wp-caption aligncenter wp-caption-large cgrid-row\" style=\"width: 552px\"><div class=\"cgrid-col cgrid-col-span-full\"><a href=\"http://premium.wpmudev.org/blog/wp-content/uploads/2014/02/marketpress-shipping-options.png\" rel=\"lightbox[125300]\" title=\"Woo With MarketPress 2.9: Attract and Keep Loyal Customers With Universal Analytics\"><img class=\"size-full wp-image-125653\" alt=\"MarketPress shipping options\" src=\"http://premium.wpmudev.org/blog/wp-content/uploads/2014/02/marketpress-shipping-options.png\" width=\"552\" height=\"285\" /></a><figcaption class=\"wp-caption-text\">Allow your customers to pick up purchased goods directly from your store or warehouse with our new in-store pickup shipping option.</figcaption></div></figure>\n<p>It doesn’t make sense to charge customers shipping if they live in the same area as your warehouse. Our new pickup in-store option allows you to cater to customers who live close by your store on warehouse and can pick up products without the need for shipping.</p>\n<h2>Custom Per-Order Limits for Products</h2>\n<p>Do you want to sell aged bottles of whiskey or rare back t-shirts, but want to limit sales to one per customer? We’ve added the ability to assign a custom per-order limit to a product so you can control your stock levels and what customers are able to purchase.</p>\n<h2>Turn Off Downloadable Product Default</h2>\n<p>In previous versions of <a title=\"MarketPress\" href=\"https://premium.wpmudev.org/project/e-commerce/\" target=\"_blank\">MarketPress</a>, customers could only buy one digital product per order because many sellers didn’t want to allow someone to pay for the same file multiple time. We’ve updated the plugin to allow the purchase of more than one digital product per order, allowing the sale of licenses or tickets.</p>\n<h2>And This is Just the Beginning…</h2>\n<figure id=\"attachment_125656\" class=\"wp-caption alignright wp-caption-right cgrid-row\" style=\"width: 448px\"><div class=\"cgrid-col cgrid-col-span-3 cgrid-col-right\"><div class=\"cgrid-col-wide-right\"><a href=\"http://premium.wpmudev.org/blog/wp-content/uploads/2014/02/MP-Single-Product.jpg\" rel=\"lightbox[125300]\" title=\"Woo With MarketPress 2.9: Attract and Keep Loyal Customers With Universal Analytics\"><img class=\"size-ratio-3-2 wp-image-125656\" alt=\"MarketPress single product\" src=\"http://premium.wpmudev.org/blog/wp-content/uploads/2014/02/MP-Single-Product-448x261.jpg\" width=\"448\" height=\"261\" /></a><figcaption class=\"wp-caption-text\">MarketPress comes with robust theming support, support for all major currencies, is ready to go for tax and VAT, and also supports stock tracking and order management and alerts.</figcaption></div></div></figure>\n<p>We’ve ramped up the development of <a title=\"MarketPress\" href=\"https://premium.wpmudev.org/project/e-commerce/\" target=\"_blank\">MarketPress</a> ahead of version 3.0 due out later in the year. We’re going to raise the bar even higher with design improvements on top of even more upgrades.</p>\n<p><a title=\"MarketPress\" href=\"https://premium.wpmudev.org/project/e-commerce/\" target=\"_blank\">MarketPress</a> has been in development since 2009 and in that time has picked up an incredible code and user base. We’re constantly updating <a title=\"MarketPress\" href=\"https://premium.wpmudev.org/project/e-commerce/\" target=\"_blank\">MarketPress</a> to meet the requirements of selling products now, not yesterday.</p>\n<h2>The Complete MarketPress 2.9 List of Updates and Bug Fixes</h2>\n<ul>\n<li>Added compatibility with Google Universal Analytics</li>\n<li>Added Stripe embedded form button</li>\n<li>Added Pinterest “Rich Pins” w/advanced oembed endpoint</li>\n<li>Added show related products option</li>\n<li>Added Pickup in-store shipping option</li>\n<li>Added ability to assign a custom per-order limit to a product</li>\n<li>Add setting to turn off downloadable product default 1 per order limit</li>\n<li>Added filters to many template functions</li>\n<li>Minor bugfixes on Simplify gateway</li>\n<li>Deleted orders are now removed from usermeta</li>\n<li>Fixed bug with 2checkout where amount was returning more than 2 decimal places</li>\n<li>Added Russian Rubles to Paypal currencies and locale</li>\n<li>Fix php warnings when switching between non-calculated shipping modules</li>\n<li>Fix bug with which gateway is shown when switching global cart in network settings</li>\n<li>Fix possible rounding error in Stripe gateway</li>\n<li>In Calculated Shipping plugins changed so if all weights in an order are zero then show Free Shipping</li>\n<li>In FedEx fixed problem with calculating the correct number of packages.</li>\n<li>Added https support for custom styles in the wp-content/marketpress-styles/ directory.</li>\n<li>Added ajax checkout error flag which is set when ajax starts and reset when ajax is finished. Prevents form submits from aborting shipping lookups.</li>\n<li>Removed apply_filters(“mp_shipping_options_… call in extra_shipping_box_label() It passes nulls instead of an address so it can’t properly recalculate the options anyway.</li>\n<li>Changes to USPS to standardize across the calculated shipping plugins.</li>\n<li>Make messages visual editor css more specific to avoid conflicts</li>\n<li>Add US Virgin Islands to USPS allowed base country list</li>\n<li>Added 4 new currencies to PayMill payment gateway (BGN, HRK, GIP, RON)</li>\n<li>Added 3 new currencies to PIN payment gateway (SGD, EUR and GBP)</li>\n<li>Added Australian Dollars (AUD) currency to Stripe payment gateway</li>\n<li>Added Norwegian Krone (NOK) currency to Skrill / MoneyBookers payment gateway</li>\n<li>Added 8 new currencies to 2CheckOut payment gateway (AED, ILS, LTL, PHP, RON, RUB, SGD, TRY)</li>\n<li>Added 2 new currencies to Authorize.net AIM payment gateway (AUD and NZD)</li>\n<li>Add filter so certain products can be excluded from GA tracking</li>\n<li>Pass manual gateway instuctions through wpautop() and allow shortcodes in it</li>\n<li>Remove encoded html from PayPal IPN strings <a href=\"http://wp.mu/7s9\" rel=\"nofollow\">http://wp.mu/7s9</a></li>\n<li>Delay upgrade rewrite flush to end of init hook <a href=\"http://wp.mu/7vt\" rel=\"nofollow\">http://wp.mu/7vt</a></li>\n<li>Remove retired Google checkout gateway</li>\n<li>Fixed bug with PayPal Express gateway and coupons where totals would be incorrect after being transferred to PayPal</li>\n<li>Updated mp_list_products() function to use WP-style arguments – users can still use existing argument style if they wish</li>\n<li>Added mp_list_products() can now display filters – no need to call mp_products_filter() in your theme template</li>\n<li>Added mp_list_products() can now display pagination</li>\n<li>Added mp_products_nav() to display products pagination</li>\n<li>Fixed some warnings related to shipping fields when checking out</li>\n<li>Fixed premature deletion of csv import file after previously deleting</li>\n<li>Fixed old text in Payflow gateway</li>\n<li>Related products can now be set to use either categories/tags separately or both at the same time</li>\n<li>Fixed bug when using category filter the page title, menu item, etc would not update accordingly <a href=\"http://wp.mu/8l9\" rel=\"nofollow\">http://wp.mu/8l9</a></li>\n<li>Fixed bug when checking out digital downloads and shipping was enabled the user would still be asked to choose a shipping method <a href=\"http://wp.mu/8mz\" rel=\"nofollow\">http://wp.mu/8mz</a></li>\n</ul>\n<p>Download <a title=\"MarketPress\" href=\"https://premium.wpmudev.org/project/e-commerce/\" target=\"_blank\">MarketPress</a> today and enjoy the most powerful eCommerce plugin available for WordPress.</p>\n<p><strong>We hope you enjoy this release. Let us know in the comments if there’s anything you feel we’ve missed and can roll into 3.0 for you.</strong></p>\n<div class=\'yarpp-related-rss\'>\n<p>Related posts:</p><ol>\n<li><a href=\'http://premium.wpmudev.org/blog/marketpress-video-tutorials/\' rel=\'bookmark\' title=\'Complete Video Guide to MarketPress and e-Commerce with WordPress\'>Complete Video Guide to MarketPress and e-Commerce with WordPress</a> <small>Earlier today we announced some exciting big new features to...</small></li>\n<li><a href=\'http://premium.wpmudev.org/blog/how-to-import-and-export-marketpress-products/\' rel=\'bookmark\' title=\'How to Import and Export MarketPress Products\'>How to Import and Export MarketPress Products</a> <small>Here\'s a quick guide to moving MarketPress products around....</small></li>\n<li><a href=\'http://premium.wpmudev.org/blog/marketpress-global-product-search/\' rel=\'bookmark\' title=\'Free Global Product Search Widget For MarketPress\'>Free Global Product Search Widget For MarketPress</a> <small>Check out this new powerful search widget for MarketPress. It...</small></li>\n</ol>\n</div>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:62:\"http://premium.wpmudev.org/blog/woo-with-marketpress-2-9/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:2:\"25\";s: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:54:\"\n \n \n \n \n \n \n \n \n \n \n\n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:65:\"Bring The Power of Google Analytics Into Your WordPress 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:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:98:\"http://premium.wpmudev.org/blog/bring-the-power-of-google-analytics-into-your-wordpress-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:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:107:\"http://premium.wpmudev.org/blog/bring-the-power-of-google-analytics-into-your-wordpress-dashboard/#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, 28 Jan 2014 13:00: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:8:\"category\";a:5:{i:0;a:5:{s:4:\"data\";s:17:\"WordPress 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:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"WPMU DEV\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:14:\"domain mapping\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:16:\"google analytics\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:4;a:5:{s:4:\"data\";s:20:\"multisite compatible\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"http://premium.wpmudev.org/blog/?p=125229\";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:138:\"Track and view Google Analytics statistics for an individual site or an entire multisite network without leaving your WordPress 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:13:\"Chris Knowles\";s: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:7893:\"<p>WPMU DEV’s <a href=\"https://premium.wpmudev.org/project/google-analytics-for-wordpress-mu-sitewide-and-single-blog-solution/\">Google Analytics + plugin</a> has had a massive update that puts all the important statistics at your WordPress fingertips by adding beautiful charts and graphs to your dashboard and the post edit screen.</p>\n<p>Perfect for single sites, it’s even better for multisite network owners with tracking of sub-domains and mapped domains, the ability to view data for your entire network as well as individual sites and full compatibility with our <a href=\"https://premium.wpmudev.org/project/pro-sites/\">Pro Sites plugin</a>, enabling statistics to be a premium feature.</p>\n<p>You can even check out analytics stats on individual posts, right there on a per post basis inside WordPress.</p>\n<p><span id=\"more-125229\"></span><br />\n<iframe src=\"//player.vimeo.com/video/84831069\" height=\"350\" width=\"637\" allowfullscreen=\"\" frameborder=\"0\"></iframe></p>\n<p>This new release is a big deal for multisite network owners, especially, with the ability to add your own Google Account ID to every page you’ll be able to gather and analyse data from across your entire network.</p>\n<p>Every click on every page on every site will be collected regardless of whether the site owner has Google Analytics installed (although they can have their own analytics set up in addition!). And thanks to the new sub-domain and domain mapping, you’ll be able to provide statistics for your site owners, in their dashboards, without any complicated set-up.</p>\n<p>And what’s more, it’s also fully compatible with our <a href=\"https://premium.wpmudev.org/project/pro-sites/\">Pro Sites</a> plugin, so network owners can also offer Google Analytics integration as a premium upgrade.</p>\n<p>But there’s heaps there too for every WordPress user.</p>\n<h2>Google Analytics + Features</h2>\n<ul>\n<li>View essential post statistics on the actual post edit screen</li>\n<li>View extended and detailed statistics in your WordPress dashboard</li>\n<li>Collect data for an entire multisite network automatically, no code required</li>\n<li>Collect data for sub-domains and mapped domains, fully integrated with the <a title=\"Read more about the Domain Mapping plugin\" href=\"http://premium.wpmudev.org/project/domain-mapping/ \">Domain Mapping</a> plugin</li>\n<li>Full compatibility with the <a title=\"Read more about the Pro Sites plugin\" href=\"http://premium.wpmudev.org/project/pro-sites/\">Pro Sites</a> plugin: offer analytics as a premium feature</li>\n<li>Link your WordPress site and Google Analytics account with just one click</li>\n</ul>\n<h2>Dashboard Statistics</h2>\n<p>A dashboard widget displays an eye-catching graph of traffic data for the last 30 days:</p>\n<figure class=\"wp-caption aligncenter wp-caption-large cgrid-row\" style=\"width: 559px\"><div class=\"cgrid-col cgrid-col-span-full\"><img alt=\"Screenshot of traffic graph from the WordPress desktop\" src=\"http://premium.wpmudev.org/wp-content/uploads/2014/01/dashboard.png\" width=\"559\" height=\"351\" /><figcaption class=\"wp-caption-text\">Instant feedback on how your site or multisite network is performing</figcaption></div></figure>\n<p>The extended display, accessed by clicking on the “See All Stats” button, extends the traffic analysis, adds a world-map of geo-location data, and tables for the most popular content, the top search terms and the top referrers:</p>\n<figure class=\"wp-caption aligncenter wp-caption-large cgrid-row\" style=\"width: 559px\"><div class=\"cgrid-col cgrid-col-span-full\"><img alt=\"Screenshot of the "see all stats" page with graphs for traffic and geo-location data and tables for content, searches and referrers.\" src=\"http://premium.wpmudev.org/wp-content/uploads/2014/01/seeallstats.png\" width=\"559\" height=\"525\" /><figcaption class=\"wp-caption-text\">Traffic, location, content, search terms, referrers for the last 30 days, 3 months or year, at the click of a button</figcaption></div></figure>\n<p>The timeframe for the data can be toggled between the last 30 days, 3 months and year via buttons at the top of the display.</p>\n<h2>Post Statistics</h2>\n<p>As well as displaying statistics in the dashboard, the plugin also adds a traffic summary to the post edit screen, allowing you to easily review the performance of an individual post:</p>\n<figure class=\"wp-caption aligncenter wp-caption-large cgrid-row\" style=\"width: 559px\"><div class=\"cgrid-col cgrid-col-span-full\"><img alt=\"Traffic statistics for each post accessible from the post edit screen\" src=\"http://premium.wpmudev.org/wp-content/uploads/2014/01/post-stats1.png\" width=\"559\" height=\"346\" /><figcaption class=\"wp-caption-text\">Screenshot of the graph showing traffic data for an individual post in the post edit screen</figcaption></div></figure>\n<h2>Easily Integrate Google and WordPress</h2>\n<p>Tying your dashboard to your Google account is quick and easy with 1-click login process from the plugin’s settings page.</p>\n<p>Once your WordPress install and Google account are connected you can select which analytics profile you want to use to drive the data display.</p>\n<h2>Get an Overview For Your Entire Network</h2>\n<p>Knowing how each individual site in a network is performing is obviously useful but of far more use to a multisite network owner is knowing how the entire network is performing.</p>\n<p>Google Analytics + will add a account id on the settings page to every page on your network allowing you track every click on every page on every site, regardless of whether the site owner has Analytics installed.</p>\n<p>The plugin also allows for the tracking of sub-domains and mapped domains, so you can automatically generate statistics for individual sites And have these displayed in the individual sites’ dashboards without the need to for any setting-up by the site owner.</p>\n<p>Simply switch on these options and you’ll automatically start collecting data for the individual sites in your multisite network. And because Google Analytics + is fully compatible with Pro Sites, you can even make access to graphs and tables, or the specifying of a local Analytics account, a premium feature.</p>\n<h2>Analytics Just Where You Want them</h2>\n<p>Sometimes you just want a quick snapshot of what is going on with your network, a site or even a page. Google Analytics + provides this just where you want it and where you do most of your work: the dashboard of your favourite open-source CMS.</p>\n<p><a href=\"https://premium.wpmudev.org/project/google-analytics-for-wordpress-mu-sitewide-and-single-blog-solution/\">Download the plugin here</a>.</p>\n<div class=\'yarpp-related-rss\'>\n<p>Related posts:</p><ol>\n<li><a href=\'http://premium.wpmudev.org/blog/googlyzer-for-wordpress-puts-the-power-of-google-analytics-in-your-admin-dashboard/\' rel=\'bookmark\' title=\'Googlyzer For WordPress Puts the Power of Google Analytics In Your Admin Dashboard\'>Googlyzer For WordPress Puts the Power of Google Analytics In Your Admin Dashboard</a> <small>Wouldn’t it be great to be able to access your...</small></li>\n<li><a href=\'http://premium.wpmudev.org/blog/enable-google-analytics-for-your-wordpress-site-with-dashboard-statistics/\' rel=\'bookmark\' title=\'Enable Google Analytics for Your WordPress Site with Dashboard Statistics\'>Enable Google Analytics for Your WordPress Site with Dashboard Statistics</a> <small>Enable Google Analytics on All WordPress Pages with Dashboard Statistics...</small></li>\n<li><a href=\'http://premium.wpmudev.org/blog/integrate-google-analytics-with-your-wordpress-dashboard/\' rel=\'bookmark\' title=\'Integrate Google Analytics with Your WordPress Dashboard\'>Integrate Google Analytics with Your WordPress Dashboard</a> <small>Quick and Easy Google Analytics Integration with WordPress Dashboard...</small></li>\n</ol>\n</div>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:103:\"http://premium.wpmudev.org/blog/bring-the-power-of-google-analytics-into-your-wordpress-dashboard/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:2:\"29\";s: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:48:\"\n \n \n \n \n \n \n \n \n\n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:47:\"10 Facebook Plugins You Need Before It Dies Off\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:80:\"http://premium.wpmudev.org/blog/10-facebook-plugins-you-need-before-it-dies-off/\";s: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:89:\"http://premium.wpmudev.org/blog/10-facebook-plugins-you-need-before-it-dies-off/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 27 Jan 2014 13:00: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:8:\"category\";a:3:{i:0;a:5:{s:4:\"data\";s:17:\"WordPress 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:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"WPMU DEV\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:8:\"Facebook\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"http://premium.wpmudev.org/blog/?p=124665\";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:686:\"You\'ve no doubt heard about the claims Facebook has spread like an \"infectious disease\" across the planet and over the next three years will lose a staggering 80 per cent of its users. We all watched as Myspace crashed and burned (despite Justin Timberlake\'s best attempts to revive it) so this news comes as no surprise. So before users begin abandoning Facebook (and their parent\'s embarrassing comments on posts) in droves, let\'s make the most of it! This collection of 10 free and premium Facebook plugins for WordPress includes all you need (and then some!) to fully integrate Facebook into your site, from adding a simple Like box to adding advanced functionality with Open Graph.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}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:\"Raelene Wilson\";s: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:16310:\"<p>You’ve no doubt heard about the claims Facebook has spread like an <a title=\"Facebook will burn out \'like an infectious disease\': Social network has peaked and will lose 80% of its users within a YEAR, claim researchers Read more: http://www.dailymail.co.uk/sciencetech/article-2544200/Facebook-like-infectious-disease-claim-researchers-say-peaked-lose-80-percent-users-YEAR.html\" href=\"http://www.dailymail.co.uk/sciencetech/article-2544200/Facebook-like-infectious-disease-claim-researchers-say-peaked-lose-80-percent-users-YEAR.html\" target=\"_blank\">“infectious disease”</a> across the planet and over the next three years will lose a staggering 80 per cent of its users.</p>\n<p>We all watched as Myspace crashed and burned (despite Justin Timberlake’s best attempts to revive it) so this news comes as no surprise.</p>\n<p>So before users begin abandoning Facebook (and their parent’s embarrassing comments on posts) in droves, let’s make the most of it! This collection of 10 free and premium Facebook plugins for WordPress includes all you need (and then some!) to fully integrate Facebook into your site, from adding a simple Like box to adding advanced functionality with Open Graph.<span id=\"more-124665\"></span></p>\n<p><strong>Do you have a favorite Facebook plugin that’s not on the list? Tell us in the comments below.</strong></p>\n<div class=\"lists-content\"><div class=\"list-content\"><div class=\"cgrid-row\"><div class=\"cgrid-col cgrid-col-span-full\"><h2 class=\"list-title\"><span class=\"list-title-inner\">Facebook</span></h2></div></div><div class=\"image-grid cgrid-row\"><div class=\"cgrid-col cgrid-col-span-full-wide\"><img width=\"770\" height=\"250\" src=\"http://premium.wpmudev.org/blog/wp-content/uploads/2014/01/facebook.png\" class=\"attachment-ratio-full\" alt=\"facebook\" /></div></div><ul class=\"list-buttons\"><li class=\"list-button\"><a href=\"https://wordpress.org/plugins/facebook/\" target=\"_blank\" class=\"button button-gray\">Details</a></li><li class=\"list-button\"><a href=\"http://downloads.wordpress.org/plugin/facebook.1.5.4.zip\" target=\"_blank\" class=\"button button-gray\">Download</a></li></ul><div class=\"list-content-body\"><p>This is the official Facebook plugin for WordPress and it does it all.</p>\n<p>The plugin lets you integrate all kinds of Facebook features into your site, such as the Open Graph protocol, Facebook Insights and Like, Send and Follow buttons. You can also embed Facebook posts and enable the Facebook Comments Box social plugin. There’s also a recommendations bar to help visitors find new content on your site and a recommendations box widget.</p>\n<p>Configuring the plugin is a straightforward affair. You’ll need to set up a Facebook developer account so you’ve got an app ID and secret key to put into the plugin’s settings. Once you’ve got that sorted, you can set up Like and Follow buttons and configure a comments box or recommendations bar, and quickly access Insights for your site.</p>\n</div></div><div class=\"list-content\"><div class=\"cgrid-row\"><div class=\"cgrid-col cgrid-col-span-full\"><h2 class=\"list-title\"><span class=\"list-title-inner\">Facebook AWD All in One</span></h2></div></div><div class=\"image-grid cgrid-row\"><div class=\"cgrid-col cgrid-col-span-full-wide\"><img width=\"770\" height=\"250\" src=\"http://premium.wpmudev.org/blog/wp-content/uploads/2014/01/facebook-awd-all-in-one1.png\" class=\"attachment-ratio-full\" alt=\"facebook-awd-all-in-one\" /></div></div><ul class=\"list-buttons\"><li class=\"list-button\"><a href=\"http://wordpress.org/plugins/facebook-awd/\" target=\"_blank\" class=\"button button-gray\">Details</a></li><li class=\"list-button\"><a href=\"http://downloads.wordpress.org/plugin/facebook-awd.1.6.zip\" target=\"_blank\" class=\"button button-gray\">Download</a></li></ul><div class=\"list-content-body\"><p>Much like the official Facebook plugin, Facebook AWD allows you to add social plugins, Open Graph, comments and Facebook Connect.</p>\n<p>When you activate this plugin, it uses its own customized blue background, which I think is unnecessary. You’ll need to set up a Facebook developer account and plug in an app ID and secret key before you get started.</p>\n<p>The great thing about this plugin is that you can enable Facebook Connect in realtime and link Facebook users with your site and use avatars from Facebook instead of defaults.</p>\n</div></div><div class=\"list-content\"><div class=\"cgrid-row\"><div class=\"cgrid-col cgrid-col-span-full\"><h2 class=\"list-title\"><span class=\"list-title-inner\">Social Locker for Wordpress</span></h2></div></div><div class=\"image-grid cgrid-row\"><div class=\"cgrid-col cgrid-col-span-full-wide\"><img width=\"770\" height=\"250\" src=\"http://premium.wpmudev.org/blog/wp-content/uploads/2014/01/social-locker.png\" class=\"attachment-ratio-full\" alt=\"social-locker\" /></div></div><ul class=\"list-buttons\"><li class=\"list-button\"><a href=\"http://codecanyon.net/item/social-locker-for-wordpress/3667715\" target=\"_blank\" class=\"button button-gray\">Details</a></li><li class=\"list-button\"><a href=\"http://codecanyon.net/item/social-locker-for-wordpress/3667715\" target=\"_blank\" class=\"button button-gray\">Download</a></li></ul><div class=\"list-content-body\"><p>Social Locker lets your users “pay” with a Like, much like WPMU DEV’s Pay With a Like plugin. The plugin allows you to lock access to the content on your site – videos, audio, free downloads etc – until a user clicks Like. Clicking Like gives them access to your content, while you get your site promoted to the user’s friends and followers.</p>\n<p>The plugin uses shortcodes to lock content, so you can control exactly what you want users to see. The nifty thing about this plugin is the analytics tools, which let you track how users interact with the locker and which locked parts of your site bring in the most traffic.</p>\n</div></div><div class=\"list-content\"><div class=\"cgrid-row\"><div class=\"cgrid-col cgrid-col-span-full\"><h2 class=\"list-title\"><span class=\"list-title-inner\">WP4FB WordPress Facebook Plugin</span></h2></div></div><div class=\"image-grid cgrid-row\"><div class=\"cgrid-col cgrid-col-span-full-wide\"><img width=\"770\" height=\"250\" src=\"http://premium.wpmudev.org/blog/wp-content/uploads/2014/01/wp4fb.jpg\" class=\"attachment-ratio-full\" alt=\"wp4fb\" /></div></div><ul class=\"list-buttons\"><li class=\"list-button\"><a href=\"http://wp4fb.com/\" target=\"_blank\" class=\"button button-gray\">Details</a></li><li class=\"list-button\"><a href=\"http://wp4fb.com/\" target=\"_blank\" class=\"button button-gray\">Download</a></li></ul><div class=\"list-content-body\"><p>WP4FB allows you to create custom Facebook fan page tabs with a drag and drop interface. The plugin comes with a bunch of fan page templates as well as FanGate, which locks content to non-users of your site until they click Like.</p>\n<p>Other features include ShareGate, which encourages users to share your content with their friends, optimized wall messages and shortcodes.</p>\n<p>This premium plugin is a bit pricey, with prices ranging from $67 for a single fan page license to $197 for an unlimited agency license.</p>\n</div></div><div class=\"list-content\"><div class=\"cgrid-row\"><div class=\"cgrid-col cgrid-col-span-full\"><h2 class=\"list-title\"><span class=\"list-title-inner\">Facebook Post Planner</span></h2></div></div><div class=\"image-grid cgrid-row\"><div class=\"cgrid-col cgrid-col-span-full-wide\"><img width=\"770\" height=\"250\" src=\"http://premium.wpmudev.org/blog/wp-content/uploads/2014/01/facebook-post-planner.jpg\" class=\"attachment-ratio-full\" alt=\"facebook-post-planner\" /></div></div><ul class=\"list-buttons\"><li class=\"list-button\"><a href=\"http://codecanyon.net/item/facebook-post-planner-wordpress-plugin/1556399\" target=\"_blank\" class=\"button button-gray\">Details</a></li><li class=\"list-button\"><a href=\"http://codecanyon.net/item/facebook-post-planner-wordpress-plugin/1556399\" target=\"_blank\" class=\"button button-gray\">Download</a></li></ul><div class=\"list-content-body\"><p>Facebook Post Planner is a handy plugin that lets you post to your Facebook page from the comfort of your WordPress admin area. Like planning and writing blog posts, you can plan and write Facebook posts and schedule them in advance. You can even choose to repeatedly publish posts at regular intervals.</p>\n<p>Composing a Facebook post is much like writing a WordPress post – just write your message, add images or other media and hit publish/schedule.</p>\n</div></div><div class=\"list-content\"><div class=\"cgrid-row\"><div class=\"cgrid-col cgrid-col-span-full\"><h2 class=\"list-title\"><span class=\"list-title-inner\">Custom Facebook Feed</span></h2></div></div><div class=\"image-grid cgrid-row\"><div class=\"cgrid-col cgrid-col-span-full-wide\"><img width=\"770\" height=\"250\" src=\"http://premium.wpmudev.org/blog/wp-content/uploads/2014/01/custom-facebook-feed.png\" class=\"attachment-ratio-full\" alt=\"custom-facebook-feed\" /></div></div><ul class=\"list-buttons\"><li class=\"list-button\"><a href=\"http://wordpress.org/plugins/custom-facebook-feed/\" target=\"_blank\" class=\"button button-gray\">Details</a></li><li class=\"list-button\"><a href=\"http://downloads.wordpress.org/plugin/custom-facebook-feed.1.6.8.2.zip\" target=\"_blank\" class=\"button button-gray\">Download</a></li></ul><div class=\"list-content-body\"><p>This plugin allows you to display a customizable, responsive and search engine-friendly version of your Facebook wall on your site. You can match the look and feel of your site. You can display multiple Facebook walls from different Facebook pages and groups and use shortcode to embed them into posts, pages or widgets on your site.</p>\n<p>You can even display events from your Facebook wall with the name, date, time, location and description.</p>\n<p>Setting up the plugin is easy, and like other Facebook plugins you’ll need a Facebook developer account. This is the free version of the plugin. The premium version offers updates and support.</p>\n</div></div><div class=\"list-content\"><div class=\"cgrid-row\"><div class=\"cgrid-col cgrid-col-span-full\"><h2 class=\"list-title\"><span class=\"list-title-inner\">Social Traffic Pop for WordPress</span></h2></div></div><div class=\"image-grid cgrid-row\"><div class=\"cgrid-col cgrid-col-span-full-wide\"><img width=\"770\" height=\"250\" src=\"http://premium.wpmudev.org/blog/wp-content/uploads/2014/01/social-traffic-pop.jpg\" class=\"attachment-ratio-full\" alt=\"social-traffic-pop\" /></div></div><ul class=\"list-buttons\"><li class=\"list-button\"><a href=\"http://codecanyon.net/item/social-traffic-pop-for-wordpress/309705\" target=\"_blank\" class=\"button button-gray\">Details</a></li><li class=\"list-button\"><a href=\"http://codecanyon.net/item/social-traffic-pop-for-wordpress/309705\" target=\"_blank\" class=\"button button-gray\">Download</a></li></ul><div class=\"list-content-body\"><p>Social Traffic Pop displays a pop up on your site displaying your social media accounts to encourage visitors to your site to like your site’s Facebook page. This plugin isn’t Facebook specific, though. It also includes Twitter, Google+ and LinkedIn.</p>\n<p>The plugin’s settings include options for timing the pop up and adjusting the opacity of the background when the pop up is displayed.</p>\n</div></div><div class=\"list-content\"><div class=\"cgrid-row\"><div class=\"cgrid-col cgrid-col-span-full\"><h2 class=\"list-title\"><span class=\"list-title-inner\">Recent Facebook Posts</span></h2></div></div><div class=\"image-grid cgrid-row\"><div class=\"cgrid-col cgrid-col-span-full-wide\"><img width=\"770\" height=\"250\" src=\"http://premium.wpmudev.org/blog/wp-content/uploads/2014/01/recent-facebook-posts.png\" class=\"attachment-ratio-full\" alt=\"recent-facebook-posts\" /></div></div><ul class=\"list-buttons\"><li class=\"list-button\"><a href=\"http://wordpress.org/plugins/recent-facebook-posts/\" target=\"_blank\" class=\"button button-gray\">Details</a></li><li class=\"list-button\"><a href=\"http://downloads.wordpress.org/plugin/recent-facebook-posts.1.8.5.zip\" target=\"_blank\" class=\"button button-gray\">Download</a></li></ul><div class=\"list-content-body\"><p>This free plugin has a lot of love in the WordPress Plugin Repository where users have overwhelmingly given it 5-star reviews.</p>\n<p>Recent Facebook Posts adds a widget, a shortcode and a template function to your site, which you can user to list your most recent Facebook posts from pages and some personal profiles.</p>\n<p>This plugin is easy to customize and comes translation ready.</p>\n</div></div><div class=\"list-content\"><div class=\"cgrid-row\"><div class=\"cgrid-col cgrid-col-span-full\"><h2 class=\"list-title\"><span class=\"list-title-inner\">Wordpress Social Share</span></h2></div></div><div class=\"image-grid cgrid-row\"><div class=\"cgrid-col cgrid-col-span-full-wide\"><img width=\"770\" height=\"250\" src=\"http://premium.wpmudev.org/blog/wp-content/uploads/2014/01/wordpress-social-share1.jpg\" class=\"attachment-ratio-full\" alt=\"wordpress-social-share\" /></div></div><ul class=\"list-buttons\"></ul><div class=\"list-content-body\"><p>Prompt your visitors to Like your Facebook page with WordPress Social Share. This plugin includes a set of stylish icons, which are displayed over your site after a set period of time you choose.</p>\n<p>You can set different button positions and backgrounds, but unfortunately the plugin only comes with one set of icons. Hopefully more icon sets will be released with future versions.</p>\n</div></div><div class=\"list-content\"><div class=\"cgrid-row\"><div class=\"cgrid-col cgrid-col-span-full\"><h2 class=\"list-title\"><span class=\"list-title-inner\">Ultimate Facebook</span></h2></div></div><div class=\"image-grid cgrid-row\"><div class=\"cgrid-col cgrid-col-span-full-wide\"><img width=\"770\" height=\"250\" src=\"http://premium.wpmudev.org/blog/wp-content/uploads/2014/01/ultimate-facebook.jpg\" class=\"attachment-ratio-full\" alt=\"ultimate-facebook\" /></div></div><ul class=\"list-buttons\"><li class=\"list-button\"><a href=\"https://premium.wpmudev.org/project/ultimate-facebook/\" target=\"_blank\" class=\"button button-gray\">Details</a></li><li class=\"list-button\"><a href=\"https://premium.wpmudev.org/project/ultimate-facebook/\" target=\"_blank\" class=\"button button-gray\">Download</a></li></ul><div class=\"list-content-body\"><p>Last, but not least, I couldn’t put together a list on Facebook plugins without mentioning our very own Ultimate Facebook plugin. This plugin combines the functionality of a dozen different plugins in one do-it-all plugin.</p>\n<p>The plugin’s features include allowing users to login to your site with their Facebook account, autoposting to Facebook, importing comments from Facebook to your site, Like and Send buttons, Open Graph, fan page widgets and shortcodes for further customization.</p>\n<p>Nine custom widgets let you add advanced social sharing to your site, including Facebook Connect, photo albums, events, Facepile and more.</p>\n</div></div><div class=\"cgrid-row\"><div class=\"cgrid-col cgrid-col-span-full\"><div class=\"list-separator\"></div></div></div></div>\n<div class=\'yarpp-related-rss\'>\n<p>Related posts:</p><ol>\n<li><a href=\'http://premium.wpmudev.org/blog/the-ultimate-facebook-plugin-is-here-auto-post-like-and-send-buttons-images-and-more/\' rel=\'bookmark\' title=\'The Ultimate Facebook Plugin Is Here! Auto-post, like and send buttons, images, and more\'>The Ultimate Facebook Plugin Is Here! Auto-post, like and send buttons, images, and more</a> <small>Today the team at WPMU DEV released the beta of...</small></li>\n<li><a href=\'http://premium.wpmudev.org/blog/daily-tip-light-weight-facebook-connect-plugin-uses-the-new-facebook-api/\' rel=\'bookmark\' title=\'Light Weight Facebook Connect Plugin for WordPress Uses the New Facebook API\'>Light Weight Facebook Connect Plugin for WordPress Uses the New Facebook API</a> <small>There’s a new plugin out there for using Facebook to...</small></li>\n<li><a href=\'http://premium.wpmudev.org/blog/automate-your-facebook-twitter-wordpress-post-updates-2-plugins/\' rel=\'bookmark\' title=\'Automate Your Facebook & Twitter Post Updates With These 2 Plugins\'>Automate Your Facebook & Twitter Post Updates With These 2 Plugins</a> <small>Let these two plugins handle social media promotion for you....</small></li>\n</ol>\n</div>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:85:\"http://premium.wpmudev.org/blog/10-facebook-plugins-you-need-before-it-dies-off/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:\"8\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:4;a:6:{s:4:\"data\";s:48:\"\n \n \n \n \n \n \n \n \n\n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:60:\"WordPress Security Essentials: Obscurity Tactics and Backups\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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://premium.wpmudev.org/blog/wordpress-security-obscurity-tactics-and-backups/\";s: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:90:\"http://premium.wpmudev.org/blog/wordpress-security-obscurity-tactics-and-backups/#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, 24 Jan 2014 13:00:46 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:3:{i:0;a:5:{s:4:\"data\";s:19:\"WordPress 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:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"WPMU DEV\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:8:\"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:41:\"http://premium.wpmudev.org/blog/?p=124904\";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:491:\"Security by obscurity is by no means a be-all, end-all solution for keeping nasty hackers at bay, but should still play at part in your overall defence plan. Obscurity as a security measure is the belief that a site can remain secure so long as nobody outside of its implementation is allowed to find out anything about its internal mechanisms. In the final video in our WordPress Security Essentials series, we look at obscurity tactics and tried-and-true measures for backing up your site.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Raelene Wilson\";s: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:3380:\"<p><span style=\"line-height: 24px;\">Security by obscurity is by no means a be-all, end-all solution for keeping nasty hackers at bay, but should still play at part in your overall defence plan.</span></p>\n<p>Obscurity as a security measure is the belief that a site can remain secure so long as nobody outside of its implementation is allowed to find out anything about its internal mechanisms.</p>\n<p>In the final video in our <strong>WordPress Security Essentials series</strong>, we look at obscurity tactics and tried-and-true measures for backing up your site.<span id=\"more-124904\"></span></p>\n<p><span class=\'embed-youtube\' style=\'text-align:center; display: block;\'><iframe class=\'youtube-player\' type=\'text/html\' width=\'640\' height=\'390\' src=\'http://www.youtube.com/embed/1gQfGZTpThw?version=3&rel=1&fs=1&showsearch=0&showinfo=1&iv_load_policy=1&wmode=transparent\' frameborder=\'0\'></iframe></span></p>\n<h3>Obscurity Tactics</h3>\n<p>The video covers how to put into effect two of the most common obscurity tactics: removing the publicly displayed version information for your WordPress installation, and blocking directory browsing.</p>\n<p>Keep a pen and paper handy (or better yet, just hit pause on the video and type out some notes) because the video provides the code you need to obscure aspects of your site.</p>\n<h3>Backing Up</h3>\n<p>Backing up a site can seem like a chore – until your site is hacked and you have to re-develop parts – or even all of it – everything from scratch.</p>\n<p>Save yourself a potential headache and back up. The video covers some simple and popular ways to back up your site.</p>\n<h3>WPMU DEV Has Dozens of Free Videos</h3>\n<p>If you haven’t already, check out the <a title=\"WPMU DEV YouTube Channel\" href=\"http://www.youtube.com/user/wpmudev\" target=\"_blank\">WPMU Dev YouTube channel</a>. It features 150+ videos, providing a fantastic tutorial resource for learning how to better use WordPress and WPMU DEV.</p>\n<p>Whether you want to find out more about using the WordPress admin panel or getting the most out of a WPMU DEV plugin like MarketPress or Appointments+, our YouTube channel will help you find out exactly what you need to know.</p>\n<p><strong>What steps do you take to beef up the security on your site? Tell us in the comments below.</strong></p>\n<div class=\'yarpp-related-rss\'>\n<p>Related posts:</p><ol>\n<li><a href=\'http://premium.wpmudev.org/blog/wordpress-security-essentials-say-goodbye-to-hackers/\' rel=\'bookmark\' title=\'WordPress Security Essentials: Say Goodbye to Hackers\'>WordPress Security Essentials: Say Goodbye to Hackers</a> <small>It\'s not fun having your site hacked. Beefing up your...</small></li>\n<li><a href=\'http://premium.wpmudev.org/blog/wordpress-security-password-username-safety/\' rel=\'bookmark\' title=\'WordPress Security Essentials: Password and Username Safety\'>WordPress Security Essentials: Password and Username Safety</a> <small>There are simple ways you can help avoid a hacking...</small></li>\n<li><a href=\'http://premium.wpmudev.org/blog/wordpress-security-essentials-four-points-of-vulnerability/\' rel=\'bookmark\' title=\'WordPress Security Essentials : Four Points Of Vulnerability\'>WordPress Security Essentials : Four Points Of Vulnerability</a> <small>Part 2 of our WordPress Security Essentials video series in...</small></li>\n</ol>\n</div>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:86:\"http://premium.wpmudev.org/blog/wordpress-security-obscurity-tactics-and-backups/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:48:\"\n \n \n \n \n \n \n \n \n\n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"WordPress Security Essentials: Password and Username Safety\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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://premium.wpmudev.org/blog/wordpress-security-password-username-safety/\";s: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:85:\"http://premium.wpmudev.org/blog/wordpress-security-password-username-safety/#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, 22 Jan 2014 13:00: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:8:\"category\";a:3:{i:0;a:5:{s:4:\"data\";s:19:\"WordPress 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:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"WPMU DEV\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:8:\"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:41:\"http://premium.wpmudev.org/blog/?p=124900\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:356:\"There are simple ways you can help avoid a hacking attempt on your site, such as keeping your version of WordPress up-to-date and using themes and plugins from reputable sources. But what can you do to fight off brute force? In the third video in our WordPress Security Essentials series, we look at practical ways to combat username and password cracking.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}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:\"Raelene Wilson\";s: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:3279:\"<p>There are simple ways you can help avoid a hacking attempt on your site, such as keeping your version of WordPress up-to-date and using themes and plugins from reputable sources.</p>\n<p>But what can you do to fight off brute force?</p>\n<p>In the third video in our <strong>WordPress Security Essentials series</strong>, we look at practical ways to combat username and password cracking.<span id=\"more-124900\"></span></p>\n<p><span class=\'embed-youtube\' style=\'text-align:center; display: block;\'><iframe class=\'youtube-player\' type=\'text/html\' width=\'640\' height=\'390\' src=\'http://www.youtube.com/embed/XA0Apzy0V6M?version=3&rel=1&fs=1&showsearch=0&showinfo=1&iv_load_policy=1&wmode=transparent\' frameborder=\'0\'></iframe></span></p>\n<p>Brute force attacks are an everyday reality of the internet. But how do you defend against such attacks?</p>\n<p>Well, there’s no real secret to strengthening your site against attacks, as our video will tell you.</p>\n<h3>Usernames and Passwords</h3>\n<p>Do you use the default “admin” username? How strong is your password? Do you use the same passwords across many sites?</p>\n<p>According to password management company <a title=\"The 25 most common passwords of 2013\" href=\"http://www.cbsnews.com/news/the-25-most-common-passwords-of-2013/\" target=\"_blank\">SplashData</a>, the top three passwords of the year are “123456,” “password” and “12345678.”</p>\n<p>Ignoring the importance of having unique a username and password, as detailed in our video, leaves your site susceptible to brute force attacks.</p>\n<h3>WPMU DEV Has Hundreds of Free Videos on Offer</h3>\n<p>If you haven’t already, check out the <a title=\"WPMU DEV YouTube Channel\" href=\"http://www.youtube.com/user/wpmudev\" target=\"_blank\">WPMU Dev YouTube channel</a>. It features 150+ videos, providing a fantastic tutorial resource for learning how to better use WordPress and WPMU DEV.</p>\n<p>Whether you want to find out more about using the WordPress admin panel or getting the most out of a WPMU DEV plugin like MarketPress or Appointments+, our YouTube channel will help you find out exactly what you need to know.</p>\n<p><strong>What steps do you take to beef up the security on your site? Tell us in the comments below.</strong></p>\n<div class=\'yarpp-related-rss\'>\n<p>Related posts:</p><ol>\n<li><a href=\'http://premium.wpmudev.org/blog/wordpress-security-essentials-say-goodbye-to-hackers/\' rel=\'bookmark\' title=\'WordPress Security Essentials: Say Goodbye to Hackers\'>WordPress Security Essentials: Say Goodbye to Hackers</a> <small>It\'s not fun having your site hacked. Beefing up your...</small></li>\n<li><a href=\'http://premium.wpmudev.org/blog/wordpress-security-essentials-four-points-of-vulnerability/\' rel=\'bookmark\' title=\'WordPress Security Essentials : Four Points Of Vulnerability\'>WordPress Security Essentials : Four Points Of Vulnerability</a> <small>Part 2 of our WordPress Security Essentials video series in...</small></li>\n<li><a href=\'http://premium.wpmudev.org/blog/security-alert-for-wordpress-users/\' rel=\'bookmark\' title=\'Security Alert for WordPress Users!\'>Security Alert for WordPress Users!</a> <small>It seems there has been a recent surge in attacks...</small></li>\n</ol>\n</div>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:81:\"http://premium.wpmudev.org/blog/wordpress-security-password-username-safety/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:\"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:\"\";}}}}}i:6;a:6:{s:4:\"data\";s:51:\"\n \n \n \n \n \n \n \n \n \n\n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"Chat Updates Make WP a Fully-Functional Live Platform\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:84:\"http://premium.wpmudev.org/blog/chat-updates-make-wp-fully-functional-live-platform/\";s: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:93:\"http://premium.wpmudev.org/blog/chat-updates-make-wp-fully-functional-live-platform/#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, 21 Jan 2014 23:30: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:4:{i:0;a:5:{s:4:\"data\";s:10:\"BuddyPress\";s: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:18:\"BuddyPress 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:\"\";}i:2;a:5:{s:4:\"data\";s:17:\"WordPress 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:\"\";}i:3;a:5:{s:4:\"data\";s:8:\"WPMU DEV\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"http://premium.wpmudev.org/blog/?p=124983\";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:466:\"Our developers are always working hard to improve our plugins, and today we\'re super excited to announce HUGE updates to our Chat plugin. Since we last updated you on Chat\'s features, the plugin now includes the ability to control where chats appear, full BuddyPress integration, significant front-end display improvements, chat logs displayed on the front-end (helping SEO!), specific bottom corner chat features and some very important under-the-hood improvements.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}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:\"Raelene Wilson\";s: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:10668:\"<p>Our developers are always working hard to improve our plugins, and today <span style=\"line-height: 24px;\">we’re super excited to announce <strong>HUGE</strong></span><span style=\"line-height: 24px;\"> updates to our <a title=\"Chat by WPMU DEV\" href=\"https://premium.wpmudev.org/project/wordpress-chat-plugin/\" target=\"_blank\">Chat plugin</a>.</span></p>\n<p>Since we last updated you on <a title=\"Chat by WPMU DEV\" href=\"https://premium.wpmudev.org/project/wordpress-chat-plugin/\" target=\"_blank\">Chat’s</a> features, the plugin now includes the ability to control where chats appear, full BuddyPress integration, significant front-end display improvements, chat logs displayed on the front-end (helping SEO!), specific bottom corner chat features and some very important under-the-hood improvements.<span id=\"more-124983\"></span></p>\n<p><iframe src=\"//player.vimeo.com/video/67841304\" height=\"350\" width=\"637\" allowfullscreen=\"\" frameborder=\"0\"></iframe></p>\n<p><span style=\"font-family: ff-tisa-web-pro, Arial, sans-serif; font-size: 30px; font-weight: 600; line-height: 36px;\">Improvements to Chat</span></p>\n<p>In June last year we unveiled features that made <a title=\"Chat by WPMU DEV\" href=\"https://premium.wpmudev.org/project/wordpress-chat-plugin/\" target=\"_blank\">Chat</a> faster, sleeker and more customizable than ever before. We listened to member feedback and we’ve made Chat even better for users who wishing to turn their site into a fully-functional live and interactive platform.</p>\n<h3>Front-End Display Improvements</h3>\n<figure id=\"attachment_125088\" class=\"wp-caption alignright wp-caption-right cgrid-row\" style=\"width: 410px\"><div class=\"cgrid-col cgrid-col-span-3 cgrid-col-right\"><div class=\"cgrid-col-wide-right\"><a href=\"http://premium.wpmudev.org/blog/wp-content/uploads/2014/01/live-support-jack.png\" rel=\"lightbox[124983]\" title=\"Chat Updates Make WP a Fully-Functional Live Platform\"><img class=\"size-full wp-image-125088\" alt=\"Live Support\" src=\"http://premium.wpmudev.org/blog/wp-content/uploads/2014/01/live-support-jack.png\" width=\"410\" height=\"387\" /></a><figcaption class=\"wp-caption-text\">We use the Chat plugin for our Live Support sessions. Check out our Live Support calendar to join the next chat session.</figcaption></div></div></figure>\n<p>You asked for it and we delivered – <a title=\"Chat by WPMU DEV\" href=\"https://premium.wpmudev.org/project/wordpress-chat-plugin/\" target=\"_blank\">Chat</a> now display both a user’s avatar and name. Admins can also now hide the moderator footer completely, stop users from expanding the text area, prevent the pop out chat on individual chat sessions and choose whether to split or combine a moderator list.</p>\n<ul>\n<li>New: Added logic to users list to control height of box</li>\n<li>New: Added display options for users list for moderator and user list output, split or combined lists</li>\n<li>New: Added option to show user avatar and name on message output</li>\n<li>New: Added option to hide pop out chat on individual chat sessions</li>\n<li>New: Added options to hide moderator message options (block IP, delete, private chat) on individual chat sessions</li>\n<li>New: Added options to lock the size of the the textarea input to prevent user resizing</li>\n<li>New: Added option for No Auth View and No Login, allowing users to view chat message and users without having to login or participate in chat</li>\n</ul>\n<p><span style=\"font-family: ff-tisa-web-pro, Arial, sans-serif; font-size: 24px; font-weight: 600; line-height: 24px;\">Easier to Access Chat Logs</span></p>\n<p>In earlier versions of <a title=\"Chat by WPMU DEV\" href=\"https://premium.wpmudev.org/project/wordpress-chat-plugin/\" target=\"_blank\">Chat</a>, any user could see/participate in a chat session. We’ve changed that. Earlier versions also displayed chat logs below the chat box and this was using too much space. We’ve updated this to allow admins to show a simple link to chat logs instead. Display your chat logs and boost your SEO!</p>\n<div title=\"Page 2\">\n<ul>\n<li>New: Added logic to control what level of users can view chat archive logs shown below a chat session</li>\n<li>New: Added new log display options on individual chat session set up</li>\n</ul>\n<p><span style=\"font-family: ff-tisa-web-pro, Arial, sans-serif; font-size: 24px; font-weight: 600; line-height: 24px;\">Control Where Chats Are Displayed</span></p>\n<figure id=\"attachment_125099\" class=\"wp-caption aligncenter wp-caption-right cgrid-row clearfix\" style=\"width: 449px\"><div class=\"cgrid-col cgrid-col-span-4 cgrid-col-right\"><div class=\"cgrid-col-wide-right\"><a href=\"http://premium.wpmudev.org/blog/wp-content/uploads/2014/01/new-chat-options.png\" rel=\"lightbox[124983]\" title=\"Chat Updates Make WP a Fully-Functional Live Platform\"><img class=\"size-full wp-image-125099\" alt=\"New Chat options\" src=\"http://premium.wpmudev.org/blog/wp-content/uploads/2014/01/new-chat-options.png\" width=\"449\" height=\"229\" /></a></div></div><figcaption class=\"wp-caption-text cgrid-col cgrid-col-span-1\"><div class=\"cgrid-col-wide-left\">Admins can now control the display of chat within the WordPress admin area.</div></figcaption></figure>\n<p>These new options all you to prevent chat sessions from showing on various URLs. For example, you might want to prevent the bottom corner chat from showing on a page where a shortcode is used, and similar for widgets.</p>\n</div>\n<ul>\n<li>New: WP Admin panel in Settings to control the display of chats within WP admin area</li>\n<li>New: Option to hide on URLs where shortcode is used</li>\n<li>New: Option to include/exclude widget chats on specified URLs</li>\n<li>New: Option to include/exclude bottom corner chats on specified URLs</li>\n<li>New: Option to prevent loading of JS/CSS where chats are not displayed. By default, JS/CSS is loaded on all URLs</li>\n</ul>\n<div title=\"Page 1\">\n<p><span style=\"font-family: ff-tisa-web-pro, Arial, sans-serif; font-size: 24px; font-weight: 600; line-height: 24px;\">BuddyPress Features</span></p>\n<figure id=\"attachment_125095\" class=\"wp-caption alignright wp-caption-right cgrid-row\" style=\"width: 312px\"><div class=\"cgrid-col cgrid-col-span-2 cgrid-col-right\"><div class=\"cgrid-col-wide-right\"><a href=\"http://premium.wpmudev.org/blog/wp-content/uploads/2014/01/buddypress_logo.png\" rel=\"lightbox[124983]\" title=\"Chat Updates Make WP a Fully-Functional Live Platform\"><img class=\"size-ratio-2-3 wp-image-125095\" alt=\"BuddyPress\" src=\"http://premium.wpmudev.org/blog/wp-content/uploads/2014/01/buddypress_logo-312x74.png\" width=\"312\" height=\"74\" /></a><figcaption class=\"wp-caption-text\">We’ve added a heap of new BuddyPress features that allow you to control the look and feel of live chat.</figcaption></div></div></figure>\n<p>We’ve really beefed up the way <a title=\"Chat by WPMU DEV\" href=\"https://premium.wpmudev.org/project/wordpress-chat-plugin/\" target=\"_blank\">Chat</a> works with BuddyPress. Now you can define some default settings for group chat, with settings inherited each time a new group is added, as well as control some chat settings within profile pages. Admins can also see all users and initiate private chats directly, regardless of their friendship status.</p>\n<div title=\"Page 1\">\n<ul>\n<li>New: Control BuddyPress group page slug and menu label values</li>\n<li>New: Added Chat options to BuddyPress profile settings to control chat status and visibility</li>\n<li>New: Added logic to BuddyPress members listing to display status for all users, not just user’s friends if the viewing users is site admin</li>\n<li>New: Added logic to BuddyPress group chat to show chat session archive logs</li>\n</ul>\n<p><span style=\"font-family: ff-tisa-web-pro, Arial, sans-serif; font-size: 24px; font-weight: 600; line-height: 24px;\">Specific Bottom Corner Chat Features</span></p>\n<p>When the bottom corner chat is minimized, the number of new messages received since the chat was hidden is now displayed. This feature can be switched off for sites low on server resources.</p>\n</div>\n<div title=\"Page 1\">\n<div title=\"Page 2\">\n<div title=\"Page 2\">\n<ul>\n<li>New: Added count for new messages on minimized bottom corner chat</li>\n<li>New: Added option to stop polling for new messages when minimized bottom corner chat</li>\n</ul>\n<p><span style=\"font-family: ff-tisa-web-pro, Arial, sans-serif; font-size: 24px; font-weight: 600; line-height: 24px;\">Under-the-Hood Improvements</span></p>\n<p>In previous versions of <a title=\"Chat by WPMU DEV\" href=\"https://premium.wpmudev.org/project/wordpress-chat-plugin/\" target=\"_blank\">Chat</a>, when a user posted a message there was a server hiccup during the AJAX send and the message was lost. Now the message is retained until a successful confirmation from the server. <a title=\"Chat by WPMU DEV\" href=\"https://premium.wpmudev.org/project/wordpress-chat-plugin/\" target=\"_blank\">Chat</a> also now has timers for how often new messages are checked versus meta information.</p>\n<ul>\n<li>New: Added retry logic to AJAX init and message_update process for better handling of server errors</li>\n<li>New: Added polling timers and settings options for Chat invites and Chat meta information to prevent excessive queries during each message polling interval</li>\n</ul>\n<p><strong>Download <a title=\"Chat by WPMU DEV\" href=\"https://premium.wpmudev.org/project/wordpress-chat-plugin/\" target=\"_blank\">Chat</a> today and turn your WordPress site into a fully-functional live platform.</strong></p>\n</div>\n</div>\n</div>\n</div>\n<div class=\'yarpp-related-rss\'>\n<p>Related posts:</p><ol>\n<li><a href=\'http://premium.wpmudev.org/blog/free-wordpress-chat-plugin-is-fully-compatible-with-multisite-and-buddypress/\' rel=\'bookmark\' title=\'Free WordPress Chat Plugin is Fully Compatible with Multisite and BuddyPress\'>Free WordPress Chat Plugin is Fully Compatible with Multisite and BuddyPress</a> <small>We’re pleased to announce that our new WordPress Chat plugin...</small></li>\n<li><a href=\'http://premium.wpmudev.org/blog/wordpress-chat-plugin/\' rel=\'bookmark\' title=\'WordPress Chat Plugin Gets A Sleek Redesign and a Dozen New Features\'>WordPress Chat Plugin Gets A Sleek Redesign and a Dozen New Features</a> <small>Chat is now faster, sleeker and more customizable than ever...</small></li>\n<li><a href=\'http://premium.wpmudev.org/blog/get-live-user-interaction-on-your-buddypress-site-with-ajax-chat/\' rel=\'bookmark\' title=\'Get Live User Interaction on Your BuddyPress Site With Ajax Chat\'>Get Live User Interaction on Your BuddyPress Site With Ajax Chat</a> <small>Ajax chat is an impressive feature that will get your...</small></li>\n</ol>\n</div>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:89:\"http://premium.wpmudev.org/blog/chat-updates-make-wp-fully-functional-live-platform/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:\"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:\"\";}}}}}i:7;a:6:{s:4:\"data\";s:48:\"\n \n \n \n \n \n \n \n \n\n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"WordPress Security Essentials: Say Goodbye to Hackers\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:85:\"http://premium.wpmudev.org/blog/wordpress-security-essentials-say-goodbye-to-hackers/\";s: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:94:\"http://premium.wpmudev.org/blog/wordpress-security-essentials-say-goodbye-to-hackers/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 20 Jan 2014 13:00: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:8:\"category\";a:3:{i:0;a:5:{s:4:\"data\";s:19:\"WordPress 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:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"WPMU DEV\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:8:\"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:41:\"http://premium.wpmudev.org/blog/?p=124896\";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:479:\"It\'s not fun having your site hacked. Beefing up your site\'s security can seem like a chore, but it\'s far easier than dealing with the aftermath of malicious hackers taking down your site. So how exactly do you secure your WordPress site? We\'ve put together a five-part video series we\'re calling WordPress Security Essentials. The series covers everything you need to know, from themes and plugin safety to password best practice, database backups and layered security measures.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}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:\"Raelene Wilson\";s: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:6555:\"<p>It’s not fun having your site hacked. Beefing up your site’s security can seem like a chore, but it’s far easier than dealing with the aftermath of malicious hackers taking down your site.</p>\n<p>So how exactly do you secure your WordPress site?</p>\n<p>We’ve <span style=\"line-height: 24px;\">put together a five-part video series we’re calling <strong>WordPress Security Essentials. </strong>The series covers everything you need to know, from theme and plugin safety to password best practice, database backups and layered security measures. <strong>We’ll be featuring each of the five videos on the WPMU DEV blog this week.</strong></span></p>\n<p><span style=\"line-height: 24px;\">The goal of this series is to give you practical advice on how you can tighten up the security on your site and protect it from malicious attacks.</span></p>\n<p><span class=\'embed-youtube\' style=\'text-align:center; display: block;\'><iframe class=\'youtube-player\' type=\'text/html\' width=\'640\' height=\'390\' src=\'http://www.youtube.com/embed/y_bIr1yAELw?version=3&rel=1&fs=1&showsearch=0&showinfo=1&iv_load_policy=1&wmode=transparent\' frameborder=\'0\'></iframe></span></p>\n<h3>Why Worry About Security?</h3>\n<p>If you run a WordPress site for yourself or for a client, it’s simply irresponsible to neglect security. And if you do run a site for a client, your reputation depends on the site running smoothly with little downtime.</p>\n<p>WordPress is by far the world’s most popular content management system, now holding 60 per cent of market share, according to <a title=\"W3Techs\" href=\"http://w3techs.com/technologies/overview/content_management/all\" target=\"_blank\">W3Techs</a>. Its not hard to pinpoint its success – the fact it’s free and open source, endless options for extended functionality using plugins, as well as the ability to customize the look and feel of your site with widgets.</p>\n<p>But these same features are also the most common ways in which we expose our sites to nasty hacking attempts. Due to the open source nature of WordPress, anyone can easily explore the core code or popular themes and plugins.</p>\n\n<h3><span style=\"line-height: 24px;\">How to Beef Up Security On Your Site</span></h3>\n<figure id=\"attachment_125045\" class=\"wp-caption alignright wp-caption-right cgrid-row\" style=\"width: 448px\"><div class=\"cgrid-col cgrid-col-span-3 cgrid-col-right\"><div class=\"cgrid-col-wide-right\"><a href=\"http://premium.wpmudev.org/blog/wp-content/uploads/2014/01/computer-security.jpg\" rel=\"lightbox[124896]\" title=\"WordPress Security Essentials: Say Goodbye to Hackers\"><img class=\"size-ratio-3-2 wp-image-125045\" alt=\"Computer security\" src=\"http://premium.wpmudev.org/blog/wp-content/uploads/2014/01/computer-security-448x336.jpg\" width=\"448\" height=\"336\" /></a><figcaption class=\"wp-caption-text\">Keep hackers at bay using the practical measures outlined in our series, WordPress Security Essentials.</figcaption></div></div></figure>\n<p>This series features five easy-to-follow videos:</p>\n<p><strong>WordPress Security Essentials Video 1:</strong> The first video in our series (featured in this post) sets the stage for the series, outlining themes that will be covered, such as the fundamentals of WordPress security, users accounts and access, layered security techniques and security by obscurity.</p>\n<p><strong>WordPress Security Essentials Video 2:</strong> In this video we look at the four ways users expose their sitesto attack: host security breach, out-of-date WordPress core, unsafe plugins/themes and brute force attacks.</p>\n<p><span style=\"line-height: 24px;\"><strong>WordPress Security Essentials Video 3:</strong> Password and username safety is the focus of this video, which explores at how WordPress security is often compromised by a weak password and/or username. The third video in our series looks at password generators, Google authentication, passphrases and password storage.</span></p>\n<p><span style=\"line-height: 24px;\"><strong>WordPress Security Essentials Video 4:</strong> How do you develop a security strategy? This video looks at layered security as a customized approach to protecting your site and how the content that needs to be shared and the users that need access to the WordPress dashboard varies from site-to-site.</span></p>\n<p><span style=\"line-height: 24px;\"><strong>WordPress Security Essentials Video 5:</strong> The last video in the series examines security by obscurity and shows you how you can implement two of the most popular obscurity techniques – removing the publicly displayed version of WordPress you are using, and blocking directory browsing.</span></p>\n<p>If you haven’t already, check out the <a title=\"WPMU DEV YouTube Channel\" href=\"http://www.youtube.com/user/wpmudev\" target=\"_blank\">WPMU Dev YouTube channel</a>. It features 150+ videos, providing a fantastic tutorial resource for learning how to better use WordPress and WPMU DEV.</p>\n<p>Whether you want to find out more about using the WordPress admin panel or getting the most out of a WPMU DEV plugin like MarketPress or Appointments+, our YouTube channel will help you find out exactly what you need to know.</p>\n<p><strong>What step do you take to beef up the security on your site? Tell us in the comments below.</strong></p>\n<p>Image credits: <a href=\"http://www.flickr.com/photos/77519207@N02/\">elhombredenegro</a>.</p>\n<div class=\'yarpp-related-rss\'>\n<p>Related posts:</p><ol>\n<li><a href=\'http://premium.wpmudev.org/blog/how-to-protect-your-wordpress-site-as-hackers-exploit-timthumb-security-hole/\' rel=\'bookmark\' title=\'How to protect your WordPress site as hackers exploit TimThumb security hole\'>How to protect your WordPress site as hackers exploit TimThumb security hole</a> <small>A month ago we told you about a serious security...</small></li>\n<li><a href=\'http://premium.wpmudev.org/blog/wordpress-force-strong-passwords/\' rel=\'bookmark\' title=\'Don’t Fall Prey to Hackers With This Super Secure Tip\'>Don’t Fall Prey to Hackers With This Super Secure Tip</a> <small>Don’t let users make your site vulnerable with weak passwords....</small></li>\n<li><a href=\'http://premium.wpmudev.org/blog/apocalypse-meow-protects-your-wordpress-site-from-hackers/\' rel=\'bookmark\' title=\'Apocalypse Meow Protects Your WordPress Site From Hackers\'>Apocalypse Meow Protects Your WordPress Site From Hackers</a> <small>Here\'s a quick tip to help you protect your WordPress...</small></li>\n</ol>\n</div>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:90:\"http://premium.wpmudev.org/blog/wordpress-security-essentials-say-goodbye-to-hackers/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:2:\"11\";s: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:57:\"\n \n \n \n \n \n \n \n \n \n \n \n\n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"Free WordPress Themes: The Ultimate Guide\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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://premium.wpmudev.org/blog/free-wordpress-themes-ultimate-guide/\";s: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:78:\"http://premium.wpmudev.org/blog/free-wordpress-themes-ultimate-guide/#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, 16 Jan 2014 13:00: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:8:\"category\";a:6:{i:0;a:5:{s:4:\"data\";s:9:\"Community\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Freebies\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:7:\"Opinion\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:7:\"Reviews\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:4;a:5:{s:4:\"data\";s:19:\"WordPress 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:\"\";}i:5;a:5:{s:4:\"data\";s:8:\"WPMU DEV\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"http://premium.wpmudev.org/blog/?p=124630\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:329:\"There are so many free WordPress themes out there it can put your head in a tail spin. So in an effort to help you sift through the good and the – let’s face it – crap, we’ve put together this ultimate guide to free WordPress themes. This post is your one-stop, all-you-can-eat resource for information […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}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:\"Raelene Wilson\";s: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:40144:\"<p>There are so many free WordPress themes out there it can put your head in a tail spin. So in an effort to help you sift through the good and the – let’s face it – crap, we’ve <span style=\"line-height: 24px;\">put together this ultimate guide to free WordPress themes.</span></p>\n<p><em><strong>This post is your one-stop, all-you-can-eat resource for information about free WordPress Themes.</strong></em></p>\n<p>There’s an overwhelming number of free themes available – just search Google. It’s easy enough to just download the first free theme that catches your eye. And why wouldn’t you? They’re free!</p>\n<p>Why should you fork out your hard-earned cash for a premium themes when there are thousands, if not tens of thousands, available for free?</p>\n<p><span style=\"line-height: 24px;\">And you’re right. Why should you pay for something you can get for nothing? Downloading a free theme instead of a premium theme seems like the obvious choice.</span></p>\n<p>But like most things that are too good to be true, free themes come with a catch. You risk downloading malicious code, struggling to customize a poorly written theme or finding out the hard was that you’re all alone with no support when something goes wrong. What might be free now, you’ll pay for later in frustration, time and money.</p>\n<p>Stick around, but in this very comprehensive look at free themes, I’ll let you in on everything you need to know about free themes and where you can find safe and reliable options.</p>\n<div class=\"cgrid-col cgrid-col-span-full\"><a href=\"http://premium.wpmudev.org/blog/wp-content/uploads/2014/01/work-desk.jpg\" rel=\"lightbox[124630]\" title=\"Free WordPress Themes: The Ultimate Guide\"><img class=\"aligncenter size-ratio-large wp-image-124877\" alt=\"Work desk\" src=\"http://premium.wpmudev.org/blog/wp-content/uploads/2014/01/work-desk-700x262.jpg\" width=\"700\" height=\"262\" /></a></div>\n<p><strong>In this post we’ll cover:</strong></p>\n<ul>\n<li><strong>What is a Free WordPress Theme?</strong></li>\n<li><strong style=\"line-height: 24px;\">Advantages of Free WordPress Themes</strong></li>\n<li><strong>Disadvantages of Free WordPress Themes</strong></li>\n<li><strong>Free WordPress Themes Versus Premium WordPress Themes</strong></li>\n<li><strong>Should I Use a Free Theme or a Premium Theme</strong></li>\n<li><strong>Where You Can Find Reliable and Free WordPress Themes</strong></li>\n<li><strong>Searching for Free WordPress Themes on Google</strong></li>\n<li><strong>How to Check Your WordPress Themes for Potentially Malicious Code</strong></li>\n<li><strong>Tips for Choosing Your Ideal Free WordPress Theme</strong></li>\n</ul>\n<h2>What is a Free WordPress Theme?</h2>\n<p>A free theme is, well, free.</p>\n<p>Some developers create free themes to build their portfolio or just for fun. There are hundreds, if not thousands, of themes shops out there and some, like WooThemes and Graph Paper Press, also create free themes, often to attract users to their site in the hope they’ll empty their wallets for premium content.</p>\n<p>If you’ve searched Google for free themes, you’ve no doubt stumbled across WordPress.org and its Theme Repository, the largest collection of free WordPress themes available online.</p>\n<p>WordPress software is licensed under the GPL and all themes uploaded to the Repository are also required to be 100 per cent GPL-licensed, or use a GPL-compatible license. This includes all PHP, HTML, CSS, images, fonts, icons and everything else.</p>\n<h4>What’s the GPL?</h4>\n<figure id=\"attachment_124924\" class=\"wp-caption alignright wp-caption-right cgrid-row\" style=\"width: 312px\"><div class=\"cgrid-col cgrid-col-span-2 cgrid-col-right\"><div class=\"cgrid-col-wide-right\"><a href=\"http://premium.wpmudev.org/blog/wp-content/uploads/2014/01/720px-GPLv3_Logo.svg_.png\" rel=\"lightbox[124630]\" title=\"Free WordPress Themes: The Ultimate Guide\"><img class=\"size-ratio-2-3 wp-image-124924\" alt=\"GPL\" src=\"http://premium.wpmudev.org/blog/wp-content/uploads/2014/01/720px-GPLv3_Logo.svg_-312x155.png\" width=\"312\" height=\"155\" /></a><figcaption class=\"wp-caption-text\">The GNU General Public License is a free, copyleft license for software and other kinds of works.</figcaption></div></div></figure>\n<p>The GNU General Public License, according to its preamble, is “intended to guarantee your freedom to share and change free software – to make sure the software is free for all its users.”</p>\n<p>When referring to free software, the GPL means freedom, not price. The GPL is designed to ensure you have the freedom to distribute copies of free software (and charge for this service, if you wish), and that you can change the software or use pieces of it in new, free programs.</p>\n<p>The GPL was the first copyleft license made available for general use.</p>\n<h4>Creative Commons</h4>\n<p>Creative Commons licenses are another type of public license, which is free of charge to the public. These licenses allow creators to communicate which rights they reserve and which rights they waive for the benefit of recipients or other creators.<br />\nSome WordPress themes, which are not part of the Theme Repository, are licensed under Creative Commons rather than the GPL.</p>\n<h4>Free Themes Are Not All Created Equal</h4>\n<p>Back in 2009, WordPress co-founder Matt Mullenweg <a title=\"Themes are GPL, too\" href=\"http://wordpress.org/news/2009/07/themes-are-gpl-too/\" target=\"_blank\">sought to clarify licensing for free themes</a>. The US-based Software Freedom Law Center gave the legal opinion that PHP in themes must be GPL, while artwork and CSS may be licensed under GPL, but it’s not required.</p>\n<p>When downloading any theme it’s important to understand how it is licensed and what you’re legally allowed to do with it.</p>\n<h2>Advantages of Free WordPress Themes</h2>\n<p>What’s not to like about something that’s absolutely free? There are many advantages to using a free theme:</p>\n<h4>Free Themes Are Free!</h4>\n<figure id=\"attachment_124927\" class=\"wp-caption alignright wp-caption-right cgrid-row\" style=\"width: 312px\"><div class=\"cgrid-col cgrid-col-span-2 cgrid-col-right\"><div class=\"cgrid-col-wide-right\"><a href=\"http://premium.wpmudev.org/blog/wp-content/uploads/2014/01/free.jpg\" rel=\"lightbox[124630]\" title=\"Free WordPress Themes: The Ultimate Guide\"><img class=\"size-ratio-2-3 wp-image-124927\" alt=\"Free\" src=\"http://premium.wpmudev.org/blog/wp-content/uploads/2014/01/free-312x234.jpg\" width=\"312\" height=\"234\" /></a><figcaption class=\"wp-caption-text\">The awesome thing about free WordPress themes is that they’re FREE!</figcaption></div></div></figure>\n<p>Free themes aren’t going to burn a hole in your pocket. You can simply download the theme you want and starting using it.</p>\n<p>Premium themes can be expensive and if you buy a theme and later decide you don’t want it, or discover that it doesn’t work well with plugins you really need, it can be difficult to get your money back.</p>\n<p>Also, why hire a designer and developer to create a site for you when you can simply download one for free?</p>\n<h4>Community Support</h4>\n<p>While free themes often come without support, <span style=\"line-height: 24px;\">there are plenty of resources out there to help you get started with a free theme you’ve just downloaded or with any advanced customizations you may want to make. The WordPress Support Forums are the first port of call. We’ve also got a rocking support team at WPMU DEV.</span></p>\n<h4>Experimentation</h4>\n<p>If you’re like me, you quickly spot a theme you like, download and activate it and then decide it’s totally wrong for you site. Rinse and repeat.</p>\n<p>This can get pretty expensive if you’re buying premium themes at $45 a pop. With free themes, since you don’t have to pay for them you can download as many as you like without compromising your budget. You can experiment with as many themes as you like until you find the right one that suits your needs.</p>\n<h2>Disadvantages of Free WordPress</h2>\n<p>While there are many good reasons to download free themes, they do have their limitations and disadvantages.</p>\n<h4>Not Unique</h4>\n<p>There are a plethora of blogs out there (including ours) that regularly publish lists of the best free themes, so the best ones are quickly picked up and promoted.</p>\n<p><span style=\"line-height: 24px;\">The best free themes can be download hundreds, if not thousands, of times, ensuring your site is about as unique as a banana.</span></p>\n<figure id=\"attachment_124930\" class=\"wp-caption aligncenter wp-caption-large cgrid-row\" style=\"width: 700px\"><div class=\"cgrid-col cgrid-col-span-full\"><a href=\"http://premium.wpmudev.org/blog/wp-content/uploads/2014/01/twenty-thirteen.png\" rel=\"lightbox[124630]\" title=\"Free WordPress Themes: The Ultimate Guide\"><img class=\"size-ratio-large wp-image-124930\" alt=\"Twenty Thirteen\" src=\"http://premium.wpmudev.org/blog/wp-content/uploads/2014/01/twenty-thirteen-700x361.png\" width=\"700\" height=\"361\" /></a><figcaption class=\"wp-caption-text\">The Twenty Thirteen default WordPress theme has been download 288,929 times. That’s a heluva lot of sites using the same theme.</figcaption></div></figure>\n<h4>Poorly Coded</h4>\n<p>Many free themes are put together by amateurs who have poor coding skills, leaving your site open to security vulnerabilities if you decide to use the theme.</p>\n<p>Poorly coded free themes are also less likely to be localization-ready if you want to translate your site into another language, or SEO-optimized to help your site load faster and perform well in search rankings.</p>\n<h4>Lack of Features</h4>\n<p>Free themes usually offer very basic features. The premium theme market is an incredibly competitive place – just look at Theme Forest. Themes need to offer responsive design and dozens of customizations to get ahead of competitors. Free themes more than not have a very limited number of features.</p>\n<h4>Lack of Support</h4>\n<p>Free themes often don’t come with customer support, so if you run into a problem you’re on your own.</p>\n<h4><span style=\"line-height: 24px;\">Rarely Updated</span></h4>\n<figure id=\"attachment_124934\" class=\"wp-caption alignleft wp-caption-left cgrid-row\" style=\"width: 312px\"><div class=\"cgrid-col cgrid-col-span-2\"><div class=\"cgrid-col-wide-left\"><a href=\"http://premium.wpmudev.org/blog/wp-content/uploads/2014/01/malicious-code.jpg\" rel=\"lightbox[124630]\" title=\"Free WordPress Themes: The Ultimate Guide\"><img class=\"size-ratio-2-3 wp-image-124934\" alt=\"Malicious code\" src=\"http://premium.wpmudev.org/blog/wp-content/uploads/2014/01/malicious-code-312x256.jpg\" width=\"312\" height=\"256\" /></a><figcaption class=\"wp-caption-text\">Free themes are notorius for containing nasty code and other bugs.</figcaption></div></div></figure>\n<p>WordPress is constantly being updated. In fact, the latest version of WordPress, 3.8, was released just two months after WordPress 3.7. It’s important your themes are compatible with the latest version of WordPress. When you use a premium theme, the onus is on the developer to release timely updates. But when you’re using a free theme, you could wait months for an upgrade or not even see one at all.</p>\n<p>There are themes in the WordPress Theme Repository that haven’t been updated in more than two years.</p>\n<h4><span style=\"line-height: 24px;\">Malicious Code and Encrypted Footer Links</span></h4>\n<p>Free themes are notorious for being a conduit for malicious code, encrypted spammy links and link injections for malware or whatever else.</p>\n<p>Since the Google Penguin update, Google has cracked down on sites that have spammy and encrypted links. Hell, we were even <a title=\"WordPress, Penguin, Google and Matt Cutts’ take on WPMU.org\" href=\"http://wpmu.org/wordpress-penguin-google-matt-cutts/\" target=\"_blank\">unfairly penalised for it</a>.</p>\n<h2>Free Themes Versus Premium Themes</h2>\n<p>It’s important to weigh up what you want to actually achieve with your site. Small personal blogs or portfolio sites may benefit from a free theme because it’s a quick and inexpensive way to get a site up and running. Small businesses that require e-commerce, agencies and large companies would do better with a premium theme. Don’t even think about using a free theme for a complex corporate site.</p>\n<p>Premium themes offer many features that are worth paying for and free themes simply can’t compete. If you do decide to use a free theme, it’s important to acknowledge its limitations and accept them.</p>\n<h4>What is a premium theme?</h4>\n<figure id=\"attachment_124939\" class=\"wp-caption alignright wp-caption-right cgrid-row\" style=\"width: 448px\"><div class=\"cgrid-col cgrid-col-span-3 cgrid-col-right\"><div class=\"cgrid-col-wide-right\"><a href=\"http://premium.wpmudev.org/blog/wp-content/uploads/2014/01/themeforest.png\" rel=\"lightbox[124630]\" title=\"Free WordPress Themes: The Ultimate Guide\"><img class=\"size-ratio-3-2 wp-image-124939\" alt=\"Theme Forest\" src=\"http://premium.wpmudev.org/blog/wp-content/uploads/2014/01/themeforest-448x253.png\" width=\"448\" height=\"253\" /></a><figcaption class=\"wp-caption-text\">Theme Forest is the largest online market place for premium WordPress themes.</figcaption></div></div></figure>\n<p>Premium themes are themes which have been professionally designed and developed and include advanced features and functionality, such as sliders, e-commerce, styling options, and custom widgets, among other things.</p>\n<p>Premium themes are usually sold at a fixed cost or as part of a membership. You’re look at around $45 for a theme at Theme Forest or $99 for a standalone theme at WooThemes. When you buy a theme, it usually comes with support and regular updates for a fixed period of time.</p>\n<p>When you hand over money for a premium theme, you can expect a higher standard and quality compared to free themes, as well as a greater selection of theme designs and functionality.</p>\n<p><span style=\"line-height: 24px;\">Unfortunately, there are nasty people out there who manipulate and distribute free WordPress themes containing dodgy links and malicious code. Unless you know what to look for in a theme’s files, using these free themes can negatively affect your site’s efficiency and search engine trust and rankings.</span></p>\n<p>Premium themes can give you the peace of mind that a theme is clean and optimized to make your site perform at its best.</p>\n<h2>Should I Use a Free Theme or a Premium Theme?</h2>\n<p>When you’re just starting out, it makes sense to download and experiment with free themes so you can get a sense of how WordPress works and how to makes customizations.</p>\n<p>If you’re a blogger, a free theme is ideal. Not only is it low cost, but it is unlikely you will need advanced features that comes with premium themes.</p>\n<figure id=\"attachment_124944\" class=\"wp-caption alignright wp-caption-right cgrid-row\" style=\"width: 448px\"><div class=\"cgrid-col cgrid-col-span-3 cgrid-col-right\"><div class=\"cgrid-col-wide-right\"><a href=\"http://premium.wpmudev.org/blog/wp-content/uploads/2014/01/hipster.jpg\" rel=\"lightbox[124630]\" title=\"Free WordPress Themes: The Ultimate Guide\"><img class=\"size-ratio-3-2 wp-image-124944\" alt=\"Hipster\" src=\"http://premium.wpmudev.org/blog/wp-content/uploads/2014/01/hipster-448x298.jpg\" width=\"448\" height=\"298\" /></a><figcaption class=\"wp-caption-text\">If you want to set up a site for your hipster photography, why not download a free WordPress theme?</figcaption></div></div></figure>\n<p>When your site starts to get more popular, it’s probably time to start thinking about buying a premium theme</p>\n<p>Free themes are best for:</p>\n<ul>\n<li>Bloggers</li>\n</ul>\n<p>Premium themes offer features more suited to</p>\n<ul>\n<li>Popular blogs</li>\n<li>Small businesses</li>\n<li>Corporate sites</li>\n</ul>\n<p>When making a decision about what kind of theme to use, it’s also worth considering what kind of look and feel you want to project to your visitors. If you use a free theme with a footer link displaying the name of the site where you downloaded it from, it tells people you don’t put much effort into your site.</p>\n<h2>Where You Can Find Reliable Free Themes</h2>\n<p>It’s important to remember that malicious code isn’t the defining characteristic of free themes. In fact, there are many quality free themes out there.</p>\n<p>Rather, malicious code is a problem of unsafe sites offering those themes. This is why it’s important to download free themes from reliable sources like the ones mentioned below.</p>\n<h4><a title=\"WordPress Theme Repository\" href=\"http://wordpress.org/themes/\" target=\"_blank\">WordPress Theme Repository</a></h4>\n<div class=\"image-grid cgrid-row\">\n<div class=\"cgrid-col cgrid-col-span-full\"><a href=\"http://premium.wpmudev.org/blog/wp-content/uploads/2014/01/wordpress-theme-repository.png\" rel=\"lightbox[124630]\" title=\"Free WordPress Themes: The Ultimate Guide\"><img class=\"aligncenter size-ratio-large wp-image-124946\" alt=\"WordPress Theme Repository\" src=\"http://premium.wpmudev.org/blog/wp-content/uploads/2014/01/wordpress-theme-repository-700x420.png\" width=\"700\" height=\"420\" /></a></div>\n</div>\n<p>The Theme Repository really is the largest collection of free themes available online (where else would you find it? :)</p>\n<p>At last count there were 2216 themes in the repository, which have been download 89,271,832 times. (Remember what I said about the uniqueness of free themes…?)</p>\n<p>The Repository has a fantastic <a title=\"Feature Finder\" href=\"http://wordpress.org/themes/tag-filter/\" target=\"_blank\">feature finder,</a> while allows you to search for themes based on their tags. So if you’re looking for a pink theme with a right sidebar, a fixed layout and a feature header for the holidays, you can search for and find just that.</p>\n<p>As I mentioned above, all themes uploaded to the Repository are 100 per cent GPL and are throughly tested by the Theme Review Team, so themes should be free of malicious code.</p>\n<h4>120 Free WordPress Themes from Premium Theme Developers</h4>\n<div class=\"image-grid cgrid-row\">\n<div class=\"cgrid-col cgrid-col-span-full\"><a href=\"http://premium.wpmudev.org/blog/wp-content/uploads/2014/01/free-premium-wordpress-themes.png\" rel=\"lightbox[124630]\" title=\"Free WordPress Themes: The Ultimate Guide\"><img class=\"aligncenter size-ratio-large wp-image-124947\" alt=\"Free Premium WordPress themes\" src=\"http://premium.wpmudev.org/blog/wp-content/uploads/2014/01/free-premium-wordpress-themes-700x410.png\" width=\"700\" height=\"410\" /></a></div>\n</div>\n<p>Our very own Joe Foley put together this amazing list of premium themes that are also 100 per cent free.</p>\n<p>Not only are these themes free, but you can trust that they have been created and released with clean code. Many theme shops don’t provide support for free themes, so it’s a good idea to check this out if you do decide to download a free premium theme.</p>\n<h4>Free Premium Themes</h4>\n<p>While theme shops really just want you to buy and download their premium themes, many also release free themes to entice new customers.</p>\n<p>Here are just a few:</p>\n<p><a title=\"Themes Kingdom\" href=\"http://www.themeskingdom.com/\" target=\"_blank\"><strong><span style=\"line-height: 24px;\">Themes Kingdom</span></strong></a></p>\n<div class=\"image-grid cgrid-row\">\n<div class=\"cgrid-col cgrid-col-span-full\"><a href=\"http://premium.wpmudev.org/blog/wp-content/uploads/2014/01/themes-kingdom.png\" rel=\"lightbox[124630]\" title=\"Free WordPress Themes: The Ultimate Guide\"><img class=\"aligncenter size-ratio-large wp-image-124908\" alt=\"Themes Kingdom\" src=\"http://premium.wpmudev.org/blog/wp-content/uploads/2014/01/themes-kingdom-700x481.png\" width=\"700\" height=\"481\" /></a></div>\n</div>\n<p>Themes Kingdom offers six free themes, including a charity theme. The themes features clean designs that come with support.</p>\n<p><a title=\"WooThemes\" href=\"http://www.woothemes.com/\" target=\"_blank\"><span style=\"line-height: 24px;\">WooThemes</span></a></p>\n<div class=\"image-grid cgrid-row\">\n<div class=\"cgrid-col cgrid-col-span-full\"><a href=\"http://premium.wpmudev.org/blog/wp-content/uploads/2014/01/woothemes.png\" rel=\"lightbox[124630]\" title=\"Free WordPress Themes: The Ultimate Guide\"><img class=\"aligncenter size-ratio-large wp-image-124909\" alt=\"WooThemes\" src=\"http://premium.wpmudev.org/blog/wp-content/uploads/2014/01/woothemes-700x481.png\" width=\"700\" height=\"481\" /></a></div>\n</div>\n<p>WooThemes offers a collection of 16 free themes, including e-commerce, blogging and business designs.</p>\n<p><a title=\"Graph Paper Press\" href=\"http://graphpaperpress.com/\" target=\"_blank\"><span style=\"line-height: 24px;\">Graph Paper Press</span></a></p>\n<div class=\"image-grid cgrid-row\">\n<div class=\"cgrid-col cgrid-col-span-full\"><a href=\"http://premium.wpmudev.org/blog/wp-content/uploads/2014/01/graph-paper-press.png\" rel=\"lightbox[124630]\" title=\"Free WordPress Themes: The Ultimate Guide\"><img class=\"aligncenter size-ratio-large wp-image-124910\" alt=\"Graph Paper Press\" src=\"http://premium.wpmudev.org/blog/wp-content/uploads/2014/01/graph-paper-press-700x481.png\" width=\"700\" height=\"481\" /></a></div>\n</div>\n<p>Thirteen free themes are available at Graph Paper Press, a theme shop aimed at photographers, artists and small businesses.</p>\n<p><a title=\"Wpshower\" href=\"http://wpshower.com/\" target=\"_blank\"><span style=\"line-height: 24px;\">Wpshower</span></a></p>\n<div class=\"image-grid cgrid-row\">\n<div class=\"cgrid-col cgrid-col-span-full\"><a href=\"http://premium.wpmudev.org/blog/wp-content/uploads/2014/01/wpshower.png\" rel=\"lightbox[124630]\" title=\"Free WordPress Themes: The Ultimate Guide\"><img class=\"aligncenter size-ratio-large wp-image-124911\" alt=\"Wpshower\" src=\"http://premium.wpmudev.org/blog/wp-content/uploads/2014/01/wpshower-700x480.png\" width=\"700\" height=\"480\" /></a></div>\n</div>\n<p>Wpshower offers seven free themes that come with features such as custom widgets and a jQuery-powered featured post carousel. The theme shop’s site includes a forum where users can ask questions about free themes.</p>\n<p><a title=\"Themify\" href=\"http://themify.me/\" target=\"_blank\"><span style=\"line-height: 24px;\">Themify</span></a></p>\n<div class=\"image-grid cgrid-row\">\n<div class=\"cgrid-col cgrid-col-span-full\"><a href=\"http://premium.wpmudev.org/blog/wp-content/uploads/2014/01/themify.png\" rel=\"lightbox[124630]\" title=\"Free WordPress Themes: The Ultimate Guide\"><img class=\"aligncenter size-ratio-large wp-image-124912\" alt=\"Themify\" src=\"http://premium.wpmudev.org/blog/wp-content/uploads/2014/01/themify-700x482.png\" width=\"700\" height=\"482\" /></a></div>\n</div>\n<p>Themify offers three free themes, which come with features such as responsive layouts, sliders and child theme support.</p>\n<h2>Searching for Free WordPress Themes on Google</h2>\n<p>A few years ago, a simple Google search for “free wordpress themes” was very different to what it is today. Back in 2011, a search turned up a gaggle of dodgy, theme websites littered with themes containing malicious code and hidden, spammy links:</p>\n<figure id=\"attachment_124806\" class=\"wp-caption aligncenter wp-caption-large cgrid-row\" style=\"width: 494px\"><div class=\"cgrid-col cgrid-col-span-full\"><a href=\"http://premium.wpmudev.org/blog/wp-content/uploads/2014/01/google-20111.png\" rel=\"lightbox[124630]\" title=\"Free WordPress Themes: The Ultimate Guide\"><img class=\"size-full wp-image-124806\" alt=\"Google 2011\" src=\"http://premium.wpmudev.org/blog/wp-content/uploads/2014/01/google-20111.png\" width=\"494\" height=\"533\" /></a><figcaption class=\"wp-caption-text\">A Google search for “free wordpress themes” circa 2011.</figcaption></div></figure>\n<p>Times have certainly changed since then! Since <a title=\"WordPress, Penguin, Google and Matt Cutts’ take on WPMU.org\" href=\"http://premium.wpmudev.org/blog/wordpress-penguin-google-matt-cutts/\" target=\"_blank\">Google’s Penguin update</a>, the search engine has cracked down on spammy links and link schemes. In 2014, a search for “free wordpress themes” brings up a very different set of search results:</p>\n<figure id=\"attachment_124807\" class=\"wp-caption aligncenter wp-caption-large cgrid-row\" style=\"width: 599px\"><div class=\"cgrid-col cgrid-col-span-full\"><a href=\"http://premium.wpmudev.org/blog/wp-content/uploads/2014/01/google-2014.png\" rel=\"lightbox[124630]\" title=\"Free WordPress Themes: The Ultimate Guide\"><img class=\"size-full wp-image-124807\" alt=\"Google 2014\" src=\"http://premium.wpmudev.org/blog/wp-content/uploads/2014/01/google-2014.png\" width=\"599\" height=\"1052\" /></a><figcaption class=\"wp-caption-text\">A Google search for “free wordpress themes” this year.</figcaption></div></figure>\n<p>I should also add that the top 10 results change daily, albeit slightly.</p>\n<p>So what are all these sites? Let’s go through each one and check their credibility.</p>\n<p><strong>WordPress Theme Repository</strong></p>\n<p>It makes sense the WordPress Theme Repository, the largest collection of free WordPress themes available, ranks highly. In fact, both first <em>and</em> second.</p>\n<p>The repository is one of the safest places to find and download free themes. A volunteer Theme Review Team reviews and approves themes submitted for inclusion in the repository. Theme reviews are a way to control the quality of themes that are available in the repository. The team doesn’t review designs, but it does look at the quality of code, ensures themes meet a strict set of guidelines and can handle test data.</p>\n<p><strong><span style=\"line-height: 24px;\">WPExplorer</span></strong></p>\n<p>WPExplorer offers a collection of free and commercial WordPress themes and plugins sourced from third-party sites, such as Theme Forest. The sites makes money from affiliate links.</p>\n<p>According to the site’s terms and conditions, many of the themes available for download on the site are not hosted on the WPExplorer domain, and those that are hosted on the same domain may include a footer link back to WPExplorer.</p>\n<p><span style=\"line-height: 24px;\">Importantly, the terms and conditions also specify “a</span><span style=\"line-height: 24px;\">ny free theme downloaded from WPExplorer.com is done at your own risk and the owner of WPExplorer.com will not be liable for any problems caused from such activity.”</span></p>\n<p><strong><span style=\"line-height: 24px;\">WPMU DEV Blog</span></strong></p>\n<figure id=\"attachment_124949\" class=\"wp-caption alignright wp-caption-right cgrid-row\" style=\"width: 448px\"><div class=\"cgrid-col cgrid-col-span-3 cgrid-col-right\"><div class=\"cgrid-col-wide-right\"><a href=\"http://premium.wpmudev.org/blog/wp-content/uploads/2014/01/wpmu-dev-blog.png\" rel=\"lightbox[124630]\" title=\"Free WordPress Themes: The Ultimate Guide\"><img class=\"size-ratio-3-2 wp-image-124949\" alt=\"WPMU DEV Blog\" src=\"http://premium.wpmudev.org/blog/wp-content/uploads/2014/01/wpmu-dev-blog-448x262.png\" width=\"448\" height=\"262\" /></a><figcaption class=\"wp-caption-text\">Our blog is an awesome source of WordPress information.</figcaption></div></div></figure>\n<p>The fourth search listing is the very blog you are reading right now! Back in 2011, we reviewed the top 10 search listings for “free wordpress themes” and found the majority offered themes containing malicious code. The subsequent post, Why You Should Never Search For Free WordPress Themes, was a huge eye opener for WordPress users who had never bothered to look into the code of the free themes they were downloading.</p>\n<p>But 2011 was a lifetime ago in the online world so we’re bringing things up-to-date in this post.</p>\n<p><strong><span style=\"line-height: 24px;\">Design Razzi</span></strong></p>\n<p>Design Razzi calls itself a design magazine, but it’s really just a collection of lists, i.e. 125+ Free Responsive WordPress Themes 2014, 150+ Best Free Photoshop Text Effects Tutorials, 5+ Best Responsive WordPress Video Themes. The site is crammed with ads.</p>\n<p>The WordPress themes section offers lists of themes hosted off-site, such as 125+ Best WordPress Photography Themes and 75+ Best Personal Blogging WordPress Themes. There’s no terms and conditions section. When you click on a theme you are taken to a third-party site where you can download or demo a theme.</p>\n<p>My recommendation: download themes from Design Razzi at your own risk.</p>\n<p><strong><span style=\"line-height: 24px;\">Smart Magazine WordPress Themes</span></strong></p>\n<p>Smart Magazine Themes offers a huge collection of free and premium themes. The site’s themes are available under a Creative Commons Attribution 3.0 Unported license – another type of license, similar to the GPL in its aims – which means anyone who downloads a theme can share it or adapt it, but they must give attribution to the theme’s creator. This means that every theme must display a link in the footer to the Smart Magazine WordPress Themes site.</p>\n<p>While all of the themes are free, you need to cough up some cash if you want to get rid of footer links or use any themes for client sites.</p>\n<p><strong style=\"line-height: 24px;\">Web Designer Depot</strong></p>\n<figure id=\"attachment_124952\" class=\"wp-caption alignleft wp-caption-left cgrid-row\" style=\"width: 448px\"><div class=\"cgrid-col cgrid-col-span-3\"><div class=\"cgrid-col-wide-left\"><a href=\"http://premium.wpmudev.org/blog/wp-content/uploads/2014/01/web-designer-depot.png\" rel=\"lightbox[124630]\" title=\"Free WordPress Themes: The Ultimate Guide\"><img class=\"size-ratio-3-2 wp-image-124952\" alt=\"WebdesignerDepot.com\" src=\"http://premium.wpmudev.org/blog/wp-content/uploads/2014/01/web-designer-depot-448x268.png\" width=\"448\" height=\"268\" /></a><figcaption class=\"wp-caption-text\">WebdesignerDepot.com is a popular online magazine about tips and techniques for web designers and developers.</figcaption></div></div></figure>\n<p>The seventh entry is Web Designer Depot, a blog about web design and development. The link displayed in Google search is a round-up of themes, The Best Free WordPress Themes, December 2013. The themes listed are all hosted off-site. Many are available on the WordPress Theme Repository, while others are hosted on sites belonging to a theme’s developer.</p>\n<p>While the site has terms and conditions, there is nothing related to the free themes promoted on the site. Themes that are available on the repository are generally safe, but you may want to check the files of any free themes you download from other sites. I’ll go into how to check free themes for malicious code later in this post.</p>\n<p><strong>Towfiq I.</strong></p>\n<p>Towfiq I. is a theme shop run by Bangladeshi developer Towfiq, offering free and premium themes. Obviously, Towfiq has been working hard on his SEO!</p>\n<p>I downloaded a bunch of free themes from the site and scanned them for potentially malicious or unwanted code using the Theme Authenticity Checker plugin (I’ll go into more detail about this plugin later in this post). I didn’t find anything out of the ordinary, only links back to the Towfiq site. The fact this site ranks on the first page for this search term makes me wonder how he boosts his SEO?</p>\n<p><strong><span style=\"line-height: 24px;\">Hongkiat</span></strong></p>\n<p>Hongkiat is a popular design and blogging site that features articles and tutorials on Photoshop, HTML/CSS, WordPress, photography and design. The site’s WordPress section features tips and tricks, much like the WPMU DEV Blog.</p>\n<p>The link that appears in Google search is for a list post, 40+ Free Responsive WordPress Themes. A lot of sites, such as our blog, publishes these list posts, which are designed to spark inspiration and provide a handy look at what’s out there.</p>\n<p>The posts in this list are all hosted off-site on theme developer sites, so download at your own risk.</p>\n<p><strong><span style=\"line-height: 24px;\">Torque Mag</span></strong></p>\n<p>Last but not least, Torque Mag comes in 10th in our Google search. Torque is a WordPress news site run by managed WordPress host WP Engine.</p>\n<p>The link, Best Free WordPress Themes from 2013, offers a list of 25 free themes released during 2013. Like other list posts, the themes are all hosted off-site, so download at your own risk.</p>\n<h2>How to Check Your Theme for Potentially Malicious Code</h2>\n<p>It’s a good idea to scan new themes of malicious code if you’re not 100 per cent satisfied that the code is clean.</p>\n<p>Luckily, there was a few great programs to help you out – and they’re all free, no less.</p>\n<h4><a title=\"Theme Authenticity Check\" href=\"http://wordpress.org/plugins/tac/\" target=\"_blank\"><span style=\"line-height: 24px;\">Theme Authenticity Checker (TAC)</span></a></h4>\n<figure id=\"attachment_124916\" class=\"wp-caption aligncenter wp-caption-left cgrid-row clearfix\" style=\"width: 448px\"><div class=\"cgrid-col cgrid-col-span-3\"><div class=\"cgrid-col-wide-left\"><a href=\"http://premium.wpmudev.org/blog/wp-content/uploads/2014/01/theme-activity-checker.png\" rel=\"lightbox[124630]\" title=\"Free WordPress Themes: The Ultimate Guide\"><img class=\"size-ratio-3-2 wp-image-124916\" alt=\"Theme Activity Checker\" src=\"http://premium.wpmudev.org/blog/wp-content/uploads/2014/01/theme-activity-checker-448x149.png\" width=\"448\" height=\"149\" /></a></div></div><figcaption class=\"wp-caption-text cgrid-col cgrid-col-span-2\"><div class=\"cgrid-col-wide-right\">The Theme Authenticity Checker plugin let’s you quickly check your themes for malicious code.</div></figcaption></figure>\n<p>TAC searches the sources files of every installed theme in your WordPress install for signs of malicious code.</p>\n<p>It’s simple to use – just install and activate the plugin. A new menu item will appear in your admin area – <strong>Appearance > TAC</strong>. If bad code is found, TAC will display the path to the theme file, the line number and a small snippet of the suspicious code.</p>\n<h4><a title=\"Exploit Scanner\" href=\"http://wordpress.org/plugins/exploit-scanner/\" target=\"_blank\"><span style=\"line-height: 24px;\">Exploit Scanner</span></a></h4>\n<figure id=\"attachment_124917\" class=\"wp-caption aligncenter wp-caption-left cgrid-row clearfix\" style=\"width: 448px\"><div class=\"cgrid-col cgrid-col-span-3\"><div class=\"cgrid-col-wide-left\"><a href=\"http://premium.wpmudev.org/blog/wp-content/uploads/2014/01/exploit-scanner.jpg\" rel=\"lightbox[124630]\" title=\"Free WordPress Themes: The Ultimate Guide\"><img class=\"size-ratio-3-2 wp-image-124917\" alt=\"Exploit Scanner\" src=\"http://premium.wpmudev.org/blog/wp-content/uploads/2014/01/exploit-scanner-448x149.jpg\" width=\"448\" height=\"149\" /></a></div></div><figcaption class=\"wp-caption-text cgrid-col cgrid-col-span-2\"><div class=\"cgrid-col-wide-right\">Search your site for suspicious files and code with Exploit Scanner.</div></figcaption></figure>\n<p>Exploit Scanner searches the files on your site, as well as the posts and comments tables of your database, for anything suspicious. It also examines your list of active plugins for unusual filenames.</p>\n<p>This plugin is also easy to use – just install and activate it and go to <strong>Tools > Exploit Scanner </strong>to run a scan.</p>\n<h4><a title=\"Securi Security\" href=\"http://wordpress.org/plugins/sucuri-scanner/\" target=\"_blank\"><span style=\"line-height: 24px;\">Sucuri Security – SiteCheck Malware Scanner</span></a></h4>\n<figure id=\"attachment_124921\" class=\"wp-caption aligncenter wp-caption-left cgrid-row clearfix\" style=\"width: 448px\"><div class=\"cgrid-col cgrid-col-span-3\"><div class=\"cgrid-col-wide-left\"><a href=\"http://premium.wpmudev.org/blog/wp-content/uploads/2014/01/sucuri.jpg\" rel=\"lightbox[124630]\" title=\"Free WordPress Themes: The Ultimate Guide\"><img class=\"size-ratio-3-2 wp-image-124921\" alt=\"Sucuri\" src=\"http://premium.wpmudev.org/blog/wp-content/uploads/2014/01/sucuri-448x149.jpg\" width=\"448\" height=\"149\" /></a></div></div><figcaption class=\"wp-caption-text cgrid-col cgrid-col-span-2\"><div class=\"cgrid-col-wide-right\">Sucuri provides a basic plugin that allows you to quickly scan your site for malware and blacklisting.</div></figcaption></figure>\n<p>Sucuri scans your site for malware, spam, blacklisting and other security issues like. htaccess redirects and hidden eval code.</p>\n<p>Like the plugins mentioned above, just install and activate the plugin. <strong>Sucuri Free</strong> will appear in the admin sidebar with various options for checking your site’s security.</p>\n<p>The plugin available in the WordPress Plugin Repository is free, though <a title=\"Securi\" href=\"http://sucuri.net/\" target=\"_blank\">Securi</a> also offers premium plans.</p>\n<p><span style=\"font-family: ff-tisa-web-pro, Arial, sans-serif; font-size: 30px; font-weight: 600; line-height: 36px;\">Tips for Choosing Your Ideal Free Theme</span></p>\n<p>When choosing a free theme, only you know what your needs are so it helps to write them down keep them in mind when searching for a theme.</p>\n<ul>\n<li><strong>What features do you need?</strong> Do you need a slider? A portfolio? A great free theme should meet your present and future needs.</li>\n<li><strong>Is the theme easy to customize?</strong> Whether you’re a coding king or a WordPress newb, it’s important to keep in mind what customizations you may need to make to your site if the original design doesn’t meet all your needs.</li>\n<li><strong>Does your site fit a particular genre?</strong> If you are putting together a site for a specific purpose, such as a portfolio, photography or restaurant site, searching for themes available for your genre may help you save time.</li>\n<li><strong>Is there support available for the theme?</strong> Free themes often come without support, though some theme developers are happy to help. It’s a good idea to check on this before you download a theme.</li>\n<li><strong>Is the theme regularly updated?</strong> As I mentioned above, there are themes in the WordPress Theme Repository that haven’t been updated in more than two years.</li>\n<li><strong>How old is the themes?</strong> Following on from my last point, check how old a theme is before you download it because it may not be compatible with the latest version of WordPress.</li>\n</ul>\n<p><strong>Where do you go for free and reliable WordPress Themes? Tell us in the comments below.</strong></p>\n<p>Image credits: <a title=\"GPL\" href=\"http://en.wikipedia.org/wiki/File:GPLv3_Logo.svg\" target=\"_blank\">WikiMedia Commons</a>, <a href=\"http://www.flickr.com/photos/toddle_email_newsletters/\">Alan O’Rourke</a>, <a href=\"http://www.flickr.com/photos/jurvetson/\">jurvetson</a>, <a title=\"Unsplash\" href=\"http://unsplash.com/\" target=\"_blank\">Unsplash</a>.</p>\n<div class=\'yarpp-related-rss\'>\n<p>Related posts:</p><ol>\n<li><a href=\'http://premium.wpmudev.org/blog/free-premium-wordpress-themes/\' rel=\'bookmark\' title=\'120 Free WordPress Themes from Premium Theme Developers\'>120 Free WordPress Themes from Premium Theme Developers</a> <small>The pros often give away free themes as bait. We\'ve...</small></li>\n<li><a href=\'http://premium.wpmudev.org/blog/60-free-wordpress-magazine-themes/\' rel=\'bookmark\' title=\'The 60 Best Free WordPress Magazine Themes\'>The 60 Best Free WordPress Magazine Themes</a> <small>Check out the 60 best free alternatives to new default...</small></li>\n<li><a href=\'http://premium.wpmudev.org/blog/85-free-clean-simple-wordpress-themes/\' rel=\'bookmark\' title=\'85 Free Clean and Simple WordPress Themes\'>85 Free Clean and Simple WordPress Themes</a> <small>Need a simple, clean look for your WordPress site? We\'ve...</small></li>\n</ol>\n</div>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:74:\"http://premium.wpmudev.org/blog/free-wordpress-themes-ultimate-guide/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:2:\"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:\"\";}}}}}i:9;a:6:{s:4:\"data\";s:48:\"\n \n \n \n \n \n \n \n \n\n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:54:\"Quick Tip: Keep Users Logged in to Your WordPress Site\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:76:\"http://premium.wpmudev.org/blog/keep-users-logged-in-to-your-wordpress-site/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:85:\"http://premium.wpmudev.org/blog/keep-users-logged-in-to-your-wordpress-site/#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, 14 Jan 2014 13:00: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:8:\"category\";a:3:{i:0;a:5:{s:4:\"data\";s:19:\"WordPress 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:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"WPMU DEV\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:15:\"premium 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:41:\"http://premium.wpmudev.org/blog/?p=123952\";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:292:\"Have you ever logged into a site only to be kicked out again just minutes later? It can be a real drag. So when creating your own WordPress site, you don\'t want your users to get similarly frustrated. In this quick tip post I\'ll show you an easy way to keep your users logged in to your site.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Raelene Wilson\";s: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:3706:\"<p>Have you ever logged into a site only to be kicked out again just minutes later? It can be a real drag.</p>\n<p>So when creating your own WordPress site, you don’t want your users to get similarly frustrated.</p>\n<p>In this quick tip post I’ll show you an easy way to keep your users logged in to your site.<span id=\"more-123952\"></span></p>\n<h3>Keep Remember Me Checked</h3>\n<p><a title=\"Remember Me Checked\" href=\"http://premium.wpmudev.org/project/remember-me-checked/\" target=\"_blank\">Remember Me Checked</a> is a handy and lightweight WPMU DEV plugin, and what we’ll be using today.</p>\n<p>The plugin automatically ticks the “Remember Me” checkbox on the login page, like so:</p>\n<figure id=\"attachment_124833\" class=\"wp-caption aligncenter wp-caption-large cgrid-row\" style=\"width: 350px\"><div class=\"cgrid-col cgrid-col-span-full\"><a href=\"http://premium.wpmudev.org/blog/wp-content/uploads/2014/01/remember-me-checked.png\" rel=\"lightbox[123952]\" title=\"Quick Tip: Keep Users Logged in to Your WordPress Site\"><img class=\"size-full wp-image-124833\" alt=\"Remember Me Checked\" src=\"http://premium.wpmudev.org/blog/wp-content/uploads/2014/01/remember-me-checked.png\" width=\"350\" height=\"412\" /></a><figcaption class=\"wp-caption-text\">Remember Me Checked is a simple and essential plugin.</figcaption></div></figure>\n<p>This helpful feature saves your users the hassle of ticking the “Remember Me” box themselves. While it may seem inconsequential, forgetting to tick the box is an easy enough thing to do. Have you ever clicked “Log In” only to regret it moments later when you remember you have forgotten to tick “Remember Me”?</p>\n<p>Ensuring your site automatically remembers your users and keeps them logged in will save them the headache of constantly logging back into your site each time their session times out.</p>\n<p>Keeping users logged in also ensures they’re less likely to forget or lose their password and hassle you for a reminder.</p>\n<p>Of course, it’s good to keep in mind that users who use a shared or public computer will need to log out so as not to compromise their account with you.</p>\n<p>Check out the <a title=\"Remember Me Checked\" href=\"http://premium.wpmudev.org/project/remember-me-checked/\" target=\"_blank\">Remember Me Checked</a> project page for more details.</p>\n<p><strong>Have you ever had issues with users forgetting passwords? Tell us in the comments below.</strong></p>\n<p>Image credits: <a title=\"Flickr\" href=\"http://www.flickr.com/photos/mah_aaah/\" target=\"_blank\">MahPadilha</a>.</p>\n<div class=\'yarpp-related-rss\'>\n<p>Related posts:</p><ol>\n<li><a href=\'http://premium.wpmudev.org/blog/show-wordpress-widgets-logged-in-users/\' rel=\'bookmark\' title=\'How to Show WordPress Widgets Only to Logged In Users\'>How to Show WordPress Widgets Only to Logged In Users</a> <small>Control who sees your widgets: logged in users or logged...</small></li>\n<li><a href=\'http://premium.wpmudev.org/blog/daily-tip-how-to-set-buddypress-profiles-as-the-hompepage-for-logged-in-users/\' rel=\'bookmark\' title=\'How to Set BuddyPress Profiles as the Hompepage for Logged In Users\'>How to Set BuddyPress Profiles as the Hompepage for Logged In Users</a> <small>Do you want your users to be immediately directed to...</small></li>\n<li><a href=\'http://premium.wpmudev.org/blog/daily-tip-display-avatars-for-logged-in-users-to-encourage-commenting/\' rel=\'bookmark\' title=\'Display Avatars For Logged In Users to Encourage Commenting\'>Display Avatars For Logged In Users to Encourage Commenting</a> <small>Paste this snippet anywhere in your theme’s template files to...</small></li>\n</ol>\n</div>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:81:\"http://premium.wpmudev.org/blog/keep-users-logged-in-to-your-wordpress-site/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:\"5\";s: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:54:\"http://premium.wpmudev.org/blog/category/wpmudev/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 02:21:38 GMT\";s:12:\"content-type\";s:24:\"text/html; charset=UTF-8\";s:10:\"connection\";s:5:\"close\";s:4:\"vary\";s:6:\"Cookie\";s:13:\"last-modified\";s:31:\"Fri, 14 Feb 2014 02:21:36 +0000\";s:13:\"cache-control\";s:28:\"max-age=298, must-revalidate\";s:16:\"content-encoding\";s:4:\"gzip\";}s:5:\"build\";s:14:\"20121202214312\";}','no'),(210,'_transient_timeout_feed_mod_1dbb78cbc2a0e2530b00dcb4c4ee29de','1392387698','no'),(211,'_transient_feed_mod_1dbb78cbc2a0e2530b00dcb4c4ee29de','1392344498','no'),(217,'wiki_default','a:1:{s:4:\"slug\";s:12:\"WorldModeler\";}','yes'),(218,'Yoast_Google_Analytics','a:52:{s:16:\"advancedsettings\";b:1;s:11:\"allowanchor\";b:0;s:9:\"allowhash\";b:0;s:11:\"allowlinker\";b:0;s:11:\"anonymizeip\";b:0;s:10:\"customcode\";s:0:\"\";s:11:\"cv_loggedin\";b:1;s:13:\"cv_authorname\";b:1;s:11:\"cv_category\";b:0;s:17:\"cv_all_categories\";b:0;s:7:\"cv_tags\";b:1;s:7:\"cv_year\";b:0;s:12:\"cv_post_type\";b:1;s:5:\"debug\";b:0;s:12:\"dlextensions\";s:30:\"doc,exe,js,pdf,ppt,tgz,zip,xls\";s:6:\"domain\";s:0:\"\";s:11:\"domainorurl\";s:6:\"domain\";s:7:\"extrase\";b:0;s:10:\"extraseurl\";s:0:\"\";s:11:\"firebuglite\";b:0;s:16:\"ga_api_responses\";a:0:{}s:16:\"gajslocalhosting\";b:0;s:7:\"gajsurl\";s:0:\"\";s:16:\"ignore_userlevel\";s:1:\"8\";s:12:\"internallink\";s:0:\"\";s:17:\"internallinklabel\";s:0:\"\";s:16:\"outboundpageview\";b:0;s:17:\"downloadspageview\";b:0;s:17:\"othercrossdomains\";s:0:\"\";s:8:\"position\";s:6:\"header\";s:18:\"primarycrossdomain\";s:0:\"\";s:13:\"theme_updated\";b:0;s:16:\"trackcommentform\";b:1;s:16:\"trackcrossdomain\";b:0;s:12:\"trackadsense\";b:0;s:13:\"trackoutbound\";b:1;s:17:\"trackregistration\";b:0;s:14:\"rsslinktagging\";b:1;s:8:\"uastring\";s:12:\"UA-9214097-3\";s:7:\"version\";s:5:\"4.3.5\";s:10:\"gawp_oauth\";a:2:{s:11:\"oauth_token\";N;s:18:\"oauth_token_secret\";N;}s:8:\"ga_token\";s:0:\"\";s:15:\"gfsubmiteventpv\";s:0:\"\";s:11:\"trackprefix\";s:0:\"\";s:13:\"admintracking\";b:0;s:15:\"manual_uastring\";b:1;s:11:\"taggfsubmit\";b:0;s:13:\"wpec_tracking\";b:0;s:14:\"shopp_tracking\";b:0;s:14:\"yoast_tracking\";b:0;s:3:\"msg\";s:0:\"\";s:14:\"tracking_popup\";s:4:\"done\";}','yes'),(282,'_site_transient_update_plugins','O:8:\"stdClass\":3:{s:12:\"last_checked\";i:1392361186;s:8:\"response\";a:0:{}s:12:\"translations\";a:0:{}}','yes'),(269,'current_theme','Twenty Fourteen','yes'),(270,'theme_mods_twentyfourteen','a:1:{i:0;b:0;}','yes'),(271,'theme_switched','','yes'),(287,'_transient_is_multi_author','0','yes'),(276,'_site_transient_timeout_browser_6f1e65fff56ada16c544f16bc646ca47','1392965629','yes'),(277,'_site_transient_browser_6f1e65fff56ada16c544f16bc646ca47','a:9:{s:8:\"platform\";s:7:\"Windows\";s:4:\"name\";s:17:\"Internet Explorer\";s:7:\"version\";s:4:\"10.0\";s:10:\"update_url\";s:51:\"http://www.microsoft.com/windows/internet-explorer/\";s:7:\"img_src\";s:45:\"http://s.wordpress.org/images/browsers/ie.png\";s:11:\"img_src_ssl\";s:44:\"https://wordpress.org/images/browsers/ie.png\";s:15:\"current_version\";s:1:\"9\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b: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=58 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'),(5,8,'_edit_lock','1392362909:3'),(4,8,'_edit_last','1'),(6,9,'_wp_attached_file','2014/02/happy-boss-with-wm-touchscreen.png'),(7,9,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:914;s:6:\"height\";i:608;s:4:\"file\";s:42:\"2014/02/happy-boss-with-wm-touchscreen.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:42:\"happy-boss-with-wm-touchscreen-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:42:\"happy-boss-with-wm-touchscreen-300x199.png\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:42:\"happy-boss-with-wm-touchscreen-914x288.png\";s:5:\"width\";i:914;s:6:\"height\";i:288;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"large-feature\";a:4:{s:4:\"file\";s:42:\"happy-boss-with-wm-touchscreen-914x288.png\";s:5:\"width\";i:914;s:6:\"height\";i:288;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"small-feature\";a:4:{s:4:\"file\";s:42:\"happy-boss-with-wm-touchscreen-450x300.png\";s:5:\"width\";i:450;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(8,8,'incsub_wiki_email_notification','enabled'),(9,11,'_edit_last','1'),(10,11,'incsub_wiki_email_notification','enabled'),(11,11,'_edit_lock','1392346482:1'),(12,12,'_edit_last','1'),(13,12,'_wp_page_template','default'),(14,12,'_edit_lock','1392359132:1'),(15,14,'_edit_last','2'),(16,14,'_edit_lock','1392363483:3'),(17,8,'_post_restored_from','a:3:{s:20:\"restored_revision_id\";i:17;s:16:\"restored_by_user\";i:1;s:13:\"restored_time\";i:1392348879;}'),(18,2,'_edit_lock','1392358570:1'),(19,20,'_menu_item_type','post_type'),(20,20,'_menu_item_menu_item_parent','0'),(21,20,'_menu_item_object_id','12'),(22,20,'_menu_item_object','page'),(23,20,'_menu_item_target',''),(24,20,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(25,20,'_menu_item_xfn',''),(26,20,'_menu_item_url',''),(27,20,'_menu_item_orphaned','1392359155'),(28,21,'_menu_item_type','post_type'),(29,21,'_menu_item_menu_item_parent','0'),(30,21,'_menu_item_object_id','2'),(31,21,'_menu_item_object','page'),(32,21,'_menu_item_target',''),(33,21,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(34,21,'_menu_item_xfn',''),(35,21,'_menu_item_url',''),(36,21,'_menu_item_orphaned','1392359155'),(37,22,'_menu_item_type','post_type'),(38,22,'_menu_item_menu_item_parent','0'),(39,22,'_menu_item_object_id','12'),(40,22,'_menu_item_object','page'),(41,22,'_menu_item_target',''),(42,22,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(43,22,'_menu_item_xfn',''),(44,22,'_menu_item_url',''),(45,22,'_menu_item_orphaned','1392359155'),(46,23,'_menu_item_type','post_type'),(47,23,'_menu_item_menu_item_parent','0'),(48,23,'_menu_item_object_id','14'),(49,23,'_menu_item_object','wiki_page'),(50,23,'_menu_item_target',''),(51,23,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(52,23,'_menu_item_xfn',''),(53,23,'_menu_item_url',''),(54,23,'_menu_item_orphaned','1392359187'),(55,1,'_edit_lock','1392363067:3'),(56,28,'_edit_lock','1392363574:3'),(57,28,'_edit_last','3'); /*!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=30 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),(6,1,'2014-02-14 02:21:19','0000-00-00 00:00:00','','Auto Draft','','auto-draft','open','open','','','','','2014-02-14 02:21:19','0000-00-00 00:00:00','',0,'http://quantellia.com/partnerswiki/?p=6',0,'post','',0),(5,1,'2014-02-14 02:20:45','0000-00-00 00:00:00','','Auto Draft','','auto-draft','open','open','','','','','2014-02-14 02:20:45','0000-00-00 00:00:00','',0,'http://quantellia.com/partnerswiki/?p=5',0,'post','',0),(7,1,'2014-02-14 02:21:38','0000-00-00 00:00:00','','Auto Draft','','auto-draft','open','open','','','','','2014-02-14 02:21:38','0000-00-00 00:00:00','',0,'http://quantellia.com/partnerswiki/?p=7',0,'post','',0),(8,1,'2014-02-13 19:54:20','2014-02-14 02:54:20','Test of first World Modeler wiki page','World Modeler','','publish','open','closed','','world-modeler','','','2014-02-13 20:34:35','2014-02-14 03:34:35','',0,'http://quantellia.com/partnerswiki/?post_type=incsub_wiki&p=8',0,'incsub_wiki','',0),(9,1,'2014-02-14 02:50:06','2014-02-14 02:50:06','','happy-boss-with-wm-touchscreen','','inherit','open','open','','happy-boss-with-wm-touchscreen','','','2014-02-14 02:50:06','2014-02-14 02:50:06','',8,'http://quantellia.com/partnerswiki/wp-content/uploads/2014/02/happy-boss-with-wm-touchscreen.png',0,'attachment','image/png',0),(10,1,'2014-02-14 02:49:17','2014-02-14 02:49:17','','World Modeler','','inherit','open','open','','8-revision','','','2014-02-14 02:49:17','2014-02-14 02:49:17','',8,'http://quantellia.com/partnerswiki/?p=10',0,'revision','',0),(11,1,'2014-02-13 19:54:42','2014-02-14 02:54:42','<p>This is a new subpage</p>','New subpage from World Modeler test','','publish','open','closed','','new-subpage-from-world-modeler-test','','','2014-02-13 19:54:42','2014-02-14 02:54:42','',8,'http://quantellia.com/partnerswiki/?post_type=incsub_wiki&p=11',0,'incsub_wiki','',0),(12,1,'2014-02-13 20:16:09','2014-02-14 03:16:09','','Second page, not second wiki','','publish','open','open','','second-page-not-second-wiki','','','2014-02-13 20:16:09','2014-02-14 03:16:09','',0,'http://quantellia.com/partnerswiki/?page_id=12',0,'page','',0),(13,1,'2014-02-13 20:16:09','2014-02-14 03:16:09','','Second page, not second wiki','','inherit','open','open','','12-revision-v1','','','2014-02-13 20:16:09','2014-02-14 03:16:09','',12,'http://quantellia.com/partnerswiki/?p=13',0,'revision','',0),(14,1,'2014-02-13 20:28:46','2014-02-14 03:28:46','\r\n','Wiki First Page','','publish','closed','closed','','wiki-first-page','','','2014-02-13 23:40:37','2014-02-14 06:40:37','',0,'http://quantellia.com/partnerswiki/?post_type=wiki_page&p=14',0,'wiki_page','',0),(15,1,'2014-02-13 20:28:46','2014-02-14 03:28:46','contents of wiki first page','Wiki First Page','','inherit','open','open','','14-revision-v1','','','2014-02-13 20:28:46','2014-02-14 03:28:46','',14,'http://quantellia.com/partnerswiki/?p=15',0,'revision','',0),(16,1,'2014-02-13 20:33:03','0000-00-00 00:00:00','','Auto Draft','','auto-draft','open','open','','','','','2014-02-13 20:33:03','0000-00-00 00:00:00','',0,'http://quantellia.com/partnerswiki/?post_type=incsub_wiki&p=16',0,'incsub_wiki','',0),(17,1,'2014-02-13 20:33:42','2014-02-14 03:33:42','Test of first World Modeler wiki page','World Modeler','','inherit','open','open','','8-autosave-v1','','','2014-02-13 20:33:42','2014-02-14 03:33:42','',8,'http://quantellia.com/partnerswiki/?p=17',0,'revision','',0),(18,1,'2014-02-13 20:34:35','2014-02-14 03:34:35','Test of first World Modeler wiki page','World Modeler','','inherit','open','open','','8-revision-v1','','','2014-02-13 20:34:35','2014-02-14 03:34:35','',8,'http://quantellia.com/partnerswiki/?p=18',0,'revision','',0),(19,1,'2014-02-13 21:04:02','2014-02-14 04:04:02','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<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...or something like this:\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>\nAs a new WordPress user, you should go to <a href=\"http://netsol003.com/woopWp/wp-admin/\">your dashboard</a> to delete this page and create new pages for your content. Have fun!','Sample Page','','inherit','open','open','','2-autosave-v1','','','2014-02-13 21:04:02','2014-02-14 04:04:02','',2,'http://quantellia.com/partnerswiki/?p=19',0,'revision','',0),(20,1,'2014-02-13 23:25:55','0000-00-00 00:00:00',' ','','','draft','open','open','','','','','2014-02-13 23:25:55','0000-00-00 00:00:00','',0,'http://quantellia.com/partnerswiki/?p=20',1,'nav_menu_item','',0),(21,1,'2014-02-13 23:25:55','0000-00-00 00:00:00',' ','','','draft','open','open','','','','','2014-02-13 23:25:55','0000-00-00 00:00:00','',0,'http://quantellia.com/partnerswiki/?p=21',1,'nav_menu_item','',0),(22,1,'2014-02-13 23:25:55','0000-00-00 00:00:00',' ','','','draft','open','open','','','','','2014-02-13 23:25:55','0000-00-00 00:00:00','',0,'http://quantellia.com/partnerswiki/?p=22',1,'nav_menu_item','',0),(23,1,'2014-02-13 23:26:27','0000-00-00 00:00:00',' ','','','draft','open','open','','','','','2014-02-13 23:26:27','0000-00-00 00:00:00','',0,'http://quantellia.com/partnerswiki/?p=23',1,'nav_menu_item','',0),(24,2,'2014-02-13 23:39:39','0000-00-00 00:00:00','','Auto Draft','','auto-draft','open','open','','','','','2014-02-13 23:39:39','0000-00-00 00:00:00','',0,'http://quantellia.com/partnerswiki/?p=24',0,'post','',0),(25,2,'2014-02-13 23:40:37','2014-02-14 06:40:37','\r\n','Wiki First Page','','inherit','open','open','','14-revision-v1','','','2014-02-13 23:40:37','2014-02-14 06:40:37','',14,'http://quantellia.com/partnerswiki/?p=25',0,'revision','',0),(26,4,'2014-02-13 23:53:49','0000-00-00 00:00:00','','Auto Draft','','auto-draft','open','open','','','','','2014-02-13 23:53:49','0000-00-00 00:00:00','',0,'http://quantellia.com/partnerswiki/?p=26',0,'post','',0),(27,3,'2014-02-14 00:28:29','0000-00-00 00:00:00','','Auto Draft','','auto-draft','open','open','','','','','2014-02-14 00:28:29','0000-00-00 00:00:00','',0,'http://quantellia.com/partnerswiki/?p=27',0,'post','',0),(28,3,'2014-02-14 00:39:16','0000-00-00 00:00:00','Knowledge Wiki This site is specifically for collecting ideas and knowledge about how Quantellia is organized, what products and services we offer, and how we can best carry on activities (including sales and marketing) that further the vision of the organization. It is a wiki and, therefore, is iterative and flexible. It is not for public consumption, but is specifically designed to assist us in capturing and sharing knowledge we, collectively, deem of value to carrying out the strategic goals of the company.\r\n\r\n[[Organization]]\r\n[[Products]]\r\n[[Services]]\r\n[[Brainstorming]]\r\n[[Social Presence]]\r\n[[Competition]]\r\n[[Academia]]','','','draft','closed','closed','','','','','2014-02-14 00:39:16','2014-02-14 07:39:16','',0,'http://quantellia.com/partnerswiki/?post_type=wiki_page&p=28',0,'wiki_page','',0),(29,3,'2014-02-14 00:39:16','2014-02-14 07:39:16','Knowledge Wiki This site is specifically for collecting ideas and knowledge about how Quantellia is organized, what products and services we offer, and how we can best carry on activities (including sales and marketing) that further the vision of the organization. It is a wiki and, therefore, is iterative and flexible. It is not for public consumption, but is specifically designed to assist us in capturing and sharing knowledge we, collectively, deem of value to carrying out the strategic goals of the company.\r\n\r\n[[Organization]]\r\n[[Products]]\r\n[[Services]]\r\n[[Brainstorming]]\r\n[[Social Presence]]\r\n[[Competition]]\r\n[[Academia]]','','','inherit','open','open','','28-revision-v1','','','2014-02-14 00:39:16','2014-02-14 07:39:16','',28,'http://quantellia.com/partnerswiki/?p=29',0,'revision','',0); /*!40000 ALTER TABLE `wp_posts` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_term_relationships` -- DROP TABLE IF EXISTS `wp_term_relationships`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `wp_term_relationships` ( `object_id` bigint(20) unsigned NOT NULL default '0', `term_taxonomy_id` bigint(20) unsigned NOT NULL default '0', `term_order` int(11) NOT NULL default '0', PRIMARY KEY (`object_id`,`term_taxonomy_id`), KEY `term_taxonomy_id` (`term_taxonomy_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `wp_term_relationships` -- LOCK TABLES `wp_term_relationships` WRITE; /*!40000 ALTER TABLE `wp_term_relationships` DISABLE KEYS */; INSERT INTO `wp_term_relationships` VALUES (1,2,0),(2,2,0),(3,2,0),(4,2,0),(5,2,0),(6,2,0),(7,2,0),(1,1,0); /*!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=73 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,wp350_media,wp360_revisions'),(13,1,'show_welcome_panel','1'),(14,1,'wp_dashboard_quick_press_last_post_id','7'),(15,1,'wp_user-settings','libraryContent=browse&editor=tinymce'),(16,1,'wp_user-settings-time','1392347899'),(17,2,'first_name','Carly'),(18,2,'last_name','Smith'),(19,2,'nickname','carlysmith'),(20,2,'description',''),(21,2,'rich_editing','true'),(22,2,'comment_shortcuts','false'),(23,2,'admin_color','fresh'),(24,2,'use_ssl','0'),(25,2,'show_admin_bar_front','true'),(26,2,'wp_capabilities','a:1:{s:11:\"wiki_author\";b:1;}'),(27,2,'wp_user_level','0'),(28,2,'dismissed_wp_pointers','wp330_toolbar,wp330_saving_widgets,wp340_choose_image_from_library,wp340_customize_current_theme_link,wp350_media'),(29,1,'managenav-menuscolumnshidden','a:4:{i:0;s:11:\"link-target\";i:1;s:11:\"css-classes\";i:2;s:3:\"xfn\";i:3;s:11:\"description\";}'),(30,1,'metaboxhidden_nav-menus','a:4:{i:0;s:8:\"add-post\";i:1;s:15:\"add-incsub_wiki\";i:2;s:12:\"add-post_tag\";i:3;s:15:\"add-post_format\";}'),(31,3,'first_name','Rick'),(32,3,'last_name','Ladd'),(33,3,'nickname','RickLadd'),(34,3,'description',''),(35,3,'rich_editing','true'),(36,3,'comment_shortcuts','false'),(37,3,'admin_color','fresh'),(38,3,'use_ssl','0'),(39,3,'show_admin_bar_front','true'),(40,3,'wp_capabilities','a:1:{s:13:\"administrator\";b:1;}'),(41,3,'wp_user_level','10'),(42,3,'dismissed_wp_pointers','wp330_toolbar,wp330_saving_widgets,wp340_choose_image_from_library,wp340_customize_current_theme_link,wp350_media,wp360_revisions,wp360_locks'),(43,2,'wp_dashboard_quick_press_last_post_id','24'),(44,4,'first_name','Mark'),(45,4,'last_name','Zangari'),(46,4,'nickname','MarkZangari'),(47,4,'description',''),(48,4,'rich_editing','true'),(49,4,'comment_shortcuts','false'),(50,4,'admin_color','fresh'),(51,4,'use_ssl','0'),(52,4,'show_admin_bar_front','true'),(53,4,'wp_capabilities','a:1:{s:13:\"administrator\";b:1;}'),(54,4,'wp_user_level','10'),(55,4,'dismissed_wp_pointers','wp330_toolbar,wp330_saving_widgets,wp340_choose_image_from_library,wp340_customize_current_theme_link,wp350_media,wp360_revisions,wp360_locks'),(56,5,'first_name','Margaret'),(57,5,'last_name','Johnson'),(58,5,'nickname','MJ'),(59,5,'description',''),(60,5,'rich_editing','true'),(61,5,'comment_shortcuts','false'),(62,5,'admin_color','fresh'),(63,5,'use_ssl','0'),(64,5,'show_admin_bar_front','true'),(65,5,'wp_capabilities','a:1:{s:13:\"administrator\";b:1;}'),(66,5,'wp_user_level','10'),(67,5,'dismissed_wp_pointers','wp330_toolbar,wp330_saving_widgets,wp340_choose_image_from_library,wp340_customize_current_theme_link,wp350_media,wp360_revisions,wp360_locks'),(68,4,'wp_dashboard_quick_press_last_post_id','26'),(69,3,'wp_dashboard_quick_press_last_post_id','27'),(70,3,'aim',''),(71,3,'yim',''),(72,3,'jabber',''); /*!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=6 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$B5EfJd0jEU7aPY8.C8jRSR0IrlFvUd/','lorienpratt','lorien.pratt@quantellia.com','','2014-02-13 12:45:56','',0,'lorienpratt'),(2,'carlysmith','$P$BIPd1y2JtTFiknmtKWGZX8HjOWD9oE1','carlysmith','lorien@lorienpratt.com','','2014-02-14 02:53:38','',0,'Carly Smith'),(3,'RickLadd','$P$BymAG8GtTZ8WpVmlxBXtK4.2sVj/R20','rickladd','rick.ladd@quantellia.com','','2014-02-14 06:38:06','',0,'Rick Ladd'),(4,'MarkZangari','$P$BIG68KENQ1I8ONP3rKFuCYuSWBmNwc/','markzangari','mark.zangari@quantellia.com','http://www.quantellia.com','2014-02-14 06:48:45','',0,'Mark Zangari'),(5,'MJ','$P$BfEPUol928b13vdDn6fZ7UISbN5AGN.','mj','mj@quantellia.com','http://www.quantellia.com','2014-02-14 06:49:34','',0,'Margaret Johnson'); /*!40000 ALTER TABLE `wp_users` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_wiki_subscriptions` -- DROP TABLE IF EXISTS `wp_wiki_subscriptions`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `wp_wiki_subscriptions` ( `ID` bigint(20) unsigned NOT NULL auto_increment, `blog_id` bigint(20) NOT NULL, `wiki_id` bigint(20) NOT NULL, `user_id` bigint(20) default NULL, `email` varchar(255) default NULL, PRIMARY KEY (`ID`) ) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `wp_wiki_subscriptions` -- LOCK TABLES `wp_wiki_subscriptions` WRITE; /*!40000 ALTER TABLE `wp_wiki_subscriptions` DISABLE KEYS */; INSERT INTO `wp_wiki_subscriptions` VALUES (1,1,8,1,NULL); /*!40000 ALTER TABLE `wp_wiki_subscriptions` ENABLE KEYS */; UNLOCK TABLES; -- -- Dumping routines for database '1_037cc9e_3' -- DELIMITER ;; DELIMITER ; /*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */; /*!40101 SET SQL_MODE=@OLD_SQL_MODE */; /*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */; /*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */; /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; /*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; -- Dump completed on 2014-02-26 4:35:36