📄 Viewing: matrix_jl1e.sql
-- MySQL dump 10.16 Distrib 10.2.22-MariaDB, for Linux (x86_64)
--
-- Host: localhost Database: matrix_jl1e
-- ------------------------------------------------------
-- Server version 10.2.22-MariaDB-log
/*!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_jl1e9t8_commentmeta`
--
DROP TABLE IF EXISTS `wp_jl1e9t8_commentmeta`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_jl1e9t8_commentmeta` (
`meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`comment_id` bigint(20) unsigned NOT NULL DEFAULT 0,
`meta_key` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
`meta_value` longtext COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
PRIMARY KEY (`meta_id`),
KEY `comment_id` (`comment_id`),
KEY `meta_key` (`meta_key`(191))
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_jl1e9t8_commentmeta`
--
LOCK TABLES `wp_jl1e9t8_commentmeta` WRITE;
/*!40000 ALTER TABLE `wp_jl1e9t8_commentmeta` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_jl1e9t8_commentmeta` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_jl1e9t8_comments`
--
DROP TABLE IF EXISTS `wp_jl1e9t8_comments`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_jl1e9t8_comments` (
`comment_ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`comment_post_ID` bigint(20) unsigned NOT NULL DEFAULT 0,
`comment_author` tinytext COLLATE utf8mb4_unicode_520_ci NOT NULL,
`comment_author_email` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`comment_author_url` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`comment_author_IP` varchar(100) COLLATE utf8mb4_unicode_520_ci 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 COLLATE utf8mb4_unicode_520_ci NOT NULL,
`comment_karma` int(11) NOT NULL DEFAULT 0,
`comment_approved` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '1',
`comment_agent` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`comment_type` varchar(20) COLLATE utf8mb4_unicode_520_ci 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`),
KEY `comment_author_email` (`comment_author_email`(10))
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_jl1e9t8_comments`
--
LOCK TABLES `wp_jl1e9t8_comments` WRITE;
/*!40000 ALTER TABLE `wp_jl1e9t8_comments` DISABLE KEYS */;
INSERT INTO `wp_jl1e9t8_comments` VALUES (1,1,'A WordPress Commenter','wapuu@wordpress.example','https://wordpress.org/','','2017-04-10 13:23:29','2017-04-10 13:23:29','Hi, this is a comment.\nTo get started with moderating, editing, and deleting comments, please visit the Comments screen in the dashboard.\nCommenter avatars come from <a href=\"https://gravatar.com\">Gravatar</a>.',0,'1','','',0,0);
/*!40000 ALTER TABLE `wp_jl1e9t8_comments` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_jl1e9t8_links`
--
DROP TABLE IF EXISTS `wp_jl1e9t8_links`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_jl1e9t8_links` (
`link_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`link_url` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`link_name` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`link_image` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`link_target` varchar(25) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`link_description` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`link_visible` varchar(20) COLLATE utf8mb4_unicode_520_ci 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) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`link_notes` mediumtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
`link_rss` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
PRIMARY KEY (`link_id`),
KEY `link_visible` (`link_visible`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_jl1e9t8_links`
--
LOCK TABLES `wp_jl1e9t8_links` WRITE;
/*!40000 ALTER TABLE `wp_jl1e9t8_links` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_jl1e9t8_links` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_jl1e9t8_options`
--
DROP TABLE IF EXISTS `wp_jl1e9t8_options`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_jl1e9t8_options` (
`option_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`option_name` varchar(191) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`option_value` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
`autoload` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'yes',
PRIMARY KEY (`option_id`),
UNIQUE KEY `option_name` (`option_name`)
) ENGINE=MyISAM AUTO_INCREMENT=1701 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_jl1e9t8_options`
--
LOCK TABLES `wp_jl1e9t8_options` WRITE;
/*!40000 ALTER TABLE `wp_jl1e9t8_options` DISABLE KEYS */;
INSERT INTO `wp_jl1e9t8_options` VALUES (1,'siteurl','http://50.116.64.37/~matrixm9','yes'),(2,'home','http://50.116.64.37/~matrixm9','yes'),(3,'blogname','matrix models','yes'),(4,'blogdescription','Just another WordPress site','yes'),(5,'users_can_register','0','yes'),(6,'admin_email','johnstevenproductions@hotmail.com','yes'),(7,'start_of_week','1','yes'),(8,'use_balanceTags','0','yes'),(9,'use_smilies','1','yes'),(10,'require_name_email','1','yes'),(11,'comments_notify','1','yes'),(12,'posts_per_rss','10','yes'),(13,'rss_use_excerpt','0','yes'),(14,'mailserver_url','mail.example.com','yes'),(15,'mailserver_login','login@example.com','yes'),(16,'mailserver_pass','password','yes'),(17,'mailserver_port','110','yes'),(18,'default_category','1','yes'),(19,'default_comment_status','open','yes'),(20,'default_ping_status','open','yes'),(21,'default_pingback_flag','1','yes'),(22,'posts_per_page','10','yes'),(23,'date_format','F j, Y','yes'),(24,'time_format','g:i a','yes'),(25,'links_updated_date_format','F j, Y g:i a','yes'),(26,'comment_moderation','0','yes'),(27,'moderation_notify','1','yes'),(28,'permalink_structure','/%year%/%monthnum%/%day%/%postname%/','yes'),(29,'rewrite_rules','a:90:{s:11:\"^wp-json/?$\";s:22:\"index.php?rest_route=/\";s:14:\"^wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s:21:\"^index.php/wp-json/?$\";s:22:\"index.php?rest_route=/\";s:24:\"^index.php/wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s:47:\"category/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:42:\"category/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:23:\"category/(.+?)/embed/?$\";s:46:\"index.php?category_name=$matches[1]&embed=true\";s:35:\"category/(.+?)/page/?([0-9]{1,})/?$\";s:53:\"index.php?category_name=$matches[1]&paged=$matches[2]\";s:17:\"category/(.+?)/?$\";s:35:\"index.php?category_name=$matches[1]\";s:44:\"tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:39:\"tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:20:\"tag/([^/]+)/embed/?$\";s:36:\"index.php?tag=$matches[1]&embed=true\";s:32:\"tag/([^/]+)/page/?([0-9]{1,})/?$\";s:43:\"index.php?tag=$matches[1]&paged=$matches[2]\";s:14:\"tag/([^/]+)/?$\";s:25:\"index.php?tag=$matches[1]\";s:45:\"type/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:40:\"type/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:21:\"type/([^/]+)/embed/?$\";s:44:\"index.php?post_format=$matches[1]&embed=true\";s:33:\"type/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?post_format=$matches[1]&paged=$matches[2]\";s:15:\"type/([^/]+)/?$\";s:33:\"index.php?post_format=$matches[1]\";s:48:\".*wp-(atom|rdf|rss|rss2|feed|commentsrss2)\\.php$\";s:18:\"index.php?feed=old\";s:20:\".*wp-app\\.php(/.*)?$\";s:19:\"index.php?error=403\";s:18:\".*wp-register.php$\";s:23:\"index.php?register=true\";s:32:\"feed/(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:27:\"(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:8:\"embed/?$\";s:21:\"index.php?&embed=true\";s:20:\"page/?([0-9]{1,})/?$\";s:28:\"index.php?&paged=$matches[1]\";s:27:\"comment-page-([0-9]{1,})/?$\";s:38:\"index.php?&page_id=4&cpage=$matches[1]\";s:41:\"comments/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:36:\"comments/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:17:\"comments/embed/?$\";s:21:\"index.php?&embed=true\";s:44:\"search/(.+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:39:\"search/(.+)/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:20:\"search/(.+)/embed/?$\";s:34:\"index.php?s=$matches[1]&embed=true\";s:32:\"search/(.+)/page/?([0-9]{1,})/?$\";s:41:\"index.php?s=$matches[1]&paged=$matches[2]\";s:14:\"search/(.+)/?$\";s:23:\"index.php?s=$matches[1]\";s:47:\"author/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:42:\"author/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:23:\"author/([^/]+)/embed/?$\";s:44:\"index.php?author_name=$matches[1]&embed=true\";s:35:\"author/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?author_name=$matches[1]&paged=$matches[2]\";s:17:\"author/([^/]+)/?$\";s:33:\"index.php?author_name=$matches[1]\";s:69:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:45:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/embed/?$\";s:74:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&embed=true\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&paged=$matches[4]\";s:39:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/?$\";s:63:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]\";s:56:\"([0-9]{4})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:51:\"([0-9]{4})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:32:\"([0-9]{4})/([0-9]{1,2})/embed/?$\";s:58:\"index.php?year=$matches[1]&monthnum=$matches[2]&embed=true\";s:44:\"([0-9]{4})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&paged=$matches[3]\";s:26:\"([0-9]{4})/([0-9]{1,2})/?$\";s:47:\"index.php?year=$matches[1]&monthnum=$matches[2]\";s:43:\"([0-9]{4})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:38:\"([0-9]{4})/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:19:\"([0-9]{4})/embed/?$\";s:37:\"index.php?year=$matches[1]&embed=true\";s:31:\"([0-9]{4})/page/?([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&paged=$matches[2]\";s:13:\"([0-9]{4})/?$\";s:26:\"index.php?year=$matches[1]\";s:58:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:68:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:88:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:83:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:83:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:64:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:53:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/embed/?$\";s:91:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&embed=true\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/trackback/?$\";s:85:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&tb=1\";s:77:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&feed=$matches[5]\";s:72:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&feed=$matches[5]\";s:65:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/page/?([0-9]{1,})/?$\";s:98:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&paged=$matches[5]\";s:72:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/comment-page-([0-9]{1,})/?$\";s:98:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&cpage=$matches[5]\";s:61:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)(?:/([0-9]+))?/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&page=$matches[5]\";s:47:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:57:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:77:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:72:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:72:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:53:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/comment-page-([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&cpage=$matches[4]\";s:51:\"([0-9]{4})/([0-9]{1,2})/comment-page-([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&cpage=$matches[3]\";s:38:\"([0-9]{4})/comment-page-([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&cpage=$matches[2]\";s:27:\".?.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\".?.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\".?.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\".?.+?/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:16:\"(.?.+?)/embed/?$\";s:41:\"index.php?pagename=$matches[1]&embed=true\";s:20:\"(.?.+?)/trackback/?$\";s:35:\"index.php?pagename=$matches[1]&tb=1\";s:40:\"(.?.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:35:\"(.?.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:28:\"(.?.+?)/page/?([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&paged=$matches[2]\";s:35:\"(.?.+?)/comment-page-([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&cpage=$matches[2]\";s:24:\"(.?.+?)(?:/([0-9]+))?/?$\";s:47:\"index.php?pagename=$matches[1]&page=$matches[2]\";}','yes'),(30,'hack_file','0','yes'),(31,'blog_charset','UTF-8','yes'),(32,'moderation_keys','','no'),(33,'active_plugins','a:4:{i:0;s:21:\"axewupec/axewupec.php\";i:1;s:19:\"jetpack/jetpack.php\";i:2;s:47:\"mojo-marketplace-wp-plugin/mojo-marketplace.php\";i:3;s:23:\"adyturoto/adyturoto.php\";}','yes'),(34,'category_base','','yes'),(35,'ping_sites','http://rpc.pingomatic.com/','yes'),(36,'comment_max_links','2','yes'),(37,'gmt_offset','0','yes'),(38,'default_email_category','1','yes'),(39,'recently_edited','','no'),(40,'template','twentyseventeen','yes'),(41,'stylesheet','twentyseventeen','yes'),(42,'comment_whitelist','1','yes'),(43,'blacklist_keys','','no'),(44,'comment_registration','0','yes'),(45,'html_type','text/html','yes'),(46,'use_trackback','0','yes'),(47,'default_role','subscriber','yes'),(48,'db_version','38590','yes'),(49,'uploads_use_yearmonth_folders','1','yes'),(50,'upload_path','','yes'),(51,'blog_public','1','yes'),(52,'default_link_category','2','yes'),(53,'show_on_front','page','yes'),(54,'tag_base','','yes'),(55,'show_avatars','1','yes'),(56,'avatar_rating','G','yes'),(57,'upload_url_path','','yes'),(58,'thumbnail_size_w','150','yes'),(59,'thumbnail_size_h','150','yes'),(60,'thumbnail_crop','1','yes'),(61,'medium_size_w','300','yes'),(62,'medium_size_h','300','yes'),(63,'avatar_default','mystery','yes'),(64,'large_size_w','1024','yes'),(65,'large_size_h','1024','yes'),(66,'image_default_link_type','none','yes'),(67,'image_default_size','','yes'),(68,'image_default_align','','yes'),(69,'close_comments_for_old_posts','1','yes'),(70,'close_comments_days_old','28','yes'),(71,'thread_comments','1','yes'),(72,'thread_comments_depth','5','yes'),(73,'page_comments','0','yes'),(74,'comments_per_page','20','yes'),(75,'default_comments_page','newest','yes'),(76,'comment_order','asc','yes'),(77,'sticky_posts','a:0:{}','yes'),(78,'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'),(79,'widget_text','a:0:{}','yes'),(80,'widget_rss','a:0:{}','yes'),(81,'uninstall_plugins','a:0:{}','no'),(82,'timezone_string','','yes'),(83,'page_for_posts','0','yes'),(84,'page_on_front','4','yes'),(85,'default_post_format','0','yes'),(86,'link_manager_enabled','0','yes'),(87,'finished_splitting_shared_terms','1','yes'),(88,'site_icon','0','yes'),(89,'medium_large_size_w','768','yes'),(90,'medium_large_size_h','0','yes'),(91,'initial_db_version','38590','yes'),(92,'wp_jl1e9t8_user_roles','a:5:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:61:{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:13:\"promote_users\";b:1;s:18:\"edit_theme_options\";b:1;s:13:\"delete_themes\";b:1;s:6:\"export\";b:1;}}s:6:\"editor\";a:2:{s:4:\"name\";s:6:\"Editor\";s:12:\"capabilities\";a:34:{s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;}}s:6:\"author\";a:2:{s:4:\"name\";s:6:\"Author\";s:12:\"capabilities\";a:10:{s:12:\"upload_files\";b:1;s:10:\"edit_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;s:22:\"delete_published_posts\";b:1;}}s:11:\"contributor\";a:2:{s:4:\"name\";s:11:\"Contributor\";s:12:\"capabilities\";a:5:{s:10:\"edit_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;}}s:10:\"subscriber\";a:2:{s:4:\"name\";s:10:\"Subscriber\";s:12:\"capabilities\";a:2:{s:4:\"read\";b:1;s:7:\"level_0\";b:1;}}}','yes'),(93,'fresh_site','0','yes'),(94,'widget_search','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),(95,'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'),(96,'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'),(97,'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'),(98,'widget_meta','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),(99,'sidebars_widgets','a:5:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:6:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";i:3;s:10:\"archives-2\";i:4;s:12:\"categories-2\";i:5;s:6:\"meta-2\";}s:9:\"sidebar-2\";a:0:{}s:9:\"sidebar-3\";a:0:{}s:13:\"array_version\";i:3;}','yes'),(177,'_transient_timeout_mm_spam_7d17e63514c5cae78c1b0826fa0d9eba','1491921744','no'),(100,'widget_pages','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(101,'widget_calendar','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(102,'widget_tag_cloud','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(103,'widget_nav_menu','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(104,'cron','a:10:{i:1491886616;a:1:{s:17:\"epc_purge_request\";a:1:{s:32:\"9ffedce4ca9ca11b4d79af597aecb3b3\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;s:32:\"http://50.116.64.37/~matrixm9/.*\";}}}}i:1491888234;a:1:{s:20:\"jetpack_clean_nonces\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1491888317;a:1:{s:14:\"mm_cron_hourly\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1491917010;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:1491917117;a:2:{s:13:\"mm_cron_daily\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s:18:\"mm_cron_twicedaily\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1491917118;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:1492435517;a:1:{s:14:\"mm_cron_weekly\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}i:1494249917;a:1:{s:15:\"mm_cron_monthly\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:7:\"monthly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:2419200;}}}i:1495687071;a:1:{s:17:\"epc_purge_request\";a:1:{s:32:\"9ffedce4ca9ca11b4d79af597aecb3b3\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;s:32:\"http://50.116.64.37/~matrixm9/.*\";}}}}s:7:\"version\";i:2;}','yes'),(107,'_site_transient_update_core','O:8:\"stdClass\":4:{s:7:\"updates\";a:1:{i:0;O:8:\"stdClass\":10:{s:8:\"response\";s:6:\"latest\";s:8:\"download\";s:59:\"https://downloads.wordpress.org/release/wordpress-4.7.3.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:59:\"https://downloads.wordpress.org/release/wordpress-4.7.3.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-4.7.3-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-4.7.3-new-bundled.zip\";s:7:\"partial\";b:0;s:8:\"rollback\";b:0;}s:7:\"current\";s:5:\"4.7.3\";s:7:\"version\";s:5:\"4.7.3\";s:11:\"php_version\";s:5:\"5.2.4\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"4.7\";s:15:\"partial_version\";s:0:\"\";}}s:12:\"last_checked\";i:1491886436;s:15:\"version_checked\";s:5:\"4.7.3\";s:12:\"translations\";a:0:{}}','no'),(112,'jetpack_activated','1','yes'),(113,'_transient_timeout_activated_jetpack','1491830640','no'),(114,'_transient_activated_jetpack','1','no'),(115,'jetpack_sync_settings_disable','0','yes'),(116,'jetpack_file_data','a:1:{s:5:\"4.8.2\";a:53:{s:32:\"31e5b9ae08b62c2b0cd8a7792242298b\";a:14:{s:4:\"name\";s:20:\"Spelling and Grammar\";s:11:\"description\";s:39:\"Check your spelling, style, and grammar\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:1:\"6\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"1.1\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:7:\"Writing\";s:7:\"feature\";s:7:\"Writing\";s:25:\"additional_search_queries\";s:115:\"after the deadline, afterthedeadline, spell, spellchecker, spelling, grammar, proofreading, style, language, cliche\";}s:32:\"3f41b2d629265b5de8108b463abbe8e2\";a:14:{s:4:\"name\";s:8:\"Carousel\";s:11:\"description\";s:75:\"Display images and galleries in a gorgeous, full-screen browsing experience\";s:14:\"jumpstart_desc\";s:79:\"Brings your photos and images to life as full-size, easily navigable galleries.\";s:4:\"sort\";s:2:\"22\";s:20:\"recommendation_order\";s:2:\"12\";s:10:\"introduced\";s:3:\"1.5\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:17:\"Photos and Videos\";s:7:\"feature\";s:21:\"Appearance, Jumpstart\";s:25:\"additional_search_queries\";s:80:\"gallery, carousel, diaporama, slideshow, images, lightbox, exif, metadata, image\";}s:32:\"c6ebb418dde302de09600a6025370583\";a:14:{s:4:\"name\";s:8:\"Comments\";s:11:\"description\";s:80:\"Let readers use WordPress.com, Twitter, Facebook, or Google+ accounts to comment\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"20\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"1.4\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:6:\"Social\";s:7:\"feature\";s:10:\"Engagement\";s:25:\"additional_search_queries\";s:53:\"comments, comment, facebook, twitter, google+, social\";}s:32:\"836f9485669e1bbb02920cb474730df0\";a:14:{s:4:\"name\";s:12:\"Contact Form\";s:11:\"description\";s:57:\"Insert a customizable contact form anywhere on your site.\";s:14:\"jumpstart_desc\";s:111:\"Adds a button to your post and page editors, allowing you to build simple forms to help visitors stay in touch.\";s:4:\"sort\";s:2:\"15\";s:20:\"recommendation_order\";s:2:\"14\";s:10:\"introduced\";s:3:\"1.3\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:5:\"Other\";s:7:\"feature\";s:18:\"Writing, Jumpstart\";s:25:\"additional_search_queries\";s:44:\"contact, form, grunion, feedback, submission\";}s:32:\"ea3970eebf8aac55fc3eca5dca0e0157\";a:14:{s:4:\"name\";s:20:\"Custom content types\";s:11:\"description\";s:74:\"Display different types of content on your site with custom content types.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"34\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"3.1\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:7:\"Writing\";s:7:\"feature\";s:7:\"Writing\";s:25:\"additional_search_queries\";s:72:\"cpt, custom post types, portfolio, portfolios, testimonial, testimonials\";}s:32:\"d2bb05ccad3d8789df40ca3abb97336c\";a:14:{s:4:\"name\";s:10:\"Custom CSS\";s:11:\"description\";s:53:\"Tweak your site’s CSS without modifying your theme.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:1:\"2\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"1.7\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:10:\"Appearance\";s:7:\"feature\";s:10:\"Appearance\";s:25:\"additional_search_queries\";s:108:\"css, customize, custom, style, editor, less, sass, preprocessor, font, mobile, appearance, theme, stylesheet\";}s:32:\"a2064eec5b9c7e0d816af71dee7a715f\";a:14:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";}s:32:\"53a4ec755022ef3953699734c343da02\";a:14:{s:4:\"name\";s:21:\"Enhanced Distribution\";s:11:\"description\";s:27:\"Increase reach and traffic.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:1:\"5\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"1.2\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:6:\"Public\";s:11:\"module_tags\";s:7:\"Writing\";s:7:\"feature\";s:10:\"Engagement\";s:25:\"additional_search_queries\";s:54:\"google, seo, firehose, search, broadcast, broadcasting\";}s:32:\"e1f1f6e3689fc31c477e64b06e2f8fbf\";a:14:{s:4:\"name\";s:16:\"Google Analytics\";s:11:\"description\";s:56:\"Set up Google Analytics without touching a line of code.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"37\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"4.5\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:10:\"Engagement\";s:25:\"additional_search_queries\";s:37:\"webmaster, google, analytics, console\";}s:32:\"72fecb67ee6704ba0a33e0225316ad06\";a:14:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";}s:32:\"d56e2886185a9eace719cc57d46770df\";a:14:{s:4:\"name\";s:19:\"Gravatar Hovercards\";s:11:\"description\";s:58:\"Enable pop-up business cards over commenters’ Gravatars.\";s:14:\"jumpstart_desc\";s:131:\"Let commenters link their profiles to their Gravatar accounts, making it easy for your visitors to learn more about your community.\";s:4:\"sort\";s:2:\"11\";s:20:\"recommendation_order\";s:2:\"13\";s:10:\"introduced\";s:3:\"1.1\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:18:\"Social, Appearance\";s:7:\"feature\";s:21:\"Appearance, Jumpstart\";s:25:\"additional_search_queries\";s:20:\"gravatar, hovercards\";}s:32:\"e391e760617bd0e0736550e34a73d7fe\";a:14:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:8:\"2.0.3 ??\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";}s:32:\"2e345370766346c616b3c5046e817720\";a:14:{s:4:\"name\";s:15:\"Infinite Scroll\";s:11:\"description\";s:53:\"Automatically load new content when a visitor scrolls\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"26\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"2.0\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:10:\"Appearance\";s:7:\"feature\";s:10:\"Appearance\";s:25:\"additional_search_queries\";s:33:\"scroll, infinite, infinite scroll\";}s:32:\"bd69edbf134de5fae8fdcf2e70a45b56\";a:14:{s:4:\"name\";s:8:\"JSON API\";s:11:\"description\";s:51:\"Allow applications to securely access your content.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"19\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"1.9\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:6:\"Public\";s:11:\"module_tags\";s:19:\"Writing, Developers\";s:7:\"feature\";s:7:\"General\";s:25:\"additional_search_queries\";s:50:\"api, rest, develop, developers, json, klout, oauth\";}s:32:\"8110b7a4423aaa619dfa46b8843e10d1\";a:14:{s:4:\"name\";s:14:\"Beautiful Math\";s:11:\"description\";s:57:\"Use LaTeX markup for complex equations and other geekery.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"12\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"1.1\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:7:\"Writing\";s:7:\"feature\";s:7:\"Writing\";s:25:\"additional_search_queries\";s:47:\"latex, math, equation, equations, formula, code\";}s:32:\"fd7e85d3b4887fa6b6f997d6592c1f33\";a:14:{s:4:\"name\";s:5:\"Likes\";s:11:\"description\";s:63:\"Give visitors an easy way to show they appreciate your content.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"23\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"2.2\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:6:\"Social\";s:7:\"feature\";s:10:\"Engagement\";s:25:\"additional_search_queries\";s:26:\"like, likes, wordpress.com\";}s:32:\"c5dfef41fad5bcdcaae8e315e5cfc420\";a:14:{s:4:\"name\";s:6:\"Manage\";s:11:\"description\";s:54:\"Manage all of your sites from a centralized dashboard.\";s:14:\"jumpstart_desc\";s:151:\"Helps you remotely manage plugins, turn on automated updates, and more from <a href=\"https://wordpress.com/plugins/\" target=\"_blank\">wordpress.com</a>.\";s:4:\"sort\";s:1:\"1\";s:20:\"recommendation_order\";s:1:\"3\";s:10:\"introduced\";s:3:\"3.4\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:35:\"Centralized Management, Recommended\";s:7:\"feature\";s:7:\"General\";s:25:\"additional_search_queries\";s:26:\"manage, management, remote\";}s:32:\"fd6dc399b92bce76013427e3107c314f\";a:14:{s:4:\"name\";s:8:\"Markdown\";s:11:\"description\";s:50:\"Write posts or pages in plain-text Markdown syntax\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"31\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"2.8\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:7:\"Writing\";s:7:\"feature\";s:7:\"Writing\";s:25:\"additional_search_queries\";s:12:\"md, markdown\";}s:32:\"614679778a7db6d8129c9f69ac8e10a5\";a:14:{s:4:\"name\";s:21:\"WordPress.com Toolbar\";s:11:\"description\";s:91:\"Replaces the admin bar with a useful toolbar to quickly manage your site via WordPress.com.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"38\";s:20:\"recommendation_order\";s:2:\"16\";s:10:\"introduced\";s:3:\"4.8\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:7:\"General\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:19:\"adminbar, masterbar\";}s:32:\"c49a35b6482b0426cb07ad28ecf5d7df\";a:14:{s:4:\"name\";s:12:\"Mobile Theme\";s:11:\"description\";s:34:\"Optimize your site for smartphones\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"21\";s:20:\"recommendation_order\";s:2:\"11\";s:10:\"introduced\";s:3:\"1.8\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:31:\"Appearance, Mobile, Recommended\";s:7:\"feature\";s:10:\"Appearance\";s:25:\"additional_search_queries\";s:24:\"mobile, theme, minileven\";}s:32:\"b42e38f6fafd2e4104ebe5bf39b4be47\";a:14:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";}s:32:\"771cfeeba0d3d23ec344d5e781fb0ae2\";a:14:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";}s:32:\"54f0661d27c814fc8bde39580181d939\";a:14:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";}s:32:\"46c4c413b5c72bbd3c3dbd14ff8f8adc\";a:14:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";}s:32:\"9ea52fa25783e5ceeb6bfaed3268e64e\";a:14:{s:4:\"name\";s:7:\"Monitor\";s:11:\"description\";s:61:\"Receive immediate notifications if your site goes down, 24/7.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"28\";s:20:\"recommendation_order\";s:2:\"10\";s:10:\"introduced\";s:3:\"2.6\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:11:\"Recommended\";s:7:\"feature\";s:8:\"Security\";s:25:\"additional_search_queries\";s:37:\"monitor, uptime, downtime, monitoring\";}s:32:\"cfcaafd0fcad087899d715e0b877474d\";a:14:{s:4:\"name\";s:13:\"Notifications\";s:11:\"description\";s:57:\"Receive instant notifications of site comments and likes.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"13\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"1.9\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:5:\"Other\";s:7:\"feature\";s:7:\"General\";s:25:\"additional_search_queries\";s:62:\"notification, notifications, toolbar, adminbar, push, comments\";}s:32:\"0d18bfa69bec61550c1d813ce64149b0\";a:14:{s:4:\"name\";s:10:\"Omnisearch\";s:11:\"description\";s:66:\"Search your entire database from a single field in your dashboard.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"16\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"2.3\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:10:\"Developers\";s:7:\"feature\";s:7:\"General\";s:25:\"additional_search_queries\";s:6:\"search\";}s:32:\"3f0a11e23118f0788d424b646a6d465f\";a:14:{s:4:\"name\";s:6:\"Photon\";s:11:\"description\";s:26:\"Speed up images and photos\";s:14:\"jumpstart_desc\";s:141:\"Mirrors and serves your images from our free and fast image CDN, improving your site’s performance with no additional load on your servers.\";s:4:\"sort\";s:2:\"25\";s:20:\"recommendation_order\";s:1:\"1\";s:10:\"introduced\";s:3:\"2.0\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:42:\"Photos and Videos, Appearance, Recommended\";s:7:\"feature\";s:34:\"Recommended, Jumpstart, Appearance\";s:25:\"additional_search_queries\";s:38:\"photon, image, cdn, performance, speed\";}s:32:\"e37cfbcb72323fb1fe8255a2edb4d738\";a:14:{s:4:\"name\";s:13:\"Post by email\";s:11:\"description\";s:33:\"Publish posts by sending an email\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"14\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"2.0\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:7:\"Writing\";s:7:\"feature\";s:7:\"Writing\";s:25:\"additional_search_queries\";s:20:\"post by email, email\";}s:32:\"728290d131a480bfe7b9e405d7cd925f\";a:14:{s:4:\"name\";s:7:\"Protect\";s:11:\"description\";s:41:\"Block suspicious-looking sign in activity\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:1:\"1\";s:20:\"recommendation_order\";s:1:\"4\";s:10:\"introduced\";s:3:\"3.4\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:11:\"Recommended\";s:7:\"feature\";s:8:\"Security\";s:25:\"additional_search_queries\";s:65:\"security, secure, protection, botnet, brute force, protect, login\";}s:32:\"f9ce784babbbf4dcca99b8cd2ceb420c\";a:14:{s:4:\"name\";s:9:\"Publicize\";s:11:\"description\";s:27:\"Automated social marketing.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"10\";s:20:\"recommendation_order\";s:1:\"7\";s:10:\"introduced\";s:3:\"2.0\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:19:\"Social, Recommended\";s:7:\"feature\";s:10:\"Engagement\";s:25:\"additional_search_queries\";s:107:\"facebook, twitter, google+, googleplus, google, path, tumblr, linkedin, social, tweet, connections, sharing\";}s:32:\"052c03877dd3d296a71531cb07ad939a\";a:14:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";}s:32:\"52edecb2a75222e75b2dce4356a4efce\";a:14:{s:4:\"name\";s:13:\"Related posts\";s:11:\"description\";s:64:\"Increase page views by showing related content to your visitors.\";s:14:\"jumpstart_desc\";s:113:\"Keep visitors engaged on your blog by highlighting relevant and new content at the bottom of each published post.\";s:4:\"sort\";s:2:\"29\";s:20:\"recommendation_order\";s:1:\"9\";s:10:\"introduced\";s:3:\"2.9\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:11:\"Recommended\";s:7:\"feature\";s:21:\"Engagement, Jumpstart\";s:25:\"additional_search_queries\";s:22:\"related, related posts\";}s:32:\"68b0d01689803c0ea7e4e60a86de2519\";a:14:{s:4:\"name\";s:9:\"SEO Tools\";s:11:\"description\";s:50:\"Better results on search engines and social media.\";s:14:\"jumpstart_desc\";s:50:\"Better results on search engines and social media.\";s:4:\"sort\";s:2:\"35\";s:20:\"recommendation_order\";s:2:\"15\";s:10:\"introduced\";s:3:\"4.4\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:18:\"Social, Appearance\";s:7:\"feature\";s:18:\"Traffic, Jumpstart\";s:25:\"additional_search_queries\";s:81:\"search engine optimization, social preview, meta description, custom title format\";}s:32:\"8b059cb50a66b717f1ec842e736b858c\";a:14:{s:4:\"name\";s:7:\"Sharing\";s:11:\"description\";s:37:\"Allow visitors to share your content.\";s:14:\"jumpstart_desc\";s:116:\"Twitter, Facebook and Google+ buttons at the bottom of each post, making it easy for visitors to share your content.\";s:4:\"sort\";s:1:\"7\";s:20:\"recommendation_order\";s:1:\"6\";s:10:\"introduced\";s:3:\"1.1\";s:7:\"changed\";s:3:\"1.2\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:19:\"Social, Recommended\";s:7:\"feature\";s:21:\"Engagement, Jumpstart\";s:25:\"additional_search_queries\";s:141:\"share, sharing, sharedaddy, buttons, icons, email, facebook, twitter, google+, linkedin, pinterest, pocket, press this, print, reddit, tumblr\";}s:32:\"a6d2394329871857401255533a9873f7\";a:14:{s:4:\"name\";s:16:\"Shortcode Embeds\";s:11:\"description\";s:50:\"Embed media from popular sites without any coding.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:1:\"3\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"1.1\";s:7:\"changed\";s:3:\"1.2\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:46:\"Photos and Videos, Social, Writing, Appearance\";s:7:\"feature\";s:7:\"Writing\";s:25:\"additional_search_queries\";s:236:\"shortcodes, shortcode, embeds, media, bandcamp, dailymotion, facebook, flickr, google calendars, google maps, google+, polldaddy, recipe, recipes, scribd, slideshare, slideshow, slideshows, soundcloud, ted, twitter, vimeo, vine, youtube\";}s:32:\"21496e2897ea5f81605e2f2ac3beb921\";a:14:{s:4:\"name\";s:16:\"WP.me Shortlinks\";s:11:\"description\";s:54:\"Create short and simple links for all posts and pages.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:1:\"8\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"1.1\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:6:\"Social\";s:7:\"feature\";s:7:\"Writing\";s:25:\"additional_search_queries\";s:17:\"shortlinks, wp.me\";}s:32:\"e2a54a5d7879a4162709e6ffb540dd08\";a:14:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";}s:32:\"f5c537bc304f55b29c1a87e30be0cd24\";a:14:{s:4:\"name\";s:8:\"Sitemaps\";s:11:\"description\";s:50:\"Make it easy for search engines to find your site.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"13\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"3.9\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:6:\"Public\";s:11:\"module_tags\";s:20:\"Recommended, Traffic\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:39:\"sitemap, traffic, search, site map, seo\";}s:32:\"59a23643437358a9b557f1d1e20ab040\";a:14:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";}s:32:\"6a90f97c3194cfca5671728eaaeaf15e\";a:14:{s:4:\"name\";s:14:\"Single Sign On\";s:11:\"description\";s:62:\"Allow users to log into this site using WordPress.com accounts\";s:14:\"jumpstart_desc\";s:98:\"Lets you log in to all your Jetpack-enabled sites with one click using your WordPress.com account.\";s:4:\"sort\";s:2:\"30\";s:20:\"recommendation_order\";s:1:\"5\";s:10:\"introduced\";s:3:\"2.6\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:10:\"Developers\";s:7:\"feature\";s:19:\"Security, Jumpstart\";s:25:\"additional_search_queries\";s:34:\"sso, single sign on, login, log in\";}s:32:\"b65604e920392e2f7134b646760b75e8\";a:14:{s:4:\"name\";s:10:\"Site Stats\";s:11:\"description\";s:44:\"Collect valuable traffic stats and insights.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:1:\"1\";s:20:\"recommendation_order\";s:1:\"2\";s:10:\"introduced\";s:3:\"1.1\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:23:\"Site Stats, Recommended\";s:7:\"feature\";s:10:\"Engagement\";s:25:\"additional_search_queries\";s:54:\"statistics, tracking, analytics, views, traffic, stats\";}s:32:\"23a586dd7ead00e69ec53eb32ef740e4\";a:14:{s:4:\"name\";s:13:\"Subscriptions\";s:11:\"description\";s:87:\"Allow users to subscribe to your posts and comments and receive notifications via email\";s:14:\"jumpstart_desc\";s:126:\"Give visitors two easy subscription options — while commenting, or via a separate email subscription widget you can display.\";s:4:\"sort\";s:1:\"9\";s:20:\"recommendation_order\";s:1:\"8\";s:10:\"introduced\";s:3:\"1.2\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:6:\"Social\";s:7:\"feature\";s:21:\"Engagement, Jumpstart\";s:25:\"additional_search_queries\";s:74:\"subscriptions, subscription, email, follow, followers, subscribers, signup\";}s:32:\"1d978b8d84d2f378fe1a702a67633b6d\";a:14:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";}s:32:\"b3b983461d7f3d27322a3551ed8a9405\";a:14:{s:4:\"name\";s:15:\"Tiled Galleries\";s:11:\"description\";s:61:\"Display image galleries in a variety of elegant arrangements.\";s:14:\"jumpstart_desc\";s:61:\"Display image galleries in a variety of elegant arrangements.\";s:4:\"sort\";s:2:\"24\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"2.1\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:17:\"Photos and Videos\";s:7:\"feature\";s:21:\"Appearance, Jumpstart\";s:25:\"additional_search_queries\";s:43:\"gallery, tiles, tiled, grid, mosaic, images\";}s:32:\"d924e5b05722b0e104448543598f54c0\";a:14:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";}s:32:\"36741583b10c521997e563ad8e1e8b77\";a:14:{s:4:\"name\";s:12:\"Data Backups\";s:11:\"description\";s:54:\"Off-site backups, security scans, and automatic fixes.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"32\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:5:\"0:1.2\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:5:\"false\";s:4:\"free\";s:5:\"false\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:16:\"Security, Health\";s:25:\"additional_search_queries\";s:28:\"vaultpress, backup, security\";}s:32:\"2b9b44f09b5459617d68dd82ee17002a\";a:14:{s:4:\"name\";s:17:\"Site verification\";s:11:\"description\";s:58:\"Establish your site\'s authenticity with external services.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"33\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"3.0\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:10:\"Engagement\";s:25:\"additional_search_queries\";s:56:\"webmaster, seo, google, bing, pinterest, search, console\";}s:32:\"5ab4c0db7c42e10e646342da0274c491\";a:14:{s:4:\"name\";s:10:\"VideoPress\";s:11:\"description\";s:27:\"Fast, ad-free video hosting\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"27\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"2.5\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:5:\"false\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:17:\"Photos and Videos\";s:7:\"feature\";s:7:\"Writing\";s:25:\"additional_search_queries\";s:25:\"video, videos, videopress\";}s:32:\"60a1d3aa38bc0fe1039e59dd60888543\";a:14:{s:4:\"name\";s:17:\"Widget Visibility\";s:11:\"description\";s:42:\"Control where widgets appear on your site.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"17\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"2.4\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:10:\"Appearance\";s:7:\"feature\";s:10:\"Appearance\";s:25:\"additional_search_queries\";s:54:\"widget visibility, logic, conditional, widgets, widget\";}s:32:\"174ed3416476c2cb9ff5b0f671280b15\";a:14:{s:4:\"name\";s:21:\"Extra Sidebar Widgets\";s:11:\"description\";s:54:\"Add images, Twitter streams, and more to your sidebar.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:1:\"4\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"1.2\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:18:\"Social, Appearance\";s:7:\"feature\";s:10:\"Appearance\";s:25:\"additional_search_queries\";s:65:\"widget, widgets, facebook, gallery, twitter, gravatar, image, rss\";}s:32:\"a668bc9418d6de87409f867892fcdd7f\";a:14:{s:4:\"name\";s:3:\"Ads\";s:11:\"description\";s:60:\"Earn income by allowing Jetpack to display high quality ads.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:1:\"1\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:5:\"4.5.0\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:19:\"Traffic, Appearance\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:26:\"advertising, ad codes, ads\";}s:32:\"28b931a1db19bd24869bd54b14e733d5\";a:14:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";}}}','yes'),(1031,'_site_transient_timeout_theme_roots','1547600659','no'),(1032,'_site_transient_theme_roots','a:3:{s:13:\"twentyfifteen\";s:7:\"/themes\";s:15:\"twentyseventeen\";s:7:\"/themes\";s:13:\"twentysixteen\";s:7:\"/themes\";}','no'),(111,'_site_transient_update_themes','O:8:\"stdClass\":4:{s:12:\"last_checked\";i:1491886439;s:7:\"checked\";a:3:{s:13:\"twentyfifteen\";s:3:\"1.7\";s:15:\"twentyseventeen\";s:3:\"1.1\";s:13:\"twentysixteen\";s:3:\"1.3\";}s:8:\"response\";a:0:{}s:12:\"translations\";a:0:{}}','no'),(117,'jetpack_available_modules','a:1:{s:5:\"4.8.2\";a:40:{s:18:\"after-the-deadline\";s:3:\"1.1\";s:8:\"carousel\";s:3:\"1.5\";s:8:\"comments\";s:3:\"1.4\";s:12:\"contact-form\";s:3:\"1.3\";s:20:\"custom-content-types\";s:3:\"3.1\";s:10:\"custom-css\";s:3:\"1.7\";s:21:\"enhanced-distribution\";s:3:\"1.2\";s:16:\"google-analytics\";s:3:\"4.5\";s:19:\"gravatar-hovercards\";s:3:\"1.1\";s:15:\"infinite-scroll\";s:3:\"2.0\";s:8:\"json-api\";s:3:\"1.9\";s:5:\"latex\";s:3:\"1.1\";s:5:\"likes\";s:3:\"2.2\";s:6:\"manage\";s:3:\"3.4\";s:8:\"markdown\";s:3:\"2.8\";s:9:\"masterbar\";s:3:\"4.8\";s:9:\"minileven\";s:3:\"1.8\";s:7:\"monitor\";s:3:\"2.6\";s:5:\"notes\";s:3:\"1.9\";s:10:\"omnisearch\";s:3:\"2.3\";s:6:\"photon\";s:3:\"2.0\";s:13:\"post-by-email\";s:3:\"2.0\";s:7:\"protect\";s:3:\"3.4\";s:9:\"publicize\";s:3:\"2.0\";s:13:\"related-posts\";s:3:\"2.9\";s:9:\"seo-tools\";s:3:\"4.4\";s:10:\"sharedaddy\";s:3:\"1.1\";s:10:\"shortcodes\";s:3:\"1.1\";s:10:\"shortlinks\";s:3:\"1.1\";s:8:\"sitemaps\";s:3:\"3.9\";s:3:\"sso\";s:3:\"2.6\";s:5:\"stats\";s:3:\"1.1\";s:13:\"subscriptions\";s:3:\"1.2\";s:13:\"tiled-gallery\";s:3:\"2.1\";s:10:\"vaultpress\";s:5:\"0:1.2\";s:18:\"verification-tools\";s:3:\"3.0\";s:10:\"videopress\";s:3:\"2.5\";s:17:\"widget-visibility\";s:3:\"2.4\";s:7:\"widgets\";s:3:\"1.2\";s:7:\"wordads\";s:5:\"4.5.0\";}}','yes'),(118,'jetpack_options','a:2:{s:7:\"version\";s:16:\"4.8.2:1491830634\";s:11:\"old_version\";s:16:\"4.8.2:1491830634\";}','yes'),(1697,'_transient_timeout_mm_api_calls','1552257139','no'),(1698,'_transient_mm_api_calls','a:1:{s:32:\"99eab8a7940f4bd7a84e271be47c4532\";a:6:{s:7:\"headers\";O:42:\"Requests_Utility_CaseInsensitiveDictionary\":1:{s:7:\"\0*\0data\";a:6:{s:6:\"server\";s:12:\"nginx/1.10.1\";s:4:\"date\";s:29:\"Sat, 09 Mar 2019 22:32:19 GMT\";s:12:\"content-type\";s:24:\"text/html; charset=UTF-8\";s:12:\"x-powered-by\";s:10:\"PHP/5.6.22\";s:10:\"set-cookie\";a:2:{i:0;s:135:\"SESSION=i68uf2eon12e3uao2i0e5586h3; expires=Sat, 09-Mar-2019 22:33:19 GMT; Max-Age=60; path=/; domain=www.mojomarketplace.com; HttpOnly\";i:1;s:19:\"APISVR=a0n2; path=/\";}s:4:\"vary\";s:6:\"Origin\";}}s:4:\"body\";s:0:\"\";s:8:\"response\";a:2:{s:4:\"code\";i:200;s:7:\"message\";s:2:\"OK\";}s:7:\"cookies\";a:1:{i:0;O:14:\"WP_Http_Cookie\":5:{s:4:\"name\";s:6:\"APISVR\";s:5:\"value\";s:4:\"a0n2\";s:7:\"expires\";N;s:4:\"path\";s:1:\"/\";s:6:\"domain\";s:23:\"api.mojomarketplace.com\";}}s:8:\"filename\";N;s:13:\"http_response\";O:25:\"WP_HTTP_Requests_Response\":5:{s:11:\"\0*\0response\";O:17:\"Requests_Response\":10:{s:4:\"body\";s:0:\"\";s:3:\"raw\";s:387:\"HTTP/1.1 200 OK\r\nServer: nginx/1.10.1\r\nDate: Sat, 09 Mar 2019 22:32:19 GMT\r\nContent-Type: text/html; charset=UTF-8\r\nTransfer-Encoding: chunked\r\nConnection: close\r\nX-Powered-By: PHP/5.6.22\r\nSet-Cookie: SESSION=i68uf2eon12e3uao2i0e5586h3; expires=Sat, 09-Mar-2019 22:33:19 GMT; Max-Age=60; path=/; domain=www.mojomarketplace.com; HttpOnly\r\nVary: Origin\r\nSet-Cookie: APISVR=a0n2; path=/\r\n\r\n\";s:7:\"headers\";O:25:\"Requests_Response_Headers\":1:{s:7:\"\0*\0data\";a:6:{s:6:\"server\";a:1:{i:0;s:12:\"nginx/1.10.1\";}s:4:\"date\";a:1:{i:0;s:29:\"Sat, 09 Mar 2019 22:32:19 GMT\";}s:12:\"content-type\";a:1:{i:0;s:24:\"text/html; charset=UTF-8\";}s:12:\"x-powered-by\";a:1:{i:0;s:10:\"PHP/5.6.22\";}s:10:\"set-cookie\";a:2:{i:0;s:135:\"SESSION=i68uf2eon12e3uao2i0e5586h3; expires=Sat, 09-Mar-2019 22:33:19 GMT; Max-Age=60; path=/; domain=www.mojomarketplace.com; HttpOnly\";i:1;s:19:\"APISVR=a0n2; path=/\";}s:4:\"vary\";a:1:{i:0;s:6:\"Origin\";}}}s:11:\"status_code\";i:200;s:16:\"protocol_version\";d:1.100000000000000088817841970012523233890533447265625;s:7:\"success\";b:1;s:9:\"redirects\";i:0;s:3:\"url\";s:56:\"https://api.mojomarketplace.com/api/v1/meta/landing_page\";s:7:\"history\";a:0:{}s:7:\"cookies\";O:19:\"Requests_Cookie_Jar\":1:{s:10:\"\0*\0cookies\";a:1:{s:6:\"APISVR\";O:15:\"Requests_Cookie\":5:{s:4:\"name\";s:6:\"APISVR\";s:5:\"value\";s:4:\"a0n2\";s:10:\"attributes\";O:42:\"Requests_Utility_CaseInsensitiveDictionary\":1:{s:7:\"\0*\0data\";a:2:{s:4:\"path\";s:1:\"/\";s:6:\"domain\";s:23:\"api.mojomarketplace.com\";}}s:5:\"flags\";a:4:{s:8:\"creation\";i:1552170739;s:11:\"last-access\";i:1552170739;s:10:\"persistent\";b:0;s:9:\"host-only\";b:1;}s:14:\"reference_time\";i:1552170739;}}}}s:11:\"\0*\0filename\";N;s:4:\"data\";N;s:7:\"headers\";N;s:6:\"status\";N;}}}','no'),(208,'_transient_timeout_mm_spam_fd0dc2be32d880033b3aae5582706785','1509629608','no'),(209,'_transient_mm_spam_fd0dc2be32d880033b3aae5582706785','no','no'),(212,'_transient_timeout_mm_spam_e028a23395cdaeceaf68215681b58ada','1509725775','no'),(213,'_transient_mm_spam_e028a23395cdaeceaf68215681b58ada','no','no'),(214,'_transient_timeout_mm_spam_ab2a1d00da5c2424288e082cfce57a78','1509752633','no'),(215,'_transient_mm_spam_ab2a1d00da5c2424288e082cfce57a78','no','no'),(123,'mm_install_date','2017-04-10','yes'),(124,'mm_cron','a:1:{s:6:\"weekly\";a:1:{s:15:\"spam_blocked_ip\";a:4:{s:1:\"t\";s:5:\"event\";s:2:\"ec\";s:9:\"scheduled\";s:2:\"ea\";s:15:\"spam_blocked_ip\";s:2:\"el\";i:0;}}}','yes'),(390,'_transient_timeout_mm_spam_cc83591fa3ed389a76151afc46a08f19','1516756967','no'),(391,'_transient_mm_spam_cc83591fa3ed389a76151afc46a08f19','yes','no'),(392,'_transient_timeout_mm_spam_1889a350f35ff46b3a1d50e7532e5ab2','1516762598','no'),(393,'_transient_mm_spam_1889a350f35ff46b3a1d50e7532e5ab2','no','no'),(394,'_transient_timeout_mm_spam_b2a0d6da272ff37faa849118768cf643','1516774300','no'),(395,'_transient_mm_spam_b2a0d6da272ff37faa849118768cf643','no','no'),(125,'mm_coming_soon','true','yes'),(126,'mm_host','b7119342-0c17-11e2-8b3b-0030483370c8','yes'),(127,'mm_brand','BlueHost','yes'),(388,'_transient_timeout_epc_purged_9f391f343483a86f771837d222cd8e90','1516670627','no'),(389,'_transient_epc_purged_9f391f343483a86f771837d222cd8e90','1516670567','no'),(130,'_site_transient_update_plugins','','no'),(1621,'_transient_timeout_mm_spam_71dd8e5f64f4474063dc4fe732f64165','1550250247','no'),(1622,'_transient_mm_spam_71dd8e5f64f4474063dc4fe732f64165','no','no'),(1623,'_transient_timeout_mm_spam_06af1fef436cea81c971e19d2f0b89e5','1550264431','no'),(1624,'_transient_mm_spam_06af1fef436cea81c971e19d2f0b89e5','no','no'),(1631,'_transient_timeout_mm_spam_eee24399018309379ff3bfe9f1d06d23','1550285862','no'),(1632,'_transient_mm_spam_eee24399018309379ff3bfe9f1d06d23','no','no'),(1633,'_transient_timeout_mm_spam_dc51f7ea99e62edc767ed543315dd4fb','1550287034','no'),(1634,'_transient_mm_spam_dc51f7ea99e62edc767ed543315dd4fb','no','no'),(1635,'_transient_timeout_mm_spam_8efc7b789f24e5f2da1f32d227d4fbdc','1550288143','no'),(1636,'_transient_mm_spam_8efc7b789f24e5f2da1f32d227d4fbdc','no','no'),(1637,'_transient_timeout_mm_spam_1163371844e04f64644bb19da94d5de7','1550290948','no'),(1638,'_transient_mm_spam_1163371844e04f64644bb19da94d5de7','no','no'),(1699,'_transient_timeout_mm_spam_180e1f90d4b45b0b6d978a55cf35b514','1552398579','no'),(1700,'_transient_mm_spam_180e1f90d4b45b0b6d978a55cf35b514','no','no'),(1645,'_transient_timeout_mm_spam_df7beb630f63c2cdcee15775175a472a','1550294644','no'),(1646,'_transient_mm_spam_df7beb630f63c2cdcee15775175a472a','no','no'),(1647,'_transient_timeout_mm_spam_31d3c18829102cb2ab65f5857929d6aa','1550296215','no'),(1648,'_transient_mm_spam_31d3c18829102cb2ab65f5857929d6aa','no','no'),(1649,'_transient_timeout_mm_spam_ebc760b5b71afc3c3ff2f9193ac5e601','1550297158','no'),(1650,'_transient_mm_spam_ebc760b5b71afc3c3ff2f9193ac5e601','no','no'),(1651,'_transient_timeout_mm_spam_5793cf495cbbb7eacdbafa264654b9ab','1550299514','no'),(1652,'_transient_mm_spam_5793cf495cbbb7eacdbafa264654b9ab','no','no'),(136,'_transient_timeout_mm_icon_hash','1492435518','no'),(137,'_transient_mm_icon_hash','PHN2ZyBpZD0iTGF5ZXJfMSIgZGF0YS1uYW1lPSJMYXllciAxIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1OC4wMyA1OC4xMyI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiNmZmY7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5iaC13aGl0ZTwvdGl0bGU+PGcgaWQ9Il9Hcm91cF8iIGRhdGEtbmFtZT0iJmx0O0dyb3VwJmd0OyI+PGcgaWQ9Il9Hcm91cF8yIiBkYXRhLW5hbWU9IiZsdDtHcm91cCZndDsiPjxnIGlkPSJfR3JvdXBfMyIgZGF0YS1uYW1lPSImbHQ7R3JvdXAmZ3Q7Ij48cmVjdCBpZD0iX1BhdGhfIiBkYXRhLW5hbWU9IiZsdDtQYXRoJmd0OyIgY2xhc3M9ImNscy0xIiB3aWR0aD0iMTYuMiIgaGVpZ2h0PSIxNi4yMSIvPjxyZWN0IGlkPSJfUGF0aF8yIiBkYXRhLW5hbWU9IiZsdDtQYXRoJmd0OyIgY2xhc3M9ImNscy0xIiB4PSIyMC45MSIgd2lkdGg9IjE2LjIxIiBoZWlnaHQ9IjE2LjIxIi8+PHJlY3QgaWQ9Il9QYXRoXzMiIGRhdGEtbmFtZT0iJmx0O1BhdGgmZ3Q7IiBjbGFzcz0iY2xzLTEiIHg9IjQxLjgyIiB3aWR0aD0iMTYuMjEiIGhlaWdodD0iMTYuMjEiLz48cmVjdCBpZD0iX1BhdGhfNCIgZGF0YS1uYW1lPSImbHQ7UGF0aCZndDsiIGNsYXNzPSJjbHMtMSIgeT0iMjAuOTYiIHdpZHRoPSIxNi4yIiBoZWlnaHQ9IjE2LjIxIi8+PHJlY3QgaWQ9Il9QYXRoXzUiIGRhdGEtbmFtZT0iJmx0O1BhdGgmZ3Q7IiBjbGFzcz0iY2xzLTEiIHg9IjIwLjkxIiB5PSIyMC45NiIgd2lkdGg9IjE2LjIxIiBoZWlnaHQ9IjE2LjIxIi8+PHJlY3QgaWQ9Il9QYXRoXzYiIGRhdGEtbmFtZT0iJmx0O1BhdGgmZ3Q7IiBjbGFzcz0iY2xzLTEiIHg9IjQxLjgyIiB5PSIyMC45NiIgd2lkdGg9IjE2LjIxIiBoZWlnaHQ9IjE2LjIxIi8+PHJlY3QgaWQ9Il9QYXRoXzciIGRhdGEtbmFtZT0iJmx0O1BhdGgmZ3Q7IiBjbGFzcz0iY2xzLTEiIHk9IjQxLjkyIiB3aWR0aD0iMTYuMiIgaGVpZ2h0PSIxNi4yMSIvPjxyZWN0IGlkPSJfUGF0aF84IiBkYXRhLW5hbWU9IiZsdDtQYXRoJmd0OyIgY2xhc3M9ImNscy0xIiB4PSIyMC45MSIgeT0iNDEuOTIiIHdpZHRoPSIxNi4yMSIgaGVpZ2h0PSIxNi4yMSIvPjxyZWN0IGlkPSJfUGF0aF85IiBkYXRhLW5hbWU9IiZsdDtQYXRoJmd0OyIgY2xhc3M9ImNscy0xIiB4PSI0MS44MiIgeT0iNDEuOTIiIHdpZHRoPSIxNi4yMSIgaGVpZ2h0PSIxNi4yMSIvPjwvZz48L2c+PC9nPjwvc3ZnPg==','no'),(1695,'_transient_timeout_jetpack_idc_allowed','1552150469','no'),(1696,'_transient_jetpack_idc_allowed','1','no'),(135,'do_activate','0','yes'),(138,'_transient_timeout_jetpack_https_test','1491917118','no'),(139,'_transient_jetpack_https_test','1','no'),(140,'_transient_timeout_jetpack_https_test_message','1491917118','no'),(141,'_transient_jetpack_https_test_message','','no'),(142,'_transient_timeout_staging_auth_token','1491830778','no'),(143,'_transient_staging_auth_token','ccXLjXUOy6cTUWlQdlugD7Pus0va8lDs','no'),(144,'staging_config','a:5:{s:14:\"production_dir\";s:28:\"/home1/matrixm9/public_html/\";s:11:\"staging_dir\";s:41:\"/home1/matrixm9/public_html/staging/5084/\";s:14:\"production_url\";s:29:\"http://50.116.64.37/~matrixm9\";s:11:\"staging_url\";s:42:\"http://50.116.64.37/~matrixm9/staging/5084\";s:13:\"creation_date\";s:12:\"Apr 10, 2017\";}','yes'),(145,'_transient_timeout_mm_compat_check','1494422721','no'),(146,'_transient_mm_compat_check','compatible','no'),(147,'_site_transient_timeout_browser_d4f514b1e3040b31a8de27f45ba9b6b2','1492435522','no'),(148,'_site_transient_browser_d4f514b1e3040b31a8de27f45ba9b6b2','a:9:{s:8:\"platform\";s:7:\"Windows\";s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:13:\"57.0.2987.133\";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;}','no'),(149,'jpo_firstrun','1','yes'),(150,'_transient_timeout_epc_purged_a1c608a8ce88a295ed25b603eff31071','1491830782','no'),(151,'_transient_epc_purged_a1c608a8ce88a295ed25b603eff31071','1491830722','no'),(175,'_transient_timeout_epc_purged_d087b41a4f46aaf952472c5692906fac','1491835404','no'),(176,'_transient_epc_purged_d087b41a4f46aaf952472c5692906fac','1491835344','no'),(154,'_transient_timeout_mm_test','1494249922','no'),(155,'_transient_mm_test','a:1:{s:3:\"key\";s:4:\"none\";}','no'),(156,'can_compress_scripts','0','no'),(157,'_transient_timeout_feed_ac0b00fe65abe10e0c5b588f3ed8c7ca','1491841528','no'),(158,'_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:49:\"\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:4:{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:26:\"https://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:\"Fri, 10 Mar 2017 18:14: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: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:40:\"https://wordpress.org/?v=4.8-alpha-40400\";s:7:\"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:39:\"\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:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"WordPress 4.7.3 Security and 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:84:\"https://wordpress.org/news/2017/03/wordpress-4-7-3-security-and-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:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 06 Mar 2017 17:53: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:3:{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:\"\";}i:2;a:5:{s:4:\"data\";s:3:\"4.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:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=4696\";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:396:\"WordPress 4.7.3 is now available. This is a security release for all previous versions and we strongly encourage you to update your sites immediately. WordPress versions 4.7.2 and earlier are affected by six security issues: Cross-site scripting (XSS) via media file metadata. Reported by Chris Andrè Dale, Yorick Koster, and Simon P. Briggs. Control characters can trick redirect […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}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:\"James Nylen\";s: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:6191:\"<p>WordPress 4.7.3 is now available. This is a <strong>security release</strong> for all previous versions and we strongly encourage you to update your sites immediately.</p>\n<p>WordPress versions 4.7.2 and earlier are affected by six security issues:</p>\n<ol>\n<li>Cross-site scripting (XSS) via media file metadata. Reported by <a href=\"https://www.securesolutions.no/\">Chris Andrè Dale</a>, <a href=\"https://twitter.com/yorickkoster\">Yorick Koster</a>, and Simon P. Briggs.</li>\n<li>Control characters can trick redirect URL validation. Reported by <a href=\"http://www.danielchatfield.com/\">Daniel Chatfield</a>.</li>\n<li>Unintended files can be deleted by administrators using the plugin deletion functionality. Reported by <a href=\"https://hackerone.com/triginc\">TrigInc</a> and <a href=\"http://b.360.cn/\">xuliang</a>.</li>\n<li>Cross-site scripting (XSS) via video URL in YouTube embeds. Reported by <a href=\"https://twitter.com/marcs0h\">Marc Montpas</a>.</li>\n<li>Cross-site scripting (XSS) via taxonomy term names. Reported by <a href=\"https://profiles.wordpress.org/deltamgm2\">Delta</a>.</li>\n<li>Cross-site request forgery (CSRF) in Press This leading to excessive use of server resources. Reported by Sipke Mellema.</li>\n</ol>\n<p>Thank you to the reporters for practicing <a href=\"https://make.wordpress.org/core/handbook/testing/reporting-security-vulnerabilities/\">responsible disclosure</a>.</p>\n<p>In addition to the security issues above, WordPress 4.7.3 contains 39 maintenance fixes to the 4.7 release series. For more information, see the <a href=\"https://codex.wordpress.org/Version_4.7.3\">release notes</a> or consult the <a href=\"https://core.trac.wordpress.org/query?status=closed&milestone=4.7.3&group=component&col=id&col=summary&col=component&col=status&col=owner&col=type&col=priority&col=keywords&order=priority\">list of changes</a>.</p>\n<p><a href=\"https://wordpress.org/download/\">Download WordPress 4.7.3</a> or venture over to Dashboard → Updates and simply click “Update Now.” Sites that support automatic background updates are already beginning to update to WordPress 4.7.3.</p>\n<p>Thanks to everyone who contributed to 4.7.3: <a href=\"https://profiles.wordpress.org/aaroncampbell/\">Aaron D. Campbell</a>, <a href=\"https://profiles.wordpress.org/adamsilverstein/\">Adam Silverstein</a>, <a href=\"https://profiles.wordpress.org/xknown/\">Alex Concha</a>, <a href=\"https://profiles.wordpress.org/afercia/\">Andrea Fercia</a>, <a href=\"https://profiles.wordpress.org/azaozz/\">Andrew Ozz</a>, <a href=\"https://profiles.wordpress.org/asalce/\">asalce</a>, <a href=\"https://profiles.wordpress.org/blobfolio/\">blobfolio</a>, <a href=\"https://profiles.wordpress.org/gitlost/\">bonger</a>, <a href=\"https://profiles.wordpress.org/boonebgorges/\">Boone Gorges</a>, <a href=\"https://profiles.wordpress.org/bor0/\">Boro Sitnikovski</a>, <a href=\"https://profiles.wordpress.org/bradyvercher/\">Brady Vercher</a>, <a href=\"https://profiles.wordpress.org/drrobotnik/\">Brandon Lavigne</a>, <a href=\"https://profiles.wordpress.org/bhargavbhandari90/\">Bunty</a>, <a href=\"https://profiles.wordpress.org/ccprog/\">ccprog</a>, <a href=\"https://profiles.wordpress.org/ketuchetan/\">chetansatasiya</a>, <a href=\"https://profiles.wordpress.org/davidakennedy/\">David A. Kennedy</a>, <a href=\"https://profiles.wordpress.org/dlh/\">David Herrera</a>, <a href=\"https://profiles.wordpress.org/dhanendran/\">Dhanendran</a>, <a href=\"https://profiles.wordpress.org/dd32/\">Dion Hulse</a>, <a href=\"https://profiles.wordpress.org/ocean90/\">Dominik Schilling (ocean90)</a>, <a href=\"https://profiles.wordpress.org/drivingralle/\">Drivingralle</a>, <a href=\"https://profiles.wordpress.org/iseulde/\">Ella Van Dorpe</a>, <a href=\"https://profiles.wordpress.org/pento/\">Gary Pendergast</a>, <a href=\"https://profiles.wordpress.org/iandunn/\">Ian Dunn</a>, <a href=\"https://profiles.wordpress.org/ipstenu/\">Ipstenu (Mika Epstein)</a>, <a href=\"https://profiles.wordpress.org/jnylen0/\">James Nylen</a>, <a href=\"https://profiles.wordpress.org/jazbek/\">jazbek</a>, <a href=\"https://profiles.wordpress.org/jeremyfelt/\">Jeremy Felt</a>, <a href=\"https://profiles.wordpress.org/jpry/\">Jeremy Pry</a>, <a href=\"https://profiles.wordpress.org/joehoyle/\">Joe Hoyle</a>, <a href=\"https://profiles.wordpress.org/joemcgill/\">Joe McGill</a>, <a href=\"https://profiles.wordpress.org/johnbillion/\">John Blackbourn</a>, <a href=\"https://profiles.wordpress.org/johnjamesjacoby/\">John James Jacoby</a>, <a href=\"https://profiles.wordpress.org/desrosj/\">Jonathan Desrosiers</a>, <a href=\"https://profiles.wordpress.org/ryelle/\">Kelly Dwan</a>, <a href=\"https://profiles.wordpress.org/markoheijnen/\">Marko Heijnen</a>, <a href=\"https://profiles.wordpress.org/matheusgimenez/\">MatheusGimenez</a>, <a href=\"https://profiles.wordpress.org/mnelson4/\">Mike Nelson</a>, <a href=\"https://profiles.wordpress.org/mikeschroder/\">Mike Schroder</a>, <a href=\"https://profiles.wordpress.org/codegeass/\">Muhammet Arslan</a>, <a href=\"https://profiles.wordpress.org/celloexpressions/\">Nick Halsey</a>, <a href=\"https://profiles.wordpress.org/swissspidy/\">Pascal Birchler</a>, <a href=\"https://profiles.wordpress.org/pbearne/\">Paul Bearne</a>, <a href=\"https://profiles.wordpress.org/pavelevap/\">pavelevap</a>, <a href=\"https://profiles.wordpress.org/peterwilsoncc/\">Peter Wilson</a>, <a href=\"https://profiles.wordpress.org/rachelbaker/\">Rachel Baker</a>, <a href=\"https://profiles.wordpress.org/reldev/\">reldev</a>, <a href=\"https://profiles.wordpress.org/sanchothefat/\">Robert O’Rourke</a>, <a href=\"https://profiles.wordpress.org/welcher/\">Ryan Welcher</a>, <a href=\"https://profiles.wordpress.org/sanketparmar/\">Sanket Parmar</a>, <a href=\"https://profiles.wordpress.org/seanchayes/\">Sean Hayes</a>, <a href=\"https://profiles.wordpress.org/sergeybiryukov/\">Sergey Biryukov</a>, <a href=\"https://profiles.wordpress.org/netweb/\">Stephen Edgar</a>, <a href=\"https://profiles.wordpress.org/triplejumper12/\">triplejumper12</a>, <a href=\"https://profiles.wordpress.org/westonruter/\">Weston Ruter</a>, and <a href=\"https://profiles.wordpress.org/wpfo/\">wpfo</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:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"4696\";s: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:39:\"\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:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"WordPress 4.7.2 Security Release\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:68:\"https://wordpress.org/news/2017/01/wordpress-4-7-2-security-release/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 26 Jan 2017 19:34:02 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:3:{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:\"\";}i:2;a:5:{s:4:\"data\";s:3:\"4.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:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=4676\";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:\"WordPress 4.7.2 is now available. This is a security release for all previous versions and we strongly encourage you to update your sites immediately. WordPress versions 4.7.1 and earlier are affected by three security issues: The user interface for assigning taxonomy terms in Press This is shown to users who do not have permissions to use it. […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:17:\"Aaron D. Campbell\";s: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:2142:\"<p>WordPress 4.7.2 is now available. This is a <strong>security release</strong> for all previous versions and we strongly encourage you to update your sites immediately.</p>\n<p>WordPress versions 4.7.1 and earlier are affected by three security issues:</p>\n<ol>\n<li>The user interface for assigning taxonomy terms in Press This is shown to users who do not have permissions to use it. Reported by David Herrera of <a href=\"https://www.alleyinteractive.com/\">Alley Interactive</a>.</li>\n<li><code>WP_Query</code> is vulnerable to a SQL injection (SQLi) when passing unsafe data. WordPress core is not directly vulnerable to this issue, but we’ve added hardening to prevent plugins and themes from accidentally causing a vulnerability. Reported by <a href=\"https://github.com/mjangda\">Mo Jangda</a> (batmoo).</li>\n<li>A cross-site scripting (XSS) vulnerability was discovered in the posts list table. Reported by <a href=\"https://iandunn.name/\">Ian Dunn</a> of the WordPress Security Team.</li>\n<li>An unauthenticated privilege escalation vulnerability was discovered in a REST API endpoint. Reported by <a href=\"https://twitter.com/MarcS0h\">Marc-Alexandre Montpas</a> of Sucuri Security. *</li>\n</ol>\n<p>Thank you to the reporters of these issues for practicing <a href=\"https://make.wordpress.org/core/handbook/testing/reporting-security-vulnerabilities/\">responsible disclosure</a>.</p>\n<p><a href=\"https://wordpress.org/download/\">Download WordPress 4.7.2</a> or venture over to Dashboard → Updates and simply click “Update Now.” Sites that support automatic background updates are already beginning to update to WordPress 4.7.2.</p>\n<p>Thanks to everyone who contributed to 4.7.2.</p>\n<p>* Update: An additional serious vulnerability was fixed in this release and public disclosure was delayed. For more information on this vulnerability, additional mitigation steps taken, and an explanation for why disclosure was delayed, please read <a href=\"https://make.wordpress.org/core/2017/02/01/disclosure-of-additional-security-fix-in-wordpress-4-7-2/\">Disclosure of Additional Security Fix in WordPress 4.7.2</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"4676\";s: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:39:\"\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:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"WordPress 4.7.1 Security and 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:84:\"https://wordpress.org/news/2017/01/wordpress-4-7-1-security-and-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:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 11 Jan 2017 03:53: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:8:\"category\";a:3:{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:\"\";}i:2;a:5:{s:4:\"data\";s:3:\"4.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:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=4650\";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:375:\"WordPress 4.7 has been downloaded over 10 million times since its release on December 6, 2016 and we are pleased to announce the immediate availability of WordPress 4.7.1. This is a security release for all previous versions and we strongly encourage you to update your sites immediately. WordPress versions 4.7 and earlier are affected by eight security issues: […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}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:\"Aaron D. Campbell\";s: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:6520:\"<p>WordPress 4.7 has been <a href=\"https://wordpress.org/download/counter/\">downloaded over 10 million times</a> since its release on December 6, 2016 and we are pleased to announce the immediate availability of WordPress 4.7.1. This is a <strong>security release</strong> for all previous versions and we strongly encourage you to update your sites immediately.</p>\n<p>WordPress versions 4.7 and earlier are affected by eight security issues:</p>\n<ol>\n<li>Remote code execution (RCE) in PHPMailer – <em>No specific issue appears to affect WordPress</em> or any of the major plugins we investigated but, out of an abundance of caution, we updated PHPMailer in this release. This issue was fixed in PHPMailer thanks to <a href=\"https://legalhackers.com/\">Dawid Golunski</a> and <a href=\"https://twitter.com/Zenexer\">Paul Buonopane</a>.</li>\n<li>The REST API exposed user data for all users who had authored a post of a public post type. WordPress 4.7.1 limits this to only post types which have specified that they should be shown within the REST API. Reported by <a href=\"https://poststatus.com/\">Krogsgard</a> and <a href=\"https://ithemes.com/\">Chris Jean</a>.</li>\n<li>Cross-site scripting (XSS) via the plugin name or version header on <code>update-core.php</code>. Reported by <a href=\"https://dominikschilling.de/\">Dominik Schilling</a> of the WordPress Security Team.</li>\n<li>Cross-site request forgery (CSRF) bypass via uploading a Flash file. Reported by <a href=\"https://twitter.com/Abdulahhusam\">Abdullah Hussam</a>.</li>\n<li>Cross-site scripting (XSS) via theme name fallback. Reported by <a href=\"https://pentest.blog/\">Mehmet Ince</a>.</li>\n<li>Post via email checks <code>mail.example.com</code> if default settings aren’t changed. Reported by John Blackbourn of the WordPress Security Team.</li>\n<li>A cross-site request forgery (CSRF) was discovered in the accessibility mode of widget editing. Reported by <a href=\"https://dk.linkedin.com/in/ronni-skansing-36143b65\">Ronnie Skansing</a>.</li>\n<li>Weak cryptographic security for multisite activation key. Reported by <a href=\"https://itsjack.cc/\">Jack</a>.</li>\n</ol>\n<p>Thank you to the reporters for practicing <a href=\"https://make.wordpress.org/core/handbook/testing/reporting-security-vulnerabilities/\">responsible disclosure</a>.</p>\n<p>In addition to the security issues above, WordPress 4.7.1 fixes 62 bugs from 4.7. For more information, see the <a href=\"https://codex.wordpress.org/Version_4.7.1\">release notes</a> or consult the <a href=\"https://core.trac.wordpress.org/query?milestone=4.7.1\">list of changes</a>.</p>\n<p><a href=\"https://wordpress.org/download/\">Download WordPress 4.7.1</a> or venture over to Dashboard → Updates and simply click “Update Now.” Sites that support automatic background updates are already beginning to update to WordPress 4.7.1.</p>\n<p>Thanks to everyone who contributed to 4.7.1: <a href=\"https://profiles.wordpress.org/aaroncampbell/\">Aaron D. Campbell</a>, <a href=\"https://profiles.wordpress.org/jorbin/\">Aaron Jorbin</a>, <a href=\"https://profiles.wordpress.org/adamsilverstein/\">Adam Silverstein</a>, <a href=\"https://profiles.wordpress.org/afercia/\">Andrea Fercia</a>, <a href=\"https://profiles.wordpress.org/azaozz/\">Andrew Ozz</a>, <a href=\"https://profiles.wordpress.org/gitlost/\">bonger</a>, <a href=\"https://profiles.wordpress.org/boonebgorges/\">Boone Gorges</a>, <a href=\"https://profiles.wordpress.org/chandrapatel/\">Chandra Patel</a>, <a href=\"https://profiles.wordpress.org/christian1012/\">Christian Chung</a>, <a href=\"https://profiles.wordpress.org/dlh/\">David Herrera</a>, <a href=\"https://profiles.wordpress.org/dshanske/\">David Shanske</a>, <a href=\"https://profiles.wordpress.org/dd32/\">Dion Hulse</a>, <a href=\"https://profiles.wordpress.org/ocean90/\">Dominik Schilling (ocean90)</a>, <a href=\"https://profiles.wordpress.org/dreamon11/\">DreamOn11</a>, <a href=\"https://profiles.wordpress.org/chopinbach/\">Edwin Cromley</a>, <a href=\"https://profiles.wordpress.org/iseulde/\">Ella van Dorpe</a>, <a href=\"https://profiles.wordpress.org/pento/\">Gary Pendergast</a>, <a href=\"https://profiles.wordpress.org/hristo-sg/\">Hristo Pandjarov</a>, <a href=\"https://profiles.wordpress.org/jnylen0/\">James Nylen</a>, <a href=\"https://profiles.wordpress.org/jblz/\">Jeff Bowen</a>, <a href=\"https://profiles.wordpress.org/jeremyfelt/\">Jeremy Felt</a>, <a href=\"https://profiles.wordpress.org/jpry/\">Jeremy Pry</a>, <a href=\"https://profiles.wordpress.org/joehoyle/\">Joe Hoyle</a>, <a href=\"https://profiles.wordpress.org/joemcgill/\">Joe McGill</a>, <a href=\"https://profiles.wordpress.org/johnbillion/\">John Blackbourn</a>, <a href=\"https://profiles.wordpress.org/kkoppenhaver/\">Keanan Koppenhaver</a>, <a href=\"https://profiles.wordpress.org/obenland/\">Konstantin Obenland</a>, <a href=\"https://profiles.wordpress.org/laurelfulford/\">laurelfulford</a>, <a href=\"https://profiles.wordpress.org/tyxla/\">Marin Atanasov</a>, <a href=\"https://profiles.wordpress.org/mattyrob/\">mattyrob</a>, <a href=\"https://profiles.wordpress.org/monikarao/\">monikarao</a>, <a href=\"https://profiles.wordpress.org/natereist/\">Nate Reist</a>, <a href=\"https://profiles.wordpress.org/celloexpressions/\">Nick Halsey</a>, <a href=\"https://profiles.wordpress.org/nikschavan/\">Nikhil Chavan</a>, <a href=\"https://profiles.wordpress.org/nullvariable/\">nullvariable</a>, <a href=\"https://profiles.wordpress.org/sirbrillig/\">Payton Swick</a>, <a href=\"https://profiles.wordpress.org/peterwilsoncc/\">Peter Wilson</a>, <a href=\"https://profiles.wordpress.org/presskopp/\">Presskopp</a>, <a href=\"https://profiles.wordpress.org/rachelbaker/\">Rachel Baker</a>, <a href=\"https://profiles.wordpress.org/rmccue/\">Ryan McCue</a>, <a href=\"https://profiles.wordpress.org/sanketparmar/\">Sanket Parmar</a>, <a href=\"https://profiles.wordpress.org/sebastianpisula/\">Sebastian Pisula</a>, <a href=\"https://profiles.wordpress.org/sfpt/\">sfpt</a>, <a href=\"https://profiles.wordpress.org/shazahm1hotmailcom/\">shazahm1</a>, <a href=\"https://profiles.wordpress.org/sstoqnov/\">Stanimir Stoyanov</a>, <a href=\"https://profiles.wordpress.org/stevenkword/\">Steven Word</a>, <a href=\"https://profiles.wordpress.org/szaqal21/\">szaqal21</a>, <a href=\"https://profiles.wordpress.org/timph/\">timph</a>, <a href=\"https://profiles.wordpress.org/voldemortensen/\">voldemortensen</a>, <a href=\"https://profiles.wordpress.org/vortfu/\">vortfu</a>, and <a href=\"https://profiles.wordpress.org/westonruter/\">Weston Ruter</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:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"4650\";s: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:36:\"\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:4:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:27:\"WordPress 4.7 “Vaughan”\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:43:\"https://wordpress.org/news/2016/12/vaughan/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_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, 06 Dec 2016 19:27:41 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s: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:34:\"https://wordpress.org/news/?p=4596\";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:240:\"Version 4.7 of WordPress, named “Vaughan” in honor of legendary jazz vocalist Sarah \"Sassy\" Vaughan, is available for download or update in your WordPress dashboard. New features in 4.7 help you get your site set up the way you want it.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"enclosure\";a:3:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:3:\"url\";s:60:\"https://wordpress.org/news/files/2016/12/starter-content.mp4\";s:6:\"length\";s:7:\"3736020\";s:4:\"type\";s:9:\"video/mp4\";}}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:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:3:\"url\";s:59:\"https://wordpress.org/news/files/2016/12/edit-shortcuts.mp4\";s:6:\"length\";s:7:\"1127483\";s:4:\"type\";s:9:\"video/mp4\";}}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:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:3:\"url\";s:58:\"https://wordpress.org/news/files/2016/12/video-headers.mp4\";s:6:\"length\";s:7:\"1549803\";s:4:\"type\";s:9:\"video/mp4\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}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:\"Helen Hou-Sandi\";s: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:45506:\"<p>Version 4.7 of WordPress, named “Vaughan” in honor of legendary jazz vocalist Sarah “Sassy” Vaughan, is available for download or update in your WordPress dashboard. New features in 4.7 help you get your site set up the way you want it.</p>\n<div id=\"v-AHz0Ca46-1\" class=\"video-player\"><video id=\"v-AHz0Ca46-1-video\" width=\"632\" height=\"354\" poster=\"https://videos.files.wordpress.com/AHz0Ca46/wp4-7-vaughan-r8-mastered_scruberthumbnail_0.jpg\" controls=\"true\" preload=\"metadata\" dir=\"ltr\" lang=\"en\"><source src=\"https://videos.files.wordpress.com/AHz0Ca46/wp4-7-vaughan-r8-mastered_dvd.mp4\" type=\"video/mp4; codecs="avc1.64001E, mp4a.40.2"\" /><source src=\"https://videos.files.wordpress.com/AHz0Ca46/wp4-7-vaughan-r8-mastered_fmt1.ogv\" type=\"video/ogg; codecs="theora, vorbis"\" /><div><img alt=\"Introducing WordPress 4.7\" src=\"https://i1.wp.com/videos.files.wordpress.com/AHz0Ca46/wp4-7-vaughan-r8-mastered_scruberthumbnail_0.jpg?resize=632%2C354&ssl=1\" data-recalc-dims=\"1\" /></div><p>Introducing WordPress 4.7</p></video></div>\n<hr />\n<h2 style=\"text-align:center\">Presenting Twenty Seventeen</h2>\n<p>A brand new default theme brings your site to life with immersive featured images and video headers.</p>\n<p><img class=\"alignnone wp-image-4618 size-large\" src=\"https://i2.wp.com/wordpress.org/news/files/2016/12/4.7-—-Twenty-Seventeen-1.jpg?resize=632%2C356&ssl=1\" srcset=\"https://i2.wp.com/wordpress.org/news/files/2016/12/4.7-—-Twenty-Seventeen-1.jpg?resize=1024%2C576&ssl=1 1024w, https://i2.wp.com/wordpress.org/news/files/2016/12/4.7-—-Twenty-Seventeen-1.jpg?resize=300%2C169&ssl=1 300w, https://i2.wp.com/wordpress.org/news/files/2016/12/4.7-—-Twenty-Seventeen-1.jpg?resize=768%2C432&ssl=1 768w, https://i2.wp.com/wordpress.org/news/files/2016/12/4.7-—-Twenty-Seventeen-1.jpg?w=1600&ssl=1 1600w, https://i2.wp.com/wordpress.org/news/files/2016/12/4.7-—-Twenty-Seventeen-1.jpg?w=1264&ssl=1 1264w\" sizes=\"(max-width: 632px) 100vw, 632px\" data-recalc-dims=\"1\" /></p>\n<p>Twenty Seventeen focuses on business sites and features a customizable front page with multiple sections. Personalize it with widgets, navigation, social menus, a logo, custom colors, and more. Our default theme for 2017 works great in many languages, on any device, and for a wide range of users.</p>\n<hr />\n<h2 style=\"text-align:center\">Your Site, Your Way</h2>\n<p>WordPress 4.7 adds new features to the customizer to help take you through the initial setup of a theme, with non-destructive live previews of all your changes in one uninterrupted workflow.</p>\n<h3>Theme Starter Content</h3>\n<div style=\"width: 632px;\" class=\"wp-video\"><!--[if lt IE 9]><script>document.createElement(\'video\');</script><![endif]-->\n<video class=\"wp-video-shortcode\" id=\"video-4596-1\" width=\"632\" height=\"346\" loop=\"1\" autoplay=\"1\" preload=\"metadata\" controls=\"controls\"><source type=\"video/mp4\" src=\"https://wordpress.org/news/files/2016/12/starter-content.mp4?_=1\" /><a href=\"https://wordpress.org/news/files/2016/12/starter-content.mp4\">https://wordpress.org/news/files/2016/12/starter-content.mp4</a></video></div>\n<p>To help give you a solid base to build from, individual themes can provide starter content that appears when you go to customize your brand new site. This can range from placing a business information widget in the best location to providing a sample menu with social icon links to a static front page complete with beautiful images. Don’t worry – nothing new will appear on the live site until you’re ready to save and publish your initial theme setup.</p>\n<div style=\"float: left;width: 48%;margin: 0\">\n<h3>Edit Shortcuts</h3>\n<div style=\"width: 300px;\" class=\"wp-video\"><video class=\"wp-video-shortcode\" id=\"video-4596-2\" width=\"300\" height=\"173\" poster=\"https://wordpress.org/news/files/2016/12/4.7-—-Edit-Shortcuts.jpg\" loop=\"1\" autoplay=\"1\" preload=\"metadata\" controls=\"controls\"><source type=\"video/mp4\" src=\"https://wordpress.org/news/files/2016/12/edit-shortcuts.mp4?_=2\" /><a href=\"https://wordpress.org/news/files/2016/12/edit-shortcuts.mp4\">https://wordpress.org/news/files/2016/12/edit-shortcuts.mp4</a></video></div>\n<p>Visible icons appear to show you which parts of your site can be customized while live previewing. Click on a shortcut and get straight to editing. Paired with starter content, getting started with customizing your site is faster than ever.</p>\n</div>\n<div style=\"float: right;width: 48%;margin: 0\">\n<h3>Video Headers</h3>\n<div style=\"width: 300px;\" class=\"wp-video\"><video class=\"wp-video-shortcode\" id=\"video-4596-3\" width=\"300\" height=\"173\" poster=\"https://wordpress.org/news/files/2016/12/4.7-—-Header-Video.jpg\" loop=\"1\" autoplay=\"1\" preload=\"metadata\" controls=\"controls\"><source type=\"video/mp4\" src=\"https://wordpress.org/news/files/2016/12/video-headers.mp4?_=3\" /><a href=\"https://wordpress.org/news/files/2016/12/video-headers.mp4\">https://wordpress.org/news/files/2016/12/video-headers.mp4</a></video></div>\n<p>Sometimes a big atmospheric video as a moving header image is just what you need to showcase your wares; go ahead and try it out with Twenty Seventeen. Need some video inspiration? Try searching for sites with video headers available for download and use.</p>\n</div>\n<div style=\"clear: both\"></div>\n<div style=\"float: left;width: 48%;margin: 0\">\n<h3>Smoother Menu Building</h3>\n<p><img class=\"wp-image-4606 size-medium alignright\" src=\"https://i1.wp.com/wordpress.org/news/files/2016/12/4.7-—-Nav.jpg?resize=300%2C158&ssl=1\" srcset=\"https://i1.wp.com/wordpress.org/news/files/2016/12/4.7-—-Nav.jpg?resize=300%2C158&ssl=1 300w, https://i1.wp.com/wordpress.org/news/files/2016/12/4.7-—-Nav.jpg?w=760&ssl=1 760w\" sizes=\"(max-width: 300px) 100vw, 300px\" data-recalc-dims=\"1\" /></p>\n<p>Many menus for sites contain links to the pages of your site, but what happens when you don’t have any pages yet? Now you can add new pages while building menus instead of leaving the customizer and abandoning your changes. Once you’ve published your customizations, you’ll have new pages ready for you to fill with content.</p>\n</div>\n<div style=\"float: right;width: 48%;margin: 0\">\n<h3>Custom CSS</h3>\n<p><img class=\"wp-image-4607 size-medium alignright\" src=\"https://i1.wp.com/wordpress.org/news/files/2016/12/4.7-—-CSS.jpg?resize=300%2C158&ssl=1\" srcset=\"https://i1.wp.com/wordpress.org/news/files/2016/12/4.7-—-CSS.jpg?resize=300%2C158&ssl=1 300w, https://i1.wp.com/wordpress.org/news/files/2016/12/4.7-—-CSS.jpg?w=760&ssl=1 760w\" sizes=\"(max-width: 300px) 100vw, 300px\" data-recalc-dims=\"1\" /></p>\n<p>Sometimes you just need a few visual tweaks to make your site perfect. WordPress 4.7 allows you to add custom CSS and instantly see how your changes affect your site. The live preview allows you to work quickly without page refreshes slowing you down.</p>\n</div>\n<div style=\"clear: both\"></div>\n<hr />\n<div style=\"float: left;width: 48%;margin: 0\">\n<h3>PDF Thumbnail Previews</h3>\n<p><img class=\"wp-image-4609 size-medium alignright\" src=\"https://i1.wp.com/wordpress.org/news/files/2016/12/4.7-—-PDF.jpg?resize=300%2C158&ssl=1\" srcset=\"https://i1.wp.com/wordpress.org/news/files/2016/12/4.7-—-PDF.jpg?resize=300%2C158&ssl=1 300w, https://i1.wp.com/wordpress.org/news/files/2016/12/4.7-—-PDF.jpg?w=760&ssl=1 760w\" sizes=\"(max-width: 300px) 100vw, 300px\" data-recalc-dims=\"1\" /></p>\n<p>Managing your document collection is easier with WordPress 4.7. Uploading PDFs will generate thumbnail images so you can more easily distinguish between all your documents.</p>\n</div>\n<div style=\"float: right;width: 48%;margin: 0\">\n<h3>Dashboard in your language</h3>\n<p><img class=\"wp-image-4608 size-medium alignright\" src=\"https://i2.wp.com/wordpress.org/news/files/2016/12/4.7-—-Language.jpg?resize=300%2C158&ssl=1\" srcset=\"https://i2.wp.com/wordpress.org/news/files/2016/12/4.7-—-Language.jpg?resize=300%2C158&ssl=1 300w, https://i2.wp.com/wordpress.org/news/files/2016/12/4.7-—-Language.jpg?w=760&ssl=1 760w\" sizes=\"(max-width: 300px) 100vw, 300px\" data-recalc-dims=\"1\" /></p>\n<p>Just because your site is in one language doesn’t mean that everybody helping manage it prefers that language for their admin. Add more languages to your site and a user language option will show up in your user’s profiles.</p>\n</div>\n<div style=\"clear: both\"></div>\n<hr />\n<h2 style=\"text-align:center\">Introducing REST API Content Endpoints</h2>\n<p>WordPress 4.7 comes with REST API endpoints for posts, comments, terms, users, meta, and settings.</p>\n<p><img class=\"size-large wp-image-4600 alignnone\" src=\"https://i2.wp.com/wordpress.org/news/files/2016/12/4.7-—-API.jpg?resize=632%2C205&ssl=1\" alt=\"\" srcset=\"https://i2.wp.com/wordpress.org/news/files/2016/12/4.7-—-API.jpg?resize=1024%2C332&ssl=1 1024w, https://i2.wp.com/wordpress.org/news/files/2016/12/4.7-—-API.jpg?resize=300%2C97&ssl=1 300w, https://i2.wp.com/wordpress.org/news/files/2016/12/4.7-—-API.jpg?resize=768%2C249&ssl=1 768w, https://i2.wp.com/wordpress.org/news/files/2016/12/4.7-—-API.jpg?w=1264&ssl=1 1264w, https://i2.wp.com/wordpress.org/news/files/2016/12/4.7-—-API.jpg?w=1896&ssl=1 1896w\" sizes=\"(max-width: 632px) 100vw, 632px\" data-recalc-dims=\"1\" /></p>\n<p>Content endpoints provide machine-readable external access to your WordPress site with a clear, standards-driven interface, paving the way for new and innovative methods of interacting with sites through plugins, themes, apps, and beyond. Ready to get started with development? <a href=\"https://developer.wordpress.org/rest-api/reference/\">Check out the REST API reference.</a></p>\n<hr />\n<h2 style=\"text-align:center\">Even More Developer Happiness <img src=\"https://s.w.org/images/core/emoji/2.2.1/72x72/1f60a.png\" alt=\"?\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /></h2>\n<h3><a href=\"https://make.wordpress.org/core/2016/11/03/post-type-templates-in-4-7/\">Post Type Templates</a></h3>\n<p>By opening up the page template functionality to all post types, theme developers have even more flexibility with the WordPress template hierarchy.</p>\n<h3>More Theme API Goodies</h3>\n<p>WordPress 4.7 includes <a href=\"https://make.wordpress.org/core/2016/09/09/new-functions-hooks-and-behaviour-for-theme-developers-in-wordpress-4-7/\">new functions, hooks, and behavior</a> for theme developers.</p>\n<h3><a href=\"https://make.wordpress.org/core/2016/10/04/custom-bulk-actions/\">Custom Bulk Actions</a></h3>\n<p>List tables, now with more than bulk edit and delete.</p>\n<h3><a href=\"https://make.wordpress.org/core/2016/09/08/wp_hook-next-generation-actions-and-filters/\"><code>WP_Hook</code></a></h3>\n<p>The code that lies beneath actions and filters has been overhauled and modernized, fixing bugs along the way.</p>\n<h3>Settings Registration API</h3>\n<p>register_setting() <a href=\"https://make.wordpress.org/core/2016/10/26/registering-your-settings-in-wordpress-4-7/\">has been enhanced</a> to include type, description, and REST API visibility.</p>\n<h3><a href=\"https://make.wordpress.org/core/2016/10/12/customize-changesets-technical-design-decisions/\">Customize Changesets</a></h3>\n<p>Customize changesets make changes in the customizer persistent, like autosave drafts. They also make exciting new features like starter content possible.</p>\n<hr />\n<h2 style=\"text-align:center\">The Squad</h2>\n<p>This release was led by <a href=\"https://helen.blog\">Helen Hou-Sandí</a>, backed up by <a href=\"https://profiles.wordpress.org/jbpaul17\">Jeff Paul</a> and <a href=\"http://aaron.jorb.in/\">Aaron Jorbin</a> as Release Deputies, and with the help of these fine individuals. There are 482 contributors with props in this release—the most ever—with 205 of them contributing for the first time. Pull up some sassy Sarah Vaughan on your music service of choice, and check out some of their profiles:</p>\n<a href=\"https://profiles.wordpress.org/wraithkenny\">[Inactive]</a>, <a href=\"https://profiles.wordpress.org/aaroncampbell\">Aaron D. Campbell</a>, <a href=\"https://profiles.wordpress.org/abrightclearweb\">abrightclearweb</a>, <a href=\"https://profiles.wordpress.org/ibachal\">Achal Jain</a>, <a href=\"https://profiles.wordpress.org/achbed\">achbed</a>, <a href=\"https://profiles.wordpress.org/acmethemes\">Acme Themes</a>, <a href=\"https://profiles.wordpress.org/adamsilverstein\">Adam Silverstein</a>, <a href=\"https://profiles.wordpress.org/adammacias\">adammacias</a>, <a href=\"https://profiles.wordpress.org/mrahmadawais\">Ahmad Awais</a>, <a href=\"https://profiles.wordpress.org/ahmadawais\">ahmadawais</a>, <a href=\"https://profiles.wordpress.org/airesvsg\">airesvsg</a>, <a href=\"https://profiles.wordpress.org/ajoah\">ajoah</a>, <a href=\"https://profiles.wordpress.org/akibjorklund\">Aki Björklund</a>, <a href=\"https://profiles.wordpress.org/akshayvinchurkar\">akshayvinchurkar</a>, <a href=\"https://profiles.wordpress.org/schlessera\">Alain Schlesser</a>, <a href=\"https://profiles.wordpress.org/xknown\">Alex Concha</a>, <a href=\"https://profiles.wordpress.org/xavortm\">Alex Dimitrov</a>, <a href=\"https://profiles.wordpress.org/ironpaperweight\">Alex Hon</a>, <a href=\"https://profiles.wordpress.org/alex27\">alex27</a>, <a href=\"https://profiles.wordpress.org/allancole\">allancole</a>, <a href=\"https://profiles.wordpress.org/arush\">Amanda Rush</a>, <a href=\"https://profiles.wordpress.org/afercia\">Andrea Fercia</a>, <a href=\"https://profiles.wordpress.org/andrewp-2\">Andreas Panag</a>, <a href=\"https://profiles.wordpress.org/nacin\">Andrew Nacin</a>, <a href=\"https://profiles.wordpress.org/azaozz\">Andrew Ozz</a>, <a href=\"https://profiles.wordpress.org/rarst\">Andrey \"Rarst\" Savchenko</a>, <a href=\"https://profiles.wordpress.org/andizer\">Andy Meerwaldt</a>, <a href=\"https://profiles.wordpress.org/kelderic\">Andy Mercer</a>, <a href=\"https://profiles.wordpress.org/andy\">Andy Skelton</a>, <a href=\"https://profiles.wordpress.org/aniketpant\">Aniket Pant</a>, <a href=\"https://profiles.wordpress.org/anilbasnet\">Anil Basnet</a>, <a href=\"https://profiles.wordpress.org/ankit-k-gupta\">Ankit K Gupta</a>, <a href=\"https://profiles.wordpress.org/ahortin\">Anthony Hortin</a>, <a href=\"https://profiles.wordpress.org/antisilent\">antisilent</a>, <a href=\"https://profiles.wordpress.org/atimmer\">Anton Timmermans</a>, <a href=\"https://profiles.wordpress.org/zuige\">Antti Kuosmanen</a>, <a href=\"https://profiles.wordpress.org/apokalyptik\">apokalyptik</a>, <a href=\"https://profiles.wordpress.org/artoliukkonen\">artoliukkonen</a>, <a href=\"https://profiles.wordpress.org/ideag\">Arunas Liuiza</a>, <a href=\"https://profiles.wordpress.org/attitude\">attitude</a>, <a href=\"https://profiles.wordpress.org/backermann\">backermann</a>, <a href=\"https://profiles.wordpress.org/b-07\">Bappi</a>, <a href=\"https://profiles.wordpress.org/bcole808\">Ben Cole</a>, <a href=\"https://profiles.wordpress.org/kau-boy\">Bernhard Kau</a>, <a href=\"https://profiles.wordpress.org/binarymoon\">binarymoon</a>, <a href=\"https://profiles.wordpress.org/birgire\">Birgir Erlendsson (birgire)</a>, <a href=\"https://profiles.wordpress.org/bjornw\">BjornW</a>, <a href=\"https://profiles.wordpress.org/bobbingwide\">bobbingwide</a>, <a href=\"https://profiles.wordpress.org/boblinthorst\">boblinthorst</a>, <a href=\"https://profiles.wordpress.org/boboudreau\">boboudreau</a>, <a href=\"https://profiles.wordpress.org/gitlost\">bonger</a>, <a href=\"https://profiles.wordpress.org/boonebgorges\">Boone B. Gorges</a>, <a href=\"https://profiles.wordpress.org/bradyvercher\">Brady Vercher</a>, <a href=\"https://profiles.wordpress.org/brainstormforce\">Brainstorm Force</a>, <a href=\"https://profiles.wordpress.org/kraftbj\">Brandon Kraft</a>, <a href=\"https://profiles.wordpress.org/brianhogg\">Brian Hogg</a>, <a href=\"https://profiles.wordpress.org/krogsgard\">Brian Krogsgard</a>, <a href=\"https://profiles.wordpress.org/bronsonquick\">Bronson Quick</a>, <a href=\"https://profiles.wordpress.org/sixhours\">Caroline Moore</a>, <a href=\"https://profiles.wordpress.org/caseypatrickdriscoll\">Casey Driscoll</a>, <a href=\"https://profiles.wordpress.org/caspie\">Caspie</a>, <a href=\"https://profiles.wordpress.org/chandrapatel\">Chandra Patel</a>, <a href=\"https://profiles.wordpress.org/chaos-engine\">Chaos Engine</a>, <a href=\"https://profiles.wordpress.org/cheeserolls\">cheeserolls</a>, <a href=\"https://profiles.wordpress.org/chesio\">chesio</a>, <a href=\"https://profiles.wordpress.org/ketuchetan\">chetansatasiya</a>, <a href=\"https://profiles.wordpress.org/choongsavvii\">choong</a>, <a href=\"https://profiles.wordpress.org/chouby\">Chouby</a>, <a href=\"https://profiles.wordpress.org/chredd\">chredd</a>, <a href=\"https://profiles.wordpress.org/chrisjean\">Chris Jean</a>, <a href=\"https://profiles.wordpress.org/cmmarslender\">Chris Marslender</a>, <a href=\"https://profiles.wordpress.org/chris_d2d\">Chris Smith</a>, <a href=\"https://profiles.wordpress.org/chrisvanpatten\">Chris Van Patten</a>, <a href=\"https://profiles.wordpress.org/chriswiegman\">Chris Wiegman</a>, <a href=\"https://profiles.wordpress.org/chriscct7\">chriscct7</a>, <a href=\"https://profiles.wordpress.org/chriseverson\">chriseverson</a>, <a href=\"https://profiles.wordpress.org/christian1012\">Christian Chung</a>, <a href=\"https://profiles.wordpress.org/cwpnolen\">Christian Nolen</a>, <a href=\"https://profiles.wordpress.org/needle\">Christian Wach</a>, <a href=\"https://profiles.wordpress.org/christophherr\">Christoph Herr</a>, <a href=\"https://profiles.wordpress.org/clarionwpdeveloper\">Clarion Technologies</a>, <a href=\"https://profiles.wordpress.org/claudiosmweb\">Claudio Sanches</a>, <a href=\"https://profiles.wordpress.org/claudiosanches\">Claudio Sanches</a>, <a href=\"https://profiles.wordpress.org/claudiolabarbera\">ClaudioLaBarbera</a>, <a href=\"https://profiles.wordpress.org/codemovementpk\">codemovement.pk</a>, <a href=\"https://profiles.wordpress.org/coderkevin\">coderkevin</a>, <a href=\"https://profiles.wordpress.org/codfish\">codfish</a>, <a href=\"https://profiles.wordpress.org/coreymcollins\">coreymcollins</a>, <a href=\"https://profiles.wordpress.org/curdin\">Curdin Krummenacher</a>, <a href=\"https://profiles.wordpress.org/cgrymala\">Curtiss Grymala</a>, <a href=\"https://profiles.wordpress.org/cdog\">Cătălin Dogaru</a>, <a href=\"https://profiles.wordpress.org/danhgilmore\">danhgilmore</a>, <a href=\"https://profiles.wordpress.org/danielbachhuber\">Daniel Bachhuber </a>, <a href=\"https://profiles.wordpress.org/danielkanchev\">Daniel Kanchev</a>, <a href=\"https://profiles.wordpress.org/danielpietrasik\">Daniel Pietrasik</a>, <a href=\"https://profiles.wordpress.org/mte90\">Daniele Scasciafratte</a>, <a href=\"https://profiles.wordpress.org/dllh\">Daryl L. L. Houston (dllh)</a>, <a href=\"https://profiles.wordpress.org/davepullig\">Dave Pullig</a>, <a href=\"https://profiles.wordpress.org/goto10\">Dave Romsey (goto10)</a>, <a href=\"https://profiles.wordpress.org/davidakennedy\">David A. Kennedy</a>, <a href=\"https://profiles.wordpress.org/turtlepod\">David Chandra Purnama</a>, <a href=\"https://profiles.wordpress.org/dlh\">David Herrera</a>, <a href=\"https://profiles.wordpress.org/dglingren\">David Lingren</a>, <a href=\"https://profiles.wordpress.org/davidmosterd\">David Mosterd</a>, <a href=\"https://profiles.wordpress.org/dshanske\">David Shanske</a>, <a href=\"https://profiles.wordpress.org/davidbhayes\">davidbhayes</a>, <a href=\"https://profiles.wordpress.org/folletto\">Davide \'Folletto\' Casali</a>, <a href=\"https://profiles.wordpress.org/deeptiboddapati\">deeptiboddapati</a>, <a href=\"https://profiles.wordpress.org/delphinus\">delphinus</a>, <a href=\"https://profiles.wordpress.org/deltafactory\">deltafactory</a>, <a href=\"https://profiles.wordpress.org/denis-de-bernardy\">Denis de Bernardy</a>, <a href=\"https://profiles.wordpress.org/valendesigns\">Derek Herman</a>, <a href=\"https://profiles.wordpress.org/pcfreak30\">Derrick Hammer</a>, <a href=\"https://profiles.wordpress.org/derrickkoo\">Derrick Koo</a>, <a href=\"https://profiles.wordpress.org/dimchik\">dimchik</a>, <a href=\"https://profiles.wordpress.org/dineshc\">Dinesh Chouhan</a>, <a href=\"https://profiles.wordpress.org/dd32\">Dion Hulse</a>, <a href=\"https://profiles.wordpress.org/dipeshkakadiya\">dipeshkakadiya</a>, <a href=\"https://profiles.wordpress.org/dmsnell\">dmsnell</a>, <a href=\"https://profiles.wordpress.org/ocean90\">Dominik Schilling</a>, <a href=\"https://profiles.wordpress.org/dotancohen\">Dotan Cohen</a>, <a href=\"https://profiles.wordpress.org/dougwollison\">Doug Wollison</a>, <a href=\"https://profiles.wordpress.org/doughamlin\">doughamlin</a>, <a href=\"https://profiles.wordpress.org/dreamon11\">DreamOn11</a>, <a href=\"https://profiles.wordpress.org/drewapicture\">Drew Jaynes</a>, <a href=\"https://profiles.wordpress.org/duncanjbrown\">duncanjbrown</a>, <a href=\"https://profiles.wordpress.org/dungengronovius\">dungengronovius</a>, <a href=\"https://profiles.wordpress.org/dylanauty\">DylanAuty</a>, <a href=\"https://profiles.wordpress.org/hurtige\">Eddie Hurtig</a>, <a href=\"https://profiles.wordpress.org/oso96_2000\">Eduardo Reveles</a>, <a href=\"https://profiles.wordpress.org/chopinbach\">Edwin Cromley</a>, <a href=\"https://profiles.wordpress.org/electricfeet\">ElectricFeet</a>, <a href=\"https://profiles.wordpress.org/eliorivero\">Elio Rivero</a>, <a href=\"https://profiles.wordpress.org/iseulde\">Ella Iseulde Van Dorpe</a>, <a href=\"https://profiles.wordpress.org/elyobo\">elyobo</a>, <a href=\"https://profiles.wordpress.org/enodekciw\">enodekciw</a>, <a href=\"https://profiles.wordpress.org/enshrined\">enshrined</a>, <a href=\"https://profiles.wordpress.org/ericlewis\">Eric Andrew Lewis</a>, <a href=\"https://profiles.wordpress.org/pushred\">Eric Lanehart</a>, <a href=\"https://profiles.wordpress.org/eherman24\">Evan Herman</a>, <a href=\"https://profiles.wordpress.org/flixos90\">Felix Arntz</a>, <a href=\"https://profiles.wordpress.org/fencer04\">Fencer04</a>, <a href=\"https://profiles.wordpress.org/florianbrinkmann\">Florian Brinkmann</a>, <a href=\"https://profiles.wordpress.org/mista-flo\">Florian TIAR</a>, <a href=\"https://profiles.wordpress.org/foliovision\">FolioVision</a>, <a href=\"https://profiles.wordpress.org/fomenkoandrey\">fomenkoandrey</a>, <a href=\"https://profiles.wordpress.org/frank-klein\">Frank Klein</a>, <a href=\"https://profiles.wordpress.org/fjarrett\">Frankie Jarrett</a>, <a href=\"https://profiles.wordpress.org/frankiet\">frankiet</a>, <a href=\"https://profiles.wordpress.org/akeif\">Fred</a>, <a href=\"https://profiles.wordpress.org/frozzare\">Fredrik Forsmo</a>, <a href=\"https://profiles.wordpress.org/fuscata\">fuscata</a>, <a href=\"https://profiles.wordpress.org/gma992\">Gabriel Maldonado</a>, <a href=\"https://profiles.wordpress.org/voldemortensen\">Garth Mortensen</a>, <a href=\"https://profiles.wordpress.org/garyj\">Gary Jones</a>, <a href=\"https://profiles.wordpress.org/pento\">Gary Pendergast</a>, <a href=\"https://profiles.wordpress.org/geekysoft\">Geeky Software</a>, <a href=\"https://profiles.wordpress.org/georgestephanis\">George Stephanis</a>, <a href=\"https://profiles.wordpress.org/goranseric\">Goran Šerić</a>, <a href=\"https://profiles.wordpress.org/grahamarmfield\">Graham Armfield</a>, <a href=\"https://profiles.wordpress.org/grantderepas\">Grant Derepas</a>, <a href=\"https://profiles.wordpress.org/tivnet\">Gregory Karpinsky (@tivnet)</a>, <a href=\"https://profiles.wordpress.org/hardeepasrani\">Hardeep Asrani</a>, <a href=\"https://profiles.wordpress.org/henrywright\">Henry Wright</a>, <a href=\"https://profiles.wordpress.org/hiddenpearls\">hiddenpearls</a>, <a href=\"https://profiles.wordpress.org/hnle\">Hinaloe</a>, <a href=\"https://profiles.wordpress.org/hristo-sg\">Hristo Pandjarov</a>, <a href=\"https://profiles.wordpress.org/hugobaeta\">Hugo Baeta</a>, <a href=\"https://profiles.wordpress.org/polevaultweb\">Iain Poulson</a>, <a href=\"https://profiles.wordpress.org/iandunn\">Ian Dunn</a>, <a href=\"https://profiles.wordpress.org/ianedington\">Ian Edington</a>, <a href=\"https://profiles.wordpress.org/idealien\">idealien</a>, <a href=\"https://profiles.wordpress.org/igmoweb\">Ignacio Cruz Moreno</a>, <a href=\"https://profiles.wordpress.org/imath\">imath</a>, <a href=\"https://profiles.wordpress.org/imnok\">Imnok</a>, <a href=\"https://profiles.wordpress.org/implenton\">implenton</a>, <a href=\"https://profiles.wordpress.org/ionutst\">Ionut Stanciu</a>, <a href=\"https://profiles.wordpress.org/ipstenu\">Ipstenu (Mika Epstein)</a>, <a href=\"https://profiles.wordpress.org/ivdimova\">ivdimova</a>, <a href=\"https://profiles.wordpress.org/jdgrimes\">J.D. Grimes</a>, <a href=\"https://profiles.wordpress.org/jakept\">Jacob Peattie</a>, <a href=\"https://profiles.wordpress.org/whyisjake\">Jake Spurlock</a>, <a href=\"https://profiles.wordpress.org/jnylen0\">James Nylen</a>, <a href=\"https://profiles.wordpress.org/jamesacero\">jamesacero</a>, <a href=\"https://profiles.wordpress.org/japh\">Japh</a>, <a href=\"https://profiles.wordpress.org/jaredcobb\">Jared Cobb</a>, <a href=\"https://profiles.wordpress.org/jayarjo\">jayarjo</a>, <a href=\"https://profiles.wordpress.org/jdolan\">jdolan</a>, <a href=\"https://profiles.wordpress.org/jdoubleu\">jdoubleu</a>, <a href=\"https://profiles.wordpress.org/jblz\">Jeff Bowen</a>, <a href=\"https://profiles.wordpress.org/cheffheid\">Jeffrey de Wit</a>, <a href=\"https://profiles.wordpress.org/jeremyfelt\">Jeremy Felt</a>, <a href=\"https://profiles.wordpress.org/jpry\">Jeremy Pry</a>, <a href=\"https://profiles.wordpress.org/jimt\">jimt</a>, <a href=\"https://profiles.wordpress.org/jipmoors\">Jip Moors</a>, <a href=\"https://profiles.wordpress.org/jmusal\">jmusal</a>, <a href=\"https://profiles.wordpress.org/joedolson\">Joe Dolson</a>, <a href=\"https://profiles.wordpress.org/joehoyle\">Joe Hoyle</a>, <a href=\"https://profiles.wordpress.org/joemcgill\">Joe McGill</a>, <a href=\"https://profiles.wordpress.org/joelcj91\">Joel James</a>, <a href=\"https://profiles.wordpress.org/johanmynhardt\">johanmynhardt</a>, <a href=\"https://profiles.wordpress.org/johnbillion\">John Blackbourn</a>, <a href=\"https://profiles.wordpress.org/zyphonic\">John Dittmar</a>, <a href=\"https://profiles.wordpress.org/johnjamesjacoby\">John James Jacoby</a>, <a href=\"https://profiles.wordpress.org/johnpbloch\">John P. Bloch</a>, <a href=\"https://profiles.wordpress.org/johnregan3\">John Regan</a>, <a href=\"https://profiles.wordpress.org/johnpgreen\">johnpgreen</a>, <a href=\"https://profiles.wordpress.org/kenshino\">Jon (Kenshino)</a>, <a href=\"https://profiles.wordpress.org/jonathanbardo\">Jonathan Bardo</a>, <a href=\"https://profiles.wordpress.org/jbrinley\">Jonathan Brinley</a>, <a href=\"https://profiles.wordpress.org/daggerhart\">Jonathan Daggerhart</a>, <a href=\"https://profiles.wordpress.org/desrosj\">Jonathan Desrosiers</a>, <a href=\"https://profiles.wordpress.org/spacedmonkey\">Jonny Harris</a>, <a href=\"https://profiles.wordpress.org/jonnyauk\">jonnyauk</a>, <a href=\"https://profiles.wordpress.org/jordesign\">jordesign</a>, <a href=\"https://profiles.wordpress.org/jorritschippers\">JorritSchippers</a>, <a href=\"https://profiles.wordpress.org/joefusco\">Joseph Fusco</a>, <a href=\"https://profiles.wordpress.org/jjeaton\">Josh Eaton</a>, <a href=\"https://profiles.wordpress.org/shelob9\">Josh Pollock</a>, <a href=\"https://profiles.wordpress.org/joshcummingsdesign\">joshcummingsdesign</a>, <a href=\"https://profiles.wordpress.org/joshkadis\">joshkadis</a>, <a href=\"https://profiles.wordpress.org/joyously\">Joy</a>, <a href=\"https://profiles.wordpress.org/jrf\">jrf</a>, <a href=\"https://profiles.wordpress.org/jrgould\">JRGould</a>, <a href=\"https://profiles.wordpress.org/juanfra\">Juanfra Aldasoro</a>, <a href=\"https://profiles.wordpress.org/juhise\">Juhi Saxena</a>, <a href=\"https://profiles.wordpress.org/nukaga\">Junko Nukaga</a>, <a href=\"https://profiles.wordpress.org/justinbusa\">Justin Busa</a>, <a href=\"https://profiles.wordpress.org/justinsainton\">Justin Sainton</a>, <a href=\"https://profiles.wordpress.org/jshreve\">Justin Shreve</a>, <a href=\"https://profiles.wordpress.org/jtsternberg\">Justin Sternberg</a>, <a href=\"https://profiles.wordpress.org/kadamwhite\">K.Adam White</a>, <a href=\"https://profiles.wordpress.org/kacperszurek\">kacperszurek</a>, <a href=\"https://profiles.wordpress.org/trepmal\">Kailey (trepmal)</a>, <a href=\"https://profiles.wordpress.org/kalenjohnson\">KalenJohnson</a>, <a href=\"https://profiles.wordpress.org/codebykat\">Kat Hagan</a>, <a href=\"https://profiles.wordpress.org/kkoppenhaver\">Keanan Koppenhaver</a>, <a href=\"https://profiles.wordpress.org/keesiemeijer\">keesiemeijer</a>, <a href=\"https://profiles.wordpress.org/kellbot\">kellbot</a>, <a href=\"https://profiles.wordpress.org/ryelle\">Kelly Dwan</a>, <a href=\"https://profiles.wordpress.org/khag7\">Kevin Hagerty</a>, <a href=\"https://profiles.wordpress.org/kwight\">Kirk Wight</a>, <a href=\"https://profiles.wordpress.org/kitchin\">kitchin</a>, <a href=\"https://profiles.wordpress.org/ixkaito\">Kite</a>, <a href=\"https://profiles.wordpress.org/kjbenk\">kjbenk</a>, <a href=\"https://profiles.wordpress.org/knutsp\">Knut Sparhell</a>, <a href=\"https://profiles.wordpress.org/koenschipper\">koenschipper</a>, <a href=\"https://profiles.wordpress.org/kokarn\">kokarn</a>, <a href=\"https://profiles.wordpress.org/kovshenin\">Konstantin Kovshenin</a>, <a href=\"https://profiles.wordpress.org/obenland\">Konstantin Obenland</a>, <a href=\"https://profiles.wordpress.org/kouratoras\">Konstantinos Kouratoras</a>, <a href=\"https://profiles.wordpress.org/kuchenundkakao\">kuchenundkakao</a>, <a href=\"https://profiles.wordpress.org/kuldipem\">kuldipem</a>, <a href=\"https://profiles.wordpress.org/laurelfulford\">Laurel Fulford</a>, <a href=\"https://profiles.wordpress.org/leewillis77\">Lee Willis</a>, <a href=\"https://profiles.wordpress.org/leobaiano\">Leo Baiano</a>, <a href=\"https://profiles.wordpress.org/littlebigthing\">LittleBigThings (Csaba)</a>, <a href=\"https://profiles.wordpress.org/lucasstark\">Lucas Stark</a>, <a href=\"https://profiles.wordpress.org/lukecavanagh\">Luke Cavanagh</a>, <a href=\"https://profiles.wordpress.org/lgedeon\">Luke Gedeon</a>, <a href=\"https://profiles.wordpress.org/lukepettway\">lukepettway</a>, <a href=\"https://profiles.wordpress.org/lyubomir_popov\">lyubomir_popov</a>, <a href=\"https://profiles.wordpress.org/mariovalney\">Mário Valney</a>, <a href=\"https://profiles.wordpress.org/mageshp\">mageshp</a>, <a href=\"https://profiles.wordpress.org/mahesh901122\">Mahesh Waghmare</a>, <a href=\"https://profiles.wordpress.org/mangeshp\">Mangesh Parte</a>, <a href=\"https://profiles.wordpress.org/manishsongirkar36\">Manish Songirkar</a>, <a href=\"https://profiles.wordpress.org/mantismamita\">mantismamita</a>, <a href=\"https://profiles.wordpress.org/mbootsman\">Marcel Bootsman</a>, <a href=\"https://profiles.wordpress.org/tyxla\">Marin Atanasov</a>, <a href=\"https://profiles.wordpress.org/clorith\">Marius L. J.</a>, <a href=\"https://profiles.wordpress.org/markjaquith\">Mark Jaquith</a>, <a href=\"https://profiles.wordpress.org/mrwweb\">Mark Root-Wiley</a>, <a href=\"https://profiles.wordpress.org/mapk\">Mark Uraine</a>, <a href=\"https://profiles.wordpress.org/markoheijnen\">Marko Heijnen</a>, <a href=\"https://profiles.wordpress.org/markshep\">markshep</a>, <a href=\"https://profiles.wordpress.org/matrixik\">matrixik</a>, <a href=\"https://profiles.wordpress.org/mjbanks\">Matt Banks</a>, <a href=\"https://profiles.wordpress.org/jaworskimatt\">Matt Jaworski</a>, <a href=\"https://profiles.wordpress.org/mattking5000\">Matt King</a>, <a href=\"https://profiles.wordpress.org/matt\">Matt Mullenweg</a>, <a href=\"https://profiles.wordpress.org/veraxus\">Matt van Andel</a>, <a href=\"https://profiles.wordpress.org/mattwiebe\">Matt Wiebe</a>, <a href=\"https://profiles.wordpress.org/mattheu\">Matthew Haines-Young</a>, <a href=\"https://profiles.wordpress.org/mattyrob\">mattyrob</a>, <a href=\"https://profiles.wordpress.org/maxcutler\">Max Cutler</a>, <a href=\"https://profiles.wordpress.org/maximeculea\">Maxime Culea</a>, <a href=\"https://profiles.wordpress.org/mayukojpn\">Mayo Moriyama</a>, <a href=\"https://profiles.wordpress.org/mbelchev\">mbelchev</a>, <a href=\"https://profiles.wordpress.org/mckernanin\">mckernanin</a>, <a href=\"https://profiles.wordpress.org/melchoyce\">Mel Choyce</a>, <a href=\"https://profiles.wordpress.org/mhowell\">mhowell</a>, <a href=\"https://profiles.wordpress.org/michael-arestad\">Michael Arestad</a>, <a href=\"https://profiles.wordpress.org/michaelarestad\">Michael Arestad</a>, <a href=\"https://profiles.wordpress.org/michalzuber\">michalzuber</a>, <a href=\"https://profiles.wordpress.org/mauteri\">Mike Auteri</a>, <a href=\"https://profiles.wordpress.org/mihai2u\">Mike Crantea</a>, <a href=\"https://profiles.wordpress.org/mdgl\">Mike Glendinning</a>, <a href=\"https://profiles.wordpress.org/mikehansenme\">Mike Hansen</a>, <a href=\"https://profiles.wordpress.org/mikelittle\">Mike Little</a>, <a href=\"https://profiles.wordpress.org/mikeschroder\">Mike Schroder</a>, <a href=\"https://profiles.wordpress.org/mikeviele\">Mike Viele</a>, <a href=\"https://profiles.wordpress.org/dimadin\">Milan Dinić</a>, <a href=\"https://profiles.wordpress.org/modemlooper\">modemlooper</a>, <a href=\"https://profiles.wordpress.org/batmoo\">Mohammad Jangda</a>, <a href=\"https://profiles.wordpress.org/deremohan\">Mohan Dere</a>, <a href=\"https://profiles.wordpress.org/monikarao\">monikarao</a>, <a href=\"https://profiles.wordpress.org/morettigeorgiev\">morettigeorgiev</a>, <a href=\"https://profiles.wordpress.org/morganestes\">Morgan Estes</a>, <a href=\"https://profiles.wordpress.org/mor10\">Morten Rand-Hendriksen</a>, <a href=\"https://profiles.wordpress.org/mt8biz\">moto hachi ( mt8.biz )</a>, <a href=\"https://profiles.wordpress.org/mrbobbybryant\">mrbobbybryant</a>, <a href=\"https://profiles.wordpress.org/nnaimov\">Naim Naimov</a>, <a href=\"https://profiles.wordpress.org/natereist\">Nate Reist</a>, <a href=\"https://profiles.wordpress.org/natewr\">NateWr</a>, <a href=\"https://profiles.wordpress.org/nathanrice\">nathanrice</a>, <a href=\"https://profiles.wordpress.org/nazgul\">Nazgul</a>, <a href=\"https://profiles.wordpress.org/greatislander\">Ned Zimmerman</a>, <a href=\"https://profiles.wordpress.org/krstarica\">net</a>, <a href=\"https://profiles.wordpress.org/celloexpressions\">Nick Halsey </a>, <a href=\"https://profiles.wordpress.org/nikeo\">Nicolas GUILLAUME</a>, <a href=\"https://profiles.wordpress.org/nikschavan\">Nikhil Chavan</a>, <a href=\"https://profiles.wordpress.org/nikv\">Nikhil Vimal</a>, <a href=\"https://profiles.wordpress.org/nbachiyski\">Nikolay Bachiyski</a>, <a href=\"https://profiles.wordpress.org/rabmalin\">Nilambar Sharma</a>, <a href=\"https://profiles.wordpress.org/noplanman\">noplanman</a>, <a href=\"https://profiles.wordpress.org/nullvariable\">nullvariable</a>, <a href=\"https://profiles.wordpress.org/odie2\">odie2</a>, <a href=\"https://profiles.wordpress.org/odysseygate\">odyssey</a>, <a href=\"https://profiles.wordpress.org/hideokamoto\">Okamoto Hidetaka</a>, <a href=\"https://profiles.wordpress.org/orvils\">orvils</a>, <a href=\"https://profiles.wordpress.org/oskosk\">oskosk</a>, <a href=\"https://profiles.wordpress.org/ottok\">Otto Kekäläinen</a>, <a href=\"https://profiles.wordpress.org/ovann86\">ovann86</a>, <a href=\"https://profiles.wordpress.org/swissspidy\">Pascal Birchler</a>, <a href=\"https://profiles.wordpress.org/patilvikasj\">patilvikasj</a>, <a href=\"https://profiles.wordpress.org/pbearne\">Paul Bearne</a>, <a href=\"https://profiles.wordpress.org/paulwilde\">Paul Wilde</a>, <a href=\"https://profiles.wordpress.org/sirbrillig\">Payton Swick</a>, <a href=\"https://profiles.wordpress.org/pdufour\">pdufour</a>, <a href=\"https://profiles.wordpress.org/piewp\">Perdaan</a>, <a href=\"https://profiles.wordpress.org/peterwilsoncc\">Peter Wilson</a>, <a href=\"https://profiles.wordpress.org/phh\">phh</a>, <a href=\"https://profiles.wordpress.org/php\">php</a>, <a href=\"https://profiles.wordpress.org/delawski\">Piotr Delawski</a>, <a href=\"https://profiles.wordpress.org/pippinsplugins\">pippinsplugins</a>, <a href=\"https://profiles.wordpress.org/pjgalbraith\">pjgalbraith</a>, <a href=\"https://profiles.wordpress.org/pkevan\">pkevan</a>, <a href=\"https://profiles.wordpress.org/pratikchaskar\">Pratik</a>, <a href=\"https://profiles.wordpress.org/pressionate\">Pressionate</a>, <a href=\"https://profiles.wordpress.org/presskopp\">Presskopp</a>, <a href=\"https://profiles.wordpress.org/procodewp\">procodewp</a>, <a href=\"https://profiles.wordpress.org/quasel\">quasel</a>, <a href=\"https://profiles.wordpress.org/rachelbaker\">Rachel Baker</a>, <a href=\"https://profiles.wordpress.org/rahulsprajapati\">Rahul Prajapati</a>, <a href=\"https://profiles.wordpress.org/superpoincare\">Ramanan</a>, <a href=\"https://profiles.wordpress.org/ramiy\">Rami Yushuvaev</a>, <a href=\"https://profiles.wordpress.org/ramiabraham\">ramiabraham</a>, <a href=\"https://profiles.wordpress.org/ranh\">ranh</a>, <a href=\"https://profiles.wordpress.org/redsand\">Red Sand Media Group</a>, <a href=\"https://profiles.wordpress.org/youknowriad\">Riad Benguella</a>, <a href=\"https://profiles.wordpress.org/rianrietveld\">Rian Rietveld</a>, <a href=\"https://profiles.wordpress.org/iamfriendly\">Richard Tape</a>, <a href=\"https://profiles.wordpress.org/rpayne7264\">Robert D Payne</a>, <a href=\"https://profiles.wordpress.org/iamjolly\">Robert Jolly</a>, <a href=\"https://profiles.wordpress.org/rnoakes3rd\">Robert Noakes</a>, <a href=\"https://profiles.wordpress.org/d4z_c0nf\">Rocco Aliberti</a>, <a href=\"https://profiles.wordpress.org/rodrigosprimo\">Rodrigo Primo</a>, <a href=\"https://profiles.wordpress.org/rommelxcastro\">Rommel Castro</a>, <a href=\"https://profiles.wordpress.org/fronaldaraujo\">Ronald Araújo</a>, <a href=\"https://profiles.wordpress.org/magicroundabout\">Ross Wintle</a>, <a href=\"https://profiles.wordpress.org/guavaworks\">Roy Sivan</a>, <a href=\"https://profiles.wordpress.org/ryankienstra\">Ryan Kienstra</a>, <a href=\"https://profiles.wordpress.org/rmccue\">Ryan McCue</a>, <a href=\"https://profiles.wordpress.org/ryanplas\">Ryan Plas</a>, <a href=\"https://profiles.wordpress.org/welcher\">Ryan Welcher</a>, <a href=\"https://profiles.wordpress.org/salcode\">Sal Ferrarello</a>, <a href=\"https://profiles.wordpress.org/samikeijonen\">Sami Keijonen</a>, <a href=\"https://profiles.wordpress.org/solarissmoke\">Samir Shah</a>, <a href=\"https://profiles.wordpress.org/samuelsidler\">Samuel Sidler</a>, <a href=\"https://profiles.wordpress.org/sandesh055\">Sandesh</a>, <a href=\"https://profiles.wordpress.org/smyoon315\">Sang-Min Yoon</a>, <a href=\"https://profiles.wordpress.org/sanketparmar\">Sanket Parmar</a>, <a href=\"https://profiles.wordpress.org/pollyplummer\">Sarah Gooding</a>, <a href=\"https://profiles.wordpress.org/sayedwp\">Sayed Taqui</a>, <a href=\"https://profiles.wordpress.org/schrapel\">schrapel</a>, <a href=\"https://profiles.wordpress.org/coffee2code\">Scott Reilly</a>, <a href=\"https://profiles.wordpress.org/wonderboymusic\">Scott Taylor</a>, <a href=\"https://profiles.wordpress.org/scrappyhuborg\">scrappy@hub.org</a>, <a href=\"https://profiles.wordpress.org/scribu\">scribu</a>, <a href=\"https://profiles.wordpress.org/seancjones\">seancjones</a>, <a href=\"https://profiles.wordpress.org/sebastianpisula\">Sebastian Pisula</a>, <a href=\"https://profiles.wordpress.org/sergeybiryukov\">Sergey Biryukov</a>, <a href=\"https://profiles.wordpress.org/sgr33n\">Sergio De Falco</a>, <a href=\"https://profiles.wordpress.org/sfpt\">sfpt</a>, <a href=\"https://profiles.wordpress.org/shayanys\">shayanys</a>, <a href=\"https://profiles.wordpress.org/shazahm1hotmailcom\">shazahm1</a>, <a href=\"https://profiles.wordpress.org/shprink\">shprink</a>, <a href=\"https://profiles.wordpress.org/simonlampen\">simonlampen</a>, <a href=\"https://profiles.wordpress.org/skippy\">skippy</a>, <a href=\"https://profiles.wordpress.org/smerriman\">smerriman</a>, <a href=\"https://profiles.wordpress.org/snacking\">snacking</a>, <a href=\"https://profiles.wordpress.org/soean\">Soeren Wrede</a>, <a href=\"https://profiles.wordpress.org/solal\">solal</a>, <a href=\"https://profiles.wordpress.org/sstoqnov\">Stanimir Stoyanov</a>, <a href=\"https://profiles.wordpress.org/metodiew\">Stanko Metodiev</a>, <a href=\"https://profiles.wordpress.org/sharkomatic\">Steph</a>, <a href=\"https://profiles.wordpress.org/sswells\">Steph Wells</a>, <a href=\"https://profiles.wordpress.org/sillybean\">Stephanie Leary</a>, <a href=\"https://profiles.wordpress.org/netweb\">Stephen Edgar</a>, <a href=\"https://profiles.wordpress.org/stephenharris\">Stephen Harris</a>, <a href=\"https://profiles.wordpress.org/stevenkword\">Steven Word</a>, <a href=\"https://profiles.wordpress.org/stevenlinx\">stevenlinx</a>, <a href=\"https://profiles.wordpress.org/stubgo\">stubgo</a>, <a href=\"https://profiles.wordpress.org/sudar\">Sudar Muthu</a>, <a href=\"https://profiles.wordpress.org/patilswapnilv\">Swapnil V. Patil</a>, <a href=\"https://profiles.wordpress.org/swapnild\">swapnild</a>, <a href=\"https://profiles.wordpress.org/szaqal21\">szaqal21</a>, <a href=\"https://profiles.wordpress.org/takahashi_fumiki\">Takahashi Fumiki</a>, <a href=\"https://profiles.wordpress.org/miyauchi\">Takayuki Miyauchi</a>, <a href=\"https://profiles.wordpress.org/karmatosed\">Tammie Lister</a>, <a href=\"https://profiles.wordpress.org/tapsboy\">tapsboy</a>, <a href=\"https://profiles.wordpress.org/tlovett1\">Taylor Lovett</a>, <a href=\"https://profiles.wordpress.org/team\">team</a>, <a href=\"https://profiles.wordpress.org/tg29359\">tg29359</a>, <a href=\"https://profiles.wordpress.org/tharsheblows\">tharsheblows</a>, <a href=\"https://profiles.wordpress.org/the\">the</a>, <a href=\"https://profiles.wordpress.org/themeshaper\">themeshaper</a>, <a href=\"https://profiles.wordpress.org/thenbrent\">thenbrent</a>, <a href=\"https://profiles.wordpress.org/thomaswm\">thomaswm</a>, <a href=\"https://profiles.wordpress.org/tfrommen\">Thorsten Frommen</a>, <a href=\"https://profiles.wordpress.org/tierra\">tierra</a>, <a href=\"https://profiles.wordpress.org/tnash\">Tim Nash</a>, <a href=\"https://profiles.wordpress.org/timmydcrawford\">Timmy Crawford</a>, <a href=\"https://profiles.wordpress.org/timothyblynjacobs\">Timothy Jacobs</a>, <a href=\"https://profiles.wordpress.org/timph\">timph</a>, <a href=\"https://profiles.wordpress.org/tkama\">Tkama</a>, <a href=\"https://profiles.wordpress.org/tnegri\">tnegri</a>, <a href=\"https://profiles.wordpress.org/tomauger\">Tom Auger</a>, <a href=\"https://profiles.wordpress.org/tjnowell\">Tom J Nowell</a>, <a href=\"https://profiles.wordpress.org/tomdxw\">tomdxw</a>, <a href=\"https://profiles.wordpress.org/toro_unit\">Toro_Unit (Hiroshi Urabe)</a>, <a href=\"https://profiles.wordpress.org/zodiac1978\">Torsten Landsiedel</a>, <a href=\"https://profiles.wordpress.org/transl8or\">transl8or</a>, <a href=\"https://profiles.wordpress.org/traversal\">traversal</a>, <a href=\"https://profiles.wordpress.org/wpsmith\">Travis Smith</a>, <a href=\"https://profiles.wordpress.org/nmt90\">Triet Minh</a>, <a href=\"https://profiles.wordpress.org/trishasalas\">Trisha Salas</a>, <a href=\"https://profiles.wordpress.org/tristangemus\">tristangemus</a>, <a href=\"https://profiles.wordpress.org/truongwp\">Truong Giang</a>, <a href=\"https://profiles.wordpress.org/tsl143\">tsl143</a>, <a href=\"https://profiles.wordpress.org/tywayne\">Ty Carlson</a>, <a href=\"https://profiles.wordpress.org/grapplerulrich\">Ulrich</a>, <a href=\"https://profiles.wordpress.org/utkarshpatel\">Utkarsh</a>, <a href=\"https://profiles.wordpress.org/valeriutihai\">Valeriu Tihai</a>, <a href=\"https://profiles.wordpress.org/vishalkakadiya\">Vishal Kakadiya</a>, <a href=\"https://profiles.wordpress.org/vortfu\">vortfu</a>, <a href=\"https://profiles.wordpress.org/vrundakansara-1\">Vrunda Kansara</a>, <a href=\"https://profiles.wordpress.org/webbgaraget\">webbgaraget</a>, <a href=\"https://profiles.wordpress.org/webmandesign\">WebMan Design | Oliver Juhas</a>, <a href=\"https://profiles.wordpress.org/websupporter\">websupporter</a>, <a href=\"https://profiles.wordpress.org/westonruter\">Weston Ruter</a>, <a href=\"https://profiles.wordpress.org/earnjam\">William Earnhardt</a>, <a href=\"https://profiles.wordpress.org/williampatton\">williampatton</a>, <a href=\"https://profiles.wordpress.org/wolly\">Wolly aka Paolo Valenti</a>, <a href=\"https://profiles.wordpress.org/yale01\">yale01</a>, <a href=\"https://profiles.wordpress.org/yoavf\">Yoav Farhi</a>, <a href=\"https://profiles.wordpress.org/yogasukma\">Yoga Sukma</a>, <a href=\"https://profiles.wordpress.org/oxymoron\">Zach Wills</a>, <a href=\"https://profiles.wordpress.org/tollmanz\">Zack Tollman</a>, <a href=\"https://profiles.wordpress.org/vanillalounge\">Ze Fontainhas</a>, <a href=\"https://profiles.wordpress.org/zhildzik\">zhildzik</a>, and <a href=\"https://profiles.wordpress.org/zsusag\">zsusag</a>.\n<p> <br />\nSpecial thanks go to <a href=\"https://ramiabraham.com/\">Rami Abraham</a> for producing the release video and the many fine haiku we saw in the <a href=\"https://wordpress.org/news/2016/10/wordpress-4-7-beta-1/\">beta</a> and <a href=\"https://wordpress.org/news/2016/11/wordpress-4-7-release-candidate/\">RC</a> announcement posts.</p>\n<p>Finally, thanks to all the community translators who worked on WordPress 4.7. Their efforts bring WordPress 4.7 fully translated to 52 languages at release time with more on the way. Additionally, the WordPress 4.7 release video has been captioned into 44 languages.</p>\n<p>If you want to follow along or help out, check out <a href=\"https://make.wordpress.org/\">Make WordPress</a> and our <a href=\"https://make.wordpress.org/core/\">core development blog</a>. Thanks for choosing WordPress – we hope you enjoy!</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:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"4596\";s: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:33:\"\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:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:17:\"Moving Toward SSL\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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/news/2016/12/moving-toward-ssl/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_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 Dec 2016 17:20: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:8:\"category\";a:1:{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:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=4588\";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:327:\"We’re at a turning point: 2017 is going to be the year that we’re going to see features in WordPress which require hosts to have HTTPS available. Just as JavaScript is a near necessity for smoother user experiences and more modern PHP versions are critical for performance, SSL just makes sense as the next hurdle […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}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:1627:\"<p>We’re at a turning point: 2017 is going to be the year that we’re going to see features in WordPress which require hosts to have HTTPS available. Just as JavaScript is a near necessity for smoother user experiences and more modern PHP versions are critical for performance, SSL just makes sense as the next hurdle our users are going to face.</p>\n<p>SSL basically means the link between your browser and the server is encrypted. SSL used to be difficult to implement, and often expensive or slow. Modern browsers, and the incredible success of projects like <a href=\"https://letsencrypt.org/\">Let’s Encrypt</a> have made getting a certificate to secure your site fast, free, and something we think every host should support by default, especially in a post-Snowden era. Google also weighs <a href=\"https://security.googleblog.com/2014/08/https-as-ranking-signal_6.html\">SSL as a search engine ranking factor</a> and will begin <a href=\"http://motherboard.vice.com/read/google-will-soon-shame-all-websites-that-are-unencrypted-chrome-https\">flagging unencrypted sites in Chrome</a>.</p>\n<p>First, early in 2017, we will only promote hosting partners that provide a SSL certificate by default in their accounts. Later we will begin to assess which features, such as API authentication, would benefit the most from SSL and make them only enabled when SSL is there.</p>\n<p>Separately, I also think the performance improvements in PHP7 are particularly impressive, and major kudos to everyone who worked on that. We will consider whether hosts use PHP7 by default for new accounts next year as well.</p>\n<p> </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:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"4588\";s: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:33:\"\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:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"WordPress 4.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:67:\"https://wordpress.org/news/2016/11/wordpress-4-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:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 24 Nov 2016 04:26: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: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:34:\"https://wordpress.org/news/?p=4579\";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:328:\"The release candidate for WordPress 4.7 is now available. RC means we think we’re done, but with millions of users and thousands of plugins and themes, it’s possible we’ve missed something. We hope to ship WordPress 4.7 on Tuesday, December 6, but we need your help to get there. If you haven’t tested 4.7 yet, […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}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:\"Helen Hou-Sandi\";s: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:4331:\"<p>The release candidate for WordPress 4.7 is now available.</p>\n<p>RC means we think we’re done, but with millions of users and thousands of plugins and themes, it’s possible we’ve missed something. We hope to ship WordPress 4.7 on <strong>Tuesday, December 6</strong>, but we need <em>your</em> help to get there. If you haven’t tested 4.7 yet, now is the time! To test WordPress 4.7, you can use the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin or you can <a href=\"https://wordpress.org/wordpress-4.7-RC1.zip\">download the release candidate here</a> (zip).</p>\n<p>WordPress 4.7 is a jam-packed release, with a number of features focused on getting a theme set up for the first time. Highlights include a <a href=\"http://2017.wordpress.net/\">new default theme</a>, video headers, custom CSS, customizer edit shortcuts, PDF thumbnail previews, user admin languages, REST API content endpoints, post type templates, and more.</p>\n<p>We’ve made <a href=\"https://core.trac.wordpress.org/log/trunk/src?action=stop_on_copy&mode=stop_on_copy&rev=39353&stop_rev=39263&limit=200&verbose=on&sfp_email=&sfph_mail=\">quite a few refinements</a> since releasing Beta 4 a week ago, including usability and accessibility enhancements for video headers, media and page template support in starter content, and polishing of how custom CSS can be migrated to and extended by plugins and themes. The REST API endpoints saw a number of bugfixes and notably now have anonymous comment off by default.</p>\n<p>Not sure where to start with testing? Try setting up a fresh site on a new installation with Twenty Seventeen (hint: head into customizing your site before touching any pages or widgets) and taking notes on what you enjoyed and what got you stuck. For more details about what’s new in version 4.7, check out the <a href=\"https://wordpress.org/news/2016/10/wordpress-4-7-beta-1/\">Beta 1</a>, <a href=\"https://wordpress.org/news/2016/11/wordpress-4-7-beta-2/\">Beta 2</a>, <a href=\"https://wordpress.org/news/2016/11/wordpress-4-7-beta-3/\">Beta 3</a>, and <a href=\"https://wordpress.org/news/2016/11/wordpress-4-7-beta-4/\">Beta 4</a> blog posts.</p>\n<p><strong>Think you’ve found a bug?</strong> Please post to the <a href=\"https://wordpress.org/support/forum/alphabeta/\">Alpha/Beta support forum</a>. If any known issues come up, you’ll be able to <a href=\"https://core.trac.wordpress.org/report/5\">find them here</a>.</p>\n<p><strong>Developers</strong>, please test your plugins and themes against WordPress 4.7 and update your plugin’s <em>Tested up to</em> version in the readme to 4.7. If you find compatibility problems please be sure to post to the support forums so we can figure those out before the final release – we work hard to avoid breaking things. An in-depth field guide to developer-focused changes is coming soon on the <a href=\"https://make.wordpress.org/core/\">core development blog</a>.</p>\n<p>Do you speak a language other than English? <a href=\"https://translate.wordpress.org/projects/wp/dev\">Help us translate WordPress into more than 100 languages!</a> And if you haven’t yet done so, now is a great time to <a href=\"https://wordpressdotorg.polldaddy.com/s/wordpress-2016-survey\">take the Annual WordPress Survey</a> and send it on to your friends.</p>\n<p>Happy testing! And now for another <a href=\"https://profiles.wordpress.org/ramiabraham\">Rami Abraham</a> haiku break.</p>\n<p><em>Select your language</em><br />\n<em>Then let your users choose theirs</em><br />\n<em><code>get_user_locale()</code></em></p>\n<p><em>Theme authors rejoice</em><br />\n<em>Any option may employ</em><br />\n<em>Selective refresh</em></p>\n<p><em>Custom header video</em><br />\n<em>Make sure to <code>add_theme_support</code></em><br />\n<em>Bling above the fold</em></p>\n<p><em>A new template dawns</em><br />\n<em>A hierarchy member</em><br />\n<em>Post-type templates live</em></p>\n<p><em>PDF updates</em><br />\n<em>Pack a parade of polish</em><br />\n<em>Prettier previews</em></p>\n<p><em>Template Post Type: New</em><br />\n<em>Template Post Type: And Useful</em><br />\n<em>Template Post Type: Thing</em></p>\n<p><em>Let lists live lively</em><br />\n<em>Laud <code>wp_list_sort()</code></em><br />\n<em>Less laconic lists</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:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"4579\";s: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:33:\"\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:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:20:\"WordPress 4.7 Beta 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:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://wordpress.org/news/2016/11/wordpress-4-7-beta-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:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 16 Nov 2016 01:51: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: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:34:\"https://wordpress.org/news/?p=4576\";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:\"WordPress 4.7 Beta 4 is now available! This software is still in development, so we don’t recommend you run it on a production site. Consider setting up a test site just to play with the new version. To test WordPress 4.7, try the WordPress Beta Tester plugin (you’ll want “bleeding edge nightlies”). Or you can […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}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:\"Helen Hou-Sandi\";s: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:2019:\"<p>WordPress 4.7 Beta 4 is now available!</p>\n<p><strong>This software is still in development,</strong> so we don’t recommend you run it on a production site. Consider setting up a test site just to play with the new version. To test WordPress 4.7, try the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin (you’ll want “bleeding edge nightlies”). Or you can <a href=\"https://wordpress.org/wordpress-4.7-beta4.zip\">download the beta here</a> (zip).</p>\n<p>For more information on what’s new in 4.7, check out the <a href=\"https://wordpress.org/news/2016/10/wordpress-4-7-beta-1/\">Beta 1,</a> <a href=\"https://wordpress.org/news/2016/11/wordpress-4-7-beta-2/\">Beta 2</a>, and <a href=\"https://wordpress.org/news/2016/11/wordpress-4-7-beta-3/\">Beta 3</a> blog posts, along with <a href=\"https://make.wordpress.org/core/tag/4-7+dev-notes/\">in-depth developer guides on make/core</a>. We’ve made <a href=\"https://core.trac.wordpress.org/log/trunk/src?action=stop_on_copy&mode=stop_on_copy&rev=39262&stop_rev=39201&limit=200&verbose=on&sfp_email=&sfph_mail=\">about 60 changes</a> in the last few days for beta 4, including tweaks to Twenty Seventeen, custom CSS, and the REST API content endpoints.</p>\n<p>Do you speak a language other than English? <a href=\"https://translate.wordpress.org/projects/wp/dev\">Help us translate WordPress into more than 100 languages!</a></p>\n<p><strong>If you think you’ve found a bug</strong>, you can post to the <a href=\"https://wordpress.org/support/forum/alphabeta\">Alpha/Beta area</a> in the support forums. We’d love to hear from you! If you’re comfortable writing a reproducible bug report, <a href=\"https://make.wordpress.org/core/reports/\">file one on WordPress Trac</a>, where you can also find <a href=\"https://core.trac.wordpress.org/tickets/major\">a list of known bugs</a>.</p>\n<p><em>We are almost there<br />\nPlease test your plugins and themes<br />\nRC coming soon<br />\n</em></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"4576\";s: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:33:\"\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:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"WordCamp US 2017-2018 in Nashville\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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/news/2016/11/wordcamp-us-2017-2018-in-nashville/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 15 Nov 2016 23:24: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:8:\"category\";a:1:{i:0;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:34:\"https://wordpress.org/news/?p=4571\";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:330:\"The title says it all. We had some great applications for cities to host WordCamp US after we finish up in Philadelphia this year, and the city chosen for 2017-2018 is Nashville, Tennessee. Based on the other great applications we got I’m also excited about the pipeline of communities that could host it in future […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}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:1022:\"<p><img class=\"aligncenter\" src=\"https://i0.wp.com/wpdotorg.files.wordpress.com/2008/07/27492741871_c6fcebcad3_k-e1479248587522.jpg?resize=632%2C253&ssl=1\" data-recalc-dims=\"1\" /></p>\n<p>The title says it all. We had some great applications for cities to host <a href=\"http://us.wordcamp.org/\">WordCamp US</a> after we finish up in Philadelphia this year, and the city chosen for 2017-2018 is <strong>Nashville, Tennessee</strong>.</p>\n<p>Based on the other great applications we got I’m also excited about the pipeline of communities that could host it in future years as WordCamp US travels across the United States and gives us an opportunity to learn and love a new city, as we have with Philadelphia.</p>\n<p>By the way, if you haven’t yet, now is a great time to <a href=\"https://wordpressdotorg.polldaddy.com/s/wordpress-2016-survey\">take the Annual WordPress Survey</a> and ask your friends to as well.</p>\n<p><a href=\"https://www.flickr.com/photos/143951935@N07/27492741871\">Photo Credit</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:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"4571\";s: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:39:\"\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:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:20:\"WordPress 4.7 Beta 3\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://wordpress.org/news/2016/11/wordpress-4-7-beta-3/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 11 Nov 2016 03:30:52 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:3:{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:\"\";}i:2;a:5:{s:4:\"data\";s:3:\"4.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:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=4566\";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:\"WordPress 4.7 Beta 3 is now available! This software is still in development, so we don’t recommend you run it on a production site. Consider setting up a test site just to play with the new version. To test WordPress 4.7, try the WordPress Beta Tester plugin (you’ll want “bleeding edge nightlies”). Or you can […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}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:\"Helen Hou-Sandi\";s: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:3120:\"<p>WordPress 4.7 Beta 3 is now available!</p>\n<p><strong>This software is still in development,</strong> so we don’t recommend you run it on a production site. Consider setting up a test site just to play with the new version. To test WordPress 4.7, try the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin (you’ll want “bleeding edge nightlies”). Or you can <a href=\"https://wordpress.org/wordpress-4.7-beta3.zip\">download the beta here</a> (zip).</p>\n<p>For more information on what’s new in 4.7, check out the <a href=\"https://wordpress.org/news/2016/10/wordpress-4-7-beta-1/\">Beta 1</a> and <a href=\"https://wordpress.org/news/2016/11/wordpress-4-7-beta-2/\">Beta 2</a> blog posts, along with <a href=\"https://make.wordpress.org/core/tag/4-7+dev-notes/\">in-depth field guides on make/core</a>. Some of the changes in Beta 3 include:</p>\n<ul>\n<li><strong>REST API:</strong> The <code>unfiltered_html</code> capability is now respected and <code>rest_base</code> has been added to response objects of <code>wp/v2/taxonomies</code> and <code>wp/v2/types</code>, while <code>get_allowed_query_vars()</code> and the <code>rest_get_post</code> filter have been removed.</li>\n<li><strong>Roles/Capabilities:</strong> Added meta-caps for comment, term, and user meta, which are currently only used in the REST API.</li>\n<li><strong>I18N:</strong> Added the ability to change user’s locale back to site’s locale. (<a href=\"https://core.trac.wordpress.org/ticket/38632\">#38632</a>)</li>\n<li><strong>Custom CSS:</strong> Renamed the <code>unfiltered_css</code> meta capability to <code>edit_css</code> and added revisions support to the <code>custom_css</code> post type.</li>\n<li><strong>Edit shortcuts:</strong> Theme authors should take a look at <a href=\"https://make.wordpress.org/core/2016/11/10/visible-edit-shortcuts-in-the-customizer-preview/\">the developer guide to the customizer preview’s visible edit shortcuts</a> and update their themes to take advantage of them if not already implementing selective refresh.</li>\n<li><strong>Various bug fixes:</strong> We’ve made <a href=\"https://core.trac.wordpress.org/log/trunk/src?action=stop_on_copy&mode=stop_on_copy&rev=39200&stop_rev=39143&limit=200&verbose=on&sfp_email=&sfph_mail=\">over 50 changes</a> in the last week.</li>\n</ul>\n<p>Do you speak a language other than English? <a href=\"https://translate.wordpress.org/projects/wp/dev\">Help us translate WordPress into more than 100 languages!</a></p>\n<p><strong>If you think you’ve found a bug</strong>, you can post to the <a href=\"https://wordpress.org/support/forum/alphabeta\">Alpha/Beta area</a> in the support forums. We’d love to hear from you! If you’re comfortable writing a reproducible bug report, <a href=\"https://make.wordpress.org/core/reports/\">file one on WordPress Trac</a>, where you can also find <a href=\"https://core.trac.wordpress.org/tickets/major\">a list of known bugs</a>.</p>\n<p><em>Building the future</em><br />\n<em>A global community</em><br />\n<em>Stronger together</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:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"4566\";s: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:39:\"\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:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:20:\"WordPress 4.7 Beta 2\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://wordpress.org/news/2016/11/wordpress-4-7-beta-2/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 04 Nov 2016 17:39:07 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:3:{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:\"\";}i:2;a:5:{s:4:\"data\";s:3:\"4.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:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=4552\";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:\"WordPress 4.7 Beta 2 is now available! This software is still in development, so we don’t recommend you run it on a production site. Consider setting up a test site just to play with the new version. To test WordPress 4.7, try the WordPress Beta Tester plugin (you’ll want “bleeding edge nightlies”). Or you can […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}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:\"Helen Hou-Sandi\";s: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:4240:\"<p>WordPress 4.7 Beta 2 is now available!</p>\n<p><strong>This software is still in development,</strong> so we don’t recommend you run it on a production site. Consider setting up a test site just to play with the new version. To test WordPress 4.7, try the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin (you’ll want “bleeding edge nightlies”). Or you can <a href=\"https://wordpress.org/wordpress-4.7-beta2.zip\">download the beta here</a> (zip).</p>\n<p>Notable changes since WordPress 4.7 Beta 1:</p>\n<ul>\n<li><strong>Twenty Seventeen:</strong> The theme wasn’t being installed on upgrades – sorry about that! Now you should see it if you’re upgrading an existing site. There are also plenty of fixes, especially for the header and small screen views.</li>\n<li><strong>Edit shortcuts:</strong> These are always visible while editing (hide them on bigger screens by collapsing the controls) and should now work properly in Firefox. (<a href=\"https://core.trac.wordpress.org/ticket/27403\">#27403</a> and <a href=\"https://core.trac.wordpress.org/ticket/38532\">#38532</a>)</li>\n<li><strong>REST API endpoints:</strong> There have been a number of changes over the past week; your attention is requested on the following:\n<ul>\n<li>The <code>DELETE</code> response format has changed and may need to be accounted for. (<a href=\"https://core.trac.wordpress.org/ticket/38494\">#38494</a>)</li>\n<li>Enabled querying by multiple post statuses. (<a href=\"https://core.trac.wordpress.org/ticket/38420\">#38420</a>)</li>\n<li>Return an error when JSON decoding fails. (<a href=\"https://core.trac.wordpress.org/ticket/38547\">#38547</a>)</li>\n</ul>\n</li>\n<li><strong>More developer notes</strong>\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2016/10/28/fine-grained-capabilities-for-taxonomy-terms-in-4-7/\">Fine grained capabilities for taxonomy terms</a></li>\n<li><a href=\"https://make.wordpress.org/core/2016/10/29/wp_taxonomy-in-4-7/\"><code>WP_Taxonomy</code></a></li>\n<li><a href=\"https://make.wordpress.org/core/2016/11/02/wp_list_sort-and-wp_list_util-in-4-7/\"><code>wp_list_sort()</code> and <code>WP_List_Util</code></a></li>\n<li><a href=\"https://make.wordpress.org/core/2016/11/03/post-type-templates-in-4-7/\">Post type templates</a></li>\n<li><a href=\"https://make.wordpress.org/core/2016/11/03/new-post-type-labels-in-4-7/\">New post type labels</a></li>\n<li><a href=\"https://make.wordpress.org/core/2016/11/03/attributes-for-resource-hints-in-4-7/\">Attributes for resource hints</a></li>\n</ul>\n</li>\n<li><strong>Various bug fixes:</strong> We’ve made <a href=\"https://core.trac.wordpress.org/log/trunk/src?action=stop_on_copy&mode=stop_on_copy&rev=39142&stop_rev=38995&limit=200&verbose=on&sfp_email=&sfph_mail=\">almost 150 changes</a> in the last week.</li>\n</ul>\n<p>For more of what’s new in version 4.7, <a href=\"https://wordpress.org/news/2016/10/wordpress-4-7-beta-1/\">check out the Beta 1 blog post</a>.</p>\n<p>If you want a more in-depth view of what major changes have made it into 4.7, <a href=\"https://make.wordpress.org/core/tag/4-7/\">check out posts tagged with 4.7 on the main development blog</a>, or look at a <a href=\"https://core.trac.wordpress.org/query?status=closed&resolution=fixed&milestone=4.7&group=component&order=priority\">list of everything</a> that’s changed. There will be more developer notes to come, so keep an eye out for those as well.</p>\n<p>Do you speak a language other than English? <a href=\"https://translate.wordpress.org/projects/wp/dev\">Help us translate WordPress into more than 100 languages!</a></p>\n<p><strong>If you think you’ve found a bug</strong>, you can post to the <a href=\"https://wordpress.org/support/forum/alphabeta\">Alpha/Beta area</a> in the support forums. We’d love to hear from you! If you’re comfortable writing a reproducible bug report, <a href=\"https://make.wordpress.org/core/reports/\">file one on WordPress Trac</a>, where you can also find <a href=\"https://core.trac.wordpress.org/tickets/major\">a list of known bugs</a>.</p>\n<p>Happy testing!</p>\n<p><em>Ya es la hora</em><br />\n<em> Time for another beta</em><br />\n请您帮下忙!</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:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"4552\";s: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:32:\"https://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:30:\"com-wordpress:feed-additions:1\";a:1:{s:4:\"site\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"14607090\";s:7:\"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\";O:42:\"Requests_Utility_CaseInsensitiveDictionary\":1:{s:7:\"\0*\0data\";a:9:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Mon, 10 Apr 2017 13:25:28 GMT\";s:12:\"content-type\";s:34:\"application/rss+xml; charset=UTF-8\";s:25:\"strict-transport-security\";s:11:\"max-age=360\";s:6:\"x-olaf\";s:3:\"⛄\";s:13:\"last-modified\";s:29:\"Fri, 10 Mar 2017 18:14:55 GMT\";s:4:\"link\";s:63:\"<https://wordpress.org/news/wp-json/>; rel=\"https://api.w.org/\"\";s:15:\"x-frame-options\";s:10:\"SAMEORIGIN\";s:4:\"x-nc\";s:11:\"HIT lax 250\";}}s:5:\"build\";s:14:\"20170410132321\";}','no'),(159,'_transient_timeout_feed_mod_ac0b00fe65abe10e0c5b588f3ed8c7ca','1491841528','no'),(160,'_transient_feed_mod_ac0b00fe65abe10e0c5b588f3ed8c7ca','1491830728','no'),(161,'_transient_timeout_feed_99b272eaef9eaa265f30d77863073f26','1491841529','no'),(162,'_transient_feed_99b272eaef9eaa265f30d77863073f26','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:3:{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:11:\"\n \n \n \n \n \n\";s:7:\"attribs\";a: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:38:\"HeroPress: HeroPress Geography: Oceana\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://heropress.com/?p=1689\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:49:\"https://heropress.com/heropress-geography-oceana/\";s: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:3160:\"<img width=\"960\" height=\"444\" src=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2017/04/heropress_oceana-1024x474.jpg\" class=\"attachment-large size-large wp-post-image\" alt=\"Google map of Oceana with pins in Australia, New Zealand, and The Philippines\" /><p>This week’s HeroPress geography is from Oceana. I’d love more people from that area, so if you know anyone who would be good for HeroPress, please encourage them to fill out the <a href=\"https://heropress.com/contribute/\">contributor form</a>.</p>\n<blockquote class=\"wp-embedded-content\"><p><a href=\"https://heropress.com/essays/it-all-begins-with-a-thought/\">It All Begins With a Thought</a></p></blockquote>\n<p></p>\n<blockquote class=\"wp-embedded-content\"><p><a href=\"https://heropress.com/essays/when-life-throws-you-a-curveball-wordpress-is-there/\">When Life Throws You a Curveball, WordPress is There</a></p></blockquote>\n<p></p>\n<blockquote class=\"wp-embedded-content\"><p><a href=\"https://heropress.com/essays/wordpress-set-free/\">WordPress Set Me Free</a></p></blockquote>\n<p></p>\n<blockquote class=\"wp-embedded-content\"><p><a href=\"https://heropress.com/essays/love-your-work/\">Love your work</a></p></blockquote>\n<p></p>\n<div class=\"rtsocial-container rtsocial-container-align-right rtsocial-horizontal\"><div class=\"rtsocial-twitter-horizontal\"><div class=\"rtsocial-twitter-horizontal-button\"><a title=\"Tweet: HeroPress Geography: Oceana\" class=\"rtsocial-twitter-button\" href=\"https://twitter.com/share?text=HeroPress%20Geography%3A%20Oceana&via=heropress&url=https%3A%2F%2Fheropress.com%2Fheropress-geography-oceana%2F\" rel=\"nofollow\" target=\"_blank\"></a></div></div><div class=\"rtsocial-fb-horizontal fb-light\"><div class=\"rtsocial-fb-horizontal-button\"><a title=\"Like: HeroPress Geography: Oceana\" class=\"rtsocial-fb-button rtsocial-fb-like-light\" href=\"https://www.facebook.com/sharer.php?u=https%3A%2F%2Fheropress.com%2Fheropress-geography-oceana%2F\" rel=\"nofollow\" target=\"_blank\"></a></div></div><div class=\"rtsocial-linkedin-horizontal\"><div class=\"rtsocial-linkedin-horizontal-button\"><a class=\"rtsocial-linkedin-button\" href=\"https://www.linkedin.com/shareArticle?mini=true&url=https%3A%2F%2Fheropress.com%2Fheropress-geography-oceana%2F&title=HeroPress+Geography%3A+Oceana\" rel=\"nofollow\" target=\"_blank\" title=\"Share: HeroPress Geography: Oceana\"></a></div></div><div class=\"rtsocial-pinterest-horizontal\"><div class=\"rtsocial-pinterest-horizontal-button\"><a class=\"rtsocial-pinterest-button\" href=\"https://pinterest.com/pin/create/button/?url=https://heropress.com/heropress-geography-oceana/&media=https://heropress.com/wp-content/uploads/2017/04/heropress_oceana-150x150.jpg&description=HeroPress Geography: Oceana\" rel=\"nofollow\" target=\"_blank\" title=\"Pin: HeroPress Geography: Oceana\"></a></div></div><a rel=\"nofollow\" class=\"perma-link\" href=\"https://heropress.com/heropress-geography-oceana/\" title=\"HeroPress Geography: Oceana\"></a></div><p>The post <a rel=\"nofollow\" href=\"https://heropress.com/heropress-geography-oceana/\">HeroPress Geography: Oceana</a> appeared first on <a rel=\"nofollow\" href=\"https://heropress.com\">HeroPress</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sun, 09 Apr 2017 02:47:36 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}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:103:\"WPTavern: Yoast SEO’s PHP Upgrade Nag is Producing a Significant Increase in Sites Upgrading to PHP 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:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=68581\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:111:\"https://wptavern.com/yoast-seos-php-upgrade-nag-is-producing-a-significant-increase-in-sites-upgrading-to-php-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:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2889:\"<p>Less than three weeks ago <a href=\"https://wptavern.com/yoast-seo-4-5-urges-users-to-upgrade-to-php-7\" target=\"_blank\">Yoast SEO version 4.5 was released</a> with an ugly, non-dismissible notice for sites on PHP 5.2. The notice encourages the user to upgrade to PHP 7, explaining that it is faster and more secure. It includes links for getting started and example emails that users can send to their hosting companies.</p>\n<p><a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2017/04/whip-php-notice.png?ssl=1\"><img /></a></p>\n<p>In the 18 days since shipping the plugin with the upgrade nag, Yoast SEO creator Joost de Valk has seen a dramatic uptick in sites moving from old, unsupported versions to PHP 7. From December to March, PHP 5.2 usage among Yoast SEO users decreased from 1.9% to 1.7%, a modest drop over three months. After adding the nag on March 21, PHP 5.2 usage dropped from 1.7% to 1.3% for those using Yoast SEO version 4.5. PHP 5.3 usage is also steadily decreasing since de Valk began the campaign to educate his plugin’s users about the benefits of upgrading.</p>\n<p><a href=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2017/04/yoast-stats.png?ssl=1\"><img /></a></p>\n<p>According to de Valk’s stats, 22.2% of Yoast SEO users are on version 4.5 of the plugin. He estimates 1,443,000 sites on 4.5 out of 6.5 million users.</p>\n<p>“Assuming 0.5% updated their PHP versions, that’s 7K sites,” de Valk said. “And another 14-20k that updated from 5.3 to something more decent.”</p>\n<p>Many developers are hesitant to implement a nag in their plugins, but Yoast SEO is one of the largest plugins to prove that an ugly, non-dismissible notice can be an effective tool for getting users to take action.</p>\n<p>“One of the reasons I’m sharing is because I’d love others to join us,” de Valk said. “People don’t like nags, but we’ve had some truly great feedback from users who went from PHP 5.2 to 7 and were astonished by how fast their sites suddenly were. Negative feedback has been absolutely minimal.”</p>\n<p>The Yoast SEO team created a project called WHIP that makes it easy for plugin and theme developers to add notices that will nudge their users to upgrade their software versions, starting with PHP. The project also includes a filter for linking to the WordPress.org recommended hosting page, as an alternative to the Yoast.com hosting overview.</p>\n<p>De Valk said his team intends to push the notice to users on other PHP versions in the near future, starting with 5.3.</p>\n<p>“We’ve got a release coming next week (4.6), in which we won’t do it yet,” de Valk said. “If all goes well and continues to be mellow, 5.3 will be ‘nagged’ as of 4.7, probably three weeks later.”</p>\n<div id=\"epoch-width-sniffer\"></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 08 Apr 2017 03: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:\"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:84:\"WPTavern: Recommended Reading: Resilient Web Design, a Free e-Book from Jeremy Keith\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=68253\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:93:\"https://wptavern.com/recommended-reading-resilient-web-design-a-free-e-book-from-jeremy-keith\";s: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:5538:\"<a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2016/08/typewriter.jpg?ssl=1\"><img /></a>photo credit: <a href=\"https://stocksnap.io/photo/4OURRGDU7Z\">Sergey Zolkin</a>\n<p>UK-based web developer <a href=\"https://adactio.com/\" target=\"_blank\">Jeremy Keith</a> published <a href=\"https://resilientwebdesign.com/\" target=\"_blank\">Resilient Web Design</a> as a free e-book in December 2016. Over the past few months, industry leaders have been raving about the book, so I decided to take an evening to find out what all the fuss is about. Keith has been blogging for more than 15 years at <a href=\"http://adactio.com\" target=\"_blank\">adactio.com</a>. He is an active contributor to the web standards movement, a popular conference speaker, and the author of <em>DOM Scripting</em>, <em>Bulletproof Ajax</em>, and <em>HTML5 For Web Designers</em>.</p>\n<p>After just a few pages in, I could see why so many have read Resilient Web Design all in one go. It lives up to all the excellent reviews. The book is divided into seven chapters and can be read in a couple hours. It is not a book on best practices, as one might expect, but rather a historical perspective on web standards and the evolution of responsive design. It provides a foundation for understanding technological progress and is essentially a primer on how breakthrough ideas happen and how resilient ideas endure.</p>\n<p>“The World Wide Web has been around for long enough now that we can begin to evaluate the twists and turns of its evolution,” Keith said. “I wrote this book to highlight some of the approaches to web design that have proven to be resilient. I didn’t do this purely out of historical interest (although I am fascinated by the already rich history of our young industry). In learning from the past, I believe we can better prepare for the future.”</p>\n<p>Keith’s brief history of web design recaptures some of the magic we felt at the dawn of the web. He said much of the subject matter has been included in his conference talks over the past couple of years but the book ended up taking some twists and turns that surprised him.</p>\n<p>“You won’t find any code in here to help you build better websites,” Keith said. “But you will find ideas and approaches. Ideas are more resilient than code. I’ve tried to combine the most resilient ideas from the history of web design into an approach for building the websites of the future.”</p>\n<p>Keith shares some thought-provoking ideas on design in chapter 3 that are particularly applicable to WordPress’ <a href=\"https://wptavern.com/state-of-the-word-2016-mullenweg-pushes-calypso-as-future-of-wordpress-interface-proposes-major-changes-to-release-cycle\" target=\"_blank\">new structure for releases where design and user testing will lead the way</a> in building a new editing and customization experience. The closest thing you can have to predicting the future is an understanding of what has endured in the past and an idea for building on it. Keith’s book examines principles that have proven to be resilient over time.</p>\n<p>“Design adds clarity,” Keith said. “Using colour, typography, hierarchy, contrast, and all the other tools at their disposal, designers can take an unordered jumble of information and turn it into something that’s easy to use and pleasurable to behold. Like life itself, design can win a small victory against the entropy of the universe, creating pockets of order from the raw materials of chaos.”</p>\n<p>Keith said he wrote Resilient Web Design for people who create websites in any capacity. He released it under a <a href=\"https://creativecommons.org/licenses/by-sa/4.0/\" target=\"_blank\">Creative Commons attribution share-alike license</a> and there are many ways to access the content:</p>\n<ul>\n<li>On the web at <a href=\"https://resilientwebdesign.com/\" target=\"_blank\">resilientwebdesign.com</a></li>\n<li><a href=\"https://resilientwebdesign.s3.amazonaws.com/downloads/ResilientWebDesign-portrait.pdf\" target=\"_blank\">PDF in portrait format</a> (7MB)</li>\n<li><a href=\"http://resilientwebdesign.s3.amazonaws.com/downloads/ResilientWebDesign-landscape.pdf\" target=\"_blank\">PDF in landscape format</a> (19.9MB)</li>\n<li><a href=\"https://resilientwebdesign.s3.amazonaws.com/downloads/ResilientWebDesign.epub\" target=\"_blank\">EPUB version</a> (4.4MB)</li>\n<li><a href=\"https://resilientwebdesign.s3.amazonaws.com/downloads/ResilientWebDesign.mobi\" target=\"_blank\">MOBI version</a> (10.4MB)</li>\n<li>Audio on <a href=\"https://itunes.apple.com/podcast/resilient-web-design/id1183700985\" target=\"_blank\">iTunes</a>,<br />\n <a href=\"http://www.stitcher.com/podcast/resilient-web-design\" target=\"_blank\">Stitcher</a>, or <a href=\"https://play.pocketcasts.com/web/podcasts/share?id=2432cc30-a380-0134-9123-3327a14bcdba\" target=\"_blank\">Pocket Casts</a></li>\n<li>Download <a href=\"http://resilientwebdesign.s3.amazonaws.com/downloads/ResilientWebDesign.mp3\" target=\"_blank\">one mp3 file</a> of the whole book</li>\n</ul>\n<p>Despite his experience of nearly two decades in the industry, Keith is still acutely aware of all the unknowns that cannot be predicted. We don’t know what the web will become, but Keith’s perspective on its history brings a few resilient ideas to light. If you have some spare time over the weekend and want to be inspired about the future of the web, I highly recommend reading Resilient Web Design.</p>\n<div id=\"epoch-width-sniffer\"></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 Apr 2017 20:29: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: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:72:\"WPTavern: New Userscript Restores Tabs to the WordPress Plugin 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:29:\"https://wptavern.com/?p=68488\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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:\"https://wptavern.com/new-userscript-restores-tabs-to-the-wordpress-plugin-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:2745:\"<p>One of the most common complaints about the WordPress plugin directory’s redesign is the use of read more links instead of tabs. Plugin authors and users <a href=\"https://wptavern.com/wordpress-plugin-directory-redesign-why-so-many-people-feel-their-feedback-was-ignored#comment-217002\">contend</a> that tabs make information more accessible. The redesign requires visitors to scroll a one-page design and click on various read more links to discover more information.</p>\n<p>There is a <a href=\"https://meta.trac.wordpress.org/ticket/2278\">ticket on Trac</a> that suggests a jump section be included so that visitors can jump to specific sections of a plugin’s readme file. It’s unclear if this feature will be added but if you’d like to restore the tabbed layout to the plugin directory, check out <a href=\"https://openuserjs.org/scripts/nextgenthemes/Wordpress.org_Plugin_Directory_Tabs\">this Userscript</a> created by Nicolas Jonas.</p>\n<p>According <a href=\"https://openuserjs.org/about/Userscript-Beginners-HOWTO\">to OpenUserJS</a>, userscripts are open source add-ons for browsers that can modify webpages as they’re loaded. Using userscripts is roughly the same as installing WordPress plugins to restore lost functionality. Jonas’ userscript <a href=\"https://openuserjs.org/scripts/nextgenthemes/Wordpress.org_Plugin_Directory_Tabs/source\">source code</a> contains a mix of CSS and jQuery to generate the tabs.</p>\n<p>To install the <a href=\"https://openuserjs.org/scripts/nextgenthemes/Wordpress.org_Plugin_Directory_Tabs/issues\">WordPress.org Plugin Directory Tabs</a> userscript in Firefox, you’ll first need to install the free <a href=\"https://openuserjs.org/about/Greasemonkey-for-Firefox\">Greasemonkey extension</a>. Greasemonkey is a Mozilla Add-on for Firefox that allows userscripts to run in the browser.</p>\n<img />Greasemonkey Firefox Add-on\n<p>Jonas developed the userscript in about 30 minutes and used CSS from a CSS button generator. The tabs have a blue background with white text on top. Jonas is open to suggestions and encourages those who want better designed buttons to <a href=\"https://openuserjs.org/scripts/nextgenthemes/Wordpress.org_Plugin_Directory_Tabs/issues\">create an issue</a> with the proper CSS code on his OpenUserJS page.</p>\n<img />Tabbed Layout\n<p>I tested the userscript on Firefox 52.0.2 and didn’t encounter any issues. After navigating the plugin directory with tabs, I can easily say I prefer it versus clicking read more links. I rarely have to scroll and the information I want to see is displayed front and center. Simply put, browsing a plugin’s page with tabs is a better user experience.</p>\n<div id=\"epoch-width-sniffer\"></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 Apr 2017 02:25:02 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:4;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:90:\"WPTavern: WordPress Plugin Directory Restores Stats and Links to Older Versions of 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:29:\"https://wptavern.com/?p=68486\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:101:\"https://wptavern.com/wordpress-plugin-directory-restores-stats-and-links-to-older-versions-of-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:1899:\"<p>Since the <a href=\"https://wptavern.com/wordpress-relaunches-plugin-directory-with-new-design-and-improved-search-algorithm\">launch</a> of the newly redesigned WordPress plugin directory, the Meta team has been hard at work fixing bugs and updating the design. The directory has undergone a series of visual updates that address some of the <a href=\"https://wptavern.com/wordpress-plugin-directory-redesign-why-so-many-people-feel-their-feedback-was-ignored\">concerns</a> readers expressed last week.</p>\n<p>Plugin stats are available to the public again and can be viewed by clicking the Advanced View link. <br />\n<img />Advanced View Link</p>\n<p><img />Stats For PluginsLinks to previous versions can also be found on the stats page along with a disclaimer that says older versions may not be stable or secure.</p>\n<p><img />Drop-down Menu to Download Older VersionsThe installation instructions have also returned as a drop-down section.</p>\n<p><img />Installation InstructionsThese changes bring the directory closer to the usefulness its predecessor provided. Some of the issues that remain include, <a href=\"https://meta.trac.wordpress.org/ticket/2278\">read more links</a>, distorted plugin banner images, and <a href=\"https://meta.trac.wordpress.org/ticket/1828\">screenshots</a> linking to a page instead of opening in a lightbox. Although some plugin banners are distorted, the Meta team does not recommend developers update them as the new dimensions have not been finalized.</p>\n<p>The plugin directory is a work in progress. To report a bug or enhancement, you can <a href=\"https://meta.trac.wordpress.org/newticket?component=Plugin+Directory\">create a ticket on Trac. </a>If you have any questions concerning the directory or would like to get more involved, visit <a href=\"https://wordpress.slack.com/messages/meta/\">#meta</a> on Slack.</p>\n<div id=\"epoch-width-sniffer\"></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 Apr 2017 02:18: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:5;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"WPTavern: WPWeekly Episode 270 – Going Camp Press With Mendel Kurland\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"https://wptavern.com?p=68536&preview=true&preview_id=68536\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:78:\"https://wptavern.com/wpweekly-episode-270-going-camp-press-with-mendel-kurland\";s: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:5914:\"<p>In this episode, <a href=\"http://marcuscouch.com/\">Marcus Couch</a> and I are joined by <a href=\"https://ifyouwillit.com/\">Mendel Kurland</a>, GoDaddy Evangelist, to discuss the news making headlines. We cover what’s new in WooCommerce 3.0, why WordCamp Netherlands may not happen this year, and the WordPress plugin directory redesign.</p>\n<p>Marcus announced that he is the new head WordPress editor for <a href=\"http://smashingmagazine.com/\">Smashing Mag</a>. Last but not least, Kurland provides insight into <a href=\"https://camp.press/\">Camp Press</a>, a social experiment focused on disconnecting from technology to strengthen one-on-one relationships.</p>\n<h2>Stories Discussed:</h2>\n<p><a href=\"https://wptavern.com/woocommerce-3-0-brings-major-improvements-to-product-gallery-introduces-crud-classes-and-a-new-cli\">WooCommerce 3.0 Brings Major Improvements to Product Gallery, Introduces CRUD Classes and a New CLI</a><br />\n<a href=\"https://wptavern.com/wordpress-community-support-shuts-down-wordcamp-netherlands-in-favor-of-city-based-wordcamps\">WordPress Community Support Shuts Down WordCamp Netherlands in Favor of City-Based WordCamps</a><br />\n<a href=\"https://wptavern.com/wordpress-plugin-directory-redesign-why-so-many-people-feel-their-feedback-was-ignored\">WordPress Plugin Directory Redesign: Why So Many People Feel Their Feedback Was Ignored</a><br />\n<a href=\"https://wptavern.com/disconnect-from-technology-at-camp-press-september-23-24-in-seminole-ok\">Disconnect From Technology at Camp Press September 23-24 in Seminole, OK</a></p>\n<h2>What’s On WordPress.tv</h2>\n<p><a href=\"https://blog.wordpress.tv/2017/04/03/wordpress-community-interview-with-bridget-willard/\">WordPress Community Interview with Bridget Willard</a> – <a href=\"https://profiles.wordpress.org/bridgetwillard\">Bridget Willard</a> is the Marketing Manager at<a href=\"https://wordimpress.com\"> WordImpress</a>. She started her career with office work, earned a teaching degree, but returned to the office where she carved out a career in social media and marketing.</p>\n<p>She is the co-host of<a href=\"https://www.wpwatercooler.com/wpblab/\"> WPblab</a> and co-organizer of<a href=\"http://womenwhowp.org\"> Women Who WP</a> meetup. In this interview, Willard talks about her role as a member of the WordPress Marketing Team the<a href=\"https://make.wordpress.org/marketing/2016/07/06/the-four-horsemen-of-wordpress-org-marketing/\"> Four Horseman of WordPress Marketing</a>.</p>\n<p><a href=\"http://wordpress.tv/2017/04/03/adam-silver-and-kyle-maurer-wpbattles-entrepreneurship-vs-employment/\">Adam Silver and Kyle Maurer: WPBattles – Entrepreneurship vs. Employment WordCamp Northeast Ohio 2016</a> – In this session, the duo takes a detailed look at working for yourself or for someone else.</p>\n<p>They share the pros and cons for each and break down the fundamental differences between starting a WordPress company and working for one. If you ever find yourself questioning whether you’re really doing what’s best for you, this session will help you understand which path to choose.</p>\n<p><a href=\"http://wordpress.tv/2017/04/04/manuela-van-prooijen-long-live-the-customer-how-to-get-more-out-of-your-wordpress-business/\">Manuela van Prooijen: Long live the customer – how to get more out of your WordPress business</a> – From WordCamp Geneva (Switzerland) – Many companies do not use the full potential of their existing customers. Too often those clients are considered a piece of furniture. The clients are there, but often overlooked and not being paid attention to.</p>\n<p>The constant struggle to acquire new customers however is 5 to 10 times more expensive than selling services and goods to existing clients. Manuela shares ten strategies to create a crowd of happy and loyal customers and as a result: more return (recurring) business.</p>\n<h2>Plugins Picked By Marcus:</h2>\n<p><a href=\"https://wordpress.org/plugins/wc-documents-tab/\">WC Documents Tab</a> adds a new tab into the product detail page with downloadable documents. You can use this for documentation, product brochures or anything else that you would need to provide a document for.</p>\n<p><a href=\"https://wordpress.org/plugins/rock-the-slackbot/\">Rock The Slackbot</a> can help you manage your websites, and stay on top of changes, by sending notifications (following numerous WordPress events) to your Slackbot who will pass them along to a channel or direct message in your Slack account. This triggers when posts are published, unpublished, deleted or updated. It’s also triggered for user roles, activity, theme, plugin modifications, and more.</p>\n<p><a href=\"https://wordpress.org/plugins/pdf-forms-for-contact-form-7/\">PDF Forms Filler for Contact Form 7</a> gives WordPress Admin Panel users the ability to add PDF attachments to email messages of Contact Form 7. If the PDF attachment has a PDF form, the plugin allows users to add fields onto the CF7 form that are mapped to fields in the PDF form. When a website visitor submits the CF7 form, the form in the PDF file is filled with CF7 form information and the resulting PDF file is attached to the CF7 email message.</p>\n<h2>WPWeekly Meta:</h2>\n<p><strong>Next Episode:</strong> Wednesday, April 12th 3:00 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=\"https://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 #270:</strong><br />\n</p>\n<div id=\"epoch-width-sniffer\"></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 Apr 2017 18:21: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:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:6;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:83:\"WPTavern: Blog Helper: An Alexa Skill for Managing a WordPress Blog with Your Voice\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=68008\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:93:\"https://wptavern.com/blog-helper-an-alexa-skill-for-managing-a-wordpress-blog-with-your-voice\";s: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:3293:\"<a href=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2017/03/alexa.jpg?ssl=1\"><img /></a>photo credit: MjZ Photography <a href=\"http://www.flickr.com/photos/51590961@N04/16639251005\">IMG_8538-Edit.jpg</a> – <a href=\"https://creativecommons.org/licenses/by-nc-nd/2.0/\">(license)</a>\n<p>“Alexa, tell Blog Helper to create a new post called ‘Granny’s banana bread recipe.\'” Imagine logging a new draft on your WordPress site using only your voice while working in the kitchen. That’s what <a href=\"https://www.amazon.com/dp/product/B01N1O4M4G\" target=\"_blank\">Blog Helper</a>, an Alexa skill, enables for WordPress.com and self-hosted Jetpack users. It is available for free in Amazon’s catalog of Alexa skills.</p>\n<p>Automattic developer <a href=\"https://www.chrisfinke.com/\" target=\"_blank\">Christopher Finke</a> created the Alexa integration for WordPress after purchasing an Echo and some Dots for his house and experimenting with different ways for making them useful. He programmed Blog Helper to allow users to check WordPress.com notifications, moderate pending comments, and save blog post ideas as drafts.</p>\n<p><a href=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2017/03/Screen-Shot-2017-03-27-at-10.17.11-PM-e1490671125329.png?ssl=1\"><img /></a></p>\n<p>Blog Helper relies on WordPress.com’s OAuth support, which Finke said self-hosted sites can get via Jetpack. After asking Alexa to enable Blog Helper, you will need to link your WordPress.com account and select the blog you want to access. Once you’re hooked up, you can say, “Alexa, ask Blog Helper for my notifications.” Alexa will read off new notifications one-by-one and mark them as read.</p>\n<p>Blog Helper also enables comment moderation with your voice, so you can take care of that while folding the laundry or doing dishes. If you ask, “Do I have any comments to moderate?”, Alexa will read them to you and you can approve, delete, or mark them as spam. Check out the quick demo video Finke created to hear it in action:</p>\n<div class=\"embed-wrap\"></div>\n<p>Scientific studies have proven that <a href=\"http://lifehacker.com/why-great-ideas-always-come-in-the-shower-and-how-to-h-1617303016\" target=\"_blank\">some of your best ideas come to you when your mind is relaxed and your body is distracted by routine tasks</a>. If you have an Alexa-enabled device, Blog Helper is a fun way to help you capture your creative ideas in WordPress before they get away. It allows you to create new drafts without having to pick up your phone or sit down to your desktop.</p>\n<p>Although Finke works for Automattic, he wrote Blog Helper in his free time and it doesn’t have any official affiliation with WordPress.com. His said his roadmap is to try and make as much of the core WordPress experience accessible by voice as possible. Blog Helper can be a big time-saver for those who want to manage their blogs without being tied down to a screen, but the voice interface can also be useful for those who have vision impairments. Blog Helper is GPL-licensed and <a href=\"https://github.com/cfinke/Blog-Helper\" target=\"_blank\">available on GitHub</a> if you want to contribute or follow for updates.</p>\n<div id=\"epoch-width-sniffer\"></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 Apr 2017 02:04:01 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s: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:85:\"WPTavern: Jetpack 4.8 Introduces Settings Redesign, Adds Global WordPress.com Toolbar\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=68255\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:95:\"https://wptavern.com/jetpack-4-8-introduces-settings-redesign-adds-global-wordpress-com-toolbar\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3338:\"<p><a href=\"https://jetpack.com/2017/04/04/settings-overhaul-redesign/\" target=\"_blank\">Jetpack 4.8</a> was released this week with a settings redesign that is a continuation of the <a href=\"https://wptavern.com/jetpack-4-3-released-features-new-react-js-powered-admin-interface\" target=\"_blank\">React.js-powered admin interface introduced last September</a>. The new settings screen has been completely rearranged under a more simplified menu.</p>\n<p>“We went through every setting on WordPress.com and Jetpack to make sure it was necessary to keep around, and to find a good, logical home for each one,” Jetpack designer Michael Arestad said. “We ended up mirroring the WordPress core settings groups for now — they are familiar to people, and things fit well there.”</p>\n<p>Arestad said he was inspired by the way mobile devices handle settings, especially how they rarely include a “Save” button unless it’s an option that isn’t a simple toggle. The Jetpack design team applied this to the settings screens so that most of them are now autosaved.</p>\n<p><a href=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2017/04/autosave.gif?ssl=1\"><img /></a></p>\n<p>This release also introduces the ability to enable the WordPress.com Toolbar, a new feature that replaces the wp-admin toolbar with the My Sites menu, a link to the WordPress.com reader, a Write button that takes you to WordPress.com, and a notifications dropdown. It is essentially the same toolbar you see when working with a WordPress.com site.</p>\n<p><a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2017/04/jetpack-wp-com-toolbar.png?ssl=1\"><img /></a></p>\n<p>Jetpack 4.8 includes several dozen improvements and bug fixes. A few of the highlights include the following:</p>\n<ul>\n<li>New MailChimp Subscribe Popup widget</li>\n<li>Sitemaps are faster and now support sites with a very large number of posts (1,000+)</li>\n<li>Contact Form now has a plain-text alternative and better avoids spam filters</li>\n<li>Debug form includes extra information to better prioritize support requests</li>\n<li>Photon can now be used within the dashboard and supports bbPress topics and replies</li>\n</ul>\n<h3>Jetpack 4.8.1 Fixes PHP Incompatibility Issue</h3>\n<p>Many users reported fatal errors and blank pages after updating to Jetpack 4.8. A temporary fix was to load an older version of Jetpack. In a convenient turn of events, the WordPress plugin directory restored the ability to download older versions of plugins today (found under the new Advanced View link).</p>\n<p>Jetpack 4.8 included PHP code that is incompatible with PHP versions lower than 5.4, which caused the fatal errors. The Sitemaps module also included an incompatibility with the WP Rocket plugin. Additionally, the release included many new translation files, which caused updates not to complete on sites that have limited resources for processing large files on updates.</p>\n<p><a href=\"https://jetpack.com/2017/04/05/jetpack-4-8-1-php-version-incompatibility-fix/\" target=\"_blank\">Jetpack 4.8.1</a> was released a few hours ago to correct these issues. The Jetpack development team recommends manually installing the plugin via FTP/SFTP if your site crashed and you are unable to update through the admin.</p>\n<div id=\"epoch-width-sniffer\"></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 Apr 2017 21:07: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:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:8;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"HeroPress: WordPress Flexibility\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://heropress.com/?post_type=heropress-essays&p=1680\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:51:\"https://heropress.com/essays/wordpress-flexibility/\";s: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:5214:\"<img width=\"960\" height=\"480\" src=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2017/04/040517-min-1024x512.jpg\" class=\"attachment-large size-large wp-post-image\" alt=\"Pull Quote: WordPress gives me all the flexibility I need to be constantly learning and improving.\" /><p>When I was asked to describe myself and my interests for a bio at work I floundered. I felt the same way when sitting down to write this. Where do I even begin? For my bio, I decided instead of narrowing it down I’d go with “jill-of-all-trades.” I really like to do everything and if I don’t like something I only know that because I tried it first. I’ve been this way since I can remember. At school I got good grades in everything (except Chemistry), I liked everything (except Chemistry) and I wanted to do everything. Figuring out my career path was therefore a long process (I actually started out pre-med in college, but you know… Chemistry).</p>\n<p>After graduating college I started working in marketing and absolutely hated it – I did the same exact thing almost every day. It was miserable. I missed the old web content job I had during college, where I did SEO, product photography, email campaigns, basically anything website related. Right now I can’t believe there was a point in my life that I missed HTML emails, but I did. I missed the flexibility, doing something different every day, and most importantly, I missed the creative problem solving it entailed.</p>\n<blockquote><p>So I quit my stupid marketing job and attended a coding bootcamp.</p></blockquote>\n<p>It was a Front End Development track where I honed my HTML and CSS skills, learned JavaScript in a few forms (vanilla, jQuery, AngularJS), and learned other tools of the trade (git, task runners, bash, etc.). When I landed my first web development job I was excited – the company did all sorts of different projects: web apps, web sites, intranets, you name it. I knew that there was enough variety to keep me constantly moving and constantly learning. My first project was something I was familiar with, an AngularJS application, but my second project was something I’d never seen before – a WordPress site. Knowing zero PHP, I dove right in.</p>\n<p>I can’t say that I loved WordPress right off the bat. When I was still mostly developing pretty simple sites with it, I was afraid it was going to become monotonous. Today I know how wrong I was. Although the majority of the projects I work with involve WordPress, I can do something new and different with every site.</p>\n<p>Just this year I’ve worked on a WordPress theme with a headless React front end, a WordPress site with part of the admin area written in React, and a WordPress plugin with a front end built in Angular 2. Even traditional WordPress themes can be exciting. Each client has their own needs and with the flexibility of templates, post types, and widgets every site I build is a new challenge.</p>\n<blockquote><p>I’ve come a long way since drowning in monotony early in my career.</p></blockquote>\n<p>At home you might find me doing yard work, refinishing furniture, knitting, wood burning, or attempting to play the banjo. But at work, using WordPress gives me all the flexibility I need to be constantly learning and improving.</p>\n<div class=\"rtsocial-container rtsocial-container-align-right rtsocial-horizontal\"><div class=\"rtsocial-twitter-horizontal\"><div class=\"rtsocial-twitter-horizontal-button\"><a title=\"Tweet: WordPress Flexibility\" class=\"rtsocial-twitter-button\" href=\"https://twitter.com/share?text=WordPress%20Flexibility&via=heropress&url=https%3A%2F%2Fheropress.com%2Fessays%2Fwordpress-flexibility%2F\" rel=\"nofollow\" target=\"_blank\"></a></div></div><div class=\"rtsocial-fb-horizontal fb-light\"><div class=\"rtsocial-fb-horizontal-button\"><a title=\"Like: WordPress Flexibility\" class=\"rtsocial-fb-button rtsocial-fb-like-light\" href=\"https://www.facebook.com/sharer.php?u=https%3A%2F%2Fheropress.com%2Fessays%2Fwordpress-flexibility%2F\" rel=\"nofollow\" target=\"_blank\"></a></div></div><div class=\"rtsocial-linkedin-horizontal\"><div class=\"rtsocial-linkedin-horizontal-button\"><a class=\"rtsocial-linkedin-button\" href=\"https://www.linkedin.com/shareArticle?mini=true&url=https%3A%2F%2Fheropress.com%2Fessays%2Fwordpress-flexibility%2F&title=WordPress+Flexibility\" rel=\"nofollow\" target=\"_blank\" title=\"Share: WordPress Flexibility\"></a></div></div><div class=\"rtsocial-pinterest-horizontal\"><div class=\"rtsocial-pinterest-horizontal-button\"><a class=\"rtsocial-pinterest-button\" href=\"https://pinterest.com/pin/create/button/?url=https://heropress.com/essays/wordpress-flexibility/&media=https://heropress.com/wp-content/uploads/2017/04/040517-min-150x150.jpg&description=WordPress Flexibility\" rel=\"nofollow\" target=\"_blank\" title=\"Pin: WordPress Flexibility\"></a></div></div><a rel=\"nofollow\" class=\"perma-link\" href=\"https://heropress.com/essays/wordpress-flexibility/\" title=\"WordPress Flexibility\"></a></div><p>The post <a rel=\"nofollow\" href=\"https://heropress.com/essays/wordpress-flexibility/\">WordPress Flexibility</a> appeared first on <a rel=\"nofollow\" href=\"https://heropress.com\">HeroPress</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 Apr 2017 12: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:14:\"Natalie Miller\";s: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:109:\"WPTavern: WooCommerce 3.0 Brings Major Improvements to Product Gallery, Introduces CRUD Classes and a New CLI\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=68232\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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:\"https://wptavern.com/woocommerce-3-0-brings-major-improvements-to-product-gallery-introduces-crud-classes-and-a-new-cli\";s: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:4330:\"<p><a href=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2017/04/woocommerce-3-0.png?ssl=1\"><img /></a></p>\n<p><a href=\"https://woocommerce.com/2017/04/woocommerce-3-0-release/\" target=\"_blank\">WooCommerce 3.0</a> “Bionic Butterfly” was released today with significant improvements to the product gallery and developer tools. This version, which was previously going to be <a href=\"https://woocommerce.wordpress.com/2017/03/13/important-update-regarding-the-upcoming-woocommerce-release-2-7-will-be-3-0-0/\" target=\"_blank\">2.7</a>, is the first major release since the plugin <a href=\"https://wptavern.com/woocommerce-3-0-0-scheduled-for-release-april-4th\" target=\"_blank\">switched to semantic versioning</a>. It was released after more than three months in beta and an extended RC testing period that allowed extension and theme developers enough time to get up to speed.</p>\n<p>The new product gallery has subtle improvements for galleries with multiple images. Clicking on a thumbnail updates the image without forcing it to open in a popup window. Galleries in 3.0 are also more intuitive on mobile with support for touch gestures, including swipe to scroll through the gallery, pinch to zoom, and swipe up to close the current image. These and several bug fixes and improvements deliver a much smoother experience of viewing product images.</p>\n<div class=\"embed-wrap\"></div>\n<p>This release includes significant performance improvements, thanks to the switch from post meta to taxonomies for features like product visibility, featured products, and out of stock products. WooCommerce contributors have also reduced the number of queries required to display related products and upsells.</p>\n<p><a href=\"https://woocommerce.wordpress.com/2016/10/27/the-new-crud-classes-in-woocommerce-2-7/\" target=\"_blank\">Version 3.0 introduces CRUD</a> (Create, Read, Update, Delete) classes for developers, making it easier to write and retrieve data from the database with less code.</p>\n<p>“High order volume is one of the best problems a store can have, but it can really slow down your site’s performance,” WooCommerce lead developer Mike Jolley said. “That’s why our team’s main focus this year is performance and scalability.” Scalability improvements are planned for the next several releases.</p>\n<p>Version 3.0 also <a href=\"https://woocommerce.wordpress.com/2016/12/12/2-7-a-new-cli-for-woocommerce/\" target=\"_blank\">introduces a new command line interface (CLI)</a> powered by the REST API. The previous CLI didn’t fully support the same functionality and was powered by its own separate code. The new CLI forks <a href=\"https://github.com/wp-cli/restful\" target=\"_blank\">Restful</a> to make REST API endpoints available as WP-CLI commands. It reduces the amount of code that WooCommerce has to maintain and ensures that the commands are always current as the project’s REST API is updated in the future.</p>\n<p>The <a href=\"https://wordpress.org/support/plugin/woocommerce/\" target=\"_blank\">WooCommerce support forums on WordPress.org</a> have been lighting up with requests after 3.0 was released. One particular issue pinned to the top of the forums is <a href=\"https://wordpress.org/support/topic/3-0-error-option-ajax-is-not-allowed-for-select2/\" target=\"_blank\">an incompatibility with Select2 v3</a>. The latest version of WooCommerce uses Select2 V4 and this may cause an issue with AJAX search inputs in plugins and themes loading an older version of Select2.</p>\n<p>Another issue users are having after upgrade is <a href=\"https://wordpress.org/support/topic/3-0-frontend-pages-refreshing/\" target=\"_blank\">frontend pages reloading endlessly</a>, which WooCommerce developers have identified as a problem with the geolocation setting. They are working on a fix for 3.0.1.</p>\n<p>Many users who are reporting issues after updating to 3.0 have discovered incompatibilities with themes or plugins. This release received more than 3,000 commits from 115 contributors. With this many changes packed into a major release, WooCommerce developers recommend testing on a staging site and making a backup before updating the plugin. This will give you the opportunity to make sure your theme and plugins are compatible with the update.</p>\n<div id=\"epoch-width-sniffer\"></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 Apr 2017 01:56:15 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"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:82:\"WPTavern: Disconnect From Technology at Camp Press September 23-24 in Seminole, OK\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=68248\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:92:\"https://wptavern.com/disconnect-from-technology-at-camp-press-september-23-24-in-seminole-ok\";s: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:4477:\"<p>Readers may remember in 2015, <a href=\"https://wptavern.com/camppress-a-2-3-day-social-experience-for-geeks-and-creatives\">we highlighted</a> Camp Press, a conference devoted to disconnecting from technology to focus on strengthening bonds that encourage collaboration within the community.</p>\n<p>Mendel Kurland, who has spent the better part of two years organizing the event, <a href=\"https://camp.press/\">announced</a> that Camp Press will take place September 23-24, at Fry Lake in Seminole, OK. The event is a collaboration between Kurland, Aaron D. Campbell, and Christen Campbell</p>\n<p>Accommodations include tents, cabins, and RV hookups. Camp Press will take place on Camp Campbell, a plot of land owned by Campbell and his wife. Available activities include hiking, Geo-Caching, swimming, canoeing, fishing, sports, and more.</p>\n<img />A Lake Where Attendees Can Chill Out\n<p><span id=\"cch_fae57e021243ee\" class=\"_mh6 _wsc\"><span class=\"_3oh- _58nk\">“Many of us spend a lot of time online, but it’s the time we spend offline and disconnected one-on-one that’s often most important,” Kurland said. </span></span></p>\n<p><span id=\"cch_fae57e021243ee\" class=\"_mh6 _wsc\"><span class=\"_3oh- _58nk\">“Those one-on-one connections create lifelong bonds that lead to building better businesses, partnerships, and strategy. Camp Press is about fortifying those in-person bonds.”</span></span></p>\n<p>Kurland chose to host the event at Camp Campbell based on its size, number of available activities, and its remoteness.</p>\n<p>“It’s centrally located in the US, and remote enough to achieve the goal of disconnection. Additionally, Aaron’s family is pretty great too as it’s their land.”</p>\n<p><span id=\"cch_fae57e021243ee\" class=\"_mh6 _wsc\"><span class=\"_3oh- _58nk\">The nearest major airport is an hour away in Oklahoma City so renting a vehicle is recommended. Alternatively, attendees can coordinate rides through the #camp-press-rides channel on the Geek Adventures Slack team. Invitations to join the Slack group are emailed after <a href=\"https://camp.press/register/\">registering for the event</a>.</span></span></p>\n<p><span id=\"cch_fae57e021243ee\" class=\"_mh6 _wsc\"><span class=\"_3oh- _58nk\">There is internet connectivity on the property, but it’s for emergencies and can only be used by staff. There are places in and around the Camp Press area for those who need to check-in with family.</span></span></p>\n<p>General admission tickets to attend the event are $100 each but if you purchase them before April 14th, they’re $85. There are also tickets available for reserved cabins for 10 people, a shared cabin, and RV hookups.</p>\n<p><img /></p>\n<p>General admission tickets include the following amenities:</p>\n<ul>\n<li>Free tent camping</li>\n<li>Other camping options with add-on (if available)</li>\n<li>Full Camp Press event + service day (starting Thursday)</li>\n<li>Event t-shirt</li>\n<li>Cooking utensils</li>\n<li>Fire starting supplies</li>\n<li>Field and water activities</li>\n<li>Arts and crafts supplies</li>\n<li>Daily ice service</li>\n</ul>\n<p>Kurland wants the event to maintain a brand-free feeling and is asking for sponsors to adhere to a set of <a href=\"https://camp.press/sponsors/\">atypical guidelines</a>. The guidelines state that sponsors may not wear branded gear and that advertising must be hand-made on-site.</p>\n<p>“We realize these guidelines aren’t for everyone, but we’re looking for creativity rather than corporate branding for these sponsorships,” Kurland said.</p>\n<p>Sponsorship levels range from $1,500 to $3,000 and offer various perks.</p>\n<p>Those interested in attending are encouraged to review the event’s <a href=\"https://camp.press/code-of-conduct/\">Code of Conduct,</a> which is unique compared to an event held in a physical building. For example, it has a guideline for leaving no trace:</p>\n<blockquote><p>Our community respects the environment. We are committed to leaving no physical trace of our activities wherever we gather. We clean up after ourselves and endeavor, whenever possible, to leave such places in a better state than when we found them.</p></blockquote>\n<p>You don’t have to be involved with WordPress to attend the event. For more information and to purchase tickets, visit the <a href=\"https://camp.press/\">official Camp Press site</a>.</p>\n<div id=\"epoch-width-sniffer\"></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 04 Apr 2017 20:32: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: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:56:\"WPTavern: WP-CLI Names Alain Schlesser New Co-Maintainer\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=68228\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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:\"https://wptavern.com/wp-cli-names-alain-schlesser-new-co-maintainer\";s: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:5640:\"<p><a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2016/05/wp-cli.png?ssl=1\"><img /></a></p>\n<p>WP-CLI has hired <a href=\"https://www.alainschlesser.com/\" target=\"_blank\">Alain Schlesser</a> as a <a href=\"https://make.wordpress.org/cli/2017/04/03/new-co-maintainer-alain-thanks-2017-sponsors/\" target=\"_blank\">new part-time co-maintainer</a>. The position was made possible by sponsorships from Automattic, Bluehost, DreamHost, SiteGround, WP Engine, and more than 60 individuals who contributed to the project.</p>\n<p>“With Alain joining the project as a co-maintainer, the WP-CLI project is restoring capacity to meet current demands (e.g. support), and ramping up on new feature development and evangelization,” WP-CLI co-maintainer Daniel Bachhuber said. “We’ve already improved the build time by 33%!”</p>\n<p>Schlesser first became involved in the project after Bachhuber contacted him last March for input on solving some outstanding issues with Composer, which WP-CLI uses for external package management. Schlesser said he couldn’t afford the time to actively work on the issue at that time but tried to offer meaningful input for the right angle for solving the remaining issues.</p>\n<p>“This short collaboration changed my perception about WP-CLI and helped me realize that there is a push to use modern and modular code to improve the tool and prepare it for future requirements,” Schlesser said. “So, already at that point, I wanted to contribute to the project. However, I was already involved in a different part of WordPress contribution (which is now the <a href=\"https://make.wordpress.org/core/2017/02/22/nextgen-bootstrap/\" target=\"_blank\">Nextgen Bootstrap/Load Feature Project</a>), and I had to prioritize my volunteer work and keep a few hours left for paid client work as well.”</p>\n<p>Schlesser said taking on the role of a maintainer became an option once it was a paid position made possible by the project’s 2017 sponsors. Prior to that he would not have been able to financially afford the additional time investment that WP-CLI requires. The new role enables him to work for 5-10 hours per week on general user support, development of new and improved features, writing documentation, managing the issue backlog, reviewing pull requests and working on the project’s infrastructure.</p>\n<p>In joining WP-CLI as a co-maintainer, Schlesser brings a fresh perspective from developing for other platforms and years experience managing and contributing to <a href=\"https://www.alainschlesser.com/community/\" target=\"_blank\">dozens of open source projects</a>.</p>\n<p>“WP-CLI is in a unique place in terms of what it tries to achieve and how it does it (out of necessity),” Schlesser said. “For most other web platforms, the command line interface is a regular part of the core of the system itself, often building what is known as a <a href=\"http://alistair.cockburn.us/Hexagonal+architecture\" target=\"_blank\">Hexagonal Architecture</a>. WP-CLI, on the other hand, achieves most of the same benefits even though it has no direct control over the Core source code, and that source code is not meant to support such an architecture. Given the obstacles, the current results are quite an achievement!”</p>\n<p>After its 1.0.0 release, WP-CLI <a href=\"https://wptavern.com/wp-cli-1-1-0-released-project-shifts-to-expand-package-index\" target=\"_blank\">shifted to focus on its package ecosystem</a>. New features are now built as standalone packages instead of rolling everything into WP-CLI core. The eventual goal is to better distribute the project’s maintenance burden among package maintainers.</p>\n<p>“I think the most important change in the upcoming release is that all the bundled commands have been extracted into separate packages, and we’re currently in the process of getting rid of all the issues that this move has uncovered,” Schlesser said. “So, when it comes to making WP-CLI easily extensible and improving the tools and interfaces, we’re now eating our own dog food. In the longer term, I expect this change to have a significant impact on the onboarding experience for developers who want to create their own commands.”</p>\n<p>During his years contributing to open source projects, Schlesser said he has become well-acquainted with the unique challenges and emotional toll of maintainership, a topic that <a href=\"https://danielbachhuber.com/2016/06/26/my-condolences-youre-now-the-maintainer-of-a-popular-open-source-project/\" target=\"_blank\">Bachhuber has spoken about in the past</a>.</p>\n<p>“Maintenance of a popular open source project is at the intersection of the hard logic of technology and deeply human group dynamics,” Schlesser said. “I’ve become more aware of all the difficulties that come with such a role, but I wouldn’t necessarily state that I know anything more now on how to navigate around them. What I know for sure is that it is a burden that should be shared amongst several people when at all possible. It comes with constant pressure and churn, and doing this work as a single person puts both the project and the person at risk.”</p>\n<p>Schlesser plans to keep an eye out for any avoidable friction points in hopes of making the experience of maintainership as smooth as possible for all involved.</p>\n<p>“Daniel has already done a great job with this, and I can’t wait to see where the project will take us as a team,” Schlesser said.</p>\n<div id=\"epoch-width-sniffer\"></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 04 Apr 2017 17:19: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: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:42:\"BuddyPress: 2016 BuddyPress Survey Results\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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:\"https://buddypress.org/?p=265117\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:62:\"https://buddypress.org/2017/04/2016-buddypress-survey-results/\";s: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:18896:\"<p><img class=\"alignnone size-full wp-image-265189\" src=\"https://buddypress.org/wp-content/uploads/1/2017/04/bp-countries-2016.png\" alt=\"61 country flags of survey participants\" width=\"765\" height=\"490\" /></p>\n<p> </p>\n<h2>Thank you!</h2>\n<p>This report presents the results from the 2016 BuddyPress Survey held from November 1 through December 31, 2016. Three hundred and two (302) respondents from 61 countries completed the survey and provided valuable and interesting feedback. Many thanks!</p>\n<p> </p>\n<h2>Survey Design/Method</h2>\n<p>The survey contained 36 questions geared towards <a href=\"https://bpdevel.wordpress.com/2016/07/13/priorities-for-the-next-12-months/\">Site Builders and WordPress Developers</a>. Adjusting to this more focused target audience compared to previous years’, I selected some questions from our BuddyPress <a href=\"https://buddypress.org/2013/09/2013-buddypress-codex-survey-results/\">2013</a>, <a href=\"https://buddypress.org/2014/03/2014-buddypress-survey-results/\">2014</a> and <a href=\"https://buddypress.org/2015/05/2015-buddypress-survey-results/\">2015</a> Surveys, combined/split/modified some of the questions, and added 15 new questions. The survey was designed to maximize responses and get snapshots of:<br />\n– basic demographic information<br />\n– versions of WordPress, BuddyPress, bbPress, and PHP used<br />\n– the types, languages, number of members in BP sites<br />\n– comfort levels with BuddyPress, BP theme compatibility, and BP Hooks<br />\n– development practices and tools<br />\n– respondents willing to share their BP use cases<br />\n– BuddyPress participation and contributions<br />\n– comments about BuddyPress, BP theme/plugin development, and the survey.</p>\n<p>The questionnaire was finalized after incorporating the feedback on the draft from the BP Lead/Core Developers last year. The survey was then promoted via Twitter, BP support forums, bpdevel.wordpress.com, and survey banners added by <a class=\"bp-suggestions-mention\" href=\"https://buddypress.org/members/johnjamesjacoby/\" rel=\"nofollow\">@johnjamesjacoby</a> at https://buddypress.org and https://codex.buddypress.org which helped a lot.</p>\n<p> </p>\n<h2>Key Findings</h2>\n<p>This section shows some of the highlights from the survey with short comments about each. All supporting graphs, tables, and user comments from this survey are available in the accessible and mobile-friendly webpage.<br />\n </p>\n<h3>A. What’s New</h3>\n<h4>1. PHP Versions Used</h4>\n<p><img class=\"alignnone size-full wp-image-265119\" src=\"https://buddypress.org/wp-content/uploads/1/2017/04/php-version.png\" alt=\"99% using PHP 5.3+\" width=\"800\" height=\"235\" /><br />\n<a href=\"https://codex.buddypress.org/getting-started/buddypress-2-8-will-require-php-5-3/\">BuddyPress 2.8 requires at least PHP 5.3</a>. It’s encouraging to learn that 99% of respondents’ sites are on PHP version 5.3.x or better. Kudos to the 88% of respondents who are already using PHP 5.6.x or better for their sites.<br />\n </p>\n<h4>2. Years Using BuddyPress</h4>\n<p><img src=\"https://buddypress.org/wp-content/uploads/1/2017/04/using-buddypress.png\" alt=\"45% have using BuddyPress for a year or less\" width=\"800\" height=\"235\" class=\"alignnone size-full wp-image-265122\" /><br />\nProviding additional context for the results of this survey, a whopping 45% of respondents have been using BuddyPress for a year or less. Welcome!<br />\n </p>\n<h4>3. Testing BuddyPress</h4>\n<p><img class=\"alignnone size-full wp-image-265120\" src=\"https://buddypress.org/wp-content/uploads/1/2017/04/test-stable.png\" alt=\"58% test BudddyPress at Stable Release\" width=\"800\" height=\"235\" /><br />\nThe majority of builders/developers (58%) prefer to test their sites, themes, and plugins against BuddyPress stable releases while 27% do so a month after Stable release and 13% test sites at RC 1. Eleven percent (11%) do not test BuddyPress.<br />\n </p>\n<h4>4. Keep Updated with BuddyPress Development</h4>\n<p><img class=\"alignnone size-full wp-image-265121\" src=\"https://buddypress.org/wp-content/uploads/1/2017/04/keep-updated.png\" alt=\"66% read changelogs to keep updated\" width=\"800\" height=\"235\" /><br />\nFollowing the top-ranked preference of reading changelogs to keep updated with BuddyPress development, users ranked these preferences almost evenly: follow BP Twitter account/s (32%), subscribe to <a href=\"https://bpdevel.wordpress.com/\">bpdevel.wordpress.com</a> (32%), and checking <a href=\"https://buddypress.trac.wordpress.org\">buddypress.trac.wordpress.org </a> regularly (29%).<br />\n </p>\n<h4>5. BuddyPress Knowledge</h4>\n<table>\n<thead>\n<tr>\n<th scope=\"col\">Knowledge</th>\n<th scope=\"col\">BuddyPress</th>\n<th scope=\"col\">BP Themes</th>\n<th scope=\"col\">BP Hooks</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<th scope=\"row\">Beginner</th>\n<td>31%</td>\n<td>34%</td>\n<td>39%</td>\n</tr>\n<tr>\n<th scope=\"row\">Intermediate</th>\n<td>42%</td>\n<td>32%</td>\n<td>26%</td>\n</tr>\n<tr>\n<th scope=\"row\">Advanced</th>\n<td>19%</td>\n<td>13%</td>\n<td>11%</td>\n</tr>\n<tr>\n<th scope=\"row\">Expert</th>\n<td>8%</td>\n<td>7%</td>\n<td>8%</td>\n</tr>\n<tr>\n<th scope=\"row\">What _*_?</th>\n<td>n/a</td>\n<td>14%</td>\n<td>16%</td>\n</tr>\n</tbody>\n</table>\n<p>The table above is a compilation of the answers to three questions which sought to gauge the users’ confidence or comfort levels with BuddyPress in general, BP Theme Compatibility, and BP Plugin development.<br />\n </p>\n<h4>6. BuddyPress Theme Dev</h4>\n<p><img src=\"https://buddypress.org/wp-content/uploads/1/2017/04/customize-theme-1.png\" alt=\"51% customize BP style sheets every time\" width=\"800\" height=\"235\" class=\"alignnone size-full wp-image-265196\" /><br />\nOn the other side of the equation: 27% sometimes customize style sheets while the remaining 22% never customize BP style sheets.<br />\n </p>\n<h4>7. BuddyPress Plugin Dev</h4>\n<p><img src=\"https://buddypress.org/wp-content/uploads/1/2017/04/customize-plugin-1.png\" alt=\"46% extend profile component sometimes\" width=\"800\" height=\"235\" class=\"alignnone size-full wp-image-265200\" /><br />\nAround a third of BP users extend the following components every time: Members, Extended Profiles, User Groups, and Activity.<br />\n </p>\n<h4>8. Number of Members</h4>\n<p><img class=\"alignnone size-full wp-image-265125\" src=\"https://buddypress.org/wp-content/uploads/1/2017/04/member-number.png\" alt=\"58% of sites have up to 500 members\" width=\"800\" height=\"235\" /><br />\nMost of the respondents who had up to 500 members are those using BP for 2 years or less, have BP installed in WP domain root, have sites on Shared hosting plans, on PHP 5.6 or better, test against BP Stable release, and on the latest versions of WordPress, BuddyPress, and bbPress.<br />\n </p>\n<h4>9. Local Development</h4>\n<p><img class=\"alignnone size-full wp-image-265126\" src=\"https://buddypress.org/wp-content/uploads/1/2017/04/local-dev.png\" alt=\"23% use LAMP for local development\" width=\"800\" height=\"235\" /><br />\nOut of the 70% who develop locally, the preferred local development environments after LAMP are: XAMPP (19%), MAMP (18%), WAMP (13%), and VVV (13%), among others.<br />\n </p>\n<h4>10. Sharing BuddyPress Use Cases</h4>\n<p><img src=\"https://buddypress.org/wp-content/uploads/1/2017/04/bp-share-use-cases.png\" alt=\"63 participants signed up to share their BP use cases\" width=\"800\" height=\"235\" class=\"alignnone size-full wp-image-265208\" /><br />\nExpect posts about how site builders or developers are using BuddyPress. Thank you to everyone who signed up!<br />\n </p>\n<h3>B. Trends</h3>\n<h4>1. Using BuddyPress</h4>\n<p><img class=\"alignnone size-full wp-image-265127\" src=\"https://buddypress.org/wp-content/uploads/1/2017/04/use-buddypress.png\" alt=\"62% use BuddyPress for own sites\" width=\"800\" height=\"235\" /><br />\nFor the fourth year in a row, “I use BuddyPress in My Own Site” ranks number one (62% in this survey), followed by “I build BuddyPress sites for others” at 37%. One participant commented “Also have a family BuddyPress site on a raspberry pi (in dev).”<br />\n </p>\n<h4>2. Languages of BuddyPress Sites</h4>\n<p><img class=\"alignnone size-full wp-image-265128\" src=\"https://buddypress.org/wp-content/uploads/1/2017/04/bp-lang-2016.jpg\" alt=\"Languages used in BuddyPress sites\" width=\"2444\" height=\"1543\" /><br />\nFor the third year (2013, 2015, 2016), the English language is used in most of the sites (69%). This is followed by Spanish (11%), German (10%), and French (9%), among many others.<br />\n </p>\n<h4>3. Types of BuddyPress Sites</h4>\n<p><img class=\"alignnone size-full wp-image-265129\" src=\"https://buddypress.org/wp-content/uploads/1/2017/04/bp-types-2016.jpg\" alt=\"Types of BuddyPress sites built\" width=\"2431\" height=\"1547\" /><br />\nFor the third year (2013, 2015, 2016), Generic (33%), Academic (29%), Sports (16%), Artistic (15%), and Gaming (12%) are the most common types of BuddyPress sites built. Generic and Academic types are consistently in the top two spots.<br />\n </p>\n<h4>4. BuddyPress Versions Used</h4>\n<p><img class=\"alignnone size-full wp-image-265130\" src=\"https://buddypress.org/wp-content/uploads/1/2017/04/buddypress-version.png\" alt=\"86% use BuddyPress 2.7 during survey\" width=\"800\" height=\"235\" /><br />\nEighty six percent (86%) are on BuddyPress 2.7+, followed by BP 2.6+ (23%), BP 2.5+ (6%), BP 2.4+ (4%), and BP 2.3+ (4%). Note: BP 2.7.x was the current release version during the survey period.<br />\n </p>\n<h4>5. WordPress Versions Used</h4>\n<p><img class=\"alignnone size-full wp-image-265131\" src=\"https://buddypress.org/wp-content/uploads/1/2017/04/wordpress-version.png\" alt=\"92% use WordPress 4.6+ during survey\" width=\"800\" height=\"235\" /><br />\nNinety two percent (92%) have WordPress 4.6+ installed, followed by WP 4.5+ (13%), WP 4.4+ (5%), WP 4.3+ (3%), and WP 4.2+ (3%). Note: WordPress 4.6 was the current major release version when the survey was launched.<br />\n </p>\n<h4>6. BuddyPress Setups</h4>\n<p><img class=\"alignnone size-full wp-image-265132\" src=\"https://buddypress.org/wp-content/uploads/1/2017/04/bp-install-in-wp.png\" alt=\"72% installed at WP domain root\" width=\"800\" height=\"235\" /><br />\nBuddyPress activated in a single WordPress installation continues to be popular with 72% of the respondents in 2016 as it was in the 2013 survey with 75%.<br />\n </p>\n<h4>7. BuddyPress Hosting</h4>\n<p><img src=\"https://buddypress.org/wp-content/uploads/1/2017/04/hosting-bp.png\" alt=\"48% use shared hosting for BP sites\" width=\"800\" height=\"235\" class=\"alignnone size-full wp-image-265134\" /><br />\nFor sites hosted on Shared Hosting plans: half have 500 members or less, 40% of the sites are on single WP in domain root, 47% on PHP 5.6 or better, almost half of the respondents have been using BuddyPress for a year or less, and a little more than a third use BuddyPress for their own sites.<br />\n </p>\n<h4>8. Other Software Evaluated</h4>\n<p><img src=\"https://buddypress.org/wp-content/uploads/1/2017/04/evaluated-none.png\" alt=\"54% chose BuddyPress without further ado\" width=\"800\" height=\"235\" class=\"alignnone size-full wp-image-265135\" /><br />\nFor the third year in a row, most of the users (54% for 2016) shared that they did not evaluate any other networking/membership plugin/software before selecting BuddyPress.<br />\n </p>\n<h4>9. Contributions to BuddyPress development</h4>\n<p><img src=\"https://buddypress.org/wp-content/uploads/1/2017/04/contribute-bp-dev.png\" alt=\"58% have not contributed to BP development\" width=\"800\" height=\"235\" class=\"alignnone size-full wp-image-265136\" /><br />\nNote: 26% of the 58% who indicated that they have not participated nor contributed to BuddyPress development have also checked that they: helped out in the BP forums, reported bugs at BP Trac, submitted patches at BP Trac, among others.<br />\n </p>\n<h4>10. bbPress Versions Used</h4>\n<p><img src=\"https://buddypress.org/wp-content/uploads/1/2017/04/bbpress-version.png\" alt=\"89% use bbPress 2.5+\" width=\"800\" height=\"235\" class=\"alignnone size-full wp-image-265137\" /><br />\nConsistent with the vast majority using the latest versions of WordPress and BuddyPress at the time of this survey, 89% of respondents are using the latest version of bbPress which provides a <a href=\"https://bbpress.trac.wordpress.org/browser/trunk/src/includes/extend/buddypress\">tight integration with BuddyPress</a>.<br />\n </p>\n<h4>11. bbPress Setups in BuddyPress</h4>\n<p><img src=\"https://buddypress.org/wp-content/uploads/1/2017/04/bbpress-setup.png\" alt=\"66% use sitewide and group forums\" width=\"800\" height=\"235\" class=\"alignnone size-full wp-image-265138\" /><br />\nFor the third year in a row, the Sitewide and Group Forums setup is the most popular bbPress configuration at 60%, a big bump from its 49% first place ranking in 2015.<br />\n </p>\n<h3>C. Shifts</h3>\n<h4>1. Female Participation in Survey</h4>\n<p><img src=\"https://buddypress.org/wp-content/uploads/1/2017/04/female-gender-1.png\" alt=\"13% female developers and site builders\" width=\"800\" height=\"235\" class=\"alignnone size-full wp-image-265191\" /><br />\nThe number of female respondents increased from 8% (17) in 2015 to 13% (37) in this survey. Levels of BuddyPress knowledge range from Beginner through Expert.<br />\n </p>\n<h4>2. BuddyPress Sites Per Respondent</h4>\n<p><img src=\"https://buddypress.org/wp-content/uploads/1/2017/04/bp-sites-built.png\" alt=\"36% built 2 to 5 BuddyPress sites\" width=\"800\" height=\"235\" class=\"alignnone size-full wp-image-265142\" /><br />\nIn 2015, 41% of respondents (87) built or were responsible for one site followed by 38% (80) with 2 to 5 sites. For 2016, there were more developers who built or were responsible for 2 to 5 sites (99) than for only one site (95).<br />\n </p>\n<h4>3. Number of Survey Participants</h4>\n<p><img src=\"https://buddypress.org/wp-content/uploads/1/2017/04/302-participants-1.png\" alt=\"302 Participants for BuddyPress 2016 Survey\" width=\"800\" height=\"235\" class=\"alignnone size-full wp-image-265204\" /></p>\n<p>The number of respondents increased from 211 from 42 countries in the 2015 survey up to 302 respondents from 61 countries for the 2016 survey. We are grateful to everyone who took the time to take the survey.<br />\n </p>\n<h2>Acknowledgements</h2>\n<p><strong>Survey Participants</strong>: Net total of 302 who completed the survey<br />\n<strong>Online Survey Solution</strong>: <a href=\"https://polldaddy.com\">Polldaddy.com</a> and <a href=\"https://automattic.com/\">Automattic.com</a> for the corporate account<br />\n<strong>Survey Preparation</strong>: <a class=\"bp-suggestions-mention\" href=\"https://buddypress.org/members/mercime/\" rel=\"nofollow\">@mercime</a>, <a class=\"bp-suggestions-mention\" href=\"https://buddypress.org/members/johnjamesjacoby/\" rel=\"nofollow\">@johnjamesjacoby</a>, <a class=\"bp-suggestions-mention\" href=\"https://buddypress.org/members/boonebgorges/\" rel=\"nofollow\">@boonebgorges</a>, <a class=\"bp-suggestions-mention\" href=\"https://buddypress.org/members/djpaul/\" rel=\"nofollow\">@djpaul</a>, <a class=\"bp-suggestions-mention\" href=\"https://buddypress.org/members/r-a-y/\" rel=\"nofollow\">@r-a-y</a>, <a class=\"bp-suggestions-mention\" href=\"https://buddypress.org/members/imath/\" rel=\"nofollow\">@imath</a>, <a class=\"bp-suggestions-mention\" href=\"https://buddypress.org/members/dcavins/\" rel=\"nofollow\">@dcavins</a>, <a class=\"bp-suggestions-mention\" href=\"https://buddypress.org/members/hnla/\" rel=\"nofollow\">@hnla</a>, and <a class=\"bp-suggestions-mention\" href=\"https://buddypress.org/members/tw2113/\" rel=\"nofollow\">@tw2113</a><br />\n<strong>Survey Report</strong>: <a href=\"https://github.com/\">Github.com</a> (gh-pages), <a href=\"https://products.office.com/en-us/excel\">Microsoft Excel</a>, <a href=\"https://drive.google.com/drive/my-drive\">Google Documents & Spreadsheets</a>, and <a href=\"http://www.tagxedo.com/app.html\">tagxedo.com</a>.<br />\n </p>\n<h2>Moving Forward</h2>\n<p>BuddyPress will be celebrating the <a href=\"https://buddypress.org/2009/04/buddypress-10-has-arrived/\">8th anniversary of the first stable release</a> on April 30, 2017. Thanks to @apeatling and the many contributors who brought that milestone to fruition. Looking at all the <a href=\"https://codex.buddypress.org/releases/\">major and minor releases</a> through the years led by <a class=\"bp-suggestions-mention\" href=\"https://buddypress.org/members/johnjamesjacoby/\" rel=\"nofollow\">@johnjamesjacoby</a>, <a class=\"bp-suggestions-mention\" href=\"https://buddypress.org/members/boonebgorges/\" rel=\"nofollow\">@boonebgorges</a>, and <a class=\"bp-suggestions-mention\" href=\"https://buddypress.org/members/djpaul/\" rel=\"nofollow\">@djpaul</a>, it’s amazing how much has been accomplished by the all-volunteer lead/core developers and contributors.</p>\n<p>The lead developers have set the <a href=\"https://bpdevel.wordpress.com/2016/07/13/priorities-for-the-next-12-months/\">priorities for this year</a> and we look forward to the bp-nouveau template pack and the BP REST API, among many other new features based on some of your comments/requests from this survey.</p>\n<p>All are welcome to <a href=\"https://codex.buddypress.org/participate-and-contribute/\">participate and contribute</a> to the development of BuddyPress. Keep abreast of the latest BuddyPress news at <a href=\"https://bpdevel.wordpress.com/\">bpdevel.wordpress.com/</a>, <a href=\"https://buddypress.trac.wordpress.org\">buddypress.trac.wordpress.org</a>, Twitter @buddypress @buddypressdev @bptrac, and/or weekly BuddyPress Dev Chats at the <a href=\"http://BuddyPress Dev Chats at #buddypress channe\">#buddypress channel</a> (<a href=\"https://make.wordpress.org/chat/\">WP Slack account required</a>).</p>\n<p>Finally, all supporting graphs, tables, and comments from this survey are available on the accessible and mobile-friendly <a href=\"http://mercime.github.io/BuddyPress-2016-survey-results/\">BuddyPress 2016 Survey Results webpage</a>. Where possible, data from the <a href=\"https://buddypress.org/2013/09/2013-buddypress-codex-survey-results/\">2013</a>, <a href=\"https://buddypress.org/2014/03/2014-buddypress-survey-results/\">2014</a> and <a href=\"https://buddypress.org/2015/05/2015-buddypress-survey-results/\">2015</a> surveys have been added to the charts for comparison. Some data from the older surveys have been recalculated when needed to fit in the format of the question in this survey and noted as such. </p>\n<p>Thank you.<br />\n <br />\n<a href=\"http://mercime.github.io/BuddyPress-2016-survey-results/\"><img class=\"alignnone size-full wp-image-17452\" src=\"https://buddypress.org/wp-content/uploads/1/2017/04/bp-2016-survey-results.png\" alt=\"BuddyPress 2016 Survey Results link\" width=\"1054\" height=\"836\" /></a></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 04 Apr 2017 01:30:19 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"@mercime\";s: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:70:\"WPTavern: Blog in a Box Project Integrates WordPress with Raspberry Pi\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=66891\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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:\"https://wptavern.com/blog-in-a-box-project-integrates-wordpress-with-raspberry-pi\";s: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:6437:\"<p><a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2017/03/blog-in-a-box.png?ssl=1\"><img /></a></p>\n<p>The original Raspberry Pi was released five years ago and the micro computer product line is still going strong. The Raspberry Pi Foundation <a href=\"https://www.raspberrypi.org/blog/ten-millionth-raspberry-pi-new-kit/\" target=\"_blank\">sold its ten millionth Pi</a> last year and just released the Pi Zero W in February 2017 with built-in WiFi and Bluetooth.</p>\n<p>If you are among the millions of Raspberry Pi owners who like to tinker with software, check out Automattic’s new <a href=\"https://inabox.blog/\" target=\"_blank\">Blog in a Box</a> project. It currently offers the easiest way of installing WordPress onto a Raspberry Pi.</p>\n<p>Although RaspberryPi.org has documentation for <a href=\"https://www.raspberrypi.org/learning/lamp-web-server-with-wordpress/\" target=\"_blank\">how to run WordPress as a local website on your Raspberry Pi</a>, its recommended method requires you to install and configure Apache, PHP, and MySQL to create a LAMP web server.</p>\n<p>Blog in a Box makes it simpler with a GUI <a href=\"https://github.com/Automattic/biab-installer\" target=\"_blank\">installer</a> that puts everything you need for installing WordPress onto an SD card. It comes bundled with PHP7, Nginx, and the latest version of WordPress. It automatically installs the <a href=\"https://github.com/Automattic/biab-plugin\" target=\"_blank\">Blog In A Box WordPress plugin</a>, which provides an interface for the Blog In A Box CLI tool and widgets for SenseHAT readings. It also includes a full Node development environment. The project’s creators call it “a complete system for interfacing Pi hardware with WordPress.”</p>\n<p>Blog in a Box enables users to publish data captured by the Raspberry Pi camera and SenseHAT, like photos or temperature readings, to a WordPress site that can be accessed on your local network at bloginabox.local. It is not yet capable of publishing to the web, but John Godley, an Automattic developer who worked on the project, said the team is open to adding this.</p>\n<p>“Part of the fun of a Pi is having this device in front of you that you can play and experiment with, and we wanted to have WordPress running right there inside the Pi too – it really is a blog in a box!” Godley said.</p>\n<p>“We hope that having it local will encourage people to tinker with WordPress and use it to learn programming, or to run experiments in classrooms.”</p>\n<p>There are currently no live examples of blogs on the web that are receiving posts from a Raspberry Pi. However, fellow Automattic developer and Pi enthusiast Nick Momrik has created a device called <a href=\"https://nick.blog/2017/03/14/blog-in-a-box-paparazzi/\" target=\"_blank\">Blog in a Box Paparazzi</a> that extends the project with additional sensors to take a photo when anyone walks past it. His circuit diagram and a full list of sensors and other electronic components are available on <a href=\"https://github.com/nickmomrik/biab-paparazzi\" target=\"_blank\">GitHub</a>. It’s one example of how Blog in a Box can be used as a base for other fun use cases.</p>\n<a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2017/03/paparazzi-fritzing.png?ssl=1\"><img /></a>image credit: Nick Momrik – <a href=\"https://github.com/nickmomrik/biab-paparazzi\">Blog in a Box Paparazzi GitHub repo</a>\n<p>Although the project doesn’t come packaged with functionality that would allow it to work as a livecam, Godley said it’s certainly a possibility.</p>\n<p>“We created a system to make it easy to interface the Pi hardware with WordPress – there’s a plugin and a set of server tools that are all extensible,” Godley said. “With a bit of work a livecam system could be added. If you add the sensor mentioned above you could livestream your cat whenever it’s nearby. Add some different sensors and you can see what affects a plant’s growth in a biology experiment and have the data ready to be viewed through WordPress, add a touchscreen and you have an interactive WordPress-powered display.”</p>\n<p>Since the system uses the REST API internally, Godley it wouldn’t be difficult to configure it to send data to a remote WordPress site. The team has looked at the possibility of doing this and may revisit it in the future if there’s enough interest.</p>\n<p>“Making it really easy to set up was a primary aim – we didn’t want people to have to setup MySQL and web servers and all the complexities involved in connecting this to Pi sensors. Just a few clicks and a fully working system is copied to an SD card,” Godley said. “Once you boot your Pi it appears on your local network and can be used immediately.”</p>\n<p>The site runs on the local network but the box ensures that WordPress and its plugins stay updated. The ability to run the box without an internet connection is one of the main advantages of Blog in a Box.</p>\n<p>“The fact you can run it without an internet connection means it can be used in situations where a remote WordPress may not be appropriate — in your home, in schools, etc,” Godley said. “If someone <a href=\"https://astro-pi.org/\" target=\"_blank\">sends WordPress into space on a rocket</a>, then we’d love to hear about it!”</p>\n<p>The project is an exciting example of how WordPress can be deeply integrated with various hardware components to automatically capture and publish environmental data in a way that’s easy to view. Godley and his team at Automattic hope that <a href=\"https://inabox.blog/\" target=\"_blank\">Blog in a Box</a> will put WordPress into the hands of more like-minded tinkerers. The entire project, including the <a href=\"https://github.com/Automattic/biab-installer\" target=\"_blank\">installer</a>, the companion WordPress <a href=\"https://github.com/Automattic/biab-theme\" target=\"_blank\">theme</a>, and the <a href=\"https://github.com/Automattic/biab-plugin\" target=\"_blank\">plugin</a>, are all open source.</p>\n<p>“As well as people connecting the real world to their Pi, we hope that just having a full web development environment ready to go will encourage people to tinker with WordPress and try out programming or theming,” Godley said.</p>\n<div id=\"epoch-width-sniffer\"></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, 03 Apr 2017 21:34: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:14;a:6:{s:4:\"data\";s:11:\"\n \n \n \n \n \n\";s:7:\"attribs\";a: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:47:\"HeroPress: HeroPress Geography: The Middle East\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://heropress.com/?p=1675\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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://heropress.com/heropress-geography-middle-east/\";s: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:3588:\"<img width=\"960\" height=\"444\" src=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2017/04/heropress_middle_east-min-1024x474.png\" class=\"attachment-large size-large wp-post-image\" alt=\"HeroPress pins on a google map in the Middle East\" /><p>For a while now I’ve been thinking about how to best leverage older content on HeroPress. People who’ve been a fan of HeroPress for a year now have missed an entire year of essays. Also, older content gets very little traffic, and there’s some really great stuff in there.</p>\n<p>One idea I came up with is doing a blog post like this on the weekend, showcasing several essays from a particular geographic area. This week I chose the Middle East.</p>\n<p>Please enjoy!</p>\n<blockquote class=\"wp-embedded-content\"><p><a href=\"https://heropress.com/essays/how-to-become-a-reputable-wordpress-developer-on-your-own/\">How to Become a Reputable WordPress Developer, on Your Own!</a></p></blockquote>\n<p></p>\n<blockquote class=\"wp-embedded-content\"><p><a href=\"https://heropress.com/essays/growing-through-wordpress/\">Growing Through WordPress</a></p></blockquote>\n<p></p>\n<blockquote class=\"wp-embedded-content\"><p><a href=\"https://heropress.com/essays/ambition-persistence-self-motivation/\">Ambition, Persistence, and Self-Motivation</a></p></blockquote>\n<p></p>\n<blockquote class=\"wp-embedded-content\"><p><a href=\"https://heropress.com/essays/blogging-solopreneurship-terrorism/\">Blogging, Solopreneurship, & Terrorism</a></p></blockquote>\n<p></p>\n<div class=\"rtsocial-container rtsocial-container-align-right rtsocial-horizontal\"><div class=\"rtsocial-twitter-horizontal\"><div class=\"rtsocial-twitter-horizontal-button\"><a title=\"Tweet: HeroPress Geography: The Middle East\" class=\"rtsocial-twitter-button\" href=\"https://twitter.com/share?text=HeroPress%20Geography%3A%20The%20Middle%20East&via=heropress&url=https%3A%2F%2Fheropress.com%2Fheropress-geography-middle-east%2F\" rel=\"nofollow\" target=\"_blank\"></a></div></div><div class=\"rtsocial-fb-horizontal fb-light\"><div class=\"rtsocial-fb-horizontal-button\"><a title=\"Like: HeroPress Geography: The Middle East\" class=\"rtsocial-fb-button rtsocial-fb-like-light\" href=\"https://www.facebook.com/sharer.php?u=https%3A%2F%2Fheropress.com%2Fheropress-geography-middle-east%2F\" rel=\"nofollow\" target=\"_blank\"></a></div></div><div class=\"rtsocial-linkedin-horizontal\"><div class=\"rtsocial-linkedin-horizontal-button\"><a class=\"rtsocial-linkedin-button\" href=\"https://www.linkedin.com/shareArticle?mini=true&url=https%3A%2F%2Fheropress.com%2Fheropress-geography-middle-east%2F&title=HeroPress+Geography%3A+The+Middle+East\" rel=\"nofollow\" target=\"_blank\" title=\"Share: HeroPress Geography: The Middle East\"></a></div></div><div class=\"rtsocial-pinterest-horizontal\"><div class=\"rtsocial-pinterest-horizontal-button\"><a class=\"rtsocial-pinterest-button\" href=\"https://pinterest.com/pin/create/button/?url=https://heropress.com/heropress-geography-middle-east/&media=https://heropress.com/wp-content/uploads/2017/04/heropress_middle_east-min-150x150.png&description=HeroPress Geography: The Middle East\" rel=\"nofollow\" target=\"_blank\" title=\"Pin: HeroPress Geography: The Middle East\"></a></div></div><a rel=\"nofollow\" class=\"perma-link\" href=\"https://heropress.com/heropress-geography-middle-east/\" title=\"HeroPress Geography: The Middle East\"></a></div><p>The post <a rel=\"nofollow\" href=\"https://heropress.com/heropress-geography-middle-east/\">HeroPress Geography: The Middle East</a> appeared first on <a rel=\"nofollow\" href=\"https://heropress.com\">HeroPress</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:\"Sat, 01 Apr 2017 13:42: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:\"\";}}}}}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:102:\"WPTavern: WordPress Community Support Shuts Down WordCamp Netherlands in Favor of City-Based 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:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=68144\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:113:\"https://wptavern.com/wordpress-community-support-shuts-down-wordcamp-netherlands-in-favor-of-city-based-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:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:10904:\"<p><a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2017/03/wordcamp-netherlands.png?ssl=1\"><img /></a></p>\n<p>The application for WordCamp Netherlands 2017 has been denied. The camp, which held its sixth edition in Utrecht last year with more than 425 attendees, was one of the most well-established WordPress events in Europe. Yesterday lead organizer Marcel Bootsman published a <a href=\"https://nl.wordpress.org/team/2017/03/30/het-einde-van-wordcamp-the-netherlands/\" target=\"_blank\">post</a> on the Dutch WordPress community site to explain why the camp has been cancelled.</p>\n<p>Bootsman’s post is written in Dutch but includes correspondence in English between the WCNL team and WordPress Community Support (WCS), formerly WordCamp Central. WCS is now pushing for all WordCamps to be city-based with the exception of regional camps, such as WordCamp US and WordCamp Europe, where the cities already have their own camps and do not prevent or detract from local communities launching their own camps.</p>\n<p>“WordCamp Netherlands has been held 6 times to date and…It has not inspired any local WordCamps (in fact, I think it’s probably fair to say that local camps have not been happening because people don’t see a need for them with the country-wide camp happening each year) and, with the exception of Nijmegen, which is still in the pre-planning phase, no cities in the Netherlands have their own WordCamps,” a WCS representative said. “With that in mind, we feel that the time has come for your community to move from the country-wide camp to running local camps. This has started happening with Nijmegen already and can easily start happening more with WordCamps in Utrecht, Rotterdam, Amsterdam and other cities.”</p>\n<p>The Netherlands is <a href=\"http://mapfight.appspot.com/nl-vs-us.md/netherlands-maryland-us-size-comparison\" target=\"_blank\">roughly the size of Maryland</a>, or twice the size of New Jersey, in terms of land space. One can drive across the country in two hours or less. The WCNL team contends that a country-wide WordCamp makes sense for geographical reasons and because of the locations of the organizers. The country already has an active meetup culture with 13 different meetups hosting an average of 100 attendees per event. Organizers do not see the need to have multiple smaller WordCamps fill the role that the local meetups are already doing.</p>\n<p>In response to the reasons WCNL organizers’ outlined for not shutting down their event, the WCS representative replied, “I don’t think there’s really any benefit to responding to all of your points in the last email individually.” WCS reiterated its decision regarding the camp:</p>\n<blockquote><p>We will not be approving WordCamp The Netherlands 2017. We would like to see city-based WordCamps happening around the Netherlands – Nijmegen being a great start to that process.</p>\n<p>We’re confident that with the space that WCNL filled being vacated, we will see some of the meetup organizers around the country stepping up to fill that space for their local communities. The local city camps may be smaller, but in many ways that can be a much better than a single large camp.</p>\n<p>As I said before, we would be happy to look at doing WCNL again in a couple of years time once there are a few city-based camps around the country happening regularly. In that case, however, WCNL would be there to complement, and not replace, the city-based camps.</p></blockquote>\n<p>WordCamp Netherlands was the last remaining exception to this new rule that drops country-wide WordCamps in favor of city-based camps. The Dutch community and many of its supporters are <a href=\"https://twitter.com/roytanck/status/847365810506969089\" target=\"_blank\">now</a> <a href=\"https://twitter.com/jrf_nl/status/847470162496241664\" target=\"_blank\">in</a> <a href=\"https://twitter.com/nielsvr/status/847384382541148161\" target=\"_blank\">an</a> <a href=\"https://twitter.com/mchaste/status/847374014414704645\" target=\"_blank\">uproar</a> over the decision and organizers are at a crossroads. They can choose to rebrand the event as WordCamp Utrecht, with significant drawbacks, or move forward with an independent country-wide event without the use of WordCamp tools, branding and trademarks, or funding from the Global Community Sponsorship Program.</p>\n<h3>WordCamp Netherlands Conflict Highlights Cultural Differences Between the U.S. and Europe</h3>\n<p>Marcel Bootsman, who heads up the 13-person WordCamp Netherlands organization team, said they have been working since late December 2016 on the upcoming event. The team had added eight new members after the event grew 68% from 2015 to 2016.</p>\n<p>“Everybody was thrilled to start, and the news that we could not continue hit us hard,” Bootsman said. “We have officially stopped and I have thanked everyone for their enthusiasm and support, which was difficult because I wanted to let these people feel what it is to organize an event and see happy faces all over the place.”</p>\n<p>WordPress developer and Dutch community member Juliette Reinders Folmer said she doesn’t believe that more than one or perhaps two city-based WordCamps will get started in the Netherlands. Organizing a WordCamp is not an easy endeavor with a small pool of local organizers and volunteers. Folmer notes that since the WordPress Foundation doesn’t allow for compensating speakers for their out-of-pocket costs, the speaker pool is further limited.</p>\n<p>“A trend I’ve spotted over the last few years is that ‘local’ WCs will have a mix of local, national and international speakers,” Folmer said. “While national speakers might still be prepared to go out of pocket, the only international speakers who can afford to do this are the ones who are sponsored by big companies which pay their travel and time to speak at those WCs.</p>\n<p>“Instead of creating a larger speaker group with new and interesting voices, we’re ending up with a corporate uniform message where the more innovative and sometimes dissident voices are few and far between. By forcing WCNL to break up into smaller more local groups, this trend will become even more persistent and insidious as the demands on the limited group of national speakers will increase unless they have corporate sponsoring. Even they will not able to afford the time and costs to attend and speak at the various local WCs.”</p>\n<p>Remkus de Vries, WordCamp Netherlands lead-organizer from 2009 to 2015, said the team has worked for years to see the local communities come together, and have seen people get involved with translations, forum moderation, and local meetups after attending the WordCamps.</p>\n<p>“Our idea from the get go for WordCamp Netherlands was to be as inclusive as possible, to unite the scattered Dutch WordPress community,” de Vries said. “The Dutch community consisted of little islands that didn’t really connect at all. We’ve been working very hard to unite our Dutch Community via WordCamp Netherlands and it was working perfectly.</p>\n<p>“Because of our inclusive approach we started getting international visitors and speakers from the early start as well, but more importantly, the event, as a national event, pulled everyone in from all corners of the Netherlands. Our community started and flourished because we started as a central entity.”</p>\n<p>Bootsman is not optimistic about the future of the Dutch WordPress community after receiving the decision from WCS. The conflict has highlighted a key difference between U.S. and European cultures when it comes to traveling. Whereas Americans might think a 4-5 hour drive to another city is a short road trip, Europe’s population is much more dense than the U.S. and traveling several hours to another city is not common.</p>\n<p>“When there is no WordCamp Netherlands, my personal belief is that this will break up the community,” Bootsman said. “Of course we will have central tools like Slack, nl.w.org and other ways to communicate, but that is nothing compared to an event where all these people can meet. People are busy and can’t find time to visit multiple WordCamps in the Netherlands. Distances are not that large in NL, that is not an issue, but time is. When you have a central WordCamp The Netherlands once a year you plan, so you are available to go. In the new situation, when there is a WordCamp Rotterdam, why visit a WordCamp in another town? This maybe hard to understand, but this is how it works for Dutch people. We’re too practical sometimes, and in this situation, it will not help the community.”</p>\n<h3>WordCamp Netherlands Organizers are Considering Hosting an Independent Event</h3>\n<p>Both de Vries and Bootsman are said they do not believe rules that make sense for the U.S. should be applied universally. They would prefer them to be guidelines that communities can follow or depart from if they express their preference for a country-wide WordCamp. WordPress communities in other countries like Denmark, Croatia, and Switzerland have expressed similar frustrations with the U.S.-centric rules.</p>\n<p>“WordCamp Netherlands was what started the local WordPress meetups and ended up being the glue between the WordPress Meetups,” de Vries said. “Forcing us to stop using WordCamp Netherlands is going to impact that as you could see by the outpouring of reactions yesterday on Twitter and Facebook. Renaming WordCamp Netherlands to WordCamp Utrecht, as suggested by many, could be a solution, but nobody of the organizing team lives in the city which means, per the WCS rules, we can’t do that. But more importantly, we would be losing ‘our glue.’ We feel that our efforts of the last years have just been flushed down the toilet with this ‘one-size-fits-all’ rule.”</p>\n<p>Although WCNL organizers were told in no uncertain terms that their camp is cancelled, a recent <a href=\"https://make.wordpress.org/community/2017/03/30/wordcamp-netherlands-today-the/\" target=\"_blank\">post</a> on the Community team blog indicates that representatives are considering feedback on the decision.</p>\n<p>The first two WordCamp Netherlands were not under the umbrella of WordCamp Central, and de Vries said they will find a way to have the camp if it comes to that. Organizers are currently examining their options.</p>\n<p>“It is too soon to announce things about this but let me say that we feel the Netherlands needs to have a countrywide WordPress event based on the experiences of the last years,” Bootsman said. “We are not going to let the Netherlands WordPress community down.”</p>\n<div id=\"epoch-width-sniffer\"></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, 31 Mar 2017 23:39:14 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:16;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:97:\"WPTavern: WordPress Plugin Directory Redesign: Why So Many People Feel Their Feedback Was Ignored\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=68135\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:107:\"https://wptavern.com/wordpress-plugin-directory-redesign-why-so-many-people-feel-their-feedback-was-ignored\";s: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:15523:\"<p>Earlier this week, the WordPress plugin directory <a href=\"https://wptavern.com/wordpress-relaunches-plugin-directory-with-new-design-and-improved-search-algorithm\">relaunched</a> with a new design and an improved search algorithm. Feedback has been rolling in <a href=\"https://wptavern.com/wordpress-relaunches-plugin-directory-with-new-design-and-improved-search-algorithm#comments\">from Tavern readers</a> and members of the <a href=\"https://www.facebook.com/groups/advancedwp/permalink/1446257985436411/?match=cGx1Z2luKyBkaXJlY3RvcnkscGx1Z2luIGRpcmVjdG9yeSxwbHVnaW5z\">Advanced WordPress Facebook group</a>.</p>\n<p>The improvements to search has received a number of positive comments in addition to people requesting the ability <a href=\"https://wptavern.com/wordpress-relaunches-plugin-directory-with-new-design-and-improved-search-algorithm#comment-216693\">to sort results</a>. The responsive design and aesthetics of the page have also received praise.</p>\n<p>There are a number of items that plugin developers and users have reported as downsides to the new design. Some of the most notable include:</p>\n<ul>\n<li>Plugin stats are only available to the plugin author by logging into the admin.</li>\n<li>Tabbed layout was replaced with a series of Read more links.</li>\n<li>Plugin banner images are distorted.</li>\n<li>The Installation tab which provided instructions on how to install the plugin is gone.</li>\n<li>Screenshots do not open in a lightbox, but open on a new page instead.</li>\n<li>Links to download older versions of plugins is missing.</li>\n</ul>\n<p>Many of the issues reported above are known and have been known for months. While it may seem like a lot of people are <a href=\"https://wptavern.com/wordpress-relaunches-plugin-directory-with-new-design-and-improved-search-algorithm#comment-216738\">suddenly complaining</a> and didn’t participate in the feedback loop, it’s important to look back to see how the plugin directory redesign reached this point.</p>\n<h2>From Prototypes to Open Beta</h2>\n<p>In May 2016, the WordPress Meta team <a href=\"https://wptavern.com/wordpress-meta-team-publishes-prototypes-of-the-plugin-directory-redesign\">published prototypes</a> of a new design for the WordPress plugin directory. The announcement generated <a href=\"https://make.wordpress.org/meta/2016/05/19/plugin-directory-prototypes/\">abundant feedback</a> with a strong push towards adding data instead of removing it.</p>\n<p>Many users <a href=\"https://make.wordpress.org/meta/2016/05/19/plugin-directory-prototypes/#comment-8151\">reported</a> that moving the plugin author, last updated, and active install information from the plugin’s listing page to the plugin’s details page was a downside. Samuel Sidler, Apollo Team Lead at Automattic, <a href=\"https://make.wordpress.org/meta/2016/05/19/plugin-directory-prototypes/#comment-8154\">responded</a> to the feedback explaining why he didn’t think showing the information to users was useful.</p>\n<blockquote><p>Author, as you said, is only really useful for insiders. The latter two, meanwhile, are already taken into account in the search results. If a plugin doesn’t have a recent compatible version, it will move down the list. If it’s too old, it won’t get shown at all (which is the case today).</p>\n<p>Active installs is more interesting, but we account for it weighting search results as-is. I actually find it refreshing to <em>not</em> show the active installs as it allows for less-popular plugins to get more downloads. Users will be less likely to click the popular plugins (outside of familiar names) and more likely to find the plugin they actually need.</p></blockquote>\n<p>There was also a lot of discussion on how to improve and display search results.</p>\n<p>In June 2016, at WordCamp Europe, Konstantin Obenland, WordPress core contributor, <a href=\"https://wptavern.com/new-wordpress-plugin-directory-now-in-open-beta\">announced</a> that the WordPress plugin directory redesign was in open beta. The team received feedback from Matt Mullenweg, co-creator of the WordPress project, on changing the direction and design of the page. “We’re really just at the beginning of design iterations,” Obenland said. “He thinks we can do better, which he’s right about. We can and we should.”</p>\n<p>Kevan <a href=\"https://wptavern.com/new-wordpress-plugin-directory-now-in-open-beta#comment-185077\">commented on the open beta</a> and pointed out many of the same issues that were reported with the prototypes. In July 2016, Obenland <a href=\"https://make.wordpress.org/meta/2016/07/12/plugin-directory-v3-open-beta/\">announced</a> version three of the open beta. The use of Read more links in favor of the tabbed interface was again <a href=\"https://make.wordpress.org/meta/2016/07/12/plugin-directory-v3-open-beta/#comment-8400\">brought up</a> in the comments by John Blackbourn.</p>\n<p>“I’m really concerned about the liberal use of ‘Read more’ links on individual plugin pages,” Blackbourn said. “They’re being used in order to fix the information overload problem caused by placing all the information onto one page, instead of using the tabbed interface of the current directory.”</p>\n<p>In response to Blackbourn, <a href=\"https://make.wordpress.org/meta/2016/07/12/plugin-directory-v3-open-beta/#comment-8413\">Joy stated</a> that the issue of Read more links had already been discussed and that the feedback was ignored. The feeling of being ignored was also shared <a href=\"https://make.wordpress.org/meta/2016/07/12/plugin-directory-v3-open-beta/#comment-8476\">by Jon Brown</a>.</p>\n<p>“It’s hard to see feedback has been heard and in this case a lot of it doesn’t seem to have been taken into account (bring back tabs, no read more…).” Brown said. “I don’t see everything, or even much, so I could have certainly missed it.”</p>\n<p>Mika Epstein <a href=\"https://make.wordpress.org/meta/2016/07/12/plugin-directory-v3-open-beta/#comment-8418\">responded</a> that the feedback was not ignored and that Obenland was in the process of collecting and collating information.</p>\n<p>Four months ago, Kenshino <a href=\"https://meta.trac.wordpress.org/ticket/2328\">created a ticket</a> on WordPress Meta that outlined usability concerns with using Read more links instead of tabs.</p>\n<p>“Clicking on <span class=\"searchword0\">Read</span> <span class=\"searchword1\">more</span> – say on the change log requires me to scroll to the bottom before I’m able to reach the next section,” he said. “Essentially for me to go through all the sections, provided that they are long enough, I’d have to click, scroll a few pages, click, scroll a few pages etc until I get through all the sections.”</p>\n<p>The ticket was closed as a duplicate of <a href=\"https://meta.trac.wordpress.org/ticket/2278\">Greg Ross’ ticket</a>. In it, he suggests a Jump section be added so users can navigate to specific sections of the Read Me without having to scroll through the entire page. The ticket has received minor support and recently had its milestone changed from version three to a future version.</p>\n<h2>WordPress Contributors Feel Ignored</h2>\n<p>In a <a href=\"https://wordpress.slack.com/archives/C02QB8GMM/p1490824833904957\">meeting held earlier this week</a> in the WordPress Meta Slack channel, Matt Cromwell, Head of Support and Community Outreach at WordImpress, <a href=\"https://wordpress.slack.com/archives/C02QB8GMM/p1490825538070889\">suggested</a> that the Meta team describe the process of collecting and acting on feedback in as much detail as possible in the <a href=\"https://make.wordpress.org/meta/2017/03/30/announcing-the-new-wordpress-plugin-directory/\">announcement post</a>.</p>\n<p>“I’ve chatted with a lot of developers and many feel like they provided actionable feedback about the direction of the plugin directory and all advice was ignored,” Cromwell said. “Whether or not that’s an accurate assessment, it’s a real feeling that is shared by many. I’ve been here most weeks and know well that feedback was received and acted on, but there’s still a strong perception.”</p>\n<p>Despite the concerns of using Read more links brought up during every phase of the project, they don’t appear to have been addressed. Other gripes expressed by members of the community at the outset of the redesign have largely remained. It’s no wonder that so many people feel like they’ve been ignored.</p>\n<p>Mullenweg <a href=\"https://wordpress.slack.com/archives/C02QB8GMM/p1490826336242943\">commented</a> in the meeting saying he, too, felt ignored, “For what it’s worth, I feel like my feedback was ignored as well,” he said. “I hope we can do another major iteration on the directory, because I’m not really a fan of the new one.</p>\n<p>“Perhaps the WordPress backend will make it easier to make incremental improvements in the future, as being on bbPress before was often cited as the reason things were slow to iterate previously.”</p>\n<p>Although Mullenweg’s feedback in June 2016, was not public, his recent comments indicate not much has changed between then and now.</p>\n<p>Alex Shiels, a member of Team Apollo at Automattic, <a href=\"https://wordpress.slack.com/archives/C02QB8GMM/p1490826698320557\">says</a> user feedback wasn’t ignored. “It’s not that anyone’s feedback has been ignored; just that we’ve had limited resources and a big back-end component to the project, and a lot of conflicting requests” he said. “I’ll make sure to give a clear invitation to provide feedback in the announcement post, and include something about future iteration.</p>\n<h2>The Inability to Measure the Impacts of the Redesign</h2>\n<p>Kevin Hoffman, who participated in discussions on trac about <a href=\"https://meta.trac.wordpress.org/ticket/1828\">how to display screenshots</a>, asked if there was any user data and feedback that the Meta team could share that led to some of the decisions and changes that were made. For example, changes to the UI or how often the Read more links are clicked. Shiels <a href=\"https://wordpress.slack.com/archives/C02QB8GMM/p1490826026176187\">responded</a> that the team does not have that data because they don’t have the tools to do it.</p>\n<p>“There is Google Analytics tracking, but access is very limited and from what I’ve seen of it (I don’t have direct access) it’s messy and hard to draw objective conclusions from,” Shiels said. “I absolutely agree that analytics and A/B testing would be great, but we just don’t have the tools for it right now. I think that needs to be considered a next step, but a separate project by itself really.”</p>\n<p>Hoffman stepped back from contributing to the redesign after receiving <a href=\"https://meta.trac.wordpress.org/ticket/1828#comment:41\">this response</a> seven months ago from Sidler on Trac where he says much of the feedback received was from plugin developers and not representative of users.</p>\n<blockquote><p>First, we’re building the site for users, not developers. Certainly some of our users are developers, but not the vast majority. One of the WordPress core philosophies is building first for the 80%, not the 20%, and that applies in this case as well.</p>\n<p>Second, almost all of the ‘overwhelming community feedback’ we’ve received so far is from plugin authors who are (typically) developers. It’s all great feedback and we’re obviously listening closely. But it’s not necessarily representative of the users who visit the plugin directory regularly. We’ll certainly run user tests before launching, and we can probably run a more obvious beta, with a link from the current directory to the new one. But the directory isn’t yet ready for that.</p>\n<p>Third, this ‘self-imposted limitation’ as you call it is not arbitrary. Rather, it’s the result of research and in-person discussion with a number of designers. Will it be the final design? I dunno. But since we haven’t tested it with real users (see the paragraph above), it’s hard to say right now. I think pursuing this direction is worthy for a number of reasons, which aren’t really worth rehashing here. First and foremost though, until we build out a product that can run through user tests, we won’t know if it’s the right direction.</p></blockquote>\n<p>How can the team know that the redesign is working or is the right direction if WordPress.org doesn’t have the tools necessary to measure its impacts? There’s also the question of what data was obtained or user testing done that supports the decisions that were made? Who are these users and how does the team know what the best user experience is for them?</p>\n<h2>Iteration Is the WordPress Way</h2>\n<p>Now that the <a href=\"https://make.wordpress.org/meta/2017/03/30/announcing-the-new-wordpress-plugin-directory/\">new directory</a> is publicly available, the Meta team is reviewing feedback, gathering bug reports, and organizing tickets on Trac.</p>\n<p>“If there are tickets that were closed or postponed during the project that you think need revisiting, then this would be a great time to start reviewing and re-opening them,” Shiels said. “We already have a bunch of tickets against the future milestone.</p>\n<p>“The new directory has been built with future maintainability and iterative enhancement in mind. We’re looking forward to hearing feedback from the whole WordPress community, and making regular improvements and additions.”</p>\n<p>To report a bug or enhancement with the plugin directory, you’re encouraged to <a href=\"https://meta.trac.wordpress.org/newticket?component=Plugin+Directory\">create a ticket on Trac. </a>If you have any questions concerning the directory or would like to get more involved, visit <a href=\"https://wordpress.slack.com/messages/meta/\">#meta</a> on Slack.</p>\n<h2>The Vocal Minority</h2>\n<p>There are a lot of people voicing their complaints about the WordPress Plugin Directory redesign and to <a href=\"https://wordpress.slack.com/archives/C02QB8GMM/p1490897847701262\">summarize them</a> as a vocal minority is unfair.</p>\n<p>“Let’s also not forget that one of WordPress’s philosophies is <a href=\"https://wordpress.org/about/philosophy/#minority\">The Vocal Minority</a>,” Aaron Jorbin, WordPress core contributor, said in a conversation on the Meta Slack channel concerning feedback. “Many people being loud on the internet isn’t a reason to do anything.”</p>\n<p>As I’ve documented above, the issues people are complaining about today are roughly the same as those reported during the prototype stage more than seven months ago.</p>\n<p>If months have passed and the issues brought up by members of the community who are part of the so-called vocal minority were not addressed before shipping to the public, can we blame them for complaining and feeling ignored? What about those who think that getting involved to be part of the solution was a waste of time? While the plugin directory design will undoubtedly improve with time, the complaints and concerns expressed by people this week are justified.</p>\n<div id=\"epoch-width-sniffer\"></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, 31 Mar 2017 23:04:51 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:17;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:81:\"WPTavern: WordPress App for Android Adds Better Support for Jetpack-Enabled Sites\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=68068\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:92:\"https://wptavern.com/wordpress-app-for-android-adds-better-support-for-jetpack-enabled-sites\";s: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:1764:\"<p><a href=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2015/04/wordpress-for-android.jpg?ssl=1\"><img /></a></p>\n<p>Automattic’s mobile engineers <a href=\"https://jetpack.com/2017/03/29/full-android-support-for-jetpack/\" target=\"_blank\">released a major update to WordPress for Android</a> this week. Last year the app’s users saw a <a href=\"https://wptavern.com/wordpress-for-android-5-7-adds-path-to-upgrade-wordpress-com-plan\" target=\"_blank\">growing disparity</a> between the features available to self-hosted sites and those available to WordPress.com users. Not having the WP REST API in core was holding the app back from providing the same site management features that WordPress.com site owners already enjoy. The upcoming release narrows that gap with better support for Jetpack-enabled sites.</p>\n<p>Self-hosted WordPress sites owners will now have access to People Management, Site Settings, and Site Icons in the app. A complete re-write of the app’s network layer brings more performance improvements to Stats and other features.</p>\n<p>The Jetpack blog <a href=\"https://jetpack.com/2017/03/29/full-android-support-for-jetpack/\" target=\"_blank\">announced</a> the release but doesn’t mention that these features are not yet available to all users. If you manage a self-hosted site on your mobile device, you’ll need to wait until version 7.0 hits the <a href=\"https://play.google.com/store/apps/details?id=org.wordpress.android\" target=\"_blank\">Google Play Store</a>. According to Automattic mobile engineer Maxime Bias, version 7.0 is currently in staged rollout and not all users can update to get it yet. He said 7.0 should be fully rolled out soon but could not give an ETA.</p>\n<div id=\"epoch-width-sniffer\"></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, 30 Mar 2017 19:53: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: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:78:\"WPTavern: Community Team Releases Plugin That Displays WordPress Events Nearby\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=67925\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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:\"https://wptavern.com/community-team-releases-plugin-that-displays-wordpress-events-nearby\";s: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:3309:\"<p>Two weeks ago, I <a href=\"https://wptavern.com/how-to-view-upcoming-wordcamps-in-the-wordpress-dashboard\">highlighted a WordPress plugin</a> that displays upcoming WordCamps in the Dashboard. I’ve <a href=\"https://make.wordpress.org/community/2017/03/23/showing-upcoming-local-events-in-wp-admin/\">recently discovered</a> that the WordPress Community team is working on an official plugin that does something similar called <a href=\"https://wordpress.org/plugins/nearby-wp-events/\">Nearby WordPress Events</a>.</p>\n<p>The plugin attempts to detect a user’s location and displays upcoming events within the WordPress News dashboard widget. Events include WordCamps and <a href=\"https://www.meetup.com/topics/wordpress/\">Meetups</a> from Meetup.com. If the location detected is incorrect, users can click the pencil icon and change it to their city and state.</p>\n<img />Nearby WordPress Events Dashboard Widget\n<p>The bottom of the widget includes links to the <a href=\"https://www.meetup.com/pro/wordpress/\">WordPress Meetups landing page</a>, WordCamp schedule, and the official WordPress news blog. If your site has multiple users, each one can configure the widget to display events near their locations.</p>\n<p>According to Ian Dunn, the API includes any meetups that are within a 100 kilometer radius. For WordCamps, the radius is 350 kilometers.</p>\n<p>Here is what the radius looks like for WordPress Meetups.</p>\n<img />US WordPress Meetup Radius\n<p>Here is what the radius looks like for WordCamps.</p>\n<img />US WordCamp Radius\n<p>The distances can not be modified but, depending on feedback, they can be increased to be more accommodating.</p>\n<p>WordCamp data is gathered using an <a href=\"https://api.wordpress.org/events/1.0/\">API endpoint on</a> WordPress.org. The initial HTTP request is performed asynchronously so it doesn’t affect page loading times. The response is cached for 12 hours to avoid making unnecessary requests.</p>\n<p>The WordPress Community team created the plugin to generate more awareness of WordPress events.</p>\n<p>“The community that has been created around WordPress is one of its best features, and one of the primary reasons for its success, but many users are still unaware that it exists, and aren’t taking advantage of all of the resources that it makes available to them,” Dunn said.</p>\n<p>“Inviting more people to join the community will help to increase its overall health, diversity, and effectiveness, which in turn helps to ensure that WordPress will continue to thrive in the years to come.</p>\n<p>“We think that wp-admin is the perfect place to display these events, because that’s the place where almost all WordPress users are visiting already. Instead of expecting them to come to us, we can bring the relevant information directly to them.”</p>\n<p>I tested the plugin on WordPress 4.8 Alpha and didn’t encounter any issues. Users can report bugs on the <a href=\"https://wordpress.org/support/plugin/nearby-wp-events\">plugin’s support forums</a> or create an issue on the <a href=\"https://github.com/Automattic/nearby-wordpress-events/issues\">project’s GitHub page</a>. If you test the plugin, let us know what you think in the comments.</p>\n<div id=\"epoch-width-sniffer\"></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, 30 Mar 2017 19:50:14 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:74:\"WPTavern: New WPstats.me Site Displays WordPress.org Plugin Download Stats\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=68109\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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:\"https://wptavern.com/new-wpstats-me-site-displays-wordpress-org-plugin-download-stats\";s: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:3202:\"<p>WordPress.org <a href=\"https://wptavern.com/wordpress-relaunches-plugin-directory-with-new-design-and-improved-search-algorithm\" target=\"_blank\">relaunched the plugin directory</a> this week with a new design and improvements to the search algorithm. The redesign spent more than six months in beta for feedback and testing, but many contributors on the project said they felt their feedback was not taken into account. The result is that the new design shipped but has not been well received by the community. Most users and developers welcome the changes to the search algorithm, but the new UI for the plugin pages has received quite a bit of negative feedback.</p>\n<p>One of the unpopular changes made during this refresh was the removal of individual plugin stats, which can now only be viewed by plugin admins. The decision may be temporary but depends on feedback from users.</p>\n<p>In the meantime, if you’re missing plugin stats after the redesign, check out the new <a href=\"http://wpstats.me/\" target=\"_blank\">wpstats.me</a> site. WordPress plugin developer <a href=\"https://wpartisan.me/\" target=\"_blank\">Edward Dakin</a> created it in just a few hours using the WordPress.org API’s. Visitors can enter a plugin’s slug and see recent and all-time download stats.</p>\n<p><a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2017/03/wpstats.me_.png?ssl=1\"><img /></a></p>\n<p>“I like checking out plugin stats, seeing which are popular, how others are doing, etc, so I put together a quick something to do that and thought others might find it useful,” Dakin said. WPstats.me is essentially a one-page app so Dakin opted to host it on GitHub pages.</p>\n<p>“The CSS is done with <a href=\"http://tachyons.io/\" target=\"_blank\">Tachyons</a> (I’m super into function CSS at the moment), the JS is Backbone for the routing, jQuery for the ajax stuff, and Underscore for the templating,” Dakin said. He said the hardest part of putting the site together was finding the WordPress.org APIs, as the <a href=\"https://codex.wordpress.org/WordPress.org_API\" target=\"_blank\">documentation</a> is sparse and out of date.</p>\n<p>If the Meta team decides to bring stats back into the plugin page design, Dakin said he will consider leaving WPstats.me up anyway if people are finding it useful. Some users like to see how stats have changed over time and developers appreciate being able to check up on their competition.</p>\n<p>As a WordPress.org plugin developer, Dakin is directly affected by the changes to the directory. He is considering changing how he markets his plugins and is hoping for improvements to the UI that was shipped this week.</p>\n<p>“I like the improvements to the search a lot,” Dakin said. “In terms of the page redesign I like that they’re trying, but I don’t think it’s quite there yet. Like many others, I feel that the collapsing sections is a bit of a poor use of space. And yes, I haven’t done anything yet but I will be experimenting with restructuring plugin readme’s so the important points are immediately visible and not hidden on page load.”</p>\n<div id=\"epoch-width-sniffer\"></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, 30 Mar 2017 19:12:39 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s: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:96:\"WPTavern: WordPress Polyglots Team Calls for Volunteers to Organize Global Translation Day Three\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=68066\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:107:\"https://wptavern.com/wordpress-polyglots-team-calls-for-volunteers-to-organize-global-translation-day-three\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2111:\"<p>The WordPress Polyglots team is <a href=\"https://make.wordpress.org/polyglots/2017/03/29/global-wordpress-translation-day-3-call-for-organisers/\">asking for volunteers</a> to help organize <a href=\"https://wptranslationday.org/\">WordPress Global Translation Day Three</a>. The event may take place on September 30th, the same day as <a href=\"https://en.wikipedia.org/wiki/International_Translation_Day\">International Translation Day,</a> but the date is dependent on when organizing teams form.</p>\n<p>Global Translation Day is a 24-hour event that includes live streaming, local, and remote activities. The first Global Translation Day was held <a href=\"https://wptavern.com/global-wordpress-translation-day-draws-448-participants-from-105-countries\">in April, 2016</a> where 448 translators from 105 countries translated 40,350 new strings across 597 projects. These numbers increased to 780 translators with a total of 60,426 strings translated across 590 projects at the conclusion of Global Translation Day Two.</p>\n<p>Activities during Translation Day include, on boarding new contributors, sharing knowledge, and discussing topics related to translating. There are a variety of roles available for organizers to fill, including:</p>\n<ul>\n<li>Communication</li>\n<li>Design</li>\n<li>Outreach</li>\n<li>Website/admin volunteers</li>\n<li>Live Streaming</li>\n<li>Local events mentors</li>\n</ul>\n<p>These roles are open to anyone who is able to dedicate the time and effort needed to run a smooth event. “If you have a couple of hours a week to spare, the Polyglots team would really appreciate your help,” organizer Petya Raykovska said. “WordPress Translation Day has been essential for many local communities around the globe and each edition helps more people to understand us better.”</p>\n<p>For more information on what each role entails and to volunteer, check out the <a href=\"https://make.wordpress.org/polyglots/2017/03/29/global-wordpress-translation-day-3-call-for-organisers/\">official call for organizers</a> and leave a comment.</p>\n<div id=\"epoch-width-sniffer\"></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, 29 Mar 2017 23:38: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:\"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: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:89:\"WPTavern: WPWeekly Episode 269 – Interview With Daniel Ha, CEO and Co-founder of Disqus\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"https://wptavern.com?p=68064&preview=true&preview_id=68064\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:95:\"https://wptavern.com/wpweekly-episode-269-interview-with-daniel-ha-ceo-and-co-founder-of-disqus\";s: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:2039:\"<p>In this episode, <a href=\"http://marcuscouch.com/\">Marcus Couch</a> and I are joined by <a href=\"https://twitter.com/danielha?lang=en\">Daniel Ha</a>, CEO and co-founder of <a href=\"https://disqus.com/\">Disqus</a>. Ha explains why he created the service, what his thoughts are on large sites disabling comments, and the state of comments on the web.</p>\n<p>We also discuss the company’s monetization strategies and what opportunities exist to generate revenue around comments. Ha shares what the company learned from its Sponsored Comments experiment and what it’s doing to improve communication with customers.</p>\n<h2>Plugins Picked By Marcus:</h2>\n<p><a href=\"https://wordpress.org/plugins/woo-cashback/\">Woo Cashback</a> provides each user with their own personal wallet with a way to purchase items from your store while using their wallet money or credit.</p>\n<p><a href=\"https://wordpress.org/plugins/export-comment-emails/\">Export Comment Emails</a> allows you to export the emails from comments to a CSV or XML file allowing you to import to MailChimp or ConvertKit.</p>\n<p><a href=\"https://wordpress.org/plugins/wp-monitor/\">WP Monitor</a> adds a dashboard to the WordPress backend that displays updates, site, and server information in one convenient place. You can monitor one or multiple websites on the go.</p>\n<h2>WPWeekly Meta:</h2>\n<p><strong>Next Episode:</strong> Wednesday, April 5th 3:00 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=\"https://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 #269:</strong><br />\n</p>\n<div id=\"epoch-width-sniffer\"></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, 29 Mar 2017 23:24:56 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:76:\"WPTavern: Poopy.life Lets You Create Free, Unlimited WordPress Test Installs\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=68070\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:86:\"https://wptavern.com/poopy-life-lets-you-create-free-unlimited-wordpress-test-installs\";s: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:5773:\"<p><a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2017/03/poopy.life_.png?ssl=1\"><img /></a></p>\n<p>Just when you think all the best domain names have been gobbled up by bots and squatters, <a href=\"http://poopy.life/\" target=\"_blank\">Poopy.life</a> emerges as the fastest new way to spin up a WordPress test install. Joe Guilmette, team lead at <a href=\"http://www.wpallimport.com/\" target=\"_blank\">WP All Import</a>, opened up Poopy.life to the public today, offering free unlimited WordPress installs for anyone who needs a temporary site.</p>\n<p>After verifying that you’re not a robot, Poopy.life creates a test install and sends you to the admin where you can see credentials for logging in and sharing the site. The install expires after a week, unless manually extended with the button in the admin. It also allows you to create a sandbox template that can be shared via a URL so that others can quickly create a duplicate install.</p>\n<p><a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2017/03/poopy-test-install.png?ssl=1\"><img /></a></p>\n<p>The platform also has a secret menu, like <a href=\"https://www.thrillist.com/eat/los-angeles/the-in-n-out-secret-menu-ranked\" target=\"_blank\">In-N-Out Burger</a>, that allows you to add URL parameters to spin up sites even faster with certain actions already taken:</p>\n<p><strong>No URL Parameters</strong><br />\n<code>http://poopy.life/create/</code></p>\n<p><strong>Copy an existing install</strong><br />\n?src=[Sandbox ID]&key=[auth key]<br />\n<code>http://poopy.life/create?src=panicky-pheasant&key;=EuT9WPIm8122WCcq</code></p>\n<p><strong>Redirect URL</strong><br />\n?url=[redirect URL]<br />\n<code>http://poopy.life/create?url=/wp-admin/admin.php?page=sandbox</code></p>\n<p><strong>Send a welcome email</strong><br />\n?email=[email address]<br />\n<code>http://poopy.life/create?email=user@example.com</code></p>\n<p><strong>Activate Plugins</strong><br />\n?activate_plugins=[plugin_slug_1],[plugin_slug_2],[etc]<br />\n<code>http://poopy.life/create?activate_plugins=akismet,wordpress-importer</code></p>\n<h3>Poopy.life Platform Will Add a Commercial Tier at WPSandbox.io in the Near Future</h3>\n<p>Although Poopy.life is both memorable and amusing, the team chose the domain to prevent people from using it in their own product demos and support channels.</p>\n<p>“We chose poopy.life specifically because it is ridiculous and no one will be able to use it in a professional context,” Guilmette said. “Also it was shorter than the previous domain we were going to use – oxygen-is-really-amazing-and-everyone-loves-it.com.”</p>\n<p>Poopy.life runs on CloudLinux and Guilmette said it is hosted on “a handful of very powerful dedicated servers and ~10 smaller helper instances/load balancers, and duct tape.”</p>\n<p>WP All Import plans to introduce a commercial tier on wpsandbox.io to allow users to have installs on a custom domain, as well as control of the welcome notice and email. The poopy.life domain and landing page will live on, but Guilmette expects that it will soon be blacklisted by Google.</p>\n<p>“The WordPress installs are real WordPress installs and you can install any plugin on them,” Guilmette said. “You can install a PHP shell and dig around the server and run whatever weird spammy malware you want. There really isn’t any way to prevent it.”</p>\n<p>Guilmette estimates that Poopy.life is powering approximately 2,000 test installs right now. He doesn’t know how many their infrastructure can handle, but said they can easily scale it up.</p>\n<p>“We don’t really monitor or throttle usage so much as try to make sure that one user isn’t able to negatively impact another,” Guilmette said. “If the service grows in popularity, there will probably be some pain points that we’ll need to address. But we’ve been doing this for a long time and have worked out many of the kinks.”</p>\n<p>The team has been using a version of the Poopy.life platform on <a href=\"http://www.wpallimport.com/try/\" target=\"_blank\">wpallimport.com/try/</a> and <a href=\"http://www.oxygenapp.com/try/\" target=\"_blank\">oxygenapp.com/try/</a> for several years. In addition to being a fun, free tool they could offer to the public, the platform has also been critical to the success of the company. It allows users to test WP All Import and Oxygen products before purchasing.</p>\n<p>“Poopy.life is basically magical golden dogfood we’ve been eating for years,” Guilmette said. “This platform is huge for us. Back before we got serious about this we were hosting it on a VPS at MediaTemple, just kind of hacking it together. It would go down all the time, and whenever it did it would throw our support channel into disarray and sales would drop by 50%.”</p>\n<p>Guilmette said the most important thing WP All Import customers want to know is if the product will be able to import their files. The testing platform drives sales for the company and reduces refunds and buyer’s remorse, because customers know exactly what they are getting. It also has proven to reduce support requests.</p>\n<p>“We get way fewer simple questions about the UI, because people can just try it,” Guilmette said. “So that clears support up for people who have real problems. It also makes those support requests easier, because the user can reproduce the problem on a debug install, and we can poke at it without worrying about breaking their site.”</p>\n<p>Guilmette said the team is working on launching the commercial tier and may have something ready within a couple of weeks or sooner with the help of testers.</p>\n<div id=\"epoch-width-sniffer\"></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, 29 Mar 2017 19:36: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: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:40:\"HeroPress: WordPress: A Tool for Success\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://heropress.com/?post_type=heropress-essays&p=1672\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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://heropress.com/essays/wordpress-tool-success/\";s: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:12379:\"<img width=\"960\" height=\"480\" src=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2017/03/032917-min-1024x512.jpg\" class=\"attachment-large size-large wp-post-image\" alt=\"Pull Quote: I was not an obvious choice for a successful web person, but WordPress helped me reach my goals.\" /><p>I was a college teacher for most of my life. When my fourth baby arrived, I gave up a travel-heavy university job and took a “mommy job” as a bookstore manager. I chose books, held teacher workshops, and read stories to children for 15 years. As the internet became important, we put up a website and I became the manager of that site. 18 months later, the bookstore’s owners went bankrupt and closed the store.</p>\n<p>My initial reaction was, “They can’t do that – we’re #2 on Google!” We’d also gone from zero ecommerce sales to $5,000 a month. We had visitors to our blog from 192 different countries. Online, we were a success. But it was 2008, and lots of small businesses were going under. Lots of people were unemployed. I was unemployed for the first time in my life.</p>\n<p>Being #2 or even #1 on Google had a different meaning in those days, before customized search results. For me, it meant that I had become skilled with SEO and content marketing, but I figured I’d have to return to the classroom when my job ended.</p>\n<blockquote><p>“We couldn’t have done this without you,” the owner of the bookstore said. “There are other businesses that would benefit from your skills. Why don’t you go into business helping them?”</p></blockquote>\n<p>I scoffed bitterly. I had kids in college and two more getting ready to finish high school. I clearly needed a higher level of security than self-employment could offer.</p>\n<p>What’s more, I had already discovered that people who found out what I did with computers invariably looked at me oddly and said, “You don’t look like a computer guy.” They were right, although we now have a much more open minded idea of what computer guys can look like. Back then, though, I looked like someone’s mom. I was someone’s mom. This caused a high level of cognitive dissonance for some people, I knew.</p>\n<p>But I was bold enough to do a little bit of helping other businesses while I looked for work. I wrote an essay at the site that was then SEOMoz and got a job offer in the comments. I picked up a couple of local clients, and then through an online marketplace found some international clients. I went to job interviews, of course, and was offered jobs managing various things. But nothing I was offered was as fun as the work I was doing online. I turned down all the offers I received.</p>\n<h3>The Web People</h3>\n<p>I clearly remember my last job interview. It was Halloween 2008. I was talking with the vice chancellor at a medical school about his online needs. This was my first IRL tech job interview and the vice chancellor had told me I was his favorite candidate. The secretary came to the door and said, “We need to take Rebecca down to the basement to meet the Web People.”</p>\n<p>She was dressed as a witch. The hallways were full of cotton spider webs and spooky decorations. She was taking me down to the basement to meet the Web People. I was the only one who laughed.</p>\n<p>You see the humor, right? They did not. I realized that I didn’t really want to go back to academia, I didn’t want to manage things, and I didn’t want to sit in a cubicle proofreading. I wanted to have fun with websites.</p>\n<p>I talked with my family about the possibility of going into business for myself, and the possibility that I could fail and limit their college choices. My youngest son said, “You’ve always done what’s best for us. You should do what’s best for you.”<br />\nI have great kids.</p>\n<blockquote><p>At that point, I reviewed my income figures, saw that I was earning twice as much as I had earned as a bookstore manager, and decided that I would carry on as an independent Web Person.</p></blockquote>\n<p>As a freelance web writer and SEO, I never met a CMS I couldn’t make friends with. If there wasn’t a CMS at a website, I used Dreamweaver. Drupal, Joomla, Mango, sticks and clay tablets, I didn’t care. I used WordPress along with all the other options my clients wanted. In 2009, after being featured in the Wall Street Journal, my freelance business boomed. I teamed up with designers and built websites in addition to writing for web designers and agencies and businesses on four continents.</p>\n<p>My eldest daughter, Rosie, saw that I needed some help and came to work with me. “Saw that I needed some help” may be too kind a way to put it. I have some useful skills, but my main goal for my business was not to starve in the gutter and my main goal for accounting was to keep out of jail. We met with the local Small Business Association rep a couple of months after Rosie joined me and he said to me, kindly but firmly, “You’d be in trouble without her.”</p>\n<p>But with Rosie as my partner, I was able to build a thriving business. In 2010 we built a WordPress site for K-12 teachers just in time for our first WordCamp. We needed a lab site, and I had just finished writing a bunch of lesson plans with the Kennedy Center for the Performing Arts. In the course of that project I had discovered how limited online STEM (science, tech, engineering, and math) options for K-12 teachers were. We built a website called FreshPlans to help fill that need and had a functioning WordPress site for WordCamp.</p>\n<h3>0 to 8,000 in six months</h3>\n<p>Six months later, Rosie and I were looking at the stats for FreshPlans – 8,000 visits a month – and she said, “Why aren’t we doing this for our own website? Why aren’t we doing this for all our clients?”</p>\n<p>I didn’t have a good answer for why we weren’t doing it, but we went ahead and switched our business site to WordPress. We convinced our designer to give WordPress a chance and built WordPress websites for clients who needed new sites. We saw how much more sense the websites made to our clients. We saw how much more quickly we could build the sites and how much more value we could provide for our clients without the cost of bringing in a developer. We found that we were able to streamline our process for the clients whose blogging and social media we look after. We saw impressive results for our clients, too; not every website can go from 0 to 8,000 visits in six months, but we definitely see better results with WordPress than without it.</p>\n<p>Within a year, we went from platform agnostic to a dedicated WordPress shop. It worked better for us. It worked better for the people whose sites we built and managed. We were also beginning to see the value of open source and to appreciate the WordPress community.</p>\n<p>After that first WordCamp, I spoke at a couple of camps every year and our company sponsors and helps organize a couple of WordCamps nearly every year. Last year I spoke at three and I hope to continue expanding that service. WordPress has been good to us and we want to give back to the awesome WordPress community.</p>\n<h3>WordPress Success</h3>\n<p>Our business has grown. My eldest son graduated from college and joined the family business. My second daughter left us to work for Automattic. We’ve had some rough times, as every business does, but we can be proud of the work we do.</p>\n<p>We have the privilege of working with awesome clients, both locally and around the world. They can share their brands and their bigger messages in ways that would have been difficult and costly just a decade ago. We’re able to get great results for them – with hard work and WordPress.</p>\n<blockquote><p>WordPress is not a magic pixie dust you can sprinkle on your website for instant success.</p></blockquote>\n<p>But there are some things about WordPress that set you up for success:</p>\n<ul>\n<li>It may not be true (okay, it isn’t true) that you can master WordPress with no tech skills, training, or effort. But you don’t have to be a programmer to get the results you want and need in WordPress. If you have something to say, you can get it published more easily in WordPress than with other platforms.</li>\n<li>There’s no quality tradeoff. We usually build custom websites with talented and trained designers, but I’ve built dozens myself with pre-made themes and my own HTML and CSS skills (and great photos – the secret weapon for non-artists who want to create beautiful WordPress websites). Either way, you’re not limited by WordPress as you are by drag-and-drop sitebuilding tools.</li>\n<li>Because updating and adding content is so easy with WordPress, you can accomplish the essentials of content marketing more easily. You can focus on your message with less worry about the medium. You and your Web People can shape the web experience you want for your visitors efficiently.</li>\n<li>WordPress has the most supportive community you can find. We’re friends with local companies that we could also call competitors, because we spend time together in Meetups and WordCamp organizing meetings. We also have a large network of WordPress folks we respect and admire. It’s great to see them in person at WordCamps, but we also have the opportunity to get to know them better virtually. We help them and they help us.</li>\n</ul>\n<p>I can say from experience that WordPress has made a big difference in my life. I’m still a mom – in fact, I’m now a grandmother. But I’m also the owner of a successful web firm and a successful educational website. I write for and care for a number of websites I can be proud of.</p>\n<p>Last year at WordCamp Kansas City a man came up to show me his new website. I had spoken the year before about how to get started with a WordPress website, and he had been able to build a site for his fantasy hockey league. He was excited to show it to me, and I was excited to see it. That capacity to help other people achieve their goals with WordPress means a lot to me.</p>\n<p>If you’re just starting with WordPress, let my story encourage you. I was not an obvious choice for a successful Web Person, but WordPress helped me reach my goals. If you’re already a success with WordPress, find opportunities to help others reach their success, too.</p>\n<p>It’s the WordPress way.</p>\n<div class=\"rtsocial-container rtsocial-container-align-right rtsocial-horizontal\"><div class=\"rtsocial-twitter-horizontal\"><div class=\"rtsocial-twitter-horizontal-button\"><a title=\"Tweet: WordPress: A Tool for Success\" class=\"rtsocial-twitter-button\" href=\"https://twitter.com/share?text=WordPress%3A%20A%20Tool%20for%20Success&via=heropress&url=https%3A%2F%2Fheropress.com%2Fessays%2Fwordpress-tool-success%2F\" rel=\"nofollow\" target=\"_blank\"></a></div></div><div class=\"rtsocial-fb-horizontal fb-light\"><div class=\"rtsocial-fb-horizontal-button\"><a title=\"Like: WordPress: A Tool for Success\" class=\"rtsocial-fb-button rtsocial-fb-like-light\" href=\"https://www.facebook.com/sharer.php?u=https%3A%2F%2Fheropress.com%2Fessays%2Fwordpress-tool-success%2F\" rel=\"nofollow\" target=\"_blank\"></a></div></div><div class=\"rtsocial-linkedin-horizontal\"><div class=\"rtsocial-linkedin-horizontal-button\"><a class=\"rtsocial-linkedin-button\" href=\"https://www.linkedin.com/shareArticle?mini=true&url=https%3A%2F%2Fheropress.com%2Fessays%2Fwordpress-tool-success%2F&title=WordPress%3A+A+Tool+for+Success\" rel=\"nofollow\" target=\"_blank\" title=\"Share: WordPress: A Tool for Success\"></a></div></div><div class=\"rtsocial-pinterest-horizontal\"><div class=\"rtsocial-pinterest-horizontal-button\"><a class=\"rtsocial-pinterest-button\" href=\"https://pinterest.com/pin/create/button/?url=https://heropress.com/essays/wordpress-tool-success/&media=https://heropress.com/wp-content/uploads/2017/03/032917-min-150x150.jpg&description=WordPress: A Tool for Success\" rel=\"nofollow\" target=\"_blank\" title=\"Pin: WordPress: A Tool for Success\"></a></div></div><a rel=\"nofollow\" class=\"perma-link\" href=\"https://heropress.com/essays/wordpress-tool-success/\" title=\"WordPress: A Tool for Success\"></a></div><p>The post <a rel=\"nofollow\" href=\"https://heropress.com/essays/wordpress-tool-success/\">WordPress: A Tool for Success</a> appeared first on <a rel=\"nofollow\" href=\"https://heropress.com\">HeroPress</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, 29 Mar 2017 11:30:02 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Rebecca Haden\";s: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:93:\"WPTavern: Poedit 2 Introduces Direct Connection to WordPress, Adds Support for Twig Templates\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=68041\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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:\"https://wptavern.com/poedit-2-introduces-direct-connection-to-wordpress-adds-support-for-twig-templates\";s: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:2392:\"<p><a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2017/03/poedit.png?ssl=1\"><img /></a></p>\n<p><a href=\"https://poedit.net/news/introducing-poedit2\" target=\"_blank\">Poedit 2</a> was released today after two years in development. The app has a refreshed interface for translating .PO files, which Poedit creator Václav Slavík said was created by a professional designer. It is also the first paid upgrade for Pro users since the app <a href=\"https://wptavern.com/poedit-adds-pro-support-for-wordpress-theme-and-plugin-translation\" target=\"_blank\">added support for WordPress theme and plugin translations</a> in 2013.</p>\n<p>Poedit 2 introduces direct connectivity support for WordPress, allowing developers to connect directly to the server instead of working with unpackaged plugins/themes locally.</p>\n<p><a href=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2017/03/wordpress_connect@2x.png?ssl=1\"><img /></a><br />\n“Putting translation files on the server was the most common source of problems in Poedit (too many things can go wrong if you’re not yet very familiar with WP) and this feature should help a lot with that,” Slavík said.</p>\n<p>This release adds support for <a href=\"http://twig.sensiolabs.org/\" target=\"_blank\">Twig templates</a> and <a href=\"https://upstatement.com/timber/\" target=\"_blank\">Timber</a>. In the past, users had difficulty extracting strings from Twig templates, requiring some fragile workarounds. Slavík said some users resorted to setting up Poedit to treat them as Python files. Poedit 2 has a new built-in extractor for Twig.</p>\n<p>Poedit 2 also introduces a new pre-translation feature that allows for batch pre-translation of the entire PO file at once using Poedit’s online database and machine translation. After this has processed, users can then read through and correct any errors. Slavík said this feature saves a lot of time for many WordPress-related translations, such as themes, where a lot of strings are often repeated.</p>\n<p>Poedit used to be available from the Mac App Store but is now distributed exclusively from the <a href=\"https://poedit.net/\" target=\"_blank\">Poedit.net</a> website. The latest release drops support for older operating systems and requires users to be on Windows 7 or newer, macOS 10.10 Yosemite, or a modern Linux distribution.</p>\n<div id=\"epoch-width-sniffer\"></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, 29 Mar 2017 01:02: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:\"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:105:\"WPTavern: Data From Theme Reviews Shows Authors Need More Education on Developing Secure WordPress Themes\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=67987\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:116:\"https://wptavern.com/data-from-theme-reviews-shows-authors-need-more-education-on-developing-secure-wordpress-themes\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4489:\"<p>Last week, we <a href=\"https://wptavern.com/wordpress-theme-review-team-making-progress-on-clearing-out-1000-review-backlog\">highlighted the progress</a> being made by the Theme Review Team in clearing out a 1K+ review backlog. In an effort to determine common problems with themes discovered by reviewers, Carolina Nymark, a member of the Theme Review Team, <a href=\"https://make.wordpress.org/themes/2017/03/25/review-statistics/\">reviewed 100 tickets</a> from 531 themes that were closed and marked not approved between December and February. Nymark cautions that the data does not assure statistical accuracy and is not representative of the entire directory.</p>\n<p>Her assessment shows that the most common problems discovered by reviewers were:</p>\n<ul>\n<li>Missing escaping or using the wrong functions: 23 themes</li>\n<li>Text that is not translation ready: 21 themes</li>\n<li>Missing prefix: 20 themes</li>\n<li>Scripts or styles are not enqueued: 18 themes</li>\n<li>PHP notices, errors or warnings: 12 themes</li>\n<li>Style tags does not correspond with theme functionality, or are deprecated: 10 themes</li>\n</ul>\n<p>Nymark also reviewed 100 out of 177 new themes that went live between December and February. Out of these themes, the most common problems were:</p>\n<ul>\n<li>Missing escaping or using the wrong functions: 51 Themes</li>\n<li>Text that is not translation ready: 44 Themes</li>\n<li>Missing prefix: 39 Themes</li>\n<li>Missing license or copyright information for included assets: 34 Themes</li>\n<li>Unused code or files: 25 Themes</li>\n<li>PHP notices, errors or warnings: 20 Themes</li>\n<li>Missing sanitization, or using the wrong functions: 18 Themes</li>\n<li>Options in the customizer that are not working: 18 Themes</li>\n</ul>\n<p>Last Friday, Jose Castaneda, Ulrich Pogson, and Nymark participated in a <a href=\"https://make.wordpress.org/themes/2017/03/27/chat-with-matt-about-the-future-of-theme-repo/\">voice chat</a> with Matt Mullenweg, co-creator of the WordPress project, to discuss the future of the theme directory. The team discussed ideas around automation, improving the theme preview experience, and content portability. One of the experiments Mullenweg proposed is to remove the manual review process and rely more on user feedback. Feedback could include, tags, reviews, and other meta data.</p>\n<p>“As we are not sure if the process will function without manual reviews, we will start working on getting better user feedback on themes,” Pogson said. “Once we have a good infrastructure in place we can experiment with how the repository reacts with no manual reviews.</p>\n<p>“We discussed the process we would go about making decisions on changes to the theme repository and came to the consensus that a direct democracy is too fragile and representative democracy would be a better solution.”</p>\n<p>Security, code errors, and prefixing, were also mentioned in the conversation as the most common issues encountered with themes. The team was given a series of tasks to complete and will report the results to Mullenweg at a later date.</p>\n<h2>New Theme Check Plugin Will Detect Common Security Issues</h2>\n<p>The <a href=\"https://make.wordpress.org/themes/handbook/about/\">Theme Handbook</a> doesn’t have a chapter on security but it does link to a series of articles on writing secure themes in the <a href=\"https://make.wordpress.org/themes/handbook/review/resources/\">resources section</a>. Justin Tadlock, Key Reviewer, says work is underway on a new <a href=\"https://github.com/WPTRT/WordPress-Coding-Standards\">Theme Check</a> plugin that will automatically detect security issues commonly seen during the manual review process. These include escaping and data sanitization.</p>\n<p>“If we could get the greater theme developer community to pitch in and help get this finished, it would be awesome,” Tadlock said. “Even outside of WordPress.org, ThemeForest and commercial theme shops could really use this.”</p>\n<p>Members of the TRT are testing the plugin behind the scenes and are working to eliminate false-positives. The best way to get involved in the project is to view the<a href=\"https://github.com/WPTRT/WordPress-Coding-Standards/issues\"> Issue tracker</a> and submit pull requests. Once the new theme check plugin is live, it will give authors another tool at their disposal for developing more secure WordPress themes.</p>\n<div id=\"epoch-width-sniffer\"></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 28 Mar 2017 22:52: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:\"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:93:\"WPTavern: WordPress Relaunches Plugin Directory with New Design and Improved Search Algorithm\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=68018\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:104:\"https://wptavern.com/wordpress-relaunches-plugin-directory-with-new-design-and-improved-search-algorithm\";s: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:5396:\"<p>The new <a href=\"https://wordpress.org/plugins/\" target=\"_blank\">WordPress Plugin Directory</a> went live today. Contributors have been working for the past year on rebuilding the directory with a new design and better capabilities for searching through the 45K+ available plugins.</p>\n<p>The new landing page displays a search bar prominently at the top, followed by sections for featured plugins, popular plugins, and beta plugins.</p>\n<p><a href=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2017/03/wordpress-plugin-directory.png?ssl=1\"><img /></a></p>\n<p>The design changes to the individual plugin pages have received <a href=\"https://www.facebook.com/groups/advancedwp/permalink/1446257985436411/?match=YWR2YW5jZWQgd29yZHByZXNzLHdvcmRwcmVzcy5vcmcsd29yZHByZXNzLGFkdmFuY2Vk\" target=\"_blank\">mixed feedback from members of Advanced WordPress Facebook.</a> The screenshots slider and FAQ accordion UI are welcome improvements, but many are not fond of how the new single plugin display ditches the previous tabbed interface in favor of truncated sections with numerous “read more” links. This requires the visitor to click and scroll repeatedly through a massive wall of text. The experience of doing this to find information is much less efficient than the previous tabbed UI.</p>\n<p>Many of the plugin header images appear to be stretched now with the new wider content area, but this may encourage developers to update their listings. Several users have commented that they are disappointed with the removal of stats, which are now viewable for admins only. Plugin team member Mika Epstein said they are waiting for more feedback from end users (not plugin developers) on whether to make them publicly viewable again.</p>\n<p>The new design matches <a href=\"https://wptavern.com/wordpress-org-launches-homepage-redesign\" target=\"_blank\">WordPress.org’s homepage redesign</a>, which went from sketches to prototype to live during the last few weeks of December 2016. The most exciting improvements, however, are found under the hood.</p>\n<p>The plugin directory is now powered by WordPress, instead of bbPress, making it easier for plugin developers and reviewers to manage plugins, tags/categories, and committers. The submission and review process has also been streamlined so the plugin team will no longer reject plugins after 7 days. They also have to ability to rename plugin slugs prior to approval for easier handling of typos.</p>\n<h3>New Plugin Search Algorithm Delivers More Relevant Results</h3>\n<p>The most significant user-facing improvement in the redesign is better search relevance. <a href=\"https://make.wordpress.org/meta/2016/08/30/initial-analysis-of-plugin-search-logs/\" target=\"_blank\">Analysis of plugin search logs</a> in August 2016 showed the directory handles 100,000 searches per day and receives more than 500k unique search queries per month.</p>\n<p>Greg Ichneumon Brown, a Data Wrangler at Automattic, published an in-depth <a href=\"https://data.blog/2017/03/15/improving-relevance-and-elasticsearch-query-patterns/\" target=\"_blank\">article</a> on how he and contributors improved search fidelity for the new plugin directory. The eye-opening account explains just how opinionated search algorithms need to be in order to give users the best experience at this scale.</p>\n<p>“In improving the fidelity of search results, it’s not just a question of how we satisfy a single user’s search query, but how we satisfy thousands of users for each unique search term: which plugins will support that volume of users and their requests for support?” Brown said. “Which are most likely to give all of these users a great WordPress experience?”</p>\n<p>The new search algorithm delivers results based on this premise. Brown added a calculation for the lowest/highest ratio of active_installs to the number of times the search was performed. However, this isn’t the only factor that influences whether or not a users will have a good experience with the top results. The algorithm also includes signals that Brown said plugin authors have a lot more control over:</p>\n<ul>\n<li>Resolving support threads</li>\n<li>Keeping the plugin update to date</li>\n<li>Testing the plugin on the latest versions of WordPress</li>\n</ul>\n<p>Brown’s <a href=\"https://data.blog/2017/03/15/improving-relevance-and-elasticsearch-query-patterns/\" target=\"_blank\">post</a> breaks down the Elasticsearch query he developed for the directory and explains how text matching works to find relevant results for author searches, queries that include operators, and partial-word boosting.</p>\n<p>The plugin directory relaunch has several known issues that the plugin team noted in the <a href=\"https://make.wordpress.org/plugins/2017/03/28/the-new-directory-is-mostly-live/\" target=\"_blank\">announcement</a> today. Users are noticing many broken links, problems with SVN, and other bugs when navigating around the new directory. The team has a list of tickets on <a href=\"https://meta.trac.wordpress.org/query?status=reopened&status=assigned&status=reviewing&status=new&status=accepted&group=status&milestone=Plugin+Directory+v3.0\" target=\"_blank\">Meta Trac</a> that they are working through and feedback is welcome. Plugin submissions are temporarily disabled while the transition is completed.</p>\n<div id=\"epoch-width-sniffer\"></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 28 Mar 2017 21:59: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: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:85:\"WPTavern: UK Home Secretary Amber Rudd Links WordPress.com to the Spread of Terrorism\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=67968\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:96:\"https://wptavern.com/uk-home-secretary-amber-rudd-links-wordpress-com-to-the-spread-of-terrorism\";s: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:7298:\"<p><a href=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2017/03/wordpresscom-logo.jpg?ssl=1\"><img /></a></p>\n<p>UK government officials are targeting online service providers after terrorist Khalid Masood killed four people and injured more than two dozen in an attack in Westminster last week. In an <a href=\"http://www.telegraph.co.uk/news/2017/03/26/amber-rudd-social-media-firms-must-do-stop-terror/\" target=\"_blank\">article</a> published on the Telegraph Sunday morning, British Home Secretary Amber Rudd called on Google, Twitter, and Facebook to take action on extremist content. She also identified Telegram, Justpaste.it, and WordPress.com as smaller platforms through which terrorist activity is spreading.</p>\n<p>“There should be no place for terrorists to hide,” Rudd told Andrew Marr in an <a href=\"http://www.bbc.co.uk/programmes/p04y2cnh\" target=\"_blank\">interview</a> over the weekend. “We need to make sure organizations like WhatsApp, and there are plenty of others like that, don’t provide a secret place for terrorists to communicate with each other.”</p>\n<p>Last week’s attack in London also seems to have reignited the UK government’s war on encryption, as Rudd said that the security agencies’ inability to crack encrypted messages during an investigation is “completely unacceptable.” Masood allegedly used WhatsApp to communicate shortly before the attack.</p>\n<p>The Home Secretary has summoned representatives from a list of online service providers, including Google, Twitter, Facebook, and smaller companies, to a meeting this week to discuss combatting terrorist abuse of these platforms. Automattic would not confirm whether the company has been summoned but it seems likely given that WordPress.com was one of the platforms Rudd highlighted over the weekend.</p>\n<p>The Telegraph article strongly linked WordPress.com to terrorism, citing several claims from the Counter Extremism Project that the Washington Post <a href=\"https://www.washingtonpost.com/news/the-switch/wp/2017/03/01/how-alleged-isis-videos-are-creating-a-headache-for-wordpress/?utm_term=.bb8acba3d6ff\" target=\"_blank\">published</a> earlier this month:</p>\n<blockquote><p>But most such sites are publicly available and used to spread content. According to US think tank the Counter Extremism Project, WordPress.com sites have played host to beheading videos, firing squads, and a video of a man being shot in the head, emblazoned with the words ‘This In the Enemy Of Allah.’</p></blockquote>\n<p>Historically, WordPress.com has been a strong supporter of free speech but posting terrorist propaganda is a violation of its terms of service. The site has a dedicated page outlining the platform’s stance on <a href=\"https://en.support.wordpress.com/terrorist-activity/\" target=\"_blank\">terrorist activity</a>:</p>\n<blockquote><p>While our service is designed to enable users to freely express their ideas and opinions, however controversial, safety is important to us. As such, we don’t allow websites of known terrorist groups or genuine calls for violence against individuals or groups on WordPress.com.</p></blockquote>\n<p>WordPress.com users can <a href=\"https://en.support.wordpress.com/report-blogs/\" target=\"_blank\">report sites</a> they find to be suspicious but the page also emphasizes the platform’s commitment to free speech:</p>\n<blockquote><p>Please note that the team behind WordPress.com strongly believes in freedom of speech. WordPress.com has a vast audience spread across many cultures, countries and backgrounds with varying values and our service is designed to let internet users freely express any ideas and opinions without us censoring or endorsing them.</p>\n<p>We take all reports seriously, but we won’t remove sites just because they are offensive.</p></blockquote>\n<p>WordPress.com also denies use to individuals, groups, or entities on the <a href=\"https://www.treasury.gov/ofac/downloads/sdnlist.pdf\" target=\"_blank\">Specially Designated Nationals</a> list, maintained by the U.S. Department of the Treasury’s Office of Foreign Assets Control.</p>\n<p>It’s not yet clear what Home Secretary Rudd is calling for in summoning global tech company representatives to a meeting, but her comments on the Andrew Marr show indicate the government may request closer monitoring.</p>\n<p>“What I’m saying is the best people – who understand the technology, who understand the necessary hashtags to stop this stuff even being put up, not just taking it down, but stopping it being put up in the first place – are going to be them,” Rudd said. She also said she is in conversations with the U.S. government to help get all of these companies around the table to agree to stop this kind of content from being published in the first place.</p>\n<p>Automattic would not provide a comment at this time regarding its position on the UK government attempting to curb online extremism by targeting online services. However, the company has a long history of actively pushing back against requests that violate users’ freedom of speech. In 2010, Automattic <a href=\"http://en.blog.wordpress.com/2010/07/01/support-the-first-amendment-with-1-for-all/\" target=\"_blank\">demonstrated its support for freedom of speech by raising awareness about the First Amendment</a>. Automattic’s General Counsel Paul Sieminski wrote about the company’s commitment to <a href=\"https://en.blog.wordpress.com/2013/11/21/striking-back-against-censorship/\" target=\"_blank\">strike back against censorship</a> in 2013 after taking to the courts to stand with users against DMCA abuse. In 2014, when tech companies all over the world joined forces to <a href=\"https://thedaywefightback.org/\" target=\"_blank\">protest NSA surveillance</a>, Automattic was among them.</p>\n<p>If Rudd’s call for tech companies to take “a more proactive role” in tackling terrorist abuse ultimately means introducing monitoring that violates users’ privacy and gives government more access, she will be hard-pressed to get cooperation. American companies like Automattic and Apple have already demonstrated they are willing to go to court to protect users’ freedoms and privacy.</p>\n<blockquote class=\"twitter-tweet\">\n<p lang=\"en\" dir=\"ltr\">To help keep our streets safe, we need to rise up against companies like <a href=\"https://twitter.com/hashtag/Apple?src=hash\">#Apple</a> and <a href=\"https://twitter.com/hashtag/Whattsapp?src=hash\">#Whattsapp</a> who provide space and comfort to terrorists</p>\n<p>— Nadine Dorries (@NadineDorriesMP) <a href=\"https://twitter.com/NadineDorriesMP/status/846267877435035648\">March 27, 2017</a></p></blockquote>\n<p></p>\n<p>The anti-encryption rhetoric surrounding this issue seems manufactured to allow UK government officials to capitalize on a public tragedy in order to push a political agenda. Rudd is unlikely to find many companies in the tech industry that are eager to hand over users’ freedoms and private communications, but hopefully the summit will serve to educate government officials on why it’s dangerous to legislate backdoors into consumer products.</p>\n<div id=\"epoch-width-sniffer\"></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, 27 Mar 2017 22:30:41 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s: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: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:71:\"WPTavern: WordCamp Miami 2017 Will Livestream All Sessions this Weekend\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=67929\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:82:\"https://wptavern.com/wordcamp-miami-2017-will-livestream-all-sessions-this-weekend\";s: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:1577:\"<p><a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2017/02/wordcamp-miami-2017.png?ssl=1\"><img /></a></p>\n<p><a href=\"https://2017.miami.wordcamp.org/\" target=\"_blank\">WordCamp Miami</a> kicked off today with its ancillary workshops for beginners, freelancers, and BuddyPress enthusiasts. The WordCamp is entering its 9th year and organizers are expecting more than 800 attendees. Tickets are once again sold out, but latecomers hoping to attend can sign up for the <a href=\"http://davidbisset.us6.list-manage.com/subscribe?u=8f9242549d66d09eceb714b54&id=6685084fbd\" target=\"_blank\">wait list</a>.</p>\n<p>WordCamp Miami is one of the most well-established WordPress events and is known for having high quality sessions. This year’s <a href=\"https://2017.miami.wordcamp.org/schedule/\" target=\"_blank\">schedule</a> includes 60+ local and international speakers, a JavaScript learning track, and new AMA spots, featuring prominent people in the community. If you are unable to attend but want to join in remotely, the camp will be <a href=\"https://2017.miami.wordcamp.org/live/\" target=\"_blank\">live streaming</a> all sessions on Saturday and Sunday for free. There is no registration for the <a href=\"https://2017.miami.wordcamp.org/live/\" target=\"_blank\">live stream</a> and organizer David Bisset said it doesn’t have a limit on the number of people who can watch simultaneously. Participants can join in on Twitter with the <a href=\"https://twitter.com/hashtag/wcmia?src=hash\" target=\"_blank\">#wcmia</a> hashtag.</p>\n<div id=\"epoch-width-sniffer\"></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, 24 Mar 2017 21:52: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:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:29;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:80:\"WPTavern: Medium Aims to Fix ‘Broken’ Media with New $5 Subscription Program\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=67900\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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:\"https://wptavern.com/medium-aims-to-fix-broken-media-with-new-5-subscription-program\";s: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:6399:\"<p><a href=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2017/03/medium.jpg?ssl=1\"><img /></a></p>\n<p>Nearly three months after <a href=\"https://blog.medium.com/renewing-mediums-focus-98f374a960be#.xij39212w\" target=\"_blank\">laying off a third of its staff</a> and publicly admitting that its previous ad-based revenue model was broken, Medium has introduced a new <a href=\"https://blog.medium.com/upgrade-your-medium-924b74c36552#.8qjmspkzj\" target=\"_blank\">$5 per month subscription program</a>. The internet speculated freely about Medium’s next move after CEO Ev Williams said the company would be taking “a different, bolder approach” to the problem of driving payment for quality content.</p>\n<p>It turns out the “bolder approach” he referenced is a subscription-based model, one that <a href=\"https://thenextweb.com/opinion/2017/03/23/ev-williams-lost-goddamn-mind/#.tnw_zZrtqFcj\" target=\"_blank\">skeptics</a> are already eager to <a href=\"https://www.theregister.co.uk/2017/03/24/medium_five_bucks_a_month_for_nothing/\" target=\"_blank\">tear apart</a> as many media organizations have struggled to find success with paywalls. Early subscribers will receive access to curated content, a new reading experience, ad-free browsing, and an offline reading list. Medium will be using the subscription revenue to pay writers for content, some of which will be restricted to members only.</p>\n<p>“We will be routing 100% of the revenue from founding members (those who sign up in the first few months) to writers and independent publishers who have important work to do,” Williams said. “Those who have hard-won expertise, do exhaustive research, and think deeply. Those who make us all smarter. Those who maximize our understanding of the world but don’t necessarily maximize clicks — and, therefore, are at a disadvantage amongst the highly optimized algorithm chum being slung by the truckload by low-cost content purveyors.”</p>\n<p>Medium’s new curated content stream will surface the most worthwhile articles from its network, which grew from 1.9 million posts in 2015 to 7.5 million in 2016 posts. Williams identified the types of content members can expect with their subscriptions in a <a href=\"https://blog.medium.com/our-approach-to-member-only-content-cfce188261d1#.ciyj1nlir\" target=\"_blank\">followup post</a> viewable only to subscribers:</p>\n<ul>\n<li>Politics. What’s happening behind the headlines. How to think about it. What to do about it.</li>\n<li>Work. Lessons in business, startups, leadership, management, and money.</li>\n<li>Self. Smart takes on how to be your best you — happier, healthier, more productive.</li>\n<li>Future. Where the world is going — technology, trends, what it all means.</li>\n</ul>\n<p>For those who have long regarded Medium as the home of hot takes, open letters, and scintillating rants, the new curated content will feature pieces from those who Williams describes as “doing important work.” The list above indicates the platform will be promoting a hefty does of spoon-fed thought and self-improvement topics. In order to make money from the people who have it to spend, the blogging silo must focus on helping those with too much information and not enough time to figure out “how to think about” important issues.</p>\n<p>Medium is currently <a href=\"https://medium.com/@adamhodgkin/medium-needs-a-business-model-550d3e2ff2ab#.f0ld2suga\" target=\"_blank\">soliciting writers via email</a>, according to one recipient, Adam Hodgkin. This move marks a change in the company where it is essentially becoming a publisher in addition to an aggregator, commissioning content that will deliver that trademark Medium flavor.</p>\n<p>Authors should be aware that articles published behind Medium’s paywall will lose their potential to go viral. In addition to trading site and content ownership for convenience, those who agree to write for Medium’s members will be limiting the potential reach their content may have had if it was published in the open.</p>\n<p>“Media is broken,” Williams said. “And we need to fix it. I’m super passionate about this. Though we’ve changed our approach recently, this has been Medium’s mission from day one. We saw the feedback loops for publishing content to be a major problem, and we set out to build a new model. We’ve come a long way since — establishing ourselves as the platform for thoughtfulness, depth, and insight from independent thinkers. But the greater challenge — changing the incentives that drive our consumption of media online — has become even more pressing. It’s time to double-down.”</p>\n<p>If there’s something new about this economic model, we have yet to see it. Spotify, Netflix, the Financial Times, the Wall Street Journal, and many other businesses have successfully implemented the subscription model. Using it to fund the type of content that Medium aims to highlight may not be feasible, however, as consumers tend to gravitate towards free content and news that is read and shared in the open.</p>\n<p>If Medium’s only option for exiting the <a href=\"http://readwrite.com/2007/03/01/attention_economy_overview/\" target=\"_blank\">attention economy</a> is to further lock down users’ content inside its proprietary silo, the remedy is worse than the disease. Instead of seeing ads on articles available to everyone, subscribers now pay to read content that is selected by and owned by Medium, a company that still needs to find a way to keep the lights on once all the VC money is gone.</p>\n<p>Medium tried the ad-driven publishing model without success and then declared that it was a broken system. Was the model broken because it didn’t bring Medium enough money to keep paddling on? Or is it fundamentally broken because it “incentivizes the wrong behaviors,” as Williams put it? His newfound idealism behind the push to leave the domain of “ad buyers and social media echo chambers” appears to be a mask for the lack of a concrete monetization strategy.</p>\n<p>Williams’ closing appeal says everything: “Join us early, and help us figure it out.” Medium is still experimenting on publishers to find a way to stay afloat.</p>\n<div id=\"epoch-width-sniffer\"></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, 24 Mar 2017 21:24: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: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:82:\"WPTavern: How to Find the Age of a Plugin Hosted in the WordPress Plugin 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:29:\"https://wptavern.com/?p=67923\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:93:\"https://wptavern.com/how-to-find-the-age-of-a-plugin-hosted-in-the-wordpress-plugin-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:1554:\"<p>The <a href=\"https://wordpress.org/plugins/\">WordPress plugin directory</a> provides information such as version requirements, compatibility, last updated, and active installs for plugins. What it doesn’t tell you is how old a plugin is. A new site called<a href=\"http://pluginage.ahmadawais.com/\"> Age WP Plugin</a> created by <a href=\"https://AhmadAwais.com\">Ahmad Awais</a> and <a href=\"https://maedahbatool.com/\">Maedah Batool</a> makes finding this information easy. Simply type in a plugin’s slug into the search box and hit enter.</p>\n<img />Hello Dolly is 8 Years Old\n<p>Awais created the site after Batool inquired about the age of a plugin for an article she was writing. Using the WordPress.org API, Awais discovered that one of the data points was a plugin’s submission date. In addition to displaying a plugin’s age, the site also shows the number of downloads it has. In early 2015, the <a href=\"https://wptavern.com/wordpress-plugin-directory-launches-new-design\">plugin directory was redesigned</a> and replaced the download count with the number of active installs.</p>\n<p>The site has <a href=\"https://www.facebook.com/groups/advancedwp/permalink/1441868299208713/\">received positive feedback</a> from plugin authors in the Advanced WordPress Facebook group. Something I’d like to see added is a list of 10 or 25 of the oldest plugins in the directory. Awais plans to redesign the site using a different color scheme and fix styling issues reported by testers.</p>\n<div id=\"epoch-width-sniffer\"></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, 24 Mar 2017 19:12:11 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:57:\"WPTavern: PHP 5.6 Is Now the Most Widely Used PHP Version\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=67851\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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:\"https://wptavern.com/php-5-6-is-now-the-most-widely-used-php-version\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2510:\"<p>PHP 5.6 usage has steadily increased over the past year and has now overtaken versions 5.3 and 5.4 to be the most widely used version, according to <a href=\"https://w3techs.com/technologies/history_details/pl-php/5\" target=\"_blank\">W3Techs’ stats</a>. PHP is used by 82.6% of all the websites for which W3Techs can detect a server-side programming language. PHP 7 accounts for 3.1% of these websites and PHP 5.x makes up 95.3%, with version 5.6 usage at the top end.</p>\n<p><a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2017/03/php-version-usage.png?ssl=1\"><img /></a></p>\n<p><a href=\"http://php.net/usage.php\" target=\"_blank\">PHP.net’s usage stats</a> page hasn’t been updated sine 2013 but the project recommends W3Techs’ stats for viewing PHP market share by version. W3Techs’ methodology takes the top 10 million websites, according to Alexa rankings, to offer a representative sample of established sites without including domain spammers.</p>\n<p>PHP 5.6 overtaking older versions is a significant milestone for the PHP community, since it still receives <a href=\"http://php.net/supported-versions.php\" target=\"_blank\">support for critical security issues</a> until December 31, 2018. The older versions that previously dominated usage reached End of Life in 2015 and 2016 and are no longer receiving security updates.</p>\n<p>Adoption of supported PHP versions is somewhat slower in the WordPress community. According to the project’s <a href=\"https://wordpress.org/about/stats/\" target=\"_blank\">stats</a>, more than half of all WordPress sites (55.6%) are using unsupported versions of PHP (versions 5.2 – 5.5).</p>\n<p>In early December 2016, WordPress updated its <a href=\"https://wordpress.org/about/requirements/\" target=\"_blank\">hosting recommendation</a> to PHP 7+, which should help new users who are approaching hosts to request their sites be put on newer versions of PHP. In addition to these recommendations, WordPress’ strategy in the past has been to cultivate relationships with hosts to help improve host configurations for users. The project recently launched the <a href=\"https://make.wordpress.org/hosting/\" target=\"_blank\">Make WordPress Hosting</a> community to facilitate collaboration among those with hosting experience. Participants are currently working on documenting best practices, including recommendations for PHP versions offered, and providing tools for the community.</p>\n<div id=\"epoch-width-sniffer\"></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, 23 Mar 2017 19:15:29 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:32:\"Matt: On the James Altucher Show\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:22:\"https://ma.tt/?p=47188\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:49:\"https://ma.tt/2017/03/on-the-james-altucher-show/\";s: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:450:\"<p>I <a href=\"http://www.jamesaltucher.com/2017/03/matt-mullenweg/\">joined in for the James Altucher podcast in an episode that covered a lot of ground</a>. One clarification was the point of the story about my Dad not making much at his old job was that companies should be thoughtful about compensation especially for the people who stay with them the longest, not that loyalty is a myth or something to be avoided. It just needs to be two-way.</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, 23 Mar 2017 16:29:13 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:115:\"WPTavern: WPWeekly Episode 268 – Behind the Scenes of WordPress Development Course, Up and Running Second Edition\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"https://wptavern.com?p=67846&preview=true&preview_id=67846\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:121:\"https://wptavern.com/wpweekly-episode-268-behind-the-scenes-of-wordpress-development-course-up-and-running-second-edition\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2416:\"<p>On this episode, <a href=\"http://www.marcuscouch.com/\">Marcus Couch</a> and I are joined by <a href=\"https://alexdenning.com/\">Alex Denning</a>, <a href=\"https://pressupinc.com/\">Fred Meyer, and David Hayes</a> of <a href=\"https://wpshout.com/\">WPShout</a> to discuss their WordPress Development course, <a href=\"https://wpshout.com/up-and-running/\">Up and Running Second Edition</a>. We learn why the trio created the course and who it’s geared towards.</p>\n<p>Later in the show, we have a great conversation surrounding the REST API and its potential impacts on WordPress. Near the end of the interview, we get their thoughts on the state of WordPress education.</p>\n<h2>Stories Discussed:</h2>\n<p><a href=\"https://wptavern.com/godaddy-acquires-sucuri\">GoDaddy Acquires Sucuri</a></p>\n<h2>Plugins Picked By Marcus:</h2>\n<p><a href=\"https://wordpress.org/plugins/wp-multisite-user-sync/\">WP Multisite User Sync</a> lets you Sync/unsync users from one site (blog) to other sites (blogs) in a WordPress Multisite network.</p>\n<p><a href=\"https://wordpress.org/plugins/woo-save-abandoned-carts/\">WooCommerce Live Checkout Field Capture</a> plugin saves all activity in the WooCommerce checkout form before it is submitted. This enables you to see who has abandoned their shopping carts with the ability to contact them and remind about the abandoned cart.</p>\n<p><a href=\"https://wordpress.org/plugins/after-comment-redirector/\">After Comment Redirector</a> lets you redirect to a custom page after commenting for all or new commentators. This is a handy way to say thank you to your most engaging readers. You can also give out a coupon, special e-book, or secret content when someone leaves a comment.</p>\n<h2>WPWeekly Meta:</h2>\n<p><strong>Next Episode:</strong> Wednesday, March 29th 3:00 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=\"https://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 #268:</strong><br />\n</p>\n<div id=\"epoch-width-sniffer\"></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, 23 Mar 2017 01:39:19 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s: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: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:33:\"WPTavern: GoDaddy Acquires Sucuri\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=67826\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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:\"https://wptavern.com/godaddy-acquires-sucuri\";s: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:5541:\"<p>GoDaddy <a href=\"https://www.godaddy.com/garage/godaddy/sucuri-godaddy-team-protect-websites/\">has announced</a> that it has entered into an agreement to acquire <a href=\"https://sucuri.net/\">Sucuri Security</a>. Sucuri, founded by Daniel Cid and co-founded by Tony Perez in 2010, is a website security platform that helps clean and protect websites. Details of the deal were not disclosed.</p>\n<p>Like <a href=\"https://wptavern.com/godaddy-acquires-wordpress-site-management-service-managewp\">ManageWP</a>, Sucuri will operate as a separate entity under the GoDaddy umbrella. Sucuri employees will transfer to GoDaddy while remaining under the leadership of Perez and Cid.</p>\n<p>Out of all the companies that Sucuri could have chosen to be acquired by, why GoDaddy?</p>\n<p>“Over the years we’ve seen them live up to their words to be a customer and product centric company,” Perez said. “As a product company it give us an opportunity to scale our product from a few hundred thousand domains, to millions. It’s something that we only ever dreamed of.”</p>\n<p>The acquisition comes a few weeks after <a href=\"https://www.siteground.com/blog/sg-site-scanner-powered-sucuri/\">SiteGround announced</a> its partnership with Sucuri and renamed its site scanner SG Site Scanner. It’s too soon to determine how this acquisition will affect Sucuri’s partnerships with hosting companies.</p>\n<p>“I can’t speak for our partners, but I truly hope they will trust in us, Sucuri, and in me personally,” Perez said. “If we can work to deploy our technology for GoDaddy, at their scale, then I have nothing but confidence we can do this for every other partner out there.</p>\n<p>“GoDaddy made this investment because they believe in what we have built as a team at Sucuri, the product solves problems, that doesn’t go away and I hope all our customers and partners will give us time to prove this in our actions.”</p>\n<p>Both companies acknowledged that nothing changes for existing Sucuri customers and that they can expect to see numerous improvements in the near future. Perez and Cid see the acquisition as version 2.0 of the company.</p>\n<p>Aaron Campbell, WordPress Security Team Lead who is sponsored by GoDaddy to work on WordPress full-time, says the move should help make more sites secure.</p>\n<p>“GoDaddy is committed to offering great services to its clients,” Campbell said. “You know as well as I do that Sucuri is exactly that; we’ve seen them be quite an asset to the WordPress community over the years.</p>\n<p>“They’re going to remain a standalone product, but I’m excited to see them become part of the GoDaddy team to make some great stuff together. Keeping as many WordPress users secure as possible is obviously my goal and I really think this will help accomplish that.”</p>\n<p>Reactions to the news on Twitter have mostly been positive with many congratulating Sucuri and its founders.</p>\n<p>On the <a href=\"https://www.facebook.com/groups/advancedwp/?ref=group_cover\">Advanced WordPress Facebook group</a>, reactions to <a href=\"https://www.facebook.com/groups/advancedwp/permalink/1440220396040170/\">the news</a> are a mix between congratulatory and fears of Sucuri’s service declining. These are among the same grievances and fears expressed by ManageWP customers when <a href=\"https://managewp.com/managewp-joins-godaddy\">GoDaddy acquired it</a>.</p>\n<h2>ManageWP Customers Report No Noticeable Decline in Service</h2>\n<p>Since being acquired, ManageWP has maintained and improved service levels while continuing to add features. Its most recent feature gives customers the opportunity to create backups, restore, and clone <a href=\"https://managewp.com/multisite-websites-in-managewp\">multisite websites</a>.</p>\n<p>Bob Dunn, of <a href=\"https://bobwp.com/\">BobWP</a>, says the service has been stellar before and after the transition.</p>\n<p>“To be honest, their services were great before and still are,” Dunn said. “I don’t manage a ton of sites, but for my needs, it has been rock solid since I first became a customer.”</p>\n<p>Scott Buscemi, co-founder of <a href=\"https://lumenfoundry.com/\">Lumen Foundry</a>, has had a similar experience.</p>\n<p>“In all honesty, I haven’t noticed much of anything since they were acquired – and that’s a ‘win’ in my opinion,” Buscemi said.</p>\n<p>“I’ve seen them push out a pleasant list of bug fixes and features that don’t affect me, so it’s great to still see active development on the primary system. GoDaddy has been working hard to get on the good side of developers and agency owners like me, so I can’t imagine they would go through the effort of the acquisition only to spoil the experience and turn things negative.”</p>\n<p>Even those skeptical with the acquisition have reported no noticeable decline in the quality of service.</p>\n<blockquote class=\"twitter-tweet\">\n<p lang=\"en\" dir=\"ltr\"><a href=\"https://twitter.com/jeffr0\">@jeffr0</a> Me, I haven’t really noticed any change in the quality of the service (and I was skeptical)</p>\n<p>— \"so called\" Jim Cook (@jm_cook) <a href=\"https://twitter.com/jm_cook/status/844657355035938816\">March 22, 2017</a></p></blockquote>\n<p></p>\n<p>GoDaddy has not announced how it plans to integrate Sucuri into its products and services.</p>\n<div id=\"epoch-width-sniffer\"></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, 23 Mar 2017 00:53: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:\"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:35;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:62:\"BuddyPress: BuddyPress at WordCamp London 2017 Contributor Day\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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:\"https://buddypress.org/?p=264902\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:82:\"https://buddypress.org/2017/03/buddypress-at-wordcamp-london-2017-contributor-day/\";s: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:1688:\"<p>Contributor Day is a big part of WordCamp London. This year it was held on Friday 17th March at London Metropolitan University. 100 contributors descended on the venue each aiming to make WordPress better in some wonderful way.</p>\n<img src=\"https://buddypress.org/wp-content/uploads/1/2017/03/room-back.jpg\" alt=\"A room full of people\" />Contributors at WordCamp London 2017. Photo by <a href=\"https://wpism.com\" rel=\"nofollow\" target=\"_blank\">Pradeep Singh</a>.\n<p>Attendees were asked to choose an area of interest. The options were Accessibility, BuddyPress, Community, Core, Design & Flow, Documentation, Polyglots, Support and Themes. 5 of the 100 contributors chose BuddyPress. 2 of the 5 were new to contributing in general but all had used, or had at least heard of, BuddyPress at some point.</p>\n<p>After a quick refill of coffee the team convened and began discussing how to get the most from the next 8 hours. Due to a diverse range of skills available within the group, we were able to focus on documentation, coding and localisation.</p>\n<img src=\"https://buddypress.org/wp-content/uploads/1/2017/03/buddypress-table.jpg\" alt=\"People using laptops\" />BuddyPress contributors. Photo by <a href=\"https://wpism.com\" rel=\"nofollow\" target=\"_blank\">Pradeep Singh</a>.\n<p>As a team we managed to identify an issue related to colour contrast in the Twenty Seventeen theme. <a href=\"https://buddypress.trac.wordpress.org/ticket/7471\" target=\"_blank\">#7471</a> was opened and a patch was submitted. We were also able to translate all remaining strings into Italian.</p>\n<p>The day was a huge success and all team members indicated they will contribute again going forward.</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, 22 Mar 2017 21:26: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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Henry Wright\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:36;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"WPTavern: Foxhound Is the First REST API Powered Theme on 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:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=65646\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:82:\"https://wptavern.com/foxhound-is-the-first-rest-api-powered-theme-on-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:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3281:\"<p><a href=\"https://wordpress.org/themes/foxhound/\" target=\"_blank\">Foxhound</a> made its debut on WordPress.org yesterday. The React-based theme is the first in the directory to use the REST API endpoints included in WordPress 4.7. Foxhound sports a tasteful blog design with single-page app functionality that loads posts instantly. Check out the <a href=\"https://themes.redradar.net/foxhound/\" target=\"_blank\">live demo</a> to see how fast the content loads.</p>\n<p><a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2017/02/foxhound.png?ssl=1\"><img /></a></p>\n<p>The theme was designed and developed by <a href=\"https://themes.redradar.net/\" target=\"_blank\">Kelly Dwan and Mel Choyce</a>, who have collaborated on several free themes hosted on WordPress.org. They recommend installing the <a href=\"https://wordpress.org/plugins/wp-api-menus/\" target=\"_blank\">WP-API Menus</a> plugin, as the REST API does not yet support menus. After installing Foxhound, there are only two things required to make it look like the demo: Set the front page to display the latest posts and set up a menu. There are no additional customization settings.</p>\n<p>Kelly Dwan notes on <a href=\"https://github.com/ryelle/Foxhound\" target=\"_blank\">Foxhound’s GitHub repository</a> that the theme should be considered “experimental” and users can expect a few restrictions:</p>\n<ul>\n<li>The theme does not display anything if javascript is disabled. (Should not affect SEO or accessibility)</li>\n<li>The API cannot be blocked by a security plugin. Some plugins recommend blocking the users endpoint, but that is required to show the author archive. If you need to block the user endpoint, the rest of the theme should work but might be unstable if anyone tries to visit an author archive.</li>\n<li>Permalinks for pages and archives are changed by this theme. They will be reset if/when you deactivate the theme. You might want to set up redirects using something like <a href=\"https://wordpress.org/plugins/safe-redirect-manager/\" target=\"_blank\">Safe Redirect Manager</a>.</li>\n<li>This theme does not support hierarchical category archives – only parent category archive pages can be displayed. This <a href=\"https://github.com/ryelle/Foxhound/issues/30\" target=\"_blank\">may be fixed in a later version</a> of the theme.\n<li>Plugins may not work as expected, especially if they add content to the front end of the site. Most Jetpack features do still work.</li>\n</ul>\n<p>Because Foxhound is so different from traditional WordPress themes, it could not go through the usual theme review process. Themes that require the WP REST API are currently reviewed outside of WordPress.org when a theme author pings the Theme Review team. They apply a “Special Case” tag that allows the theme to bypass Theme Check. (The tag is also used for other themes that break the rules in innovative ways.)</p>\n<p>“We don’t have a lot to go on yet with those types of themes,” Key Reviewer Justin Tadlock said. “Foxhound was the first. We’re supposed to be looking over another soon. As more of these types of themes come in, we’ll be able to figure out ways of making it easier to submit them.”</p>\n<div id=\"epoch-width-sniffer\"></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, 22 Mar 2017 19:21: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: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:35:\"HeroPress: A Blissful Driving Force\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://heropress.com/?post_type=heropress-essays&p=1658\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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://heropress.com/essays/blissful-driving-force/\";s: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:9085:\"<img width=\"960\" height=\"480\" src=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2017/03/032217-1024x512.jpg\" class=\"attachment-large size-large wp-post-image\" alt=\"Pull Quote: WordPress successfully justified my choice of not joining the job placement drive at college.\" /><p>As a college guy, I believed in being different and outperforming the best of my lot. Coming from a modest family background, the realization of achievement dawned over me. I never favored being a 9 to 5 corporate professional and a having a ‘boss’ was simply not my cup of coffee. I was never interested in the classes held in the college because I was being more productive at the ‘reality’ front of the life. I envisioned getting involved in tasks that were strongest at the core.</p>\n<h3>Where It All Started</h3>\n<p>Computer technology was in its nascent state in India the time I started my tryst with web pages. I began with designing my own college’s alumni website while pursuing MCA at Banaras Hindu University, Varanasi. Eventually, I was assigned the task of the event websites too. I was happy because all this brought about a sense of power to me. Though not initially refine, my work still appealed to many and it also made me realize the power technology had.</p>\n<h3>The Seed of Seriousness</h3>\n<p>The very first seed of the idea of taking this up as a serious profession was sown by a friend who told me about how creating web pages and blogging could be a source of monetization. Google pages was my first shot as a techie, wherein I started with contributing content through blogs to several clients.</p>\n<h3>Saw and Attempted</h3>\n<p>I can still recollect the time I received my first pay cheque. Initially, I had tested all Content management systems and had started with Joomla and Drupal. With absolutely no knowledge about coding, I went forward to scale the web designing mountain. WordPress came and was well recognized as a blogging platform; suitable to what I worked on. I bumped into WordPress in 2009 and like many other users, utilized it for my blogging endeavors. Little did I know that someday it would be the answer to my ‘coding gap’. I remember working on a 6-month project for my MCA final where I took up WordPress as the core subject and in there I talked about custom plugins and themes. The teacher was happy to receive the unique project and awarded me good grades for my sense of initiation with new approach.</p>\n<h3>That Leap of Faith</h3>\n<p>Now, I knew how I had to take this WordPress awesomeness forward. With a little exposure to learning new technology, I was baffled for a while but had the will to scale this one too. 6 months, and I thoroughly decoded the WordPress codex for me. This was a giant step forward where my future lay in my own hands.</p>\n<p>Personally, I feel that WordPress does not constrict you to a certain limit or a line of functionalities. If you have a core foundation, you can toy with it and make awesome end results. WordPress was now my pillar of strength. WordPress successfully justified my choice of not joining the job placement drive at the college.</p>\n<h3>The Break-Out</h3>\n<p>Now was the time to materialize my skills and have a material turnaround for the work I was capable of doing. After a 4-month hunt for some serious web designing projects with not a single task at hand, disappointment gripped me. The lack of proper work infrastructure due to poor Internet connectivity and local electricity supply were some of the other reasons I had to plan withdrawing my resources from Varanasi. I could have fallen or would have made a leap; it was about to be my choice for the rest of my life.</p>\n<h3>Hello to New Beginnings</h3>\n<p>It was frustrating because Varanasi had been my abode for 7 good years and leaving the place was a huge decision to make. I mustered up my wits to start afresh by withdrawing my base from Varanasi and shifted to Lucknow, India in order to try out seeking new opportunities yet again.</p>\n<p>The work stars favored me and with the help of elance-oDesk (now, Upwork) and other freelancing platforms, I received many life-changing projects of my life. Things moved forward and with many clients in a row, another year went by. I collaborated with more people who were willing to join me on the platform – people who wanted to leave a mark; never to look back. What remained constant throughout these years was my capability to work hard each day.</p>\n<h3>A Better Picture/ Wbcom Designs</h3>\n<p>I upfront admire WordPress because it has been a driving force for my existence. Time has moved slowly and with 6+ years of experience and self-discovery, I now run a fully-fledged WordPress based company <a href=\"https://wbcomdesigns.com/\" target=\"_blank\">Wbcom Designs</a> that has many developers and freelancers onboard with me.</p>\n<p>While additionally serving <a href=\"https://www.buddyboss.com/\" target=\"_blank\">BuddyBoss</a> as a Product and Support Manager, now I plan to infuse new changes in the pattern we operate at base as well as the firm through strategic planning. It’s time to give back to the WordPress community through the development of free plugins, theme customization and spreading the WordPress fandom at local level.</p>\n<p>I recently took the <a href=\"https://2016.nashik.wordcamp.org/wbcomdesigns-is-our-bronze-sponsor/\">opportunity to sponsor</a> <a href=\"https://2016.nashik.wordcamp.org/\">‘Nashik WordCamp’ 2016</a>, <a href=\"https://2017.pune.wordcamp.org/sponsors/\">WordCamp Pune 2017</a>, <a href=\"https://2017.udaipur.wordcamp.org/sponsors/\">WordCamp Udaipur 2017</a>, and <a href=\"https://2017.kochi.wordcamp.org/sponsors/\">WordCamp Kochi 2017</a>. I am glad I was able to take a step forward in my plans to pay back to the WordPress community. To set the ball rolling at local level, I have recently come up with a local <a href=\"https://www.meetup.com/Lucknow-WordPress-Meetup/\">MeetUp</a> group at Lucknow, India so that locally organized, face to face events can be organized that will accelerate the understanding of the WordPress CMS among the masses. I also plan to bring about WordPress awareness at the school and college level in my zone so that more and more young people know why this CMS is so amazing.</p>\n<p>To this day, my first love is my work desk. Whenever in an emotional or professional fix, I seek recluse through this amazing platform. Unlike others, working destresses me. There is a long way to go with this ideal because I want people to know how powerfully stable the WordPress is.</p>\n<p>Like they say,</p>\n<blockquote><p>“Coming together is a beginning; keeping together is progress; working together is success.”</p></blockquote>\n<p>I want to see the developer community going for heights that have never been achieved before and I want to be a part of this huge step-up.</p>\n<p>I am all open up for this WordPress community for contribution and assistance. For WordPress enthusiasts, I want to tell them that sky is not the limit. WordPress has accepted me as its own and it’s time for me and others to give back in the best possible manner.</p>\n<div class=\"rtsocial-container rtsocial-container-align-right rtsocial-horizontal\"><div class=\"rtsocial-twitter-horizontal\"><div class=\"rtsocial-twitter-horizontal-button\"><a title=\"Tweet: A Blissful Driving Force\" class=\"rtsocial-twitter-button\" href=\"https://twitter.com/share?text=A%20Blissful%20Driving%20Force&via=heropress&url=https%3A%2F%2Fheropress.com%2Fessays%2Fblissful-driving-force%2F\" rel=\"nofollow\" target=\"_blank\"></a></div></div><div class=\"rtsocial-fb-horizontal fb-light\"><div class=\"rtsocial-fb-horizontal-button\"><a title=\"Like: A Blissful Driving Force\" class=\"rtsocial-fb-button rtsocial-fb-like-light\" href=\"https://www.facebook.com/sharer.php?u=https%3A%2F%2Fheropress.com%2Fessays%2Fblissful-driving-force%2F\" rel=\"nofollow\" target=\"_blank\"></a></div></div><div class=\"rtsocial-linkedin-horizontal\"><div class=\"rtsocial-linkedin-horizontal-button\"><a class=\"rtsocial-linkedin-button\" href=\"https://www.linkedin.com/shareArticle?mini=true&url=https%3A%2F%2Fheropress.com%2Fessays%2Fblissful-driving-force%2F&title=A+Blissful+Driving+Force\" rel=\"nofollow\" target=\"_blank\" title=\"Share: A Blissful Driving Force\"></a></div></div><div class=\"rtsocial-pinterest-horizontal\"><div class=\"rtsocial-pinterest-horizontal-button\"><a class=\"rtsocial-pinterest-button\" href=\"https://pinterest.com/pin/create/button/?url=https://heropress.com/essays/blissful-driving-force/&media=https://heropress.com/wp-content/uploads/2017/03/032217-150x150.jpg&description=A Blissful Driving Force\" rel=\"nofollow\" target=\"_blank\" title=\"Pin: A Blissful Driving Force\"></a></div></div><a rel=\"nofollow\" class=\"perma-link\" href=\"https://heropress.com/essays/blissful-driving-force/\" title=\"A Blissful Driving Force\"></a></div><p>The post <a rel=\"nofollow\" href=\"https://heropress.com/essays/blissful-driving-force/\">A Blissful Driving Force</a> appeared first on <a rel=\"nofollow\" href=\"https://heropress.com\">HeroPress</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, 22 Mar 2017 12:00:33 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Varun Dubey\";s: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:82:\"WPTavern: Help Jesse Petersen and His Family by Donating to His Medical Leave Fund\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=67746\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:93:\"https://wptavern.com/help-jesse-petersen-and-his-family-by-donating-to-his-medical-leave-fund\";s: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:2774:\"<p><a href=\"https://www.petersenmediagroup.com/\">Jesse Petersen</a>, a longtime member of the WordPress community and founder of <a href=\"https://www.genesisthe.me/\">Genesis The.me</a>, needs <a href=\"https://www.newlungsfor.me/medical-leave-fund-for-jesses-double-lung-transplant/\">our help</a>. Petersen is battling <a href=\"http://www.cffatboy.com/what-is-cystic-fibrosis/\">Cystic Fibrosis</a> and earlier this year after visiting a clinic, discovered that his lung function was at 22%.</p>\n<p>Due to decrease lung function, Petersen missed five weeks of work, required home IVs, and visited many doctors. He is currently on a double-lung transplant list with a <a href=\"https://en.wikipedia.org/wiki/Lung_allocation_score\">lung allocation score</a> of 38.859.</p>\n<p>According to the <a href=\"https://www.unos.org/wp-content/uploads/unos/lung_allocation_score.pdf\">United Network for Organ Sharing</a>, the LAS is a score used to prioritize waiting list candidates based on a combination of wait list urgency and post-transplant survival.</p>\n<p>In order to maintain his health for a transplant, doctors have recommended that he work a maximum of two hours per day with quality rest.</p>\n<p>His family has a small emergency fund available that they thought would allow Petersen to work up until his transplant surgery. However, there’s no estimated time frame for when a transplant will be available.</p>\n<p>Outside of his product based business, Petersen is a work-from-home freelancer with contract work that needs to be completed. He and his wife have two adopted children. His wife volunteered to get another job to supplement their income but relatives rejected the idea as she is his primary support person.</p>\n<p>Petersen has <a href=\"https://my.genesisthe.me/downloads/genesistheme-developer-starter/\">two products</a> for sale on GenesisThe.me with two more ready for launch by the end of March.</p>\n<p>His family is <a href=\"https://www.newlungsfor.me/medical-leave-fund-for-jesses-double-lung-transplant/\">asking for $20K </a>to help pay for expenses and allow Petersen to take an extended medical leave to focus on his health. So far, the campaign has raised $5,075 or about a quarter of the amount needed.</p>\n<p>You can donate as much as you’re able to or choose from one of five predetermined amounts ranging from $25 to $1K. You can also choose to donate monthly in six month increments.</p>\n<p>Petersen is no stranger to the WordPress community’s generosity. In 2016, it helped him raise nearly $20K to help pay for costs associated with <a href=\"https://surpriseadoption.com/\">adopting his second son</a>. If you are able, please consider donating to Petersen’s medical leave fund.</p>\n<div id=\"epoch-width-sniffer\"></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, 22 Mar 2017 10:35: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:\"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:74:\"WPTavern: Adding Images to WordPress Sidebars Is About to Get a Lot Easier\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=67667\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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:\"https://wptavern.com/adding-images-to-wordpress-sidebars-is-about-to-get-a-lot-easier\";s: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:4041:\"<p>Adding images to sidebars in WordPress is a cumbersome task that requires users to upload an image to the Media Library, find the URL, copy it, and paste it into a Text widget along with additional HTML. Nearly two years ago, Mel Choyce <a href=\"https://core.trac.wordpress.org/ticket/32417\">opened a ticket</a> on WordPress Trac proposing that a media widget be added to core. This widget would allow users to easily add images to sidebars.</p>\n<p>Throughout the discussion, the idea of creating a catch-all media widget was brought up that would allow users to add images, audio, or video to a sidebar. After developers spoke to Matt Mullenweg about the direction of the project, the team decided to create three separate widgets to handle each media type. Choyce outlined the benefits this approach provides:</p>\n<ul>\n<li>We can focus on creating more tailored experiences for each widget.</li>\n<li>We’ll be able to launch new widgets without having to worry about constantly updating one central widget, or potentially breaking anything.</li>\n<li>It’ll be easier for people to discover new media types since they won’t be buried within one widget.</li>\n<li>This will more closely mimic the approach we’re taking to content blocks in the future, which should provide an easier transition.</li>\n</ul>\n<p>Out of the three core widgets in development, the Image one is nearly complete ready for user testing. To test, first download and activate the <a href=\"https://wordpress.org/plugins/wp-core-media-widgets/\">Core Media Widgets</a> plugin. Once activated, navigate to Appearance > Widgets in the WordPress backend and in the available widgets section, locate the Image widget.</p>\n<img />Core Image Widget UI\n<p>Clicking the Select Image button displays the media library modal where you can either select or upload an image. Once an image is selected, click the Add to Widget button in the bottom-right corner. This is what the widget looks like after an image is added.</p>\n<img />Core Image Widget With an Image\n<p>Here is what the widget looks like on a page using the <a href=\"https://wordpress.org/themes/twentyseventeen/\">Twenty Seventeen</a> default theme.</p>\n<img />Core Image Widget in Action\n<p>The core image widget is incredibly easy to set up and is a significant improvement over the Text widget approach. The user interface is much simpler compared to the <a href=\"https://jetpack.com/support/extra-sidebar-widgets/image-widget/\">image widget</a> supplied by Jetpack. Jetpack’s image widget UI doesn’t take advantage of the media library modal and instead, requires the user to know the image’s URL.</p>\n<img />Jetpack Image Widget UI\n<p>Many of the fields are the same as what’s provided by the media library modal. Not surprisingly, WordPress.com <a href=\"https://en.support.wordpress.com/widgets/image-widget/\">uses the same interface</a> and requires the user to know the image URL.</p>\n<h2>Core Image Widget May Be Ready in Time for WordPress 4.7.4</h2>\n<p>The team is specifically seeking feedback from those who use image widgets provided by plugins on WordPress.org. Once the image widget is merged into core, the video and audio widgets will be added to the <a href=\"https://wordpress.org/plugins/wp-core-media-widgets/\">Core Media Widgets</a> plugin. Users can leave the plugin enabled until all three widgets are added to core.</p>\n<p>“Once a widget has been thoroughly tested by users, we can then copy it into core for a release while then also disabling the widget in the plugin,” Ruter said.</p>\n<p>If you encounter a bug or discover an incompatibility with a plugin or theme, please <a href=\"https://github.com/xwp/wp-core-media-widgets/issues\">create an issue</a> on the project’s GitHub page. According to Ruter, the team is working hard to get the widget to a point where it can be merged into core. Depending on how testing goes, it could be merged into core as early as WordPress 4.7.4.</p>\n<div id=\"epoch-width-sniffer\"></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, 22 Mar 2017 01:18:28 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:40;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:91:\"WPTavern: WordPress Theme Review Team Making Progress on Clearing Out 1,000+ Review Backlog\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=67582\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:100:\"https://wptavern.com/wordpress-theme-review-team-making-progress-on-clearing-out-1000-review-backlog\";s: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:6259:\"<a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2016/12/planning.jpg?ssl=1\"><img /></a>photo credit: <a href=\"https://stocksnap.io/photo/5ZMT04MIW6\">Oli Dale</a>\n<p>The WordPress Theme Review team (TRT) has turned a corner and is approaching a major milestone of getting the <a href=\"https://themes.trac.wordpress.org/report/2\" target=\"_blank\">review queue</a> under 100 themes. As of today, 189 themes are lined up in what was previously a 1,000+ backlog. Key reviewers are confident that number will be closer to zero in the near future.</p>\n<p>Emil Uzelac, one of the key reviewers, shared the <a href=\"https://themes.trac.wordpress.org/ticketgraph\" target=\"_blank\">ticketgraph</a> for the backlog on Twitter today, demonstrating that the team is in a better place where new theme submission isn’t causing overload issues as it did before. Themes continue to flow in but are not significantly affecting the queue.</p>\n<p><a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2017/03/theme-review-ticketgraph.png?ssl=1\"><img /></a></p>\n<p>In 2015 the TRT hit a wall with an influx of themes flooding into a legacy review system that wasn’t working. The team couldn’t keep up and was forced to spend much of 2016 changing the review process to better handle the large number of themes coming in. The TRT is working hard to make 2017 the year they get back on track.</p>\n<p>Uzelac identified a few of the measures that have helped in taming the queue:</p>\n<ul>\n<li>One theme submission per author</li>\n<li>More reviewers</li>\n<li>A new guideline where reviewers close the ticket if the review surfaces more than <a href=\"https://make.wordpress.org/themes/2016/08/23/meeting-summary-2016-23-08/\" target=\"_blank\">5 distinct issues</a></li>\n</ul>\n<p>“Around Christmas was when many on the team started seeing a tiny sliver of light at the end of a long tunnel,” Key Reviewer Justin Tadlock said. “In the past few days, seeing the queue get below 200 themes has been a high point. Folks on the team are excited because our ideas are paying off.”</p>\n<p>Tadlock can’t say when exactly the team turned a corner but describes it as more of an iterative process that started with small ideas they could implement themselves. This has significantly reduced the wait time from 7 or 8 months a year ago to two months today. Themes also go through an admin queue that adds a bit to the review time but Tadlock said they hope to tackle that in the next Review Shindig, which happens on the first weekend of every month.</p>\n<p>“That number is shrinking,” Tadlock said. “By the end of April, we could be looking at 3-4 weeks. I’m a bit optimistic, so don’t hold me to that. It could be May or June in reality.”</p>\n<p>Tadlock said once the team gets to the 50-100 range they will be at the place where they’re really only handling new themes that are coming in, instead of working the backlog. Once they reach that milestone, they will be able to more accurately track how long it takes for a theme to make it through the review process.</p>\n<p>“That’s where we’ll need to really start refining the process so that it works even better in the future,” Tadlock said. “A well-coded theme could potentially make it through the process in 2 months right now. Another theme might be 4-5 months. There are a lot of factors to consider. It’s my hope that we eliminate many of those factors that are holding up the process.”</p>\n<p>The new rule that limited authors to submitting one theme at a time has had a significant impact on cutting down the queue. The rule was meant to be temporary and will be up for reevaluation when the queue is under 100 themes. Tadlock said the team will likely pull the rule, but it has been instrumental in rooting out copies that contained only minor changes to the original.</p>\n<p>“For most authors, this [rule] is not a huge problem,” Tadlock said. “It definitely hurts a few of the more prolific authors in the short term. However, it helps stop the flow of theme companies who are just copying/pasting the same theme with minor changes. We’ve had theme companies with as many as 17 themes in the queue that were just copies. This new rule has helped us find those and put a stop to the practice.” The team was able to track down an entire ring of theme authors with multiple accounts with dozens and dozens of themes.</p>\n<p>Tadlock said most of the issues the team deals with in reviews are related to security. The content portability issues that were highlighted in the recent <a href=\"https://wptavern.com/zerif-lite-returns-to-wordpress-org-after-5-month-suspension-and-63-decline-in-revenue\" target=\"_blank\">Zerif Lite suspension</a> are more uncommon.</p>\n<p>“The ‘draconian stuff’ people talk about probably represents 1% of the issue,” Tadlock said, referencing Matt Mullenweg’s recent <a href=\"https://wptavern.com/zerif-lite-returns-to-wordpress-org-after-5-month-suspension-and-63-decline-in-revenue#comment-210935\" target=\"_blank\">comments</a> on the current requirements. “99% of the issues are the things people don’t talk about.” Tadlock has been speaking with theme authors about how they can “create” content within the guidelines, as there are ways to do it that are both future-proof and portable.</p>\n<p>The team is currently spending a lot of time reviewing code that shouldn’t need to be manually reviewed. The next item on the TRT roadmap is incorporating better automation into the review process.</p>\n<p>“The big thing we’re working on now is the new Theme Check plugin,” Tadlock said. “It’s going to solve lots of problems. It’s based off the code sniffer (PHPCS, I believe). It’ll help theme authors start submitting better coded and more secure themes right off the bat. Humans easily miss those things looking through it with their eyes. This will definitely make theme authors better coders and users will have even more secure themes. Then, we can focus on those 1% issues.”</p>\n<div id=\"epoch-width-sniffer\"></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 21 Mar 2017 21:53: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:\"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:55:\"WPTavern: Yoast SEO 4.5 Urges Users to Upgrade to PHP 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:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=67676\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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:\"https://wptavern.com/yoast-seo-4-5-urges-users-to-upgrade-to-php-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:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4770:\"<p><a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2017/03/yoast-logo.jpg?ssl=1\"><img /></a></p>\n<p><a href=\"https://yoast.com/yoast-seo-4-5/\" target=\"_blank\">Yoast SEO 4.5</a> was released today with a handful of improvements and, most notably, a big push for users to upgrade to PHP 7.</p>\n<p>“In Yoast SEO 4.5, we are urging site owners whose sites run on servers with an outdated version of PHP to update to a more recent version,” Joost de Valk said. “To move the web forward, we need to take a stand against old, slow, and unsafe software.”</p>\n<p>WordPress’ minimum PHP requirement is still at <a href=\"https://wordpress.org/about/requirements/\" target=\"_blank\">5.2.4</a>, six years after PHP 5.2 <a href=\"http://php.net/eol.php\" target=\"_blank\">reached end of life in 2011</a>. This version is now <a href=\"https://www.cvedetails.com/vulnerability-list.php?vendor_id=74&product_id=128&version_id=106044&page=1&hasexp=0&opdos=0&opec=0&opov=0&opcsrf=0&opgpriv=0&opsqli=0&opxss=0&opdirt=0&opmemc=0&ophttprs=0&opbyp=0&opfileinc=0&opginf=0&cvssscoremin=0&cvssscoremax=0&year=0&month=0&cweid=0&order=4&trc=39\" target=\"_blank\">vulnerable to many security issues</a>. Current usage stats show 5.4% of WordPress sites are running on PHP 5.2. As this likely represents millions of users, WordPress’ core leadership is reluctant to bump the minimum requirements. Only 8% of sites are on PHP 7+, as hosting companies are slowly adding support.</p>\n<p><a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2017/03/wordpress-php-versions-march-2017-1.png?ssl=1\"><img /></a></p>\n<p>“Because web hosts are not upgrading PHP, we have decided to start pushing this from within plugins,” de Valk said. He contends that the WordPress ecosystem is losing good developers because the project is moving too slowly. He also makes the case for security and speed.</p>\n<p>“WordPress is sometimes said to be slow, but it actually doesn’t have to be slow at all,” de Valk said. “If it’s running on old versions of PHP, however, it is, most certainly, slow. PHP 5.2 is more than 100% slower than PHP 5.6, and a whopping <a href=\"https://www.phpclasses.org/blog/post/493-php-performance-evolution.html\" target=\"_blank\">400% slower than PHP 7</a>.”</p>\n<p>De Valk decided to throw the weight of Yoast SEO, which he estimates to be 6.5 million active installs, behind the movement to push hosts to upgrade their customers to PHP 7. The latest release of the plugin displays a notice to WordPress administrators running sites on PHP 5.2, urging them to upgrade to PHP 7. The notice is “big, ugly, and non-dismissible,” de Valk said. It is generated by an error that auto-resolves when the user fixes their outdated PHP version.</p>\n<p>“The notice will also encourage people to contact their host if they don’t know how to upgrade their PHP,” de Valk said. “Yes, this could be painful for some hosts. This notice is deliberately intended to make them work.”</p>\n<p>De Valk said the plugin will start displaying the notices for PHP 5.2 and will add 5.6 as soon as it is no longer supported. Through experience with his customers, de Valk has found that outdated, slower versions of PHP are damaging Yoast SEO and WordPress’ reputations, as neither are optimized for PHP 5.2. Although older versions are not holding the plugin back from new features, it makes it difficult for the team to clean up the code.</p>\n<p>“There aren’t many features I cannot build right now, but code quality is suffering because we can’t use namespaces, short array notation, etc,” de Valk said.</p>\n<p>The Yoast SEO team has created <a href=\"https://github.com/Yoast/whip\" target=\"_blank\">WHIP</a>, a WordPress package to nudge users to upgrade their software versions and made it open source for plugin and theme developers to implement in their own extensions. The project includes a filter for linking to the WordPress.org hosting page, which includes a selection of hosts that offer PHP 7.</p>\n<p>Most of the large hosting companies already have documentation for upgrading PHP versions. Ultimately, it’s the end users who will have the power to get more hosting companies on board. De Valk said he doesn’t know how big the impact will be but encourages users to vote with their pocketbooks by leaving hosts that are unwilling to assist in upgrading PHP.</p>\n<p>“It might be entirely possible that your host is not willing to work with you,” de Valk said. “If so, think about moving web hosts. A web host provides the engine your site runs on and that better be a damn good engine.”</p>\n<div id=\"epoch-width-sniffer\"></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 21 Mar 2017 19:56: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: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:119:\"WPTavern: PressShack Forks Edit Flow to Create PublishPress, Aims to Improve Multi-User Editorial Workflow in WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=67574\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:129:\"https://wptavern.com/pressshack-forks-edit-flow-to-create-publishpress-aims-to-improve-multi-user-editorial-workflow-in-wordpress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:6808:\"<p><a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2017/03/publish-press.png?ssl=1\"><img /></a></p>\n<p>Last week Steve Burge and the team at <a href=\"https://pressshack.com/\" target=\"_blank\">PressShack</a> released <a href=\"https://wordpress.org/plugins/publishpress/\" target=\"_blank\">PublishPress</a>, a fork of Automattic’s <a href=\"https://wordpress.org/plugins/edit-flow/\" target=\"_blank\">Edit Flow</a> plugin. PressShack is operated by the same team behind <a href=\"http://ostraining.com/\" target=\"_blank\">OSTraining</a> with a focus on creating publishing plugins for larger organizations.</p>\n<p><a href=\"https://wordpress.org/plugins/edit-flow/\" target=\"_blank\">Edit Flow</a> has more than 10,000 active installs but is updated sporadically and is not very well supported. The PressShack creators saw an opportunity to fork the plugin and sell commercial support and add-ons. <a href=\"https://wordpress.org/plugins/publishpress/\" target=\"_blank\">PublishPress</a> is now available on WordPress.org with a seamless <a href=\"https://pressshack.com/publishpress/docs/migrate/\" target=\"_blank\">migration for Edit Flow users</a>.</p>\n<p><a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2017/03/edit-flow-publishpress-migration.png?ssl=1\"><img /></a></p>\n<p>The first release offers the same features as Edit Flow along with a complete face lift, making interaction with the plugin’s settings more user-friendly. The new tabbed interface puts all the settings on one screen. PressShack has also tweaked the language of the plugin, changing Story Budget” to “Overview”, and simplifying other terms.</p>\n<p><a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2017/03/publishpress-ui.png?ssl=1\"><img /></a></p>\n<p>PublishPress introduces a few changes to the calendar, allowing users to click anywhere on a date to add content. It exposes the iCal or Google Calendar feed and uses icons to show post statuses, saving space for other information.</p>\n<p>Burge said that PublishPress will be making a fresh start and will not be following and incorporating updates from Edit Flow. The team plans to add a host of new features that improve the publishing workflow to handle multiple users:</p>\n<ul>\n<li><strong>Multisite and multiple site support</strong>: Content creators log into one site but can publish to multiple sites</li>\n<li><strong>Pre-publishing checklists</strong>: For example, featured image, word count, Yoast SEO green light</li>\n<li><strong>More use cases beyond media sites</strong>: In addition to magazine-style user groups for reporting, PublishPress plans to add more use cases, such as WooCommerce products, EDD downloads, bbPress topics, and The Events Calendar listings</li>\n<li><strong>Multiple authors</strong>: Assign multiple author bylines to a story</li>\n</ul>\n<p>Most of these feature are slated for release in mid-2017 and will be <a href=\"https://pressshack.com/publishpress/\" target=\"_blank\">offered as commercial add-ons</a>. The team is currently still focused on writing unit tests for the core plugin and adding improvements to it on WordPress.org.</p>\n<h3>PressShack Takes Inspiration from Drupal for Expanding Content Workflows</h3>\n<p>PressShack’s creators also work closely with other open source publishing platforms. Burge said the team took some inspiration from the Drupal ecosystem, which offers more advanced features for modifying editorial workflows.</p>\n<p>“In Drupal, the workflow features are being demanded and developed by large organizations that use the platform,” Burge said. “As a result, Drupal does have a very big head start in this area. “In Drupal 7, the main workflow module was called <a href=\"https://www.drupal.org/project/workbench\" target=\"_blank\">Workbench</a>. It was built to meet the needs of large customers such as universities, media outlets, and government agencies who have many different content managers.”</p>\n<p>Prior to having editorial workflow tools available, Burge said that Drupal agencies kept losing projects to rivals such as Adobe and OpenText, because they had publishing workflows built for multiple users. Building better publishing tools became a necessity for Drupal agencies that wanted to win projects from large organizations.</p>\n<p>Drupal 8 moves many of these editorial workflow improvements into core. Drupal 8.3, which is slated for April 2017, will <a href=\"http://buytaert.net/moving-the-drupal-8-workflow-initiative-along\" target=\"_blank\">introduce the ability to create multiple types of content workflows</a>.</p>\n<p>“What’s really interesting about the Drupal 8 implementation is that they are thinking beyond just content publishing,” Burge said. “It will soon be possible to put whole sections of your site into a workflow. The demand for these features is still coming from enterprise customers: much of the work is being done by a team of Drupal developers inside Pfizer.”</p>\n<p>Burge cited a few examples of typical users requiring more elaborate publishing workflows:</p>\n<ul>\n<li>A university with 50+ academic departments and several hundred content creators</li>\n<li>A pharmaceutical company with hundreds of products and a micro-site for each one</li>\n<li>A newspaper that employs writers and at least one layer of editors</li>\n<li>A publicly-listed company that needs approval from several staff members to ensure that the content it publishes is 110% accurate</li>\n</ul>\n<p>WordPress core is tailored to a single-author blog workflow, and there are relatively few plugins that modify the default editorial workflow for large teams. <a href=\"https://wptavern.com/coschedule-a-viable-alternative-to-the-edit-flow-wordpress-plugin\" target=\"_blank\">CoSchedule is one alternative to Edit Flow</a> and PublishPress that has 10,000 active installs. It takes a SaaS approach and has more of a content marketing slant. Burge said he thinks the WordPress ecosystem’s scarcity of options for extending publishing workflows may be due to current limitations in core.</p>\n<p>“It’s possible there are some technical hurdles: for example, WordPress core has fairly limited user permissions,” he said. “It’s also possible that now is the right time for WordPress to start adding these features.”</p>\n<p>“WordPress agencies are building more enterprise sites and these demands are popping-up,” Burge said. “Matt just announced the <a href=\"https://ma.tt/2017/03/wordpress-collaborative-editing/\" target=\"_blank\">Google Docs integration</a> as a quick way to bring some collaborative features into WordPress. I think we’ll see more and more tools available for teams, rather than single authors.”</p>\n<div id=\"epoch-width-sniffer\"></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, 20 Mar 2017 21:21:19 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:43;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:45:\"Donncha: How to Auto Schedule 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:\"https://odd.blog/?p=89500175\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:65:\"https://odd.blog/2017/03/18/how-to-auto-schedule-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:3613:\"<p>If you post to a WordPress blog on a regular basis like I do on <a href=\"https://inphotos.org/\">In Photos dot Org</a> you’ll no doubt recognise the fatigue that comes from adjusting the publish date every single time on a new post so it appears a day later. If you have multiple posts like on a daily photoblog you have to remember what day the last post was made and adjust the date accordingly. </p>\n<p>A few years ago I wrote a small plugin that I never released to help schedule posts. In the media uploader you could select multiple photos and click a few buttons to be brought to a new page where you could enter title, content and tags for each image. Based on this experience, I suggested it as an idea to one of the teams at Automattic who built <a href=\"https://postbot.co/\">Post Bot</a>. I used that for a long time and it has its strengths. If you’re posting content that has the same or similar tags you can copy and paste the tags from one post to another. I posted lots of black and white street images from my home town this way and it was super useful! </p>\n<p>I got tired of manually typing out tags, and unfortunately the site broke a few times, with posts not scheduling or one time they scheduled all in one go. Luckily the problems were quickly fixed. However, I started using the WordPress post editor again and scheduling a bunch of photos that way.</p>\n<p>Manually editing the publish date quickly became a chore. Lazarus, the form saver Chrome extension, would sometimes popup if I didn’t click exactly on the date, or as I said before I had to remember when the last post was made. They say there’s a plugin for everything, and there is for this too. Check out <a href=\"https://wordpress.org/plugins/publish-to-schedule/\">Publish to Schedule</a>.</p>\n<p>You tell “Publish to Schedule” which days and how many posts should be published and when you go into the post editor the next available date is picked for you! The date doesn’t change until you hit Publish but I already used it to schedule a number of posts and it works really well.</p>\n<p><a href=\"https://odd.blog/files/2017/03/Screen-Shot-2017-03-14-at-17.21.11.png\"><img /></a></p>\n<p><strong>Edit:</strong> I forgot to mention <a href=\"https://wordpress.org/plugins/daily-image/\">Daily Image</a> a new plugin by Sam Hotchkiss that does the same sort of job as Postbot but it runs on your own server. The first time you load the plugin it will show you every single unattached image in your media library which can be quite a number of images but it allows you to enter tags and quickly schedule images for posting in a simple manner.</p>\n<p>Since my focus here is on image posts I should really mention the <a href=\"https://apps.wordpress.com/lightroom/\">WordPress Export Plugin for Lightroom</a>. When installed you can create a new export target that will resize and sharpen your image and upload it to your blog, even if it’s not a WordPress.com site.</p>\n\n<p><strong>Related Posts</strong><ul><li> <a href=\"https://odd.blog/2010/09/07/odd-games-of-bad-company-2/\" rel=\"bookmark\" title=\"Permanent Link: Odd games of bad company 2!\">Odd games of bad company 2!</a></li><li> <a href=\"https://odd.blog/2010/12/28/im-on-top-of-the-world/\" rel=\"bookmark\" title=\"Permanent Link: I’m on top of the world\">I’m on top of the world</a></li><li> <a href=\"https://odd.blog/2010/09/03/rage-quit-in-cod-4/\" rel=\"bookmark\" title=\"Permanent Link: Rage quit in COD 4!\">Rage quit in COD 4!</a></li></ul></p>\n<p><a href=\"https://odd.blog/\" rel=\"external nofollow\">Source</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:\"Sat, 18 Mar 2017 16:50: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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:7:\"Donncha\";s: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:90:\"WPTavern: GitHub Adds Plain English Explanations to License Pages for Open Source Projects\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=67550\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:101:\"https://wptavern.com/github-adds-plain-english-explanations-to-license-pages-for-open-source-projects\";s: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:2475:\"<p>GitHub took another step towards beefing up its support for open source projects this week with <a href=\"https://github.com/blog/2335-open-source-license-descriptions-and-metadata\" target=\"_blank\">a new feature that makes it easier to understand a project’s license</a>. If the project is using a popular open source license, GitHub will automatically add a short, plain-English description of the license and its permissions, conditions, and limitations. This allows GitHub users to see the implications of a project’s license at a glance.</p>\n<p><a href=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2017/03/github-license-display.png?ssl=1\"><img /></a></p>\n<p>GitHub pulls this data from <a href=\"http://ChooseALicense.com\" target=\"_blank\">ChooseALicense.com</a>, the site it created in 2013 to help developers understand and select an open source license. The license descriptions and metadata are also open source and developers can incorporate them into their own projects using GitHub’s <a href=\"https://developer.github.com/v3/licenses/#get-an-individual-license\" target=\"_blank\">License API</a>.</p>\n<p>This new feature follows GitHub’s release of <a href=\"https://opensource.guide/\" target=\"_blank\">Open Source Guides</a> in February. The guides are a collection of 10 resources to help people get involved in open source, start their own open source projects, and manage large communities. The documents include helpful stories and tips from maintainers of successful open source projects.</p>\n<p>It was around this time last year that GitHub was <a href=\"https://wptavern.com/open-source-project-maintainers-confront-github-with-open-letter-on-issue-management\" target=\"_blank\">confronted by open source project maintainers with an open letter</a> of complaints regarding issue management. Nearly 2,000 maintainers signed the letter, requesting that GitHub prioritize features that open source project maintainers need. The company dragged its feet before eventually responding, while competing code hosting service GitLab capitalized on the situation with a new initiative focused on “<a href=\"https://gitlab.com/gitlab-org/gitlab-ce/issues/8938\" target=\"_blank\">making GitLab the best place for big open source projects</a>.” Over the past year, GitHub has consistently released new features and improved existing ones in affirmation of its continued support for open source projects.</p>\n<div id=\"epoch-width-sniffer\"></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 18 Mar 2017 03:03: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: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:44:\"WPTavern: In Case You Missed It – Issue 19\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"https://wptavern.com?p=67590&preview=true&preview_id=67590\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:51:\"https://wptavern.com/in-case-you-missed-it-issue-19\";s: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:5660:\"<a href=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2016/01/ICYMIFeaturedImage.png?ssl=1\" rel=\"attachment wp-att-50955\"><img /></a>photo credit: <a href=\"http://www.flickr.com/photos/112901923@N07/16153818039\">Night Moves</a> – <a href=\"https://creativecommons.org/licenses/by-nc/2.0/\">(license)</a>\n<p>There’s a lot of great WordPress content published in the community but not all of it is featured on the Tavern. This post is an assortment of items related to WordPress that caught my eye but didn’t make it into a full post.</p>\n<h2>Apple Pay for WooCommerce</h2>\n<p>WooCommerce <a href=\"https://woocommerce.com/2017/03/apple-pay-woocommerce/\">announced</a> that Apple Pay is now available for stores accepting payments using Stripe. According to Marina Pape, WooCommerce is the first open source platform to integrate with Apple Pay.</p>\n<blockquote><p>We’re also proud to be the first open source platform to integrate with Apple Pay. Open source is the default for us, but it’s exciting to continue that level of openness with such an important payment solution.</p></blockquote>\n<h2>Human Made Makes Two Big Hires</h2>\n<p><a href=\"https://hmn.md/\">Human Made</a>, a web development agency based in the UK recently announced two big hires. The first is <a href=\"https://hmn.md/2017/03/16/mike-little-joins-human-made/\">Mike Little</a>, co-creator of the WordPress open source project, as a WordPress Specialist. The second is <a href=\"https://hmn.md/2017/03/17/jenny-beaumont-joins-human-made/\">Jenny Beaumont</a>, who will take on the role of Senior Project Manager.</p>\n<h2>Editor User Experience Survey</h2>\n<p>The WordPress core development team has <a href=\"https://make.wordpress.org/core/2017/03/15/editor-experience-survey/\">published a survey</a> seeking feedback and data on how people use the editor. The editor is likely the most commonly used feature in WordPress. This is an opportunity for those who use it to provide feedback.</p>\n<blockquote class=\"wp-embedded-content\"><p><a href=\"https://make.wordpress.org/core/2017/03/15/editor-experience-survey/\">Editor Experience Survey</a></p></blockquote>\n<p></p>\n<h2>Behind the Scenes of how Search works on the New WordPress Plugin Directory</h2>\n<p>Greg Brown <a href=\"https://data.blog/2017/03/15/improving-relevance-and-elasticsearch-query-patterns/\">published details</a> on Data.blog on how he improved the search relevancy for the new WordPress plugin directory using Elasticsearch. The post is technical in nature but provides great background information into how it works.</p>\n<blockquote><p>In improving the fidelity of search results, it’s not just a question of how we satisfy a single user’s search query, but how we satisfy thousands of users for each unique search term: which plugins will support that volume of users and their requests for support? Which are most likely to give all of these users a great WordPress experience?</p></blockquote>\n<h1 class=\"entry-title\">NextGEN Gallery Surpasses 17 Million Downloads</h1>\n<blockquote class=\"twitter-tweet\">\n<p lang=\"en\" dir=\"ltr\">NextGEN Gallery just reached over 17 million downloads. <a href=\"https://twitter.com/hashtag/WordPress?src=hash\">#WordPress</a></p>\n<p>— Imagely (@imagely) <a href=\"https://twitter.com/imagely/status/842532503265185792\">March 17, 2017</a></p></blockquote>\n<p></p>\n<h2>MainWP Reaches 1K Five-star Reviews</h2>\n<p>After three years of being on the <a href=\"https://wordpress.org/support/plugin/mainwp/reviews/?filter=5\">WordPress plugin directory</a>, the MainWP plugin has received <a href=\"https://mainwp.com/mainwp-reaches-1000-5-star-reviews/\">1,000 five-star reviews</a>.</p>\n<h2>Heather Burns HeroPress Essay</h2>\n<p>Heather Burns, founder of <a href=\"https://webdevlaw.uk/\">WebDevLaw</a>, published an <a href=\"https://heropress.com/essays/going-back-roots/?utm_source=twitter&utm_medium=hand-made&utm_term=going-back-roots&utm_content=first-tweet\">incredible essay</a> on HeroPress this week. Burns describes the hardships encountered with her first job and how it and other circumstances led her down the path of discovering WordPress.</p>\n<blockquote><p>By this point I’d started playing around with WordPress, and I learned about a local meetup group. I tiptoed in one night and awkwardly introduced myself and was welcomed right in.</p>\n<p>I realized over time that this was a very different sort of group. Everyone was grassroots volunteers, putting in the effort because they wanted to learn, not because they wanted social status. There was no tiresome hierarchy, no obsession with ‘prestige’, no kowtowing to the person with the sexiest car (in fact, we all took the bus.) If you had a question, you could ask it without being laughed out the room. No one was obliged to give anything more than they were able to give.</p></blockquote>\n<h2>HeroPress Wapuu!</h2>\n<p>In what is a traditional part of this series, I end each issue by featuring a Wapuu design. For those who don’t know, Wapuu is the <a href=\"http://wapuu.jp/2015/12/12/wapuu-origins/\">unofficial mascot</a> of the WordPress project.</p>\n<img />HeroPress Wapuu\n<p> </p>\n<p>I present HeroPress Wapuu in celebration of HeroPress recently publishing <a href=\"https://heropress.com/heropress-at-100/\">its 100th essay. </a>If you’re a fan of HeroPress and want to see it flourish, please consider <a href=\"https://heropress.com/sponsorship/\">being a sponsor</a>.</p>\n<p>That’s it for issue nineteen. If you recently discovered a cool resource or post related to WordPress, please share it with us in the comments.</p>\n<div id=\"epoch-width-sniffer\"></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, 17 Mar 2017 21:52: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:\"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: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:53:\"WPTavern: Take the WordPress Editor Experience Survey\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=67499\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:64:\"https://wptavern.com/take-the-wordpress-editor-experience-survey\";s: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:2410:\"<a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2017/03/two-pencils.jpg?ssl=1\"><img /></a>photo credit: <a href=\"https://stocksnap.io/photo/TBLSDTI1UL\">Joanna Kosinska</a>\n<p>WordPress core contributors have published a <a href=\"http://wordpressdotorg.polldaddy.com/s/editor-survey\" target=\"_blank\">survey</a> to collect feedback on how people are using the editor. The results of the short 15-question survey will assist the team in redesigning the editing experience in the WordPress admin.</p>\n<p>Participants are asked to identify how they use WordPress and if they use certain features like formatting buttons and distraction-free writing. The survey also asks how easy-to-use they consider the current editor to be and how organized it is. Users are also asked if they have ever installed a plugin that adds features to the editor, presumably to determine if there are features missing that should be considered for core.</p>\n<p>One question asks participants if they use any assistive technologies along with a screen reader. WordPress Accessibility team member Amanda Rush <a href=\"https://www.customerservant.com/wordpress-editor-experience-survey/\" target=\"_blank\">published some tips for screen reader users who want to take the survey</a>. It includes several questions with radio buttons and screenshots that are not so friendly to screen readers. Rush provides a general walk-through with more explanation for those who are using screen readers to participate.</p>\n<p>So far, this survey has been more widely shared than the design team’s recent customizer survey, which was <a href=\"https://wptavern.com/initial-customizer-survey-results-reveal-majority-of-respondents-dont-use-it\" target=\"_blank\">published after receiving just 50 results</a>. WordPress contributors rely heavily on these surveys to make decisions about projects they are working on, as they do not have any telemetry data about what features people are using or not using. This is one example where data could quickly demonstrate how widely the distraction-free writing mode has been adopted and show what editor formatting buttons people are using.</p>\n<p>If you have a few minutes over the weekend and want to contribute to the future of WordPress, take the <a href=\"http://wordpressdotorg.polldaddy.com/s/editor-survey\" target=\"_blank\">Editor Experience Survey</a>.</p>\n<div id=\"epoch-width-sniffer\"></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, 17 Mar 2017 21:01: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: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:67:\"WPTavern: How to View Upcoming WordCamps in the 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:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=67572\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:78:\"https://wptavern.com/how-to-view-upcoming-wordcamps-in-the-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:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2067:\"<p>Over the course of a year, WordCamps take place nearly every weekend. Although you can view <a href=\"https://central.wordcamp.org/schedule/\">upcoming events</a> on WordCamp Central, a relatively new plugin exist that enables you to see upcoming WordCamps on the WordPress Dashboard.</p>\n<p>It’s called <a href=\"https://wordpress.org/plugins/wc-dashboard-widget/\">WordCamp Dashboard Widget</a> developed by <a href=\"https://profiles.wordpress.org/ajitbohra/\">Ajit Bohra</a>. Once activated, a new widget appears on the dashboard that lists upcoming WordCamps. Data is retrieved by using the public <a href=\"https://central.wordcamp.org/wp-json/posts?type=wordcamp%29\">JSON API</a> available on WordCamp Central, is stored in a transient, and refreshed every day to reflect new data.</p>\n<img />Upcoming WordCamps Widget\n<p>Users can adjust the number of camps shown per page, sort events by location, date, or Twitter information. You can also display this information on any post or page using the [wordcamps] shortcode. The locations are linked to the event’s official WordCamp page. The @ symbol links to the official Twitter account associated with the event and the # symbol links to the official hashtag.</p>\n<p>During testing I noticed that the Twitter account for some events was either missing or incorrect. For example, WordCamp London links to <a href=\"https://twitter.com/wcldn\">@wcldn</a> when it should link to <a href=\"https://twitter.com/WordCampLondon\">@WordCampLondon</a>. I’m not a fan of the way dates are presented in a Day/Month/Year format as I prefer Month/Day/Year.</p>\n<p>Bohra is continuing to improve the plugin with an option to refresh data, improve data fetching, and more filtering options for 1.0. I tested the plugin on a site running WordPress 4.8 alpha and didn’t encounter any issues. If you encounter a bug or have feedback, you can submit a new issue on the <a href=\"https://github.com/lubusIN/wordcamp-dashboard-widget/issues\">project’s GitHub page. </a></p>\n<div id=\"epoch-width-sniffer\"></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, 17 Mar 2017 20:09:37 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s: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: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:131:\"WPTavern: Jetpack Introduces Theme Installation from WordPress.com, Sparks Controversy with Alternative Marketplace for Free Themes\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=67531\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:141:\"https://wptavern.com/jetpack-introduces-theme-installation-from-wordpress-com-sparks-controversy-with-alternative-marketplace-for-free-themes\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:12403:\"<p>Today Jetpack <a href=\"https://jetpack.com/2017/03/16/165-beautiful-free-themes/\" target=\"_blank\">announced</a> that its users now have access to a collection of 165 free themes from WordPress.com. Jetpack users can browse, preview, and activate themes by visiting the <a href=\"https://wordpress.com/design\" target=\"_blank\">WordPress.com Theme Showcase</a>. WordPress.com has also added the ability for Jetpack users to upload a theme from its interface as well, a feature that targets those who are heavily using Jetpack Manage instead of the WordPress admin.</p>\n<p><a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2017/03/jetpack-theme-install.png?ssl=1\"><img /></a></p>\n<p>Many of the free themes are already available from <a href=\"https://wordpress.org/themes/author/automattic/\" target=\"_blank\">Automattic’s account</a> on the WordPress.org Themes Directory, but the limitations of the preview functionality doesn’t present themes in their best light. The Theme Review Team added a new rule last year that theme authors can only upload one theme at a time and will have to wait for it to pass through the queue before submitting another. This severely restricts individuals and companies that are prolific theme authors, requiring them to wait months in the queue. Authors can realistically expect to only publish one or two themes per year on WordPress.org.</p>\n<p>After Zerif Lite, one of the most popular themes on WordPress.org, was <a href=\"https://wptavern.com/zerif-lite-returns-to-wordpress-org-after-5-month-suspension-and-63-decline-in-revenue\" target=\"_blank\">suspended for five months</a> for violations of content portability requirements, Matt Mullenweg was one of the most vocal opponents of what he <a href=\"https://wptavern.com/zerif-lite-returns-to-wordpress-org-after-5-month-suspension-and-63-decline-in-revenue#comment-210935\" target=\"_blank\">called</a> “draconian requirements.” In 2015, Mullenweg went so far to <a href=\"https://wordpress.slack.com/archives/themereview/p1432861605003292\" target=\"_blank\">say</a> that he is “completely okay with having something in the directory that breaks every guideline, as long as it’s interesting.”</p>\n<p>The Theme Review Team has not made significant changes that would give authors more freedom. Instead, much of the Team’s time seems to be spent looking for ways to reduce the queue. It’s no wonder that a company like Automattic, with the infrastructure of Jetpack Manage and WordPress.com, would choose to distribute themes via a more efficient route. However, this move has left some WordPress.org theme authors wondering if WordPress.org improvements will be less of a priority in the future.</p>\n<blockquote class=\"twitter-tweet\">\n<p lang=\"en\" dir=\"ltr\">Can you blame him? No. They (he?) needs to wrangle in the experience, avoid fragmentation, compete with other consumer hosted platforms.</p>\n<p>— Matt Medeiros (@mattmedeiros) <a href=\"https://twitter.com/mattmedeiros/status/842406199551221760\">March 16, 2017</a></p></blockquote>\n<p></p>\n<blockquote class=\"twitter-tweet\">\n<p lang=\"en\" dir=\"ltr\">But what does it all mean for us surviving off of the .org distribution? Tough cookies, that\'s what.</p>\n<p>— Matt Medeiros (@mattmedeiros) <a href=\"https://twitter.com/mattmedeiros/status/842406347324948481\">March 16, 2017</a></p></blockquote>\n<p></p>\n<p>“Today’s announcement is the glue that holds together Matt’s vision for the future .org experience, delivered via Jetpack,” WordPress.org theme author <a href=\"http://mattreport.com\" target=\"_blank\">Matt Medeiros</a> said. “Solving the dark cloud above the repo seems a lot less critical when we can throw Jetpack in front of users as an alternative. It’s a calculated measure to control the on-boarding experience of new users, which WP desperately needs for continued growth amidst a field of competitors like Wix and Squarespace.”</p>\n<p>According to Jetpack team member Richard Muscat, WordPress.com has “no immediate plans to sell themes at this time.” Jetpack users have access to free themes but will not, in the foreseeable future, be invited to purchase WordPress.com’s commercial themes. The team also plans to continue its presence on WordPress.org.</p>\n<p>“We have no plans to stop releasing themes into the .org directory,” Muscat said. “We just believe this makes an even nicer, more integrated experience for accessing the themes we offer on the WordPress.com side of things.”</p>\n<p>Jetpack’s announcement has also reignited fears of what the plugin’s commercialization might do to the WordPress ecosystem. In the past, Mullenweg has <a href=\"https://wptavern.com/woocommerce-powers-42-of-all-online-stores\" target=\"_blank\">identified both Jetpack and WooCommerce as “multi-billion dollar opportunities”</a> that could each individually be larger than WordPress.com. If WordPress.org is failing to attract new users with its theme previews, then Jetpack/WordPress.com is likely to pull even more eyes away with its separate marketplace.</p>\n<p>“As a small business (a label that’s critical) product creator, I see this as a motion in the direction to increase the visibility of Jetpack’s free/paid feature set, above the rest of us trying to desperately make a living out here,” Medeiros said. “Jetpack will be marketed as the one-stop-solution for all of your small business website needs, if that hasn’t already been woven into the fabric of it’s current messaging. It is ultimately positioning itself as the trusted source of functionality for new users, versus us ‘third-party’ plugins. After all, who wouldn’t trust the company ‘behind WordPress?\'”</p>\n<p>Ionut Neagu, CEO at <a href=\"https://themeisle.com/\" target=\"_blank\">Themeisle.com</a>, and the author of Zerif Lite, shares Medeiros’ concerns about Jetpack’s more recent commercialization efforts.</p>\n<p>“What worries me more is the speed at which Automattic is pushing Jetpack,” Neagu said. “The Personal plan was introduced, and yesterday I got a cold email from some company they work with promoting their affiliate program. Today themes were introduced. It makes me wonder how far they plan to go and how this will affect theme and plugin developers.”</p>\n<p>However, Neagu takes a more optimistic stance on self-hosted users installing themes from WordPress.com.</p>\n<p>“As a theme author, I am not that worried about this particular aspect. Right now those themes are quite hard to find (it took me 10 minutes), are more targeted towards people using Jetpack Manage, and as far as I can see lots of them are looking a bit outdated.”</p>\n<p>Neagu sees a disconnect between what WordPress.org thinks users want and what they are actually looking for. Based on his research and experience selling themes, Neagu has found that users still expect complete solutions from themes. WordPress has grown beyond being just a blogging platform. Neagu said he hopes WordPress.org’s research for the new editor will reveal how many people are actually using the software for business.</p>\n<p>“We run a themes directory as well and we did extensive heatmaps to understand what kind of themes/screenshots users click on/ like,” Neagu said. “Looking at the results of a ‘business’ query, I am quite sure that users won’t be excited.”</p>\n<p><a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2017/03/business-themes.png?ssl=1\"><img /></a></p>\n<p>This is likely the first iteration, and data from more Jetpack users should help WordPress.com refine the queries to present a mix of newer and popular themes. At the moment it looks to be simply a way to offer all of their available themes without the red tape of WordPress.org.</p>\n<h3>Automattic Addresses Confusion Over WordPress.org Plugin Directory Guideline Regarding Executable Code and Installs</h3>\n<p>The news of WordPress.com installing and updating themes for Jetpack users gave rise to speculation about whether or not this move is a violation of the <a href=\"https://developer.wordpress.org/plugins/wordpress-org/detailed-plugin-guidelines/\" target=\"_blank\">plugin directory guidelines</a>. Discussions centered around guideline #8, which states that plugins may not send executable code via third-party systems:</p>\n<blockquote><p>Serving updates or otherwise installing plugins, themes, or add-ons from servers other than WordPress.org’s.</p></blockquote>\n<p>Jetpack representative Richard Muscat gave us the following statement on behalf of Automattic:</p>\n<blockquote><p>The guidelines prohibit _plugins_ from installing third party code directly but Jetpack doesn’t do that for this feature. The guidelines state that: “Executing outside code within a plugin *when not acting as a service* is not allowed.”</p>\n<p>The service Jetpack provides with respect to themes is via WordPress.com which _is_ acting as a service. This is identical to how Akismet operates with respect to spam-filtering and other Jetpack services such as data sync and backup, content delivery (Photon), and plugin installation/updates.</p>\n<p>We ask users to opt-in to WordPress.com services when connecting Jetpack and all our services follow established guidelines.</p></blockquote>\n<p>The public discussions also prompted WordPress.org Plugin Directory representatives to <a href=\"https://make.wordpress.org/plugins/2017/03/16/clarification-of-guideline-8-executable-code-and-installs/\" target=\"_blank\">post</a> an article clarifying that Jetpack is not in violation for installing themes.</p>\n<p>“The trick here, and this is what is about to sound like hair splitting, is that it’s not the plugin UI on your site that does the install,” Mika Epstein said. “In order for Manage WP and Jetpack to work, you have to go to your panel on their sites and install the items.”</p>\n<p>As SaaS products have not yet been used extensively in the WordPress ecosystem, developers are still figuring out how this type of implementation can interact with WordPress sites via plugins installed from the official directory. The plugin team clarified that if you are pushing plugin or theme installs or updates from a third-party service on its website, then it is no longer a third-party service but rather a first-party service where you are directly initiating those actions.</p>\n<p>However, not all developers agree that this distinction makes any difference.</p>\n<blockquote class=\"twitter-tweet\">\n<p lang=\"en\" dir=\"ltr\"><a href=\"https://twitter.com/daljo628\">@daljo628</a> <a href=\"https://twitter.com/TheJeffMatson\">@thejeffmatson</a> <a href=\"https://twitter.com/williamsba\">@williamsba</a> <a href=\"https://twitter.com/chriswallace\">@chriswallace</a> <a href=\"https://twitter.com/mattmedeiros\">@mattmedeiros</a> Saying SaaS can install plugins but plugin cannot install plugins is silly.</p>\n<p>— Carl Hancock <img src=\"https://s.w.org/images/core/emoji/2.2.1/72x72/1f680.png\" alt=\"?\" class=\"wp-smiley\" /> (@carlhancock) <a href=\"https://twitter.com/carlhancock/status/842485294863712256\">March 16, 2017</a></p></blockquote>\n<p></p>\n<p>Gravity Forms founder Carl Hancock contends that ManageWP is different in that it doesn’t provide users with themes and plugins – it’s just a service for managing your sites.</p>\n<p>“You can install plugins from the WordPress.org plugin and theme repository, you can connect your Dropbox account and install plugins from your Dropbox account, or you can upload your own plugins,” Hancock said. “The key is it’s either plugins and themes from WordPress.org OR bring your own. Just like WordPress itself.</p>\n<p>“They [ManageWP] do not provide an alternative repository of themes and/or plugins that competes with the WordPress.org repos.”</p>\n<p>This is where much of the controversy lies for WordPress.org theme authors who depend on the official directory for distribution. Competing with equally free themes that are hosted on WordPress.com with a much better sorting UI and preview functionality is a new challenge they will have to embrace.</p>\n<div id=\"epoch-width-sniffer\"></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, 17 Mar 2017 00:08:20 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s: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: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:123:\"WPTavern: U.S. Department of Defense Launches Code.mil Open Source Initiative, First Release Tests Impact of AGPL Licensing\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=67451\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:132:\"https://wptavern.com/u-s-department-of-defense-launches-code-mil-open-source-initiative-first-release-tests-impact-of-agpl-licensing\";s: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:7190:\"<a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2017/03/department-of-defense.jpg?ssl=1\"><img /></a>A U.S. Air Force F-15E Strike Eagle aircraft flies over northern Iraq Sept. 23, 2014, after conducting airstrikes in Syria. – photo credit: <a href=\"https://www.flickr.com/photos/39955793@N07/15172530147/\">U.S. Department of Defense</a>\n<p>The U.S. Department of Defense (DoD) is <a href=\"https://www.defense.gov/News/News-Releases/News-Release-View/Article/1092364/dod-announces-the-launch-of-codemil-an-experiment-in-open-source\" target=\"_blank\">experimenting with open sourcing more of its code</a> on GitHub. <a href=\"http://Code.mil\" target=\"_blank\">Code.mil</a> invites developers from around the world to collaborate with federal employees on unclassified code. The Defense Digital Service (DDS), which brings in experts from top technology companies like Google, Amazon, and Netflix for short assignments, is organizing the initiative to open source more government code.</p>\n<p>“Open source and free software (which refers to software freedom, not free of cost) are industry best practices and integral parts of modern software development,” the department said in a <a href=\"https://www.defense.gov/News/News-Releases/News-Release-View/Article/1092364/dod-announces-the-launch-of-codemil-an-experiment-in-open-source\" target=\"_blank\">statement</a> announcing the initiative. “They, however, are concepts yet to be widely adopted within the department. With Code.mil, DoD can access a depth and breadth of technical skill previously underutilized while offering software tools created by the government for free public use.”</p>\n<p>The FAQ document for the initiative states that “modern software is open sourced software” and that the department is aiming to more actively participate in the open source and free software communities.</p>\n<p>Licensing is one of the unique challenges of making government code open source, as code written by federal employees is not protected by copyright under U.S. laws. After consulting the Open Source Initiative and Free Software Foundation, the DoD devised an open source licensing strategy where code written by federal employees will fall under the public domain with no restrictions. DDS developed a GitHub webhook to ensure commits from government employees follow the <a href=\"https://developercertificate.org/\" target=\"_blank\">Developer Certificate of Origin</a> process. Private sector contributions will be protected by standard OSS licenses. This is outlined in the <a href=\"https://github.com/deptofdefense/code.mil/blob/master/Proposal/INTENT.md\" target=\"_blank\">INTENT.md</a> document on the Code.mil repository.</p>\n<h3>Code.mil’s First Open Source Project Released Under AGPL to “Test GPL as an Approach”</h3>\n<p>In addressing one person’s <a href=\"https://github.com/deptofdefense/code.mil/issues/19#issuecomment-282333798\" target=\"_blank\">feedback</a> advocating for all Code.mil projects to be MIT-licensed, DDS engineer Tom Bereknyei confirmed that the team will leave this decision to each project’s leadership.</p>\n<p>“We’ve had these same discussions internally,” Bereknyei said. “We did not want to endorse a particular license and we intend each project to decide which license is appropriate for them. Some may choose MIT, BSD, Apache, or eventually GPL. We did not want to take that choice away from them.”</p>\n<p><a href=\"https://github.com/deptofdefense/eMCM\" target=\"_blank\">eMCM</a>, a web-based viewer for the Manual for Courts-Martial (MCM), is the first open source project to be released on Code.mil. It provides a canonical “live” edition of the manual that is easier to access and maintain than previous versions. eMCM was released this week under the AGPL license.</p>\n<p>“We chose to use the Affero General Public License (AGPL) for the eMCM because every military member has the right to know how the raw legal code (i.e., MCM) will be transformed or manipulated by the eMCM,” the Defense Digital Service stated in the <a href=\"https://medium.com/@DefenseDigitalService/code-mil-an-open-source-initiative-at-the-pentagon-5ae4986b79bc#.f9bw1s2ha\" target=\"_blank\">announcement</a>. “Applying the AGPL is a small but important way to help ensure the public has that freedom and transparency to the process.”</p>\n<p>In the pull-request for <a href=\"https://github.com/deptofdefense/eMCM/pull/5\" target=\"_blank\">updating the license on the project</a>, Bereknyei explained why he proposed the AGPL:</p>\n<blockquote><p>It’s a user-facing project, not a library. Ultimately it would be good to preserve the rights of the public to inspect how the raw MCM is transformed by the viewer.</p>\n<p>Among the projects we have, this seems to be the best candidate for a GPL test. It is fairly self contained, doesn’t integrate with any systems, front-end heavy, small enough that a corporate rewrite is easy, and uses only a few libraries. My goal is only to test GPL as an approach. If this project isn’t suited, I’m sure we can find another.</p></blockquote>\n<p>When Bereknyei was questioned by DDS colleague Nicholas Small about why he opted for AGPL over MIT, he said he wanted to protect the code from being redistributed as closed-source.</p>\n<p>“MIT would allow someone to fork, improve, and release closed-source,” Bereknyei said. “The rule of thumb I am trying to apply is that when the rights/convenience for developers are more important, go with MIT/BSD/ISC. When the rights/convenience for users are more important, go with GPL.”</p>\n<p>Historically, the DoD has <a href=\"http://dodcio.defense.gov/Open-Source-Software-FAQ/#Q:_When_a_DoD_contractor_is_developing_a_new_system.2Fsoftware_as_a_deliverable_in_a_typical_DoD_contract.2C_is_it_possible_to_use_existing_software_licensed_using_the_GNU_General_Public_License_.28GPL.29.3F_Can_the_DoD_used_GPL-licensed_software.3F\" target=\"_blank\">used GPL-licensed software extensively</a> and even <a href=\"http://dodcio.defense.gov/Open-Source-Software-FAQ/#Q:_What_license_should_the_government_or_contractor_choose.2Fselect_when_releasing_open_source_software.3F\" target=\"_blank\">recommends government contractors select a GPL-compatible license</a> when developing software as a deliverable in DoD contracts.</p>\n<p>One beneficial byproduct of the DoD’s initiative to open source more code is that the public can watch and participate as federal employees discuss license selection in the open. The department is finally recognizing that taxpayer-funded code is a public good and inviting private sector professionals to the table to build modern software together. Anyone can open an issue or pull request, regardless of their background, location, or formal qualifications. The DoD plans to expand <a href=\"https://github.com/deptofdefense/code.mil\" target=\"_blank\">Code.mil</a> to include projects from other DoD offices and may develop it into a full-fledged website instead of simply redirecting to GitHub.</p>\n<div id=\"epoch-width-sniffer\"></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, 16 Mar 2017 04:50: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:\"\";}}}}}}}s:27:\"http://www.w3.org/2005/Atom\";a:1:{s:4:\"link\";a:2:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:3:\"rel\";s:4:\"self\";s:4:\"type\";s:19:\"application/rss+xml\";s:4:\"href\";s:36:\"http://feeds.feedburner.com/wp-pipes\";}}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:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:2:{s:3:\"rel\";s:3:\"hub\";s:4:\"href\";s:32:\"http://pubsubhubbub.appspot.com/\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:42:\"http://rssnamespace.org/feedburner/ext/1.0\";a:1:{s:4:\"info\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:3:\"uri\";s:8:\"wp-pipes\";}}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\";O:42:\"Requests_Utility_CaseInsensitiveDictionary\":1:{s:7:\"\0*\0data\";a:10:{s:12:\"content-type\";s:23:\"text/xml; charset=UTF-8\";s:4:\"etag\";s:27:\"fE2d3w33QF9/3fIzMGBnhyO77c0\";s:13:\"last-modified\";s:29:\"Mon, 10 Apr 2017 13:20:12 GMT\";s:16:\"content-encoding\";s:4:\"gzip\";s:4:\"date\";s:29:\"Mon, 10 Apr 2017 13:25:29 GMT\";s:7:\"expires\";s:29:\"Mon, 10 Apr 2017 13:25:29 GMT\";s:13:\"cache-control\";s:18:\"private, max-age=0\";s:22:\"x-content-type-options\";s:7:\"nosniff\";s:16:\"x-xss-protection\";s:13:\"1; mode=block\";s:6:\"server\";s:3:\"GSE\";}}s:5:\"build\";s:14:\"20170410132321\";}','no'),(163,'_transient_timeout_feed_mod_99b272eaef9eaa265f30d77863073f26','1491841529','no'),(164,'_transient_feed_mod_99b272eaef9eaa265f30d77863073f26','1491830729','no'),(165,'_transient_timeout_plugin_slugs','1491917130','no'),(166,'_transient_plugin_slugs','a:4:{i:0;s:19:\"akismet/akismet.php\";i:1;s:9:\"hello.php\";i:2;s:19:\"jetpack/jetpack.php\";i:3;s:47:\"mojo-marketplace-wp-plugin/mojo-marketplace.php\";}','no'),(167,'_transient_timeout_dash_88ae138922fe95674369b1cb3d215a2b','1491873930','no'),(168,'_transient_dash_88ae138922fe95674369b1cb3d215a2b','<div class=\"rss-widget\"><ul><li><a class=\'rsswidget\' href=\'https://wordpress.org/news/2017/03/wordpress-4-7-3-security-and-maintenance-release/\'>WordPress 4.7.3 Security and Maintenance Release</a> <span class=\"rss-date\">March 6, 2017</span><div class=\"rssSummary\">WordPress 4.7.3 is now available. This is a security release for all previous versions and we strongly encourage you to update your sites immediately. WordPress versions 4.7.2 and earlier are affected by six security issues: Cross-site scripting (XSS) via media file metadata. Reported by Chris Andrè Dale, Yorick Koster, and Simon P. Briggs. Control characters can trick redirect […]</div></li></ul></div><div class=\"rss-widget\"><ul><li><a class=\'rsswidget\' href=\'https://heropress.com/heropress-geography-oceana/\'>HeroPress: HeroPress Geography: Oceana</a></li><li><a class=\'rsswidget\' href=\'https://wptavern.com/yoast-seos-php-upgrade-nag-is-producing-a-significant-increase-in-sites-upgrading-to-php-7\'>WPTavern: Yoast SEO’s PHP Upgrade Nag is Producing a Significant Increase in Sites Upgrading to PHP 7</a></li><li><a class=\'rsswidget\' href=\'https://wptavern.com/recommended-reading-resilient-web-design-a-free-e-book-from-jeremy-keith\'>WPTavern: Recommended Reading: Resilient Web Design, a Free e-Book from Jeremy Keith</a></li></ul></div><div class=\"rss-widget\"><ul></ul></div>','no'),(170,'jpo_started','1','yes'),(171,'mm_churn','a:3:{s:2:\"ip\";s:12:\"50.116.64.37\";s:6:\"whoami\";s:8:\"matrixm9\";s:3:\"key\";s:2005:\"\n\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html>\n <head>\n <title>404 Not Found</title>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\" />\n <style type=\"text/css\">\n body {\n font-family: Verdana, Arial, Helvetica, sans-serif;\n font-size: 12px;\n background-color:#367E8E;\n scrollbar-base-color: #005B70;\n scrollbar-arrow-color: #F3960B;\n scrollbar-DarkShadow-Color: #000000;\n color: #FFFFFF;\n margin:0;\n }\n a { color:#021f25; text-decoration:none}\n h1 {\n font-size: 18px;\n color: #FB9802;\n padding-bottom: 10px;\n background-image: url(sys_cpanel/images/bottombody.jpg);\n background-repeat: repeat-x;\n padding:5px 0 10px 15px;\n margin:0;\n }\n #body-content p {\n padding-left: 25px;\n padding-right: 25px;\n line-height: 18px;\n padding-top: 5px;\n padding-bottom: 5px;\n }\n h2 {\n font-size: 14px;\n font-weight: bold;\n color: #FF9900;\n padding-left: 15px;\n }\n </style>\n </head>\n <body>\n <div id=\"body-content\"> \n<!-- start content-->\n\n<!-- \n instead of REQUEST_URI, we could show absolute URL via:\n http://HTTP_HOST/REQUEST_URI\n but what if its https:// or other protocol?\n \n SERVER_PORT_SECURE doesn\'t seem to be used\n SERVER_PORT logic would break if they use alternate ports\n-->\n\n<h1>404 Not Found</h1>\n<p>The server can not find the requested page:</p>\n <blockquote>\n 162.144.133.144/api/create (port 80)\n </blockquote> \n<p>\n Please forward this error screen to 162.144.133.144\'s \n <a href=\"mailto:root@server.eigchurn.com?subject=Error message [404] 404 Not Found for 162.144.133.144/api/create port 80 on Monday, 10-Apr-2017 13:32:51 UTC\">\n WebMaster</a>.\n</p>\n<hr />\n\n\n<!-- end content -->\n </div>\n </body>\n</html>\n\";}','yes'),(172,'jpo_step_statuses','a:5:{s:5:\"title\";a:2:{s:9:\"completed\";b:1;s:7:\"skipped\";b:0;}s:8:\"homepage\";a:2:{s:9:\"completed\";b:1;s:7:\"skipped\";b:0;}s:12:\"contact-page\";a:2:{s:9:\"completed\";b:1;s:7:\"skipped\";b:0;}s:7:\"jetpack\";a:1:{s:7:\"skipped\";b:1;}s:7:\"is-blog\";a:2:{s:9:\"completed\";b:1;s:7:\"skipped\";b:0;}}','yes'),(178,'_transient_mm_spam_7d17e63514c5cae78c1b0826fa0d9eba','no','no'),(190,'_transient_doing_cron','1761643801.7406671047210693359375','yes'),(191,'endurance_page_cache','2','yes'),(248,'_transient_timeout_mm_spam_d04bc9fb3a450810e17860492372a693','1510811951','no'),(249,'_transient_mm_spam_d04bc9fb3a450810e17860492372a693','no','no'),(202,'_transient_timeout_mm_spam_cbff9c80519e7763d6c48ae0586265db','1509193506','no'),(203,'_transient_mm_spam_cbff9c80519e7763d6c48ae0586265db','no','no'),(222,'_transient_timeout_mm_spam_84843dc940bff8a991c3eda3c14fadc4','1509888758','no'),(223,'_transient_mm_spam_84843dc940bff8a991c3eda3c14fadc4','no','no'),(230,'_transient_timeout_mm_spam_6334c7e3e3d2f4e14e0fc397b48cf0cf','1510003240','no'),(231,'_transient_mm_spam_6334c7e3e3d2f4e14e0fc397b48cf0cf','no','no'),(232,'_transient_timeout_mm_spam_a59db9937f02e22b95cbb7a3ca82abc3','1510060307','no'),(233,'_transient_mm_spam_a59db9937f02e22b95cbb7a3ca82abc3','no','no'),(250,'_transient_timeout_mm_spam_8dcbd9c618b2993ba536d9729b4a54a0','1510851430','no'),(251,'_transient_mm_spam_8dcbd9c618b2993ba536d9729b4a54a0','no','no'),(254,'_transient_timeout_mm_spam_424c1b32e8e155ff0bc4eb9731debd4f','1510934934','no'),(255,'_transient_mm_spam_424c1b32e8e155ff0bc4eb9731debd4f','no','no'),(256,'_transient_timeout_mm_spam_96fc98f91bc725a51178a0ba27400f9d','1510939825','no'),(257,'_transient_mm_spam_96fc98f91bc725a51178a0ba27400f9d','no','no'),(419,'_transient_timeout_mm_spam_ecb69b7fecc36a0235bee5bf4720fd58','1519557519','no'),(420,'_transient_mm_spam_ecb69b7fecc36a0235bee5bf4720fd58','no','no'),(278,'_transient_timeout_mm_spam_d273a0aa9d1bad1c9daa4aeda1a4281a','1513561674','no'),(279,'_transient_mm_spam_d273a0aa9d1bad1c9daa4aeda1a4281a','no','no'),(280,'_transient_timeout_mm_spam_19efc858040c1e92d3334d3dec309401','1513561730','no'),(281,'_transient_mm_spam_19efc858040c1e92d3334d3dec309401','no','no'),(282,'_transient_timeout_mm_spam_32cb5b81f3896c7d13e524e94b4b4332','1513561753','no'),(283,'_transient_mm_spam_32cb5b81f3896c7d13e524e94b4b4332','no','no'),(286,'_transient_timeout_mm_spam_31f3e7bc27f30bc58676912967f9b2d5','1513593820','no'),(287,'_transient_mm_spam_31f3e7bc27f30bc58676912967f9b2d5','no','no'),(288,'_transient_timeout_mm_spam_b5c386458137cad1400cc434a9323948','1513630148','no'),(289,'_transient_mm_spam_b5c386458137cad1400cc434a9323948','no','no'),(296,'_transient_timeout_mm_spam_0a33b0bd706563c78662343fd77f41d5','1514685106','no'),(297,'_transient_mm_spam_0a33b0bd706563c78662343fd77f41d5','no','no'),(298,'_transient_timeout_mm_spam_9177c5131c4155e19f23039518c128d8','1514844582','no'),(299,'_transient_mm_spam_9177c5131c4155e19f23039518c128d8','no','no'),(300,'_transient_timeout_mm_spam_6d4f3b60b22803e426bae64bfef86a61','1514853881','no'),(301,'_transient_mm_spam_6d4f3b60b22803e426bae64bfef86a61','no','no'),(304,'_transient_timeout_mm_spam_5e3aa900c1bad93c9d94f474d246e06a','1514910143','no'),(305,'_transient_mm_spam_5e3aa900c1bad93c9d94f474d246e06a','no','no'),(306,'_transient_timeout_mm_spam_379068505166a0afc94453131860f179','1515017041','no'),(307,'_transient_mm_spam_379068505166a0afc94453131860f179','no','no'),(310,'_transient_timeout_mm_spam_ba175bd94dbcab97608717d4745e50ec','1515136525','no'),(311,'_transient_mm_spam_ba175bd94dbcab97608717d4745e50ec','no','no'),(320,'_transient_timeout_mm_spam_4326ffe984e4d299f641d4e3ca2a7e4b','1516339188','no'),(321,'_transient_mm_spam_4326ffe984e4d299f641d4e3ca2a7e4b','no','no'),(324,'_transient_timeout_mm_spam_5d9b1e85d057dbbb72bb3464b163eeab','1516387012','no'),(325,'_transient_mm_spam_5d9b1e85d057dbbb72bb3464b163eeab','no','no'),(326,'_transient_timeout_mm_spam_6c4a5639f55cab7e7a1fb9f0317a392b','1516390940','no'),(327,'_transient_mm_spam_6c4a5639f55cab7e7a1fb9f0317a392b','no','no'),(328,'_transient_timeout_mm_spam_80453016fb8e50214ff621e23e138dbf','1516420938','no'),(329,'_transient_mm_spam_80453016fb8e50214ff621e23e138dbf','no','no'),(330,'_transient_timeout_mm_spam_53597871275288c7f1d887fa72f5bc62','1516433346','no'),(331,'_transient_mm_spam_53597871275288c7f1d887fa72f5bc62','no','no'),(332,'_transient_timeout_mm_spam_7b30f2287dcc9d6887ccb5be7167010e','1516459063','no'),(333,'_transient_mm_spam_7b30f2287dcc9d6887ccb5be7167010e','no','no'),(334,'_transient_timeout_mm_spam_cd15f27829fbf2734c072c5db9b65b50','1516509256','no'),(335,'_transient_mm_spam_cd15f27829fbf2734c072c5db9b65b50','no','no'),(336,'_transient_timeout_mm_spam_e2a8bd7eb211d04777bee14444ca7b3f','1516540076','no'),(337,'_transient_mm_spam_e2a8bd7eb211d04777bee14444ca7b3f','no','no'),(338,'_transient_timeout_mm_spam_1e090a83c8aa72034442944f6a769fcf','1516540141','no'),(339,'_transient_mm_spam_1e090a83c8aa72034442944f6a769fcf','no','no'),(340,'_transient_timeout_mm_spam_2460a56e6c9cfdba53a7004651ec4b63','1516551145','no'),(341,'_transient_mm_spam_2460a56e6c9cfdba53a7004651ec4b63','no','no'),(342,'_transient_timeout_mm_spam_0777f3265a5c1e1fd0fc2c544154145b','1516562405','no'),(343,'_transient_mm_spam_0777f3265a5c1e1fd0fc2c544154145b','no','no'),(344,'_transient_timeout_mm_spam_eccf81bb379b29202601c8d1d0781aca','1516563203','no'),(345,'_transient_mm_spam_eccf81bb379b29202601c8d1d0781aca','no','no'),(346,'_transient_timeout_mm_spam_247782e0dd64db0eb5ae1f2763b54f03','1516577405','no'),(347,'_transient_mm_spam_247782e0dd64db0eb5ae1f2763b54f03','no','no'),(348,'_transient_timeout_mm_spam_bf86e0c786369a15653839bc48eef701','1516594540','no'),(349,'_transient_mm_spam_bf86e0c786369a15653839bc48eef701','no','no'),(350,'_transient_timeout_mm_spam_5406e962d92aa12672d466c5b5d07545','1516594584','no'),(351,'_transient_mm_spam_5406e962d92aa12672d466c5b5d07545','no','no'),(352,'_transient_timeout_mm_spam_5e4504497beccdac68d6f7f15b6e5bbd','1516594629','no'),(353,'_transient_mm_spam_5e4504497beccdac68d6f7f15b6e5bbd','no','no'),(354,'_transient_timeout_mm_spam_f65cb836b3cd50661c5f3a1c98d5b9c5','1516602827','no'),(355,'_transient_mm_spam_f65cb836b3cd50661c5f3a1c98d5b9c5','no','no'),(356,'_transient_timeout_mm_spam_c436ebae33403fb5caa2678d81d8369c','1516620218','no'),(357,'_transient_mm_spam_c436ebae33403fb5caa2678d81d8369c','no','no'),(358,'_transient_timeout_mm_spam_7a39a8c88ef0dc6bbc0ba2cf05e235f9','1516620541','no'),(359,'_transient_mm_spam_7a39a8c88ef0dc6bbc0ba2cf05e235f9','no','no'),(360,'_transient_timeout_mm_spam_7d05dba2629a7bad9f7eba24bbf699d6','1516623096','no'),(361,'_transient_mm_spam_7d05dba2629a7bad9f7eba24bbf699d6','no','no'),(362,'_transient_timeout_mm_spam_7216f2e540979c3bf3eef00970aed9ca','1516627239','no'),(363,'_transient_mm_spam_7216f2e540979c3bf3eef00970aed9ca','no','no'),(364,'_transient_timeout_mm_spam_2c8720b127472df5814ace8f870db25c','1516647857','no'),(365,'_transient_mm_spam_2c8720b127472df5814ace8f870db25c','no','no'),(366,'_transient_timeout_mm_spam_efd5466d2fbe90fd90986fafe9438be8','1516650074','no'),(367,'_transient_mm_spam_efd5466d2fbe90fd90986fafe9438be8','no','no'),(368,'_transient_timeout_mm_spam_d3beffc4413025b211f4c07a0b4c3083','1516659486','no'),(369,'_transient_mm_spam_d3beffc4413025b211f4c07a0b4c3083','no','no'),(370,'_transient_timeout_mm_spam_d7b21eb45810d7debdc79e3e45d37b6d','1516663131','no'),(371,'_transient_mm_spam_d7b21eb45810d7debdc79e3e45d37b6d','no','no'),(372,'_transient_timeout_mm_spam_80d9aee9170f6fa3d3aafdd315c157ad','1516671043','no'),(373,'_transient_mm_spam_80d9aee9170f6fa3d3aafdd315c157ad','no','no'),(374,'_transient_timeout_mm_spam_bf4ac1341760033050f54ed2ff9a9384','1516689435','no'),(375,'_transient_mm_spam_bf4ac1341760033050f54ed2ff9a9384','no','no'),(376,'_transient_timeout_mm_spam_c5048930b132383f361e1e31b5280b72','1516691552','no'),(377,'_transient_mm_spam_c5048930b132383f361e1e31b5280b72','no','no'),(378,'_transient_timeout_mm_spam_70bd10a5f4b9ac5d183e63d997f0dd75','1516693262','no'),(379,'_transient_mm_spam_70bd10a5f4b9ac5d183e63d997f0dd75','no','no'),(380,'_transient_timeout_mm_spam_b34d8da4084a6c6e6acb6f4fa63d9f42','1516702108','no'),(381,'_transient_mm_spam_b34d8da4084a6c6e6acb6f4fa63d9f42','no','no'),(382,'_transient_timeout_mm_spam_958f80141e9ec087b3ddcd3182551abf','1516723399','no'),(383,'_transient_mm_spam_958f80141e9ec087b3ddcd3182551abf','no','no'),(384,'_transient_timeout_mm_spam_b7e17cae50dff84eb2b010d62ffbf9b1','1516726307','no'),(385,'_transient_mm_spam_b7e17cae50dff84eb2b010d62ffbf9b1','no','no'),(386,'_transient_timeout_mm_spam_fe8c826240667b142558f51cc5b3b693','1516738884','no'),(387,'_transient_mm_spam_fe8c826240667b142558f51cc5b3b693','no','no'),(396,'_transient_timeout_mm_spam_f1474d95852630de64918752897551ff','1516787666','no'),(397,'_transient_mm_spam_f1474d95852630de64918752897551ff','no','no'),(398,'_transient_timeout_mm_spam_1924b97fd8bbe6a85f17752bf86c6b03','1516798646','no'),(399,'_transient_mm_spam_1924b97fd8bbe6a85f17752bf86c6b03','no','no'),(400,'_transient_timeout_mm_spam_a01e70970f5afcbe27b246df799c8712','1516810914','no'),(401,'_transient_mm_spam_a01e70970f5afcbe27b246df799c8712','no','no'),(402,'_transient_timeout_mm_spam_e6cbd59b5a97f72f17d4a4e541767c74','1516818312','no'),(403,'_transient_mm_spam_e6cbd59b5a97f72f17d4a4e541767c74','no','no'),(416,'_mm_refresh_token','5a85d0cf-1154-4b38-ab5c-369a0a141f3b','yes'),(427,'_transient_timeout_mm_spam_b61d452d4e40e689eb62f2bd75a87ddf','1520639028','no'),(428,'_transient_mm_spam_b61d452d4e40e689eb62f2bd75a87ddf','no','no'),(431,'_transient_timeout_mm_spam_9b556dbebea2764e784dc5f8729bffc8','1520713796','no'),(432,'_transient_mm_spam_9b556dbebea2764e784dc5f8729bffc8','no','no'),(433,'_transient_timeout_mm_spam_594ebf8acf9bdee7beef715675c53836','1520727673','no'),(434,'_transient_mm_spam_594ebf8acf9bdee7beef715675c53836','no','no'),(461,'_transient_timeout_mm_spam_b27d0d6991d3c94544132ffa82767413','1521808484','no'),(462,'_transient_mm_spam_b27d0d6991d3c94544132ffa82767413','no','no'),(615,'_transient_timeout_mm_spam_cd793ea97f34c623c6e84728634e3c78','1532175657','no'),(616,'_transient_mm_spam_cd793ea97f34c623c6e84728634e3c78','no','no'),(681,'_transient_timeout_mm_spam_713d3653dbdb0999ecf39f73013ac705','1535277360','no'),(682,'_transient_mm_spam_713d3653dbdb0999ecf39f73013ac705','no','no'),(705,'_transient_timeout_mm_spam_24bb3462af5415125cc31d5fef116398','1536488218','no'),(706,'_transient_mm_spam_24bb3462af5415125cc31d5fef116398','no','no'),(1043,'_transient_timeout_mm_spam_d5704d5b0e8db394119412275ef729cf','1548620601','no'),(1044,'_transient_mm_spam_d5704d5b0e8db394119412275ef729cf','no','no'),(1045,'_transient_timeout_mm_spam_27b0dc2b73881fc55c9ec4225596f513','1548636463','no'),(1046,'_transient_mm_spam_27b0dc2b73881fc55c9ec4225596f513','no','no'),(1047,'_transient_timeout_mm_spam_24cbf4e41550a91347af90fa2eccda32','1548636543','no'),(1048,'_transient_mm_spam_24cbf4e41550a91347af90fa2eccda32','no','no'),(1049,'_transient_timeout_mm_spam_34e6a1c75340eef3a0323a208aa09298','1548636738','no'),(1050,'_transient_mm_spam_34e6a1c75340eef3a0323a208aa09298','no','no'),(1051,'_transient_timeout_mm_spam_b10d45b14c32cd17c23981d6e4ee207b','1548636739','no'),(1052,'_transient_mm_spam_b10d45b14c32cd17c23981d6e4ee207b','no','no'),(1053,'_transient_timeout_mm_spam_193e86aba8ea29aa48c998ddf5fa7985','1548636862','no'),(1054,'_transient_mm_spam_193e86aba8ea29aa48c998ddf5fa7985','no','no'),(1055,'_transient_timeout_mm_spam_f9078456020025337b0f2d61ba89952b','1548636930','no'),(1056,'_transient_mm_spam_f9078456020025337b0f2d61ba89952b','no','no'),(1057,'_transient_timeout_mm_spam_b302d5d34500cda73fc97ec9d3f4bb3a','1548637016','no'),(1058,'_transient_mm_spam_b302d5d34500cda73fc97ec9d3f4bb3a','no','no'),(1059,'_transient_timeout_mm_spam_782d728bfcfccf174c12432aaead49f8','1548637104','no'),(1060,'_transient_mm_spam_782d728bfcfccf174c12432aaead49f8','no','no'),(1061,'_transient_timeout_mm_spam_3d01d063ebb0cc5d597aad6dbbdf917d','1548637207','no'),(1062,'_transient_mm_spam_3d01d063ebb0cc5d597aad6dbbdf917d','no','no'),(1063,'_transient_timeout_mm_spam_bb3c419e3a2de651eb6b75b158da786d','1548637329','no'),(1064,'_transient_mm_spam_bb3c419e3a2de651eb6b75b158da786d','no','no'),(1065,'_transient_timeout_mm_spam_5797b7d3695e094d99819cea5cc7f80e','1548637397','no'),(1066,'_transient_mm_spam_5797b7d3695e094d99819cea5cc7f80e','no','no'),(1067,'_transient_timeout_mm_spam_5858b05c39d416e4dda1b454c9401575','1548637605','no'),(1068,'_transient_mm_spam_5858b05c39d416e4dda1b454c9401575','no','no'),(1069,'_transient_timeout_mm_spam_8d6e030c7d8f934599bfb9aab623d339','1548637684','no'),(1070,'_transient_mm_spam_8d6e030c7d8f934599bfb9aab623d339','no','no'),(1071,'_transient_timeout_mm_spam_d437491ca854653bb1b3f780c0690ac3','1548637793','no'),(1072,'_transient_mm_spam_d437491ca854653bb1b3f780c0690ac3','no','no'),(1073,'_transient_timeout_mm_spam_bbf66aeb15ceb4a920543699e34ed7f8','1548637952','no'),(1074,'_transient_mm_spam_bbf66aeb15ceb4a920543699e34ed7f8','no','no'),(1075,'_transient_timeout_mm_spam_9d2013ea5050d4c95efe020a0139738a','1548638170','no'),(1076,'_transient_mm_spam_9d2013ea5050d4c95efe020a0139738a','no','no'),(1077,'_transient_timeout_mm_spam_fb7fcd416d74650ab81a4773f5c27e4b','1548638285','no'),(1078,'_transient_mm_spam_fb7fcd416d74650ab81a4773f5c27e4b','no','no'),(1079,'_transient_timeout_mm_spam_3b54b24a63ad972a82030ee8988f60d4','1548638367','no'),(1080,'_transient_mm_spam_3b54b24a63ad972a82030ee8988f60d4','no','no'),(1081,'_transient_timeout_mm_spam_b640efbf94e3e120466d97e257871f11','1548638477','no'),(1082,'_transient_mm_spam_b640efbf94e3e120466d97e257871f11','no','no'),(1083,'_transient_timeout_mm_spam_682fdef0b1d8880efa5b3bafa27e7e9d','1548638564','no'),(1084,'_transient_mm_spam_682fdef0b1d8880efa5b3bafa27e7e9d','no','no'),(1085,'_transient_timeout_mm_spam_8a913042a5150c2110f297694aaa2a5b','1548638715','no'),(1086,'_transient_mm_spam_8a913042a5150c2110f297694aaa2a5b','no','no'),(1087,'_transient_timeout_mm_spam_476754cdc11875887d8f31f9f185f3aa','1548638840','no'),(1088,'_transient_mm_spam_476754cdc11875887d8f31f9f185f3aa','no','no'),(1089,'_transient_timeout_mm_spam_6228dce4aa74951eb09664ab77b602b3','1548638946','no'),(1090,'_transient_mm_spam_6228dce4aa74951eb09664ab77b602b3','no','no'),(1091,'_transient_timeout_mm_spam_6afe4684e4a3d3873a5373e9eb97ec88','1548639005','no'),(1092,'_transient_mm_spam_6afe4684e4a3d3873a5373e9eb97ec88','no','no'),(1093,'_transient_timeout_mm_spam_3cb7baa756b2ea9fd338f15e18de6b56','1548639104','no'),(1094,'_transient_mm_spam_3cb7baa756b2ea9fd338f15e18de6b56','no','no'),(1095,'_transient_timeout_mm_spam_286b8da44cdb2560ac690f4ba98e0b9f','1548639381','no'),(1096,'_transient_mm_spam_286b8da44cdb2560ac690f4ba98e0b9f','no','no'),(1097,'_transient_timeout_mm_spam_c6c9814e4744649621165a59e77c9d23','1548639431','no'),(1098,'_transient_mm_spam_c6c9814e4744649621165a59e77c9d23','no','no'),(1099,'_transient_timeout_mm_spam_bc4d79dd236295c4c776c7e1bdd1359d','1548639544','no'),(1100,'_transient_mm_spam_bc4d79dd236295c4c776c7e1bdd1359d','no','no'),(1101,'_transient_timeout_mm_spam_ddad624221ed064167a48590aa340110','1548639649','no'),(1102,'_transient_mm_spam_ddad624221ed064167a48590aa340110','no','no'),(1103,'_transient_timeout_mm_spam_ba31a3118d0bdd85346b6e55cc23bc0f','1548639824','no'),(1104,'_transient_mm_spam_ba31a3118d0bdd85346b6e55cc23bc0f','no','no'),(1105,'_transient_timeout_mm_spam_68dd704a9ccbfca2b0b2d7c5db187965','1548639865','no'),(1106,'_transient_mm_spam_68dd704a9ccbfca2b0b2d7c5db187965','no','no'),(1107,'_transient_timeout_mm_spam_ca6ce10bc01c09b30e3b7688dbd5e76e','1548639961','no'),(1108,'_transient_mm_spam_ca6ce10bc01c09b30e3b7688dbd5e76e','no','no'),(1109,'_transient_timeout_mm_spam_faa83a960b968d1286d11268ec305d38','1548640183','no'),(1110,'_transient_mm_spam_faa83a960b968d1286d11268ec305d38','no','no'),(1111,'_transient_timeout_mm_spam_ffc9130135d04f16fde1dabdb6a6a986','1548640294','no'),(1112,'_transient_mm_spam_ffc9130135d04f16fde1dabdb6a6a986','no','no'),(1113,'_transient_timeout_mm_spam_85afe23eaa3dd18234fc447c8e93261c','1548640463','no'),(1114,'_transient_mm_spam_85afe23eaa3dd18234fc447c8e93261c','no','no'),(1115,'_transient_timeout_mm_spam_87256ad3759dbec69d2497ea09431415','1548640672','no'),(1116,'_transient_mm_spam_87256ad3759dbec69d2497ea09431415','no','no'),(1117,'_transient_timeout_mm_spam_4c6aff962b05a3e8baa275f85acec037','1548640731','no'),(1118,'_transient_mm_spam_4c6aff962b05a3e8baa275f85acec037','no','no'),(1119,'_transient_timeout_mm_spam_d2359c94f282a51845fa8697a88ea9ab','1548640895','no'),(1120,'_transient_mm_spam_d2359c94f282a51845fa8697a88ea9ab','no','no'),(1121,'_transient_timeout_mm_spam_c82d764790dfcb5f75f83ae725f8dcf9','1548640949','no'),(1122,'_transient_mm_spam_c82d764790dfcb5f75f83ae725f8dcf9','no','no'),(1123,'_transient_timeout_mm_spam_f0dc8e31ac4abc132830a1390aaeb122','1548641201','no'),(1124,'_transient_mm_spam_f0dc8e31ac4abc132830a1390aaeb122','no','no'),(1125,'_transient_timeout_mm_spam_d452a48aa03b96f0a9d4e81056a53b9c','1548641389','no'),(1126,'_transient_mm_spam_d452a48aa03b96f0a9d4e81056a53b9c','no','no'),(1127,'_transient_timeout_mm_spam_1f8dd384f8d21eb95aec17bc1511da9a','1548641472','no'),(1128,'_transient_mm_spam_1f8dd384f8d21eb95aec17bc1511da9a','no','no'),(1129,'_transient_timeout_mm_spam_a4f342c9698307b2499c42fa4e65288f','1548641609','no'),(1130,'_transient_mm_spam_a4f342c9698307b2499c42fa4e65288f','no','no'),(1131,'_transient_timeout_mm_spam_27989eb92261360dd25db98fe296e5e7','1548641687','no'),(1132,'_transient_mm_spam_27989eb92261360dd25db98fe296e5e7','no','no'),(1133,'_transient_timeout_mm_spam_e957a36647db83b0728d9ccf5d147c8c','1548641797','no'),(1134,'_transient_mm_spam_e957a36647db83b0728d9ccf5d147c8c','no','no'),(1135,'_transient_timeout_mm_spam_b7e8cc22a07bb20525ad677d8208d32c','1548642066','no'),(1136,'_transient_mm_spam_b7e8cc22a07bb20525ad677d8208d32c','no','no'),(1137,'_transient_timeout_mm_spam_d4a8e0252290352086ac8faf9b0af91b','1548642176','no'),(1138,'_transient_mm_spam_d4a8e0252290352086ac8faf9b0af91b','no','no'),(1139,'_transient_timeout_mm_spam_3aec5d91990ab115ee90e6df4ccffcdb','1548642337','no'),(1140,'_transient_mm_spam_3aec5d91990ab115ee90e6df4ccffcdb','no','no'),(1141,'_transient_timeout_mm_spam_c91c0dc4362b4cbfee710eef895e73c9','1548642572','no'),(1142,'_transient_mm_spam_c91c0dc4362b4cbfee710eef895e73c9','no','no'),(1143,'_transient_timeout_mm_spam_9e0dfefa46c35e34ef23e7fb1d4defd8','1548642907','no'),(1144,'_transient_mm_spam_9e0dfefa46c35e34ef23e7fb1d4defd8','no','no'),(1145,'_transient_timeout_mm_spam_5f8b8b938e85c60a0e0f36b3605cca67','1548643015','no'),(1146,'_transient_mm_spam_5f8b8b938e85c60a0e0f36b3605cca67','no','no'),(1147,'_transient_timeout_mm_spam_3187d08263882631699119e1eb73f259','1548643118','no'),(1148,'_transient_mm_spam_3187d08263882631699119e1eb73f259','no','no'),(1149,'_transient_timeout_mm_spam_e0c00beb7b779bc509b92614abe04c17','1548643339','no'),(1150,'_transient_mm_spam_e0c00beb7b779bc509b92614abe04c17','no','no'),(1151,'_transient_timeout_mm_spam_ba389dfd36b74750fa8b76694f5bd0ce','1548643446','no'),(1152,'_transient_mm_spam_ba389dfd36b74750fa8b76694f5bd0ce','no','no'),(1153,'_transient_timeout_mm_spam_96f8e20b93d69f45242668c44b74da6c','1548643825','no'),(1154,'_transient_mm_spam_96f8e20b93d69f45242668c44b74da6c','no','no'),(1155,'_transient_timeout_mm_spam_4b935a918dff1e25c387a43c152805a8','1548643914','no'),(1156,'_transient_mm_spam_4b935a918dff1e25c387a43c152805a8','no','no'),(1157,'_transient_timeout_mm_spam_4305d1428786e5d4553b95ef53563d06','1548643996','no'),(1158,'_transient_mm_spam_4305d1428786e5d4553b95ef53563d06','no','no'),(1159,'_transient_timeout_mm_spam_77ed591077dbcc13396d5b56ef87170b','1548644165','no'),(1160,'_transient_mm_spam_77ed591077dbcc13396d5b56ef87170b','no','no'),(1161,'_transient_timeout_mm_spam_be7100542b0901761cbbfae37333a340','1548644371','no'),(1162,'_transient_mm_spam_be7100542b0901761cbbfae37333a340','no','no'),(1163,'_transient_timeout_mm_spam_988a4bbfee443842b790516fc0409331','1548644434','no'),(1164,'_transient_mm_spam_988a4bbfee443842b790516fc0409331','no','no'),(1165,'_transient_timeout_mm_spam_226635bad0f8aebedfec9b9abfd9f4f6','1548644533','no'),(1166,'_transient_mm_spam_226635bad0f8aebedfec9b9abfd9f4f6','no','no'),(1167,'_transient_timeout_mm_spam_b95733b87ffa6255dd18610cf9f48f39','1548644762','no'),(1168,'_transient_mm_spam_b95733b87ffa6255dd18610cf9f48f39','no','no'),(1169,'_transient_timeout_mm_spam_c7b7aa29602e0ebbd11d32d55ac9c903','1548644903','no'),(1170,'_transient_mm_spam_c7b7aa29602e0ebbd11d32d55ac9c903','no','no'),(1171,'_transient_timeout_mm_spam_92b4046c22fab3e9e7290324f234601b','1548645088','no'),(1172,'_transient_mm_spam_92b4046c22fab3e9e7290324f234601b','no','no'),(1173,'_transient_timeout_mm_spam_42a2079200d17dc4ab64d2775a7409ac','1548645210','no'),(1174,'_transient_mm_spam_42a2079200d17dc4ab64d2775a7409ac','no','no'),(1175,'_transient_timeout_mm_spam_e36d328660ce93f267a0d348c3875f71','1548645380','no'),(1176,'_transient_mm_spam_e36d328660ce93f267a0d348c3875f71','no','no'),(1177,'_transient_timeout_mm_spam_d96618619060e5f4842a834e92d2378a','1548645495','no'),(1178,'_transient_mm_spam_d96618619060e5f4842a834e92d2378a','no','no'),(1179,'_transient_timeout_mm_spam_3ca56562d5bb43fd0abd2df2f168f3d2','1548645922','no'),(1180,'_transient_mm_spam_3ca56562d5bb43fd0abd2df2f168f3d2','no','no'),(1181,'_transient_timeout_mm_spam_f50f3a89f4a9746c2be733e34f57c110','1548646312','no'),(1182,'_transient_mm_spam_f50f3a89f4a9746c2be733e34f57c110','no','no'),(1183,'_transient_timeout_mm_spam_7f71a949149eff15ad1e7e40c606436f','1548646582','no'),(1184,'_transient_mm_spam_7f71a949149eff15ad1e7e40c606436f','no','no'),(1185,'_transient_timeout_mm_spam_f32b6c40da5b5a1e176bbeefdbe9f6c6','1548646826','no'),(1186,'_transient_mm_spam_f32b6c40da5b5a1e176bbeefdbe9f6c6','no','no'),(1187,'_transient_timeout_mm_spam_1d37d59f8b88fedd7cd638e60e66a014','1548646960','no'),(1188,'_transient_mm_spam_1d37d59f8b88fedd7cd638e60e66a014','no','no'),(1189,'_transient_timeout_mm_spam_99f2befd444d26bf3e49ae06b18c2695','1548647032','no'),(1190,'_transient_mm_spam_99f2befd444d26bf3e49ae06b18c2695','no','no'),(1191,'_transient_timeout_mm_spam_2fb7f7a0e56d259d0271b7ba9515135f','1548647060','no'),(1192,'_transient_mm_spam_2fb7f7a0e56d259d0271b7ba9515135f','no','no'),(1193,'_transient_timeout_mm_spam_69e014d78850d93fef01d563486fdb25','1548647163','no'),(1194,'_transient_mm_spam_69e014d78850d93fef01d563486fdb25','no','no'),(1195,'_transient_timeout_mm_spam_fc355e7609b944830d0a94794b78539d','1548647363','no'),(1196,'_transient_mm_spam_fc355e7609b944830d0a94794b78539d','no','no'),(1197,'_transient_timeout_mm_spam_ba30c9e0e3ea3a57094c191e109c8119','1548647407','no'),(1198,'_transient_mm_spam_ba30c9e0e3ea3a57094c191e109c8119','no','no'),(1199,'_transient_timeout_mm_spam_1455c321d1cc24f73cbc4978f582b7e5','1548647491','no'),(1200,'_transient_mm_spam_1455c321d1cc24f73cbc4978f582b7e5','no','no'),(1201,'_transient_timeout_mm_spam_c4f645e6fb150a6a9669ba28ebfae0ce','1548647599','no'),(1202,'_transient_mm_spam_c4f645e6fb150a6a9669ba28ebfae0ce','no','no'),(1203,'_transient_timeout_mm_spam_57e821308f935556a7d3ac0d88edf5a8','1548647776','no'),(1204,'_transient_mm_spam_57e821308f935556a7d3ac0d88edf5a8','no','no'),(1205,'_transient_timeout_mm_spam_812bcd0a6842c8f4b4eec4e4e90c72ae','1548647834','no'),(1206,'_transient_mm_spam_812bcd0a6842c8f4b4eec4e4e90c72ae','no','no'),(1207,'_transient_timeout_mm_spam_cb1129285b2079eeb5334da7ef789793','1548648004','no'),(1208,'_transient_mm_spam_cb1129285b2079eeb5334da7ef789793','no','no'),(1209,'_transient_timeout_mm_spam_ab05def70c74ea96f67ae7a30705e3f4','1548648210','no'),(1210,'_transient_mm_spam_ab05def70c74ea96f67ae7a30705e3f4','no','no'),(1211,'_transient_timeout_mm_spam_5940eb8c08cf56f9639f9221090c7971','1548648289','no'),(1212,'_transient_mm_spam_5940eb8c08cf56f9639f9221090c7971','no','no'),(1213,'_transient_timeout_mm_spam_d10a7240799686888c852a1444b9d031','1548648889','no'),(1214,'_transient_mm_spam_d10a7240799686888c852a1444b9d031','no','no'),(1215,'_transient_timeout_mm_spam_c44dc571d11b3ecab98c0cf28f23ce90','1548649025','no'),(1216,'_transient_mm_spam_c44dc571d11b3ecab98c0cf28f23ce90','no','no'),(1217,'_transient_timeout_mm_spam_759fc45d8b56872e20c06f990fb6600c','1548649149','no'),(1218,'_transient_mm_spam_759fc45d8b56872e20c06f990fb6600c','no','no'),(1219,'_transient_timeout_mm_spam_cb5c3de9521090511062ddae6dc84ad2','1548649263','no'),(1220,'_transient_mm_spam_cb5c3de9521090511062ddae6dc84ad2','no','no'),(1221,'_transient_timeout_mm_spam_b088328f57f3e3021eafc7ba8a11eb9f','1548649398','no'),(1222,'_transient_mm_spam_b088328f57f3e3021eafc7ba8a11eb9f','no','no'),(1223,'_transient_timeout_mm_spam_9f02481f9cf9521314ccee94fcdfde10','1548649474','no'),(1224,'_transient_mm_spam_9f02481f9cf9521314ccee94fcdfde10','no','no'),(1225,'_transient_timeout_mm_spam_23c251a70e118ea9e4b44895655ffd59','1548649525','no'),(1226,'_transient_mm_spam_23c251a70e118ea9e4b44895655ffd59','no','no'),(1227,'_transient_timeout_mm_spam_cae4b780bf22ebd64040fac7d404453f','1548649818','no'),(1228,'_transient_mm_spam_cae4b780bf22ebd64040fac7d404453f','no','no'),(1229,'_transient_timeout_mm_spam_507eadb0f87c611828484dfc718b3ca5','1548649925','no'),(1230,'_transient_mm_spam_507eadb0f87c611828484dfc718b3ca5','no','no'),(1231,'_transient_timeout_mm_spam_c089daeef827aaba3298c03a8b3b2fa9','1548650168','no'),(1232,'_transient_mm_spam_c089daeef827aaba3298c03a8b3b2fa9','no','no'),(1233,'_transient_timeout_mm_spam_825af2ff6c174b9ade2130e84710792b','1548650194','no'),(1234,'_transient_mm_spam_825af2ff6c174b9ade2130e84710792b','no','no'),(1235,'_transient_timeout_mm_spam_436d2986210c695b31989a34d255c651','1548650346','no'),(1236,'_transient_mm_spam_436d2986210c695b31989a34d255c651','no','no'),(1237,'_transient_timeout_mm_spam_76fc734095ceb13812a810367e25c90c','1548650584','no'),(1238,'_transient_mm_spam_76fc734095ceb13812a810367e25c90c','no','no'),(1239,'_transient_timeout_mm_spam_4b5510d97a5ad28a1cbe1118719a5147','1548650938','no'),(1240,'_transient_mm_spam_4b5510d97a5ad28a1cbe1118719a5147','no','no'),(1241,'_transient_timeout_mm_spam_6ae35407893d0f2b26bd3551f0868a9d','1548651490','no'),(1242,'_transient_mm_spam_6ae35407893d0f2b26bd3551f0868a9d','no','no'),(1243,'_transient_timeout_mm_spam_b4ee0055c1f736e064b76e67c1d542c0','1548651785','no'),(1244,'_transient_mm_spam_b4ee0055c1f736e064b76e67c1d542c0','no','no'),(1245,'_transient_timeout_mm_spam_8e6af9776b2fb3029c8c4e3d35553d87','1548652961','no'),(1246,'_transient_mm_spam_8e6af9776b2fb3029c8c4e3d35553d87','no','no'),(1247,'_transient_timeout_mm_spam_fa55c25fa1bbbca629df6d0fada3154e','1548653087','no'),(1248,'_transient_mm_spam_fa55c25fa1bbbca629df6d0fada3154e','no','no'),(1249,'_transient_timeout_mm_spam_502c4b2cf0481ba14f1e4a5988a1fb1c','1548653185','no'),(1250,'_transient_mm_spam_502c4b2cf0481ba14f1e4a5988a1fb1c','no','no'),(1251,'_transient_timeout_mm_spam_c005d36b1d3d0cf89ecac6ba890ced73','1548653694','no'),(1252,'_transient_mm_spam_c005d36b1d3d0cf89ecac6ba890ced73','no','no'),(1253,'_transient_timeout_mm_spam_e2f3edb60e5c0722b57f9e41964f179e','1548653713','no'),(1254,'_transient_mm_spam_e2f3edb60e5c0722b57f9e41964f179e','no','no'),(1255,'_transient_timeout_mm_spam_bb8e680fe05f471489b0f26e2d90cf03','1548654401','no'),(1256,'_transient_mm_spam_bb8e680fe05f471489b0f26e2d90cf03','no','no'),(1257,'_transient_timeout_mm_spam_c36ba99ad8e37da64fc1da39aeed1275','1548654507','no'),(1258,'_transient_mm_spam_c36ba99ad8e37da64fc1da39aeed1275','no','no'),(1259,'_transient_timeout_mm_spam_8ffc783e7c7aee0f4fd59f51821df91a','1548654981','no'),(1260,'_transient_mm_spam_8ffc783e7c7aee0f4fd59f51821df91a','no','no'),(1261,'_transient_timeout_mm_spam_930459c7cb03269dfe23b244e3ec562e','1548655980','no'),(1262,'_transient_mm_spam_930459c7cb03269dfe23b244e3ec562e','no','no'),(1263,'_transient_timeout_mm_spam_d9bb1bdf80cbb6ca3463c174c4ee1f6c','1548656050','no'),(1264,'_transient_mm_spam_d9bb1bdf80cbb6ca3463c174c4ee1f6c','no','no'),(1265,'_transient_timeout_mm_spam_2cee7c85f4e1d7da980be68ceec79800','1548656065','no'),(1266,'_transient_mm_spam_2cee7c85f4e1d7da980be68ceec79800','no','no'),(1267,'_transient_timeout_mm_spam_18e3d30c030b495a9ffbbed3bc8b6eae','1548656178','no'),(1268,'_transient_mm_spam_18e3d30c030b495a9ffbbed3bc8b6eae','no','no'),(1269,'_transient_timeout_mm_spam_61def3602a9b403605d923ed2527b3ab','1548656325','no'),(1270,'_transient_mm_spam_61def3602a9b403605d923ed2527b3ab','no','no'),(1271,'_transient_timeout_mm_spam_e6d61ad3ab924a70a4647a4f6abfe544','1548656344','no'),(1272,'_transient_mm_spam_e6d61ad3ab924a70a4647a4f6abfe544','no','no'),(1273,'_transient_timeout_mm_spam_e288c5e327ae3703e0a5dd0ef1de05a9','1548656458','no'),(1274,'_transient_mm_spam_e288c5e327ae3703e0a5dd0ef1de05a9','no','no'),(1275,'_transient_timeout_mm_spam_5e544a14e207135bd9cad5bf38db486d','1548656599','no'),(1276,'_transient_mm_spam_5e544a14e207135bd9cad5bf38db486d','no','no'),(1277,'_transient_timeout_mm_spam_433796405b7108b7e7117898db9537b1','1548656738','no'),(1278,'_transient_mm_spam_433796405b7108b7e7117898db9537b1','no','no'),(1279,'_transient_timeout_mm_spam_6f8febd4a066c0cee8e9330f7c2d101d','1548657898','no'),(1280,'_transient_mm_spam_6f8febd4a066c0cee8e9330f7c2d101d','no','no'),(1281,'_transient_timeout_mm_spam_f7e5a79547a012a00adfe6d5cb96524e','1548658080','no'),(1282,'_transient_mm_spam_f7e5a79547a012a00adfe6d5cb96524e','no','no'),(1283,'_transient_timeout_mm_spam_3ecc8d8a4319e0e30260d8fa2c26e777','1548658125','no'),(1284,'_transient_mm_spam_3ecc8d8a4319e0e30260d8fa2c26e777','no','no'),(1285,'_transient_timeout_mm_spam_5ad7c39181f0398107efcfd54323ba29','1548658460','no'),(1286,'_transient_mm_spam_5ad7c39181f0398107efcfd54323ba29','no','no'),(1287,'_transient_timeout_mm_spam_fa75fb4d24bd0aa440eae9ac855acbab','1548659436','no'),(1288,'_transient_mm_spam_fa75fb4d24bd0aa440eae9ac855acbab','no','no'),(1289,'_transient_timeout_mm_spam_dec2ebeb08f33ac34f351731572b0f3d','1548659526','no'),(1290,'_transient_mm_spam_dec2ebeb08f33ac34f351731572b0f3d','no','no'),(1291,'_transient_timeout_mm_spam_91fb1d2144d0ef016abb49d37b3c36b5','1548659792','no'),(1292,'_transient_mm_spam_91fb1d2144d0ef016abb49d37b3c36b5','no','no'),(1293,'_transient_timeout_mm_spam_6e504c431e7e6b91fb8ad641a3e327ce','1548660253','no'),(1294,'_transient_mm_spam_6e504c431e7e6b91fb8ad641a3e327ce','no','no'),(1295,'_transient_timeout_mm_spam_922b0de0aba2d027a11d152490c6277b','1548660665','no'),(1296,'_transient_mm_spam_922b0de0aba2d027a11d152490c6277b','no','no'),(1297,'_transient_timeout_mm_spam_1b6c0c23f8ea99533a9f013787fffd91','1548661365','no'),(1298,'_transient_mm_spam_1b6c0c23f8ea99533a9f013787fffd91','no','no'),(1299,'_transient_timeout_mm_spam_0e31cc6697f99c0982bc8e92d1aa2310','1548661887','no'),(1300,'_transient_mm_spam_0e31cc6697f99c0982bc8e92d1aa2310','no','no'),(1301,'_transient_timeout_mm_spam_197d26390cd0fa842ff27e2e4bb14bdc','1548662298','no'),(1302,'_transient_mm_spam_197d26390cd0fa842ff27e2e4bb14bdc','no','no'),(1303,'_transient_timeout_mm_spam_fc3a0162c8010422154ce77da866265b','1548662414','no'),(1304,'_transient_mm_spam_fc3a0162c8010422154ce77da866265b','no','no'),(1305,'_transient_timeout_mm_spam_a396a2e44a12c76b1db93cd9a6ba5ead','1548662860','no'),(1306,'_transient_mm_spam_a396a2e44a12c76b1db93cd9a6ba5ead','no','no'),(1307,'_transient_timeout_mm_spam_9ef344554d12ec6726b95f1c09b15b0c','1548663056','no'),(1308,'_transient_mm_spam_9ef344554d12ec6726b95f1c09b15b0c','no','no'),(1309,'_transient_timeout_mm_spam_60b497304e7a03a3f08b410b842ae684','1548663272','no'),(1310,'_transient_mm_spam_60b497304e7a03a3f08b410b842ae684','no','no'),(1311,'_transient_timeout_mm_spam_d1beb8511819beaa2906958ae724eed3','1548663900','no'),(1312,'_transient_mm_spam_d1beb8511819beaa2906958ae724eed3','no','no'),(1313,'_transient_timeout_mm_spam_714eeb0967e1551aa280cc11843b497f','1548664445','no'),(1314,'_transient_mm_spam_714eeb0967e1551aa280cc11843b497f','no','no'),(1315,'_transient_timeout_mm_spam_0c83106a576233942b46267267b0fe7d','1548664723','no'),(1316,'_transient_mm_spam_0c83106a576233942b46267267b0fe7d','no','no'),(1317,'_transient_timeout_mm_spam_8c3042d98ab6681d673ee95a838f05f7','1548664822','no'),(1318,'_transient_mm_spam_8c3042d98ab6681d673ee95a838f05f7','no','no'),(1319,'_transient_timeout_mm_spam_d20c0553166394e2a1253c999b3afdb6','1548666091','no'),(1320,'_transient_mm_spam_d20c0553166394e2a1253c999b3afdb6','no','no'),(1321,'_transient_timeout_mm_spam_5602c3fd48b1082c4adbc170eae9bab0','1548666235','no'),(1322,'_transient_mm_spam_5602c3fd48b1082c4adbc170eae9bab0','no','no'),(1323,'_transient_timeout_mm_spam_4e8b604c4649a26ca08bc8e9ed8052b5','1548667495','no'),(1324,'_transient_mm_spam_4e8b604c4649a26ca08bc8e9ed8052b5','no','no'),(1325,'_transient_timeout_mm_spam_71e85e4091d328c787629d398e8b3f61','1548667539','no'),(1326,'_transient_mm_spam_71e85e4091d328c787629d398e8b3f61','no','no'),(1327,'_transient_timeout_mm_spam_e6c253d459b99a951b66e54e01c67e85','1548667854','no'),(1328,'_transient_mm_spam_e6c253d459b99a951b66e54e01c67e85','no','no'),(1329,'_transient_timeout_mm_spam_2087e62d6886c8b019e5e0b268d1f20c','1548668140','no'),(1330,'_transient_mm_spam_2087e62d6886c8b019e5e0b268d1f20c','no','no'),(1331,'_transient_timeout_mm_spam_058f7511b51fecc9a1fb0c07f6d6d324','1548668984','no'),(1332,'_transient_mm_spam_058f7511b51fecc9a1fb0c07f6d6d324','no','no'),(1333,'_transient_timeout_mm_spam_6d6ab2444c49d26aee410d8a130b0c2f','1548669231','no'),(1334,'_transient_mm_spam_6d6ab2444c49d26aee410d8a130b0c2f','no','no'),(1335,'_transient_timeout_mm_spam_7d1460aae3247fa85ff1ff9c2c474f1b','1548669527','no'),(1336,'_transient_mm_spam_7d1460aae3247fa85ff1ff9c2c474f1b','no','no'),(1337,'_transient_timeout_mm_spam_c5091d19c9bdd1ae51d7fce43fce50bb','1548669717','no'),(1338,'_transient_mm_spam_c5091d19c9bdd1ae51d7fce43fce50bb','no','no'),(1339,'_transient_timeout_mm_spam_ae8f26c16063a3c8de79f6d437f1eda5','1548670361','no'),(1340,'_transient_mm_spam_ae8f26c16063a3c8de79f6d437f1eda5','no','no'),(1341,'_transient_timeout_mm_spam_9f394811e599ca6cfb403b5c67abf724','1548670507','no'),(1342,'_transient_mm_spam_9f394811e599ca6cfb403b5c67abf724','no','no'),(1343,'_transient_timeout_mm_spam_017864f672613d5279fb2c2d2e11a7b2','1548671097','no'),(1344,'_transient_mm_spam_017864f672613d5279fb2c2d2e11a7b2','no','no'),(1345,'_transient_timeout_mm_spam_dfa222877f4774e08bf2e2d9937e6c33','1548671997','no'),(1346,'_transient_mm_spam_dfa222877f4774e08bf2e2d9937e6c33','no','no'),(1347,'_transient_timeout_mm_spam_4fe70f7570aedbd21efd520e790fe7e2','1548672644','no'),(1348,'_transient_mm_spam_4fe70f7570aedbd21efd520e790fe7e2','no','no'),(1349,'_transient_timeout_mm_spam_4eff27a520f4c31ec5c2e1d06ec80824','1548672711','no'),(1350,'_transient_mm_spam_4eff27a520f4c31ec5c2e1d06ec80824','no','no'),(1351,'_transient_timeout_mm_spam_4cf1156b1b2b6e9f0679c6e8debd6a6c','1548672818','no'),(1352,'_transient_mm_spam_4cf1156b1b2b6e9f0679c6e8debd6a6c','no','no'),(1353,'_transient_timeout_mm_spam_674e330a86401ac49045bdc4b6d820ea','1548673788','no'),(1354,'_transient_mm_spam_674e330a86401ac49045bdc4b6d820ea','no','no'),(1355,'_transient_timeout_mm_spam_2f2e7dcf331fb6fa5ee161ae450f4e66','1548674062','no'),(1356,'_transient_mm_spam_2f2e7dcf331fb6fa5ee161ae450f4e66','no','no'),(1357,'_transient_timeout_mm_spam_03f2f41c9dfc084d0d17e3a6533ad131','1548674455','no'),(1358,'_transient_mm_spam_03f2f41c9dfc084d0d17e3a6533ad131','no','no'),(1359,'_transient_timeout_mm_spam_af3b8c82f73bb7d89bc3fc1ac85526b9','1548674573','no'),(1360,'_transient_mm_spam_af3b8c82f73bb7d89bc3fc1ac85526b9','no','no'),(1361,'_transient_timeout_mm_spam_f8f84e859df839504342462ed6fc3178','1548675040','no'),(1362,'_transient_mm_spam_f8f84e859df839504342462ed6fc3178','no','no'),(1363,'_transient_timeout_mm_spam_6dc0d22759d88b98d32849ca5a3102f6','1548677082','no'),(1364,'_transient_mm_spam_6dc0d22759d88b98d32849ca5a3102f6','no','no'),(1365,'_transient_timeout_mm_spam_6df87a69aa96f5b286062d45b498436a','1548680487','no'),(1366,'_transient_mm_spam_6df87a69aa96f5b286062d45b498436a','no','no'),(1367,'_transient_timeout_mm_spam_13d63f9cb1fb8b5c421860ee6045bf60','1548680974','no'),(1368,'_transient_mm_spam_13d63f9cb1fb8b5c421860ee6045bf60','no','no'),(1369,'_transient_timeout_mm_spam_20a425f73a464bc487c1939ac687de56','1548682208','no'),(1370,'_transient_mm_spam_20a425f73a464bc487c1939ac687de56','no','no'),(1371,'_transient_timeout_mm_spam_d59f8f98718349e552d455a7e4584ba1','1548682461','no'),(1372,'_transient_mm_spam_d59f8f98718349e552d455a7e4584ba1','no','no'),(1373,'_transient_timeout_mm_spam_39d70848fc0bc447a093fd9c87568212','1548683328','no'),(1374,'_transient_mm_spam_39d70848fc0bc447a093fd9c87568212','no','no'),(1375,'_transient_timeout_mm_spam_03c89a799900a98322665e37528d138e','1548849673','no'),(1376,'_transient_mm_spam_03c89a799900a98322665e37528d138e','no','no'),(1383,'_transient_timeout_mm_spam_a27e4a785962a81541d3a5ac689e04cd','1549109071','no'),(1384,'_transient_mm_spam_a27e4a785962a81541d3a5ac689e04cd','no','no'),(1389,'_transient_timeout_mm_spam_483662a701da63e30911719374b6b8a2','1549160694','no'),(1390,'_transient_mm_spam_483662a701da63e30911719374b6b8a2','no','no'),(1447,'_transient_timeout_mm_spam_81e285bdec1e42b175c77ac2309e3282','1549819679','no'),(1448,'_transient_mm_spam_81e285bdec1e42b175c77ac2309e3282','no','no'),(1443,'_transient_timeout_mm_spam_7205d6b0274e7b486c6dcb3836b19a45','1549814494','no'),(1444,'_transient_mm_spam_7205d6b0274e7b486c6dcb3836b19a45','no','no'),(1397,'_transient_timeout_mm_spam_82f07e39084b72832974ff0f49039e41','1549252391','no'),(1398,'_transient_mm_spam_82f07e39084b72832974ff0f49039e41','no','no'),(1399,'_transient_timeout_mm_spam_ebe664f745bd86ce935d212c2ca865eb','1549265349','no'),(1400,'_transient_mm_spam_ebe664f745bd86ce935d212c2ca865eb','no','no'),(1401,'_transient_timeout_mm_spam_637d06f7b802d412fcc3ceb6081cb828','1549277468','no'),(1402,'_transient_mm_spam_637d06f7b802d412fcc3ceb6081cb828','no','no'),(1411,'_transient_timeout_mm_spam_de0b568aa3f91313b64951619c095b9f','1549722374','no'),(1412,'_transient_mm_spam_de0b568aa3f91313b64951619c095b9f','no','no'),(1413,'_transient_timeout_mm_spam_75bbfa07b612d4307064ef3a8d76169b','1549734573','no'),(1414,'_transient_mm_spam_75bbfa07b612d4307064ef3a8d76169b','no','no'),(1479,'_transient_timeout_mm_spam_06f52f1c876d771c1e2c4072c25378a5','1549855696','no'),(1480,'_transient_mm_spam_06f52f1c876d771c1e2c4072c25378a5','no','no'),(1417,'_transient_timeout_mm_spam_3d4aff8389576a573cb3c3da6fa50a62','1549746528','no'),(1418,'_transient_mm_spam_3d4aff8389576a573cb3c3da6fa50a62','no','no'),(1419,'_transient_timeout_mm_spam_1f11a75b0e295bf504618995aeb03617','1549792469','no'),(1420,'_transient_mm_spam_1f11a75b0e295bf504618995aeb03617','no','no'),(1421,'_transient_timeout_mm_spam_7f6218e5c04bc42abc3361a90e2c01c1','1549795980','no'),(1422,'_transient_mm_spam_7f6218e5c04bc42abc3361a90e2c01c1','no','no'),(1587,'_transient_timeout_mm_spam_850951e16c3d948b755738e9d2455d2b','1550170579','no'),(1588,'_transient_mm_spam_850951e16c3d948b755738e9d2455d2b','no','no'),(1425,'_transient_timeout_mm_spam_77099b26323b7c120ac1478952ccb3a1','1549799674','no'),(1426,'_transient_mm_spam_77099b26323b7c120ac1478952ccb3a1','no','no'),(1427,'_transient_timeout_mm_spam_0dd542007cdde89516fec168b6bc3d91','1549801337','no'),(1428,'_transient_mm_spam_0dd542007cdde89516fec168b6bc3d91','no','no'),(1429,'_transient_timeout_mm_spam_b4385ea196ab8d79c90556cd9395f59a','1549802945','no'),(1430,'_transient_mm_spam_b4385ea196ab8d79c90556cd9395f59a','no','no'),(1641,'_transient_timeout_mm_spam_2b4b33197b50ff95e26c1c33a3595639','1550292675','no'),(1642,'_transient_mm_spam_2b4b33197b50ff95e26c1c33a3595639','no','no'),(1433,'_transient_timeout_mm_spam_945d051994b9fda9bb69632329d5e990','1549806250','no'),(1434,'_transient_mm_spam_945d051994b9fda9bb69632329d5e990','no','no'),(1435,'_transient_timeout_mm_spam_3c96af6966895ce6dc9cc0c645c1e959','1549807813','no'),(1436,'_transient_mm_spam_3c96af6966895ce6dc9cc0c645c1e959','no','no'),(1437,'_transient_timeout_mm_spam_1c556e89bed4e4f5b0f3831184cf79a4','1549810471','no'),(1438,'_transient_mm_spam_1c556e89bed4e4f5b0f3831184cf79a4','no','no'),(1439,'_transient_timeout_mm_spam_9c3e64973840d28d40d46ab922367231','1549811465','no'),(1440,'_transient_mm_spam_9c3e64973840d28d40d46ab922367231','no','no'),(1441,'_transient_timeout_mm_spam_aaab10617bf6865673da645b8acc0f1e','1549813188','no'),(1442,'_transient_mm_spam_aaab10617bf6865673da645b8acc0f1e','no','no'),(1445,'_transient_timeout_mm_spam_cd57562592442f8d7c56a7c8bbb2fec7','1549818034','no'),(1446,'_transient_mm_spam_cd57562592442f8d7c56a7c8bbb2fec7','no','no'),(1599,'_transient_timeout_mm_spam_d9e48ce5bc88c610a6634ae87d399b93','1550175919','no'),(1600,'_transient_mm_spam_d9e48ce5bc88c610a6634ae87d399b93','no','no'),(1451,'_transient_timeout_mm_spam_9762d4d8ae553745fbcd5c3b2e215d28','1549823742','no'),(1452,'_transient_mm_spam_9762d4d8ae553745fbcd5c3b2e215d28','no','no'),(1453,'_transient_timeout_mm_spam_955ccefe32b363a5c676a82e39bd8f68','1549826840','no'),(1454,'_transient_mm_spam_955ccefe32b363a5c676a82e39bd8f68','no','no'),(1455,'_transient_timeout_mm_spam_11d909e66533767f52d2f9598700fbc7','1549828686','no'),(1456,'_transient_mm_spam_11d909e66533767f52d2f9598700fbc7','no','no'),(1595,'_transient_timeout_mm_spam_fe28f96876357d7e26fb492a92b9cb5a','1550174406','no'),(1596,'_transient_mm_spam_fe28f96876357d7e26fb492a92b9cb5a','no','no'),(1577,'_transient_timeout_mm_spam_7d655c870b8153dbcfa0c45f711995d3','1550165932','no'),(1578,'_transient_mm_spam_7d655c870b8153dbcfa0c45f711995d3','no','no'),(1461,'_transient_timeout_mm_spam_b8423df1efc5ff61246f536c38addca7','1549837789','no'),(1462,'_transient_mm_spam_b8423df1efc5ff61246f536c38addca7','no','no'),(1463,'_transient_timeout_mm_spam_fa9816f5615f8f15508d44bf776554ec','1549838643','no'),(1464,'_transient_mm_spam_fa9816f5615f8f15508d44bf776554ec','no','no'),(1629,'_transient_timeout_mm_spam_28442aadd3386d057f413d31f4235b0f','1550285244','no'),(1630,'_transient_mm_spam_28442aadd3386d057f413d31f4235b0f','no','no'),(1467,'_transient_timeout_mm_spam_8588c350323aae8b9eee058406e88230','1549843727','no'),(1468,'_transient_mm_spam_8588c350323aae8b9eee058406e88230','no','no'),(1469,'_transient_timeout_mm_spam_230247cc47956430f2863408604b906e','1549845689','no'),(1470,'_transient_mm_spam_230247cc47956430f2863408604b906e','no','no'),(1565,'_transient_timeout_mm_spam_74264358487e82c509a09fa748e9dcbd','1550160600','no'),(1566,'_transient_mm_spam_74264358487e82c509a09fa748e9dcbd','no','no'),(1473,'_transient_timeout_mm_spam_05be61d0d0dde91ed7e3e3d78af4e51e','1549848785','no'),(1474,'_transient_mm_spam_05be61d0d0dde91ed7e3e3d78af4e51e','no','no'),(1475,'_transient_timeout_mm_spam_74f68b5852434fd52f6a254b1043af81','1549852135','no'),(1476,'_transient_mm_spam_74f68b5852434fd52f6a254b1043af81','no','no'),(1477,'_transient_timeout_mm_spam_539b05cc3b4fb5e6da95df7ee7686e78','1549853100','no'),(1478,'_transient_mm_spam_539b05cc3b4fb5e6da95df7ee7686e78','no','no'),(1481,'_transient_timeout_mm_spam_5d8a89fb90c7d97960af11bbf1d550e8','1549856494','no'),(1482,'_transient_mm_spam_5d8a89fb90c7d97960af11bbf1d550e8','no','no'),(1483,'_transient_timeout_mm_spam_cc65cc83a49b69a82b5c94e16220a83c','1549858666','no'),(1484,'_transient_mm_spam_cc65cc83a49b69a82b5c94e16220a83c','no','no'),(1485,'_transient_timeout_mm_spam_0a4dbccc941b785db0aa6763246fcb2f','1549861076','no'),(1486,'_transient_mm_spam_0a4dbccc941b785db0aa6763246fcb2f','no','no'),(1487,'_transient_timeout_mm_spam_c47e143432395042c51a65a88f6545e2','1549861318','no'),(1488,'_transient_mm_spam_c47e143432395042c51a65a88f6545e2','no','no'),(1489,'_transient_timeout_mm_spam_f905fd89c2802f2e1e4a9e0581b59424','1549863120','no'),(1490,'_transient_mm_spam_f905fd89c2802f2e1e4a9e0581b59424','no','no'),(1491,'_transient_timeout_mm_spam_8b79dd0cfa071858579ab34eae24b692','1549886974','no'),(1492,'_transient_mm_spam_8b79dd0cfa071858579ab34eae24b692','no','no'),(1493,'_transient_timeout_mm_spam_e21d409ccdee318a5170714ff4579a94','1549887912','no'),(1494,'_transient_mm_spam_e21d409ccdee318a5170714ff4579a94','no','no'),(1495,'_transient_timeout_mm_spam_bac13f6b8043ebf8bdef794ceaa9cc47','1549888434','no'),(1496,'_transient_mm_spam_bac13f6b8043ebf8bdef794ceaa9cc47','no','no'),(1589,'_transient_timeout_mm_spam_f41c2c8f7657f27e508ae7b8c7da107a','1550171084','no'),(1590,'_transient_mm_spam_f41c2c8f7657f27e508ae7b8c7da107a','no','no'),(1499,'_transient_timeout_mm_spam_fb58523a2a0c996bb6e1c0bd90786e34','1549890519','no'),(1500,'_transient_mm_spam_fb58523a2a0c996bb6e1c0bd90786e34','no','no'),(1501,'_transient_timeout_mm_spam_a3fc702acd254ddaae85e96e3861ecdc','1549893399','no'),(1502,'_transient_mm_spam_a3fc702acd254ddaae85e96e3861ecdc','no','no'),(1503,'_transient_timeout_mm_spam_8fb9c357d987bd8340e06a24467ce7a5','1549894426','no'),(1504,'_transient_mm_spam_8fb9c357d987bd8340e06a24467ce7a5','no','no'),(1627,'_transient_timeout_mm_spam_c120fbd969e328dada57410bc8e453cc','1550283988','no'),(1628,'_transient_mm_spam_c120fbd969e328dada57410bc8e453cc','no','no'),(1507,'_transient_timeout_mm_spam_47466955c3f3b28d3b4cf1d95b0b458a','1549899110','no'),(1508,'_transient_mm_spam_47466955c3f3b28d3b4cf1d95b0b458a','no','no'),(1509,'_transient_timeout_mm_spam_6809ef4aad389a75869d2d3df110be84','1549899848','no'),(1510,'_transient_mm_spam_6809ef4aad389a75869d2d3df110be84','no','no'),(1571,'_transient_timeout_mm_spam_2519f257332d053e21a3651726f9c42b','1550164445','no'),(1572,'_transient_mm_spam_2519f257332d053e21a3651726f9c42b','no','no'),(1513,'_transient_timeout_mm_spam_0dabb4d75456e0ec8a70502fc48d3666','1549903184','no'),(1514,'_transient_mm_spam_0dabb4d75456e0ec8a70502fc48d3666','no','no'),(1515,'_transient_timeout_mm_spam_2bf335ee858affc35276ba1df0a1850a','1549903915','no'),(1516,'_transient_mm_spam_2bf335ee858affc35276ba1df0a1850a','no','no'),(1519,'_transient_timeout_mm_spam_ad0f4d3a16b4bf79b71201be11a7b1c3','1550080684','no'),(1520,'_transient_mm_spam_ad0f4d3a16b4bf79b71201be11a7b1c3','no','no'),(1521,'_transient_timeout_mm_spam_1788bb5a51abc5026b511fbd8f2efcd8','1550143250','no'),(1522,'_transient_mm_spam_1788bb5a51abc5026b511fbd8f2efcd8','no','no'),(1523,'_transient_timeout_mm_spam_2e784f64feba12ae7f4aed1729db81ca','1550143957','no'),(1524,'_transient_mm_spam_2e784f64feba12ae7f4aed1729db81ca','no','no'),(1525,'_transient_timeout_mm_spam_f4cb277a8d0d5f268d02df0d1fdf479f','1550144562','no'),(1526,'_transient_mm_spam_f4cb277a8d0d5f268d02df0d1fdf479f','no','no'),(1661,'_transient_timeout_mm_spam_a60148cf9461542cf74364ea3b85ba54','1550343926','no'),(1662,'_transient_mm_spam_a60148cf9461542cf74364ea3b85ba54','no','no'),(1531,'_transient_timeout_mm_spam_987f03a2bfc6d174bec6d74f2e3e0d7d','1550145528','no'),(1532,'_transient_mm_spam_987f03a2bfc6d174bec6d74f2e3e0d7d','no','no'),(1533,'_transient_timeout_mm_spam_fa28803046f8a8da5f692af39a5d6df0','1550146230','no'),(1534,'_transient_mm_spam_fa28803046f8a8da5f692af39a5d6df0','no','no'),(1535,'_transient_timeout_mm_spam_a9d7626cae68671a684b20e6c5c1df26','1550146874','no'),(1536,'_transient_mm_spam_a9d7626cae68671a684b20e6c5c1df26','no','no'),(1537,'_transient_timeout_mm_spam_d6d3bb2be73d8748f6a67b58719bc210','1550147898','no'),(1538,'_transient_mm_spam_d6d3bb2be73d8748f6a67b58719bc210','no','no'),(1539,'_transient_timeout_mm_spam_883d57a7b7d61263e88c69958a8144bc','1550148255','no'),(1540,'_transient_mm_spam_883d57a7b7d61263e88c69958a8144bc','no','no'),(1541,'_transient_timeout_mm_spam_256dd76527ff5ad5fb93ef4ee37d3b6c','1550150104','no'),(1542,'_transient_mm_spam_256dd76527ff5ad5fb93ef4ee37d3b6c','no','no'),(1543,'_transient_timeout_mm_spam_5f7614dde7a8171650b10b89794216f7','1550150552','no'),(1544,'_transient_mm_spam_5f7614dde7a8171650b10b89794216f7','no','no'),(1545,'_transient_timeout_mm_spam_e86f6cba41a021b32425c3a86ebb6f9b','1550151164','no'),(1546,'_transient_mm_spam_e86f6cba41a021b32425c3a86ebb6f9b','no','no'),(1547,'_transient_timeout_mm_spam_d2b61a6dc2247c855dbbc1184da9b565','1550151872','no'),(1548,'_transient_mm_spam_d2b61a6dc2247c855dbbc1184da9b565','no','no'),(1549,'_transient_timeout_mm_spam_778e9305922971fe0479d651ce1db386','1550153336','no'),(1550,'_transient_mm_spam_778e9305922971fe0479d651ce1db386','no','no'),(1551,'_transient_timeout_mm_spam_4f88af3df8d09f105ad159e8e36abe92','1550154806','no'),(1552,'_transient_mm_spam_4f88af3df8d09f105ad159e8e36abe92','no','no'),(1553,'_transient_timeout_mm_spam_017d867404f964da1c64ab2abb9b7952','1550155488','no'),(1554,'_transient_mm_spam_017d867404f964da1c64ab2abb9b7952','no','no'),(1555,'_transient_timeout_mm_spam_6f55f46b5dcc76d87e0ff643726fac1c','1550157766','no'),(1556,'_transient_mm_spam_6f55f46b5dcc76d87e0ff643726fac1c','no','no'),(1557,'_transient_timeout_mm_spam_ef64a6274404912ca0acb65a9d37df97','1550158436','no'),(1558,'_transient_mm_spam_ef64a6274404912ca0acb65a9d37df97','no','no'),(1559,'_transient_timeout_mm_spam_790796ece52b4bc7d756f8ad4a34a7e6','1550159210','no'),(1560,'_transient_mm_spam_790796ece52b4bc7d756f8ad4a34a7e6','no','no'),(1643,'_transient_timeout_mm_spam_961fa27e8c22879be570e4a3face68d2','1550293303','no'),(1644,'_transient_mm_spam_961fa27e8c22879be570e4a3face68d2','no','no'),(1563,'_transient_timeout_mm_spam_554db220657ba3f2c792464f2659f858','1550159929','no'),(1564,'_transient_mm_spam_554db220657ba3f2c792464f2659f858','no','no'),(1567,'_transient_timeout_mm_spam_97b2f6678b4d2f98c9b30dc871e0466d','1550161463','no'),(1568,'_transient_mm_spam_97b2f6678b4d2f98c9b30dc871e0466d','no','no'),(1569,'_transient_timeout_mm_spam_675e131c7f53695af6676712ed6b0c25','1550162166','no'),(1570,'_transient_mm_spam_675e131c7f53695af6676712ed6b0c25','no','no'),(1573,'_transient_timeout_mm_spam_442367058bec4e2368da7229031547e0','1550165149','no'),(1574,'_transient_mm_spam_442367058bec4e2368da7229031547e0','no','no'),(1575,'_transient_timeout_mm_spam_258e409a9a67722a8826360da41ca267','1550165455','no'),(1576,'_transient_mm_spam_258e409a9a67722a8826360da41ca267','no','no'),(1579,'_transient_timeout_mm_spam_8c723c7bf44d1f5884dd091bfbf7a686','1550166855','no'),(1580,'_transient_mm_spam_8c723c7bf44d1f5884dd091bfbf7a686','no','no'),(1581,'_transient_timeout_mm_spam_db2c5f55c602ed0d0ecb3016c36472a4','1550168027','no'),(1582,'_transient_mm_spam_db2c5f55c602ed0d0ecb3016c36472a4','no','no'),(1583,'_transient_timeout_mm_spam_655fbaead9de4775b669ff0f1c3f9db5','1550168506','no'),(1584,'_transient_mm_spam_655fbaead9de4775b669ff0f1c3f9db5','no','no'),(1585,'_transient_timeout_mm_spam_3f3f991f05d139656b64abeb3718fdee','1550169512','no'),(1586,'_transient_mm_spam_3f3f991f05d139656b64abeb3718fdee','no','no'),(1591,'_transient_timeout_mm_spam_b6c4ddac59e3778b77ff48049621d7b9','1550173070','no'),(1592,'_transient_mm_spam_b6c4ddac59e3778b77ff48049621d7b9','no','no'),(1593,'_transient_timeout_mm_spam_f40fb1dcd49c3439b0d15eaf1383b697','1550173433','no'),(1594,'_transient_mm_spam_f40fb1dcd49c3439b0d15eaf1383b697','no','no'),(1597,'_transient_timeout_mm_spam_a1a3aa3c14bbe2ca3ec0187261bb9052','1550174770','no'),(1598,'_transient_mm_spam_a1a3aa3c14bbe2ca3ec0187261bb9052','no','no'),(1601,'_transient_timeout_mm_spam_d3a6abc16097e8bc1d5b1dc95977a077','1550176139','no'),(1602,'_transient_mm_spam_d3a6abc16097e8bc1d5b1dc95977a077','no','no'),(1603,'_transient_timeout_mm_spam_66d52fd3790e5ce2a121a2e0c91effad','1550176817','no'),(1604,'_transient_mm_spam_66d52fd3790e5ce2a121a2e0c91effad','no','no'),(1605,'_transient_timeout_mm_spam_88e89fcdc98e423db86df6520c06f4a7','1550176838','no'),(1606,'_transient_mm_spam_88e89fcdc98e423db86df6520c06f4a7','no','no'),(1607,'_transient_timeout_mm_spam_e0ee476e7d9d9d9bb760b0b143620917','1550178452','no'),(1608,'_transient_mm_spam_e0ee476e7d9d9d9bb760b0b143620917','no','no'),(1609,'_transient_timeout_mm_spam_d6f2c925beb977655f9c8f63b4204944','1550191462','no'),(1610,'_transient_mm_spam_d6f2c925beb977655f9c8f63b4204944','no','no'),(1611,'_transient_timeout_mm_spam_96f610bd64d2b7dfb63d6506e7c27054','1550206658','no'),(1612,'_transient_mm_spam_96f610bd64d2b7dfb63d6506e7c27054','no','no'),(1613,'_transient_timeout_mm_spam_4296c2de5a65471b5aec4428caf14ccf','1550214146','no'),(1614,'_transient_mm_spam_4296c2de5a65471b5aec4428caf14ccf','no','no'),(1615,'_transient_timeout_mm_spam_6712050240a44e4091081e0d78e1bdb6','1550221622','no'),(1616,'_transient_mm_spam_6712050240a44e4091081e0d78e1bdb6','no','no'),(1653,'_transient_timeout_mm_spam_9570fa20cd366f853d231742b8efabe7','1550299551','no'),(1654,'_transient_mm_spam_9570fa20cd366f853d231742b8efabe7','no','no'),(1655,'_transient_timeout_mm_spam_9be30db8e62f514fa32224fb68430f2d','1550307835','no'),(1656,'_transient_mm_spam_9be30db8e62f514fa32224fb68430f2d','no','no'),(1657,'_transient_timeout_mm_spam_c5506086fdfe0a228cf8fa42a53f587a','1550322433','no'),(1658,'_transient_mm_spam_c5506086fdfe0a228cf8fa42a53f587a','no','no'),(1659,'_transient_timeout_mm_spam_ec6cbcf506e8b4590f3ba787e736c424','1550337080','no'),(1660,'_transient_mm_spam_ec6cbcf506e8b4590f3ba787e736c424','no','no'),(1691,'_transient_timeout_mm_spam_2120beec9cebaca5ef27583bf45d72c2','1552090430','no'),(1692,'_transient_mm_spam_2120beec9cebaca5ef27583bf45d72c2','no','no');
/*!40000 ALTER TABLE `wp_jl1e9t8_options` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_jl1e9t8_postmeta`
--
DROP TABLE IF EXISTS `wp_jl1e9t8_postmeta`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_jl1e9t8_postmeta` (
`meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`post_id` bigint(20) unsigned NOT NULL DEFAULT 0,
`meta_key` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
`meta_value` longtext COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
PRIMARY KEY (`meta_id`),
KEY `post_id` (`post_id`),
KEY `meta_key` (`meta_key`(191))
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_jl1e9t8_postmeta`
--
LOCK TABLES `wp_jl1e9t8_postmeta` WRITE;
/*!40000 ALTER TABLE `wp_jl1e9t8_postmeta` DISABLE KEYS */;
INSERT INTO `wp_jl1e9t8_postmeta` VALUES (1,2,'_wp_page_template','default');
/*!40000 ALTER TABLE `wp_jl1e9t8_postmeta` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_jl1e9t8_posts`
--
DROP TABLE IF EXISTS `wp_jl1e9t8_posts`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_jl1e9t8_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 COLLATE utf8mb4_unicode_520_ci NOT NULL,
`post_title` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
`post_excerpt` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
`post_status` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'publish',
`comment_status` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'open',
`ping_status` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'open',
`post_password` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`post_name` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`to_ping` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
`pinged` text COLLATE utf8mb4_unicode_520_ci 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 COLLATE utf8mb4_unicode_520_ci NOT NULL,
`post_parent` bigint(20) unsigned NOT NULL DEFAULT 0,
`guid` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`menu_order` int(11) NOT NULL DEFAULT 0,
`post_type` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'post',
`post_mime_type` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`comment_count` bigint(20) NOT NULL DEFAULT 0,
PRIMARY KEY (`ID`),
KEY `post_name` (`post_name`(191)),
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=5 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_jl1e9t8_posts`
--
LOCK TABLES `wp_jl1e9t8_posts` WRITE;
/*!40000 ALTER TABLE `wp_jl1e9t8_posts` DISABLE KEYS */;
INSERT INTO `wp_jl1e9t8_posts` VALUES (1,1,'2017-04-10 13:23:29','2017-04-10 13:23:29','Welcome to WordPress. This is your first post. Edit or delete it, then start writing!','Hello world!','','publish','open','open','','hello-world','','','2017-04-10 13:23:29','2017-04-10 13:23:29','',0,'https://50.116.64.37/~matrixm9/?p=1',0,'post','',1),(2,1,'2017-04-10 13:23:29','2017-04-10 13:23:29','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 website. 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 doohickeys 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=\"https://50.116.64.37/~matrixm9/wp-admin/\">your dashboard</a> to delete this page and create new pages for your content. Have fun!','Sample Page','','publish','closed','open','','sample-page','','','2017-04-10 13:23:29','2017-04-10 13:23:29','',0,'https://50.116.64.37/~matrixm9/?page_id=2',0,'page','',0),(3,1,'2017-04-10 13:25:22','0000-00-00 00:00:00','','Auto Draft','','auto-draft','open','open','','','','','2017-04-10 13:25:22','0000-00-00 00:00:00','',0,'http://50.116.64.37/~matrixm9/?p=3',0,'post','',0),(4,1,'2017-04-10 13:26:00','2017-04-10 13:26:00','This is your front page. Click the \'edit\' link to change the contents','Home page','','publish','closed','closed','','home','','','2017-04-10 13:26:00','2017-04-10 13:26:00','',0,'http://50.116.64.37/~matrixm9/home/',0,'page','',0);
/*!40000 ALTER TABLE `wp_jl1e9t8_posts` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_jl1e9t8_term_relationships`
--
DROP TABLE IF EXISTS `wp_jl1e9t8_term_relationships`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_jl1e9t8_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=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_jl1e9t8_term_relationships`
--
LOCK TABLES `wp_jl1e9t8_term_relationships` WRITE;
/*!40000 ALTER TABLE `wp_jl1e9t8_term_relationships` DISABLE KEYS */;
INSERT INTO `wp_jl1e9t8_term_relationships` VALUES (1,1,0);
/*!40000 ALTER TABLE `wp_jl1e9t8_term_relationships` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_jl1e9t8_term_taxonomy`
--
DROP TABLE IF EXISTS `wp_jl1e9t8_term_taxonomy`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_jl1e9t8_term_taxonomy` (
`term_taxonomy_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`term_id` bigint(20) unsigned NOT NULL DEFAULT 0,
`taxonomy` varchar(32) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`description` longtext COLLATE utf8mb4_unicode_520_ci 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=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_jl1e9t8_term_taxonomy`
--
LOCK TABLES `wp_jl1e9t8_term_taxonomy` WRITE;
/*!40000 ALTER TABLE `wp_jl1e9t8_term_taxonomy` DISABLE KEYS */;
INSERT INTO `wp_jl1e9t8_term_taxonomy` VALUES (1,1,'category','',0,1);
/*!40000 ALTER TABLE `wp_jl1e9t8_term_taxonomy` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_jl1e9t8_termmeta`
--
DROP TABLE IF EXISTS `wp_jl1e9t8_termmeta`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_jl1e9t8_termmeta` (
`meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`term_id` bigint(20) unsigned NOT NULL DEFAULT 0,
`meta_key` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
`meta_value` longtext COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
PRIMARY KEY (`meta_id`),
KEY `term_id` (`term_id`),
KEY `meta_key` (`meta_key`(191))
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_jl1e9t8_termmeta`
--
LOCK TABLES `wp_jl1e9t8_termmeta` WRITE;
/*!40000 ALTER TABLE `wp_jl1e9t8_termmeta` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_jl1e9t8_termmeta` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_jl1e9t8_terms`
--
DROP TABLE IF EXISTS `wp_jl1e9t8_terms`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_jl1e9t8_terms` (
`term_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`slug` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`term_group` bigint(10) NOT NULL DEFAULT 0,
PRIMARY KEY (`term_id`),
KEY `slug` (`slug`(191)),
KEY `name` (`name`(191))
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_jl1e9t8_terms`
--
LOCK TABLES `wp_jl1e9t8_terms` WRITE;
/*!40000 ALTER TABLE `wp_jl1e9t8_terms` DISABLE KEYS */;
INSERT INTO `wp_jl1e9t8_terms` VALUES (1,'Uncategorized','uncategorized',0);
/*!40000 ALTER TABLE `wp_jl1e9t8_terms` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_jl1e9t8_usermeta`
--
DROP TABLE IF EXISTS `wp_jl1e9t8_usermeta`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_jl1e9t8_usermeta` (
`umeta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`user_id` bigint(20) unsigned NOT NULL DEFAULT 0,
`meta_key` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
`meta_value` longtext COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
PRIMARY KEY (`umeta_id`),
KEY `user_id` (`user_id`),
KEY `meta_key` (`meta_key`(191))
) ENGINE=MyISAM AUTO_INCREMENT=24 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_jl1e9t8_usermeta`
--
LOCK TABLES `wp_jl1e9t8_usermeta` WRITE;
/*!40000 ALTER TABLE `wp_jl1e9t8_usermeta` DISABLE KEYS */;
INSERT INTO `wp_jl1e9t8_usermeta` VALUES (1,1,'nickname','johnstevenproductions@hotmail.com'),(2,1,'first_name',''),(3,1,'last_name',''),(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,'locale',''),(11,1,'wp_jl1e9t8_capabilities','a:1:{s:13:\"administrator\";b:1;}'),(12,1,'wp_jl1e9t8_user_level','10'),(13,1,'dismissed_wp_pointers',''),(14,1,'show_welcome_panel','1'),(15,1,'session_tokens','a:2:{s:64:\"fe25be33ee8baadc54511821f975e24b12284ddb8fabd95ccf08b1e33dafdc4a\";a:4:{s:10:\"expiration\";i:1492003517;s:2:\"ip\";s:14:\"76.169.180.191\";s:2:\"ua\";s:109:\"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/57.0.2987.133 Safari/537.36\";s:5:\"login\";i:1491830717;}s:64:\"0637333b40701109958a8fcb173bf20d391c0cd29e5c0efb2b9b027329de702f\";a:4:{s:10:\"expiration\";i:1493044992;s:2:\"ip\";s:14:\"76.169.180.191\";s:2:\"ua\";s:109:\"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/57.0.2987.133 Safari/537.36\";s:5:\"login\";i:1491835392;}}'),(16,1,'jpo_tracks_anon_id','jpo:WH42nDSmA1IC5igr7Rjin1Jj'),(17,1,'wp_jl1e9t8_dashboard_quick_press_last_post_id','3'),(18,2,'wp_jl1e9t8_capabilities','a:1:{s:13:\"administrator\";s:1:\"1\";}'),(19,2,'wp_jl1e9t8_user_level','10'),(20,3,'wp_capabilities','a:1:{s:13:\"administrator\";b:1;}'),(21,3,'wp_user_level','10'),(22,4,'wp_jl1e9t8_capabilities','a:1:{s:13:\"administrator\";s:1:\"1\";}'),(23,4,'wp_jl1e9t8_user_level','10');
/*!40000 ALTER TABLE `wp_jl1e9t8_usermeta` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_jl1e9t8_users`
--
DROP TABLE IF EXISTS `wp_jl1e9t8_users`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_jl1e9t8_users` (
`ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`user_login` varchar(60) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`user_pass` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`user_nicename` varchar(50) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`user_email` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`user_url` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`user_registered` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`user_activation_key` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`user_status` int(11) NOT NULL DEFAULT 0,
`display_name` varchar(250) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
PRIMARY KEY (`ID`),
KEY `user_login_key` (`user_login`),
KEY `user_nicename` (`user_nicename`),
KEY `user_email` (`user_email`)
) ENGINE=MyISAM AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_jl1e9t8_users`
--
LOCK TABLES `wp_jl1e9t8_users` WRITE;
/*!40000 ALTER TABLE `wp_jl1e9t8_users` DISABLE KEYS */;
INSERT INTO `wp_jl1e9t8_users` VALUES (1,'johnstevenproductions@hotmail.com','$P$BXsyOFrLVQNV1hXclHagvd25PoCCAU.','johnstevenproductionshotmail-com','johnstevenproductions@hotmail.com','','2017-04-10 13:23:29','',0,'johnstevenproductions@hotmail.com'),(2,'wpcron743c25a5','ad3c9ff9e0688e920d1a9465f7b45e96','wpcron743c25a5','','','1979-01-01 00:00:00','',0,'wpcron743c25a5'),(3,'adminuser','c59c9aaf29187da58b995d1335e7f4ba','adminuser','admin@wordpress.com','','2017-04-10 13:23:29','',0,'adminuser'),(4,'50116641','7c5c73e4954a92bbf1907ee98cb11e62','50116641','','','1979-01-01 00:00:00','',0,'50116641');
/*!40000 ALTER TABLE `wp_jl1e9t8_users` ENABLE KEYS */;
UNLOCK TABLES;
/*!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 2025-11-25 17:44:18
🌑 DarkStealth — WP Plugin Edition
Directory: /home/httpd/html/matrixmodels.com