0byt3m1n1
Path:
/
data
/
17
/
1
/
153
/
7
/
1642985
/
meta
/
1771306
/
mysql.backup
/
[
Home
]
File: 1_02be3e2_2.mysqlcluster19.bak.sql
-- MySQL dump 10.13 Distrib 5.6.24, for Linux (x86_64) -- -- Host: mysqlcluster19 Database: 1_02be3e2_2 -- ------------------------------------------------------ -- Server version 5.6.43-84.3-56-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_commentmeta` -- DROP TABLE IF EXISTS `wp_commentmeta`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_commentmeta` ( `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `comment_id` bigint(20) unsigned NOT NULL DEFAULT '0', `meta_key` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL, `meta_value` longtext COLLATE utf8mb4_unicode_520_ci, PRIMARY KEY (`meta_id`), KEY `comment_id` (`comment_id`), KEY `meta_key` (`meta_key`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_commentmeta` -- LOCK TABLES `wp_commentmeta` WRITE; /*!40000 ALTER TABLE `wp_commentmeta` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_commentmeta` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_comments` -- DROP TABLE IF EXISTS `wp_comments`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_comments` ( `comment_ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `comment_post_ID` bigint(20) unsigned NOT NULL DEFAULT '0', `comment_author` tinytext 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=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_comments` -- LOCK TABLES `wp_comments` WRITE; /*!40000 ALTER TABLE `wp_comments` DISABLE KEYS */; INSERT INTO `wp_comments` VALUES (1,1,'A WordPress Commenter','wapuu@wordpress.example','https://wordpress.org/','','2018-02-06 17:51:13','2018-02-06 17:51:13','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_comments` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_links` -- DROP TABLE IF EXISTS `wp_links`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_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=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_links` -- LOCK TABLES `wp_links` WRITE; /*!40000 ALTER TABLE `wp_links` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_links` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_options` -- DROP TABLE IF EXISTS `wp_options`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_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=InnoDB AUTO_INCREMENT=155 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_options` -- LOCK TABLES `wp_options` WRITE; /*!40000 ALTER TABLE `wp_options` DISABLE KEYS */; INSERT INTO `wp_options` VALUES (1,'siteurl','http://www.jeffcalley.com/wordpress1','yes'),(2,'home','http://www.jeffcalley.com/wordpress1','yes'),(3,'blogname','wordpress1','yes'),(4,'blogdescription','Just another WordPress site','yes'),(5,'users_can_register','0','yes'),(6,'admin_email','jeff.calley.hi@gmail.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:74:{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: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: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:0:{}','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','posts','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','0','yes'),(70,'close_comments_days_old','14','yes'),(71,'thread_comments','1','yes'),(72,'thread_comments_depth','5','yes'),(73,'page_comments','0','yes'),(74,'comments_per_page','50','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:5:{i:2;a:4:{s:5:\"title\";s:7:\"Find Us\";s:4:\"text\";s:168:\"<strong>Address</strong>\n123 Main Street\nNew York, NY 10001\n\n<strong>Hours</strong>\nMonday—Friday: 9:00AM–5:00PM\nSaturday & Sunday: 11:00AM–3:00PM\";s:6:\"filter\";b:1;s:6:\"visual\";b:1;}i:3;a:4:{s:5:\"title\";s:15:\"About This Site\";s:4:\"text\";s:85:\"This may be a good place to introduce yourself and your site or include some credits.\";s:6:\"filter\";b:1;s:6:\"visual\";b:1;}i:4;a:4:{s:5:\"title\";s:7:\"Find Us\";s:4:\"text\";s:168:\"<strong>Address</strong>\n123 Main Street\nNew York, NY 10001\n\n<strong>Hours</strong>\nMonday—Friday: 9:00AM–5:00PM\nSaturday & Sunday: 11:00AM–3:00PM\";s:6:\"filter\";b:1;s:6:\"visual\";b:1;}i:5;a:4:{s:5:\"title\";s:15:\"About This Site\";s:4:\"text\";s:85:\"This may be a good place to introduce yourself and your site or include some credits.\";s:6:\"filter\";b:1;s:6:\"visual\";b:1;}s:12:\"_multiwidget\";i:1;}','yes'),(80,'widget_rss','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(81,'uninstall_plugins','a:0:{}','no'),(82,'timezone_string','','yes'),(83,'page_for_posts','0','yes'),(84,'page_on_front','0','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_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','1','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'),(100,'widget_pages','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(101,'widget_calendar','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(102,'widget_media_audio','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(103,'widget_media_image','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(104,'widget_media_gallery','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(105,'widget_media_video','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(106,'widget_tag_cloud','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(107,'widget_nav_menu','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(108,'widget_custom_html','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(109,'cron','a:4:{i:1553913927;a:1:{s:34:\"wp_privacy_delete_old_export_files\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1553925075;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:1553996727;a:2:{s:19:\"wp_scheduled_delete\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s:25:\"delete_expired_transients\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}s:7:\"version\";i:2;}','yes'),(110,'theme_mods_twentyseventeen','a:1:{s:18:\"custom_css_post_id\";i:-1;}','yes'),(117,'_site_transient_timeout_theme_roots','1553911949','no'),(118,'_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'),(121,'_site_transient_update_core','O:8:\"stdClass\":4:{s:7:\"updates\";a:3:{i:0;O:8:\"stdClass\":10:{s:8:\"response\";s:7:\"upgrade\";s:8:\"download\";s:59:\"https://downloads.wordpress.org/release/wordpress-5.1.1.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-5.1.1.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-5.1.1-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-5.1.1-new-bundled.zip\";s:7:\"partial\";b:0;s:8:\"rollback\";b:0;}s:7:\"current\";s:5:\"5.1.1\";s:7:\"version\";s:5:\"5.1.1\";s:11:\"php_version\";s:5:\"5.2.4\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"5.0\";s:15:\"partial_version\";s:0:\"\";}i:1;O:8:\"stdClass\":11:{s:8:\"response\";s:10:\"autoupdate\";s:8:\"download\";s:59:\"https://downloads.wordpress.org/release/wordpress-5.1.1.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-5.1.1.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-5.1.1-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-5.1.1-new-bundled.zip\";s:7:\"partial\";b:0;s:8:\"rollback\";b:0;}s:7:\"current\";s:5:\"5.1.1\";s:7:\"version\";s:5:\"5.1.1\";s:11:\"php_version\";s:5:\"5.2.4\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"5.0\";s:15:\"partial_version\";s:0:\"\";s:9:\"new_files\";s:1:\"1\";}i:2;O:8:\"stdClass\":11:{s:8:\"response\";s:10:\"autoupdate\";s:8:\"download\";s:59:\"https://downloads.wordpress.org/release/wordpress-5.0.4.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-5.0.4.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-5.0.4-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-5.0.4-new-bundled.zip\";s:7:\"partial\";b:0;s:8:\"rollback\";b:0;}s:7:\"current\";s:5:\"5.0.4\";s:7:\"version\";s:5:\"5.0.4\";s:11:\"php_version\";s:5:\"5.2.4\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"5.0\";s:15:\"partial_version\";s:0:\"\";s:9:\"new_files\";s:1:\"1\";}}s:12:\"last_checked\";i:1553910328;s:15:\"version_checked\";s:6:\"4.9.10\";s:12:\"translations\";a:0:{}}','no'),(122,'_site_transient_update_themes','O:8:\"stdClass\":4:{s:12:\"last_checked\";i:1553910198;s:7:\"checked\";a:3:{s:13:\"twentyfifteen\";s:3:\"1.9\";s:15:\"twentyseventeen\";s:3:\"1.4\";s:13:\"twentysixteen\";s:3:\"1.4\";}s:8:\"response\";a:3:{s:13:\"twentyfifteen\";a:4:{s:5:\"theme\";s:13:\"twentyfifteen\";s:11:\"new_version\";s:3:\"2.4\";s:3:\"url\";s:43:\"https://wordpress.org/themes/twentyfifteen/\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/theme/twentyfifteen.2.4.zip\";}s:15:\"twentyseventeen\";a:4:{s:5:\"theme\";s:15:\"twentyseventeen\";s:11:\"new_version\";s:3:\"2.1\";s:3:\"url\";s:45:\"https://wordpress.org/themes/twentyseventeen/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/theme/twentyseventeen.2.1.zip\";}s:13:\"twentysixteen\";a:4:{s:5:\"theme\";s:13:\"twentysixteen\";s:11:\"new_version\";s:3:\"1.9\";s:3:\"url\";s:43:\"https://wordpress.org/themes/twentysixteen/\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/theme/twentysixteen.1.9.zip\";}}s:12:\"translations\";a:0:{}}','no'),(123,'_site_transient_update_plugins','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1553910199;s:7:\"checked\";a:2:{s:19:\"akismet/akismet.php\";s:5:\"4.0.2\";s:9:\"hello.php\";s:3:\"1.6\";}s:8:\"response\";a:1:{s:19:\"akismet/akismet.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:21:\"w.org/plugins/akismet\";s:4:\"slug\";s:7:\"akismet\";s:6:\"plugin\";s:19:\"akismet/akismet.php\";s:11:\"new_version\";s:5:\"4.1.1\";s:3:\"url\";s:38:\"https://wordpress.org/plugins/akismet/\";s:7:\"package\";s:56:\"https://downloads.wordpress.org/plugin/akismet.4.1.1.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:59:\"https://ps.w.org/akismet/assets/icon-256x256.png?rev=969272\";s:2:\"1x\";s:59:\"https://ps.w.org/akismet/assets/icon-128x128.png?rev=969272\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:61:\"https://ps.w.org/akismet/assets/banner-772x250.jpg?rev=479904\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"5.1.1\";s:12:\"requires_php\";b:0;s:13:\"compatibility\";O:8:\"stdClass\":0:{}}}s:12:\"translations\";a:0:{}s:9:\"no_update\";a:1:{s:9:\"hello.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:25:\"w.org/plugins/hello-dolly\";s:4:\"slug\";s:11:\"hello-dolly\";s:6:\"plugin\";s:9:\"hello.php\";s:11:\"new_version\";s:3:\"1.6\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/hello-dolly/\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/plugin/hello-dolly.1.6.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:64:\"https://ps.w.org/hello-dolly/assets/icon-256x256.jpg?rev=2052855\";s:2:\"1x\";s:64:\"https://ps.w.org/hello-dolly/assets/icon-128x128.jpg?rev=2052855\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:66:\"https://ps.w.org/hello-dolly/assets/banner-772x250.jpg?rev=2052855\";}s:11:\"banners_rtl\";a:0:{}}}}','no'),(124,'auto_core_update_notified','a:4:{s:4:\"type\";s:7:\"success\";s:5:\"email\";s:24:\"jeff.calley.hi@gmail.com\";s:7:\"version\";s:6:\"4.9.10\";s:9:\"timestamp\";i:1553910198;}','no'),(125,'_site_transient_timeout_browser_eb9c1268a950e6eddb2708071f6b0d52','1554515128','no'),(126,'_site_transient_browser_eb9c1268a950e6eddb2708071f6b0d52','a:10:{s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:12:\"73.0.3683.86\";s:8:\"platform\";s:7:\"Windows\";s:10:\"update_url\";s:29:\"https://www.google.com/chrome\";s:7:\"img_src\";s:43:\"http://s.w.org/images/browsers/chrome.png?1\";s:11:\"img_src_ssl\";s:44:\"https://s.w.org/images/browsers/chrome.png?1\";s:15:\"current_version\";s:2:\"18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;s:6:\"mobile\";b:0;}','no'),(128,'_site_transient_timeout_community-events-baee13ccd3f6dd3c1b0095e9183c5956','1553953534','no'),(129,'_site_transient_community-events-baee13ccd3f6dd3c1b0095e9183c5956','a:2:{s:8:\"location\";a:1:{s:2:\"ip\";s:11:\"24.43.215.0\";}s:6:\"events\";a:5:{i:0;a:7:{s:4:\"type\";s:6:\"meetup\";s:5:\"title\";s:47:\"Come join our growing Kona Wordpress community!\";s:3:\"url\";s:72:\"https://www.meetup.com/Kailua-Kona-WordPress-Meetup/events/ldfzfpyzgbwb/\";s:6:\"meetup\";s:28:\"Kailua-Kona WordPress Meetup\";s:10:\"meetup_url\";s:52:\"https://www.meetup.com/Kailua-Kona-WordPress-Meetup/\";s:4:\"date\";s:19:\"2019-04-17 18:00:00\";s:8:\"location\";a:4:{s:8:\"location\";s:20:\"Kailua-Kona, HI, USA\";s:7:\"country\";s:2:\"us\";s:8:\"latitude\";d:19.636334999999999;s:9:\"longitude\";d:-155.99197000000001;}}i:1;a:7:{s:4:\"type\";s:6:\"meetup\";s:5:\"title\";s:47:\"Come join our growing Kona Wordpress community!\";s:3:\"url\";s:72:\"https://www.meetup.com/Kailua-Kona-WordPress-Meetup/events/ldfzfpyzhbtb/\";s:6:\"meetup\";s:28:\"Kailua-Kona WordPress Meetup\";s:10:\"meetup_url\";s:52:\"https://www.meetup.com/Kailua-Kona-WordPress-Meetup/\";s:4:\"date\";s:19:\"2019-05-15 18:00:00\";s:8:\"location\";a:4:{s:8:\"location\";s:20:\"Kailua-Kona, HI, USA\";s:7:\"country\";s:2:\"us\";s:8:\"latitude\";d:19.636334999999999;s:9:\"longitude\";d:-155.99197000000001;}}i:2;a:7:{s:4:\"type\";s:6:\"meetup\";s:5:\"title\";s:47:\"Come join our growing Kona Wordpress community!\";s:3:\"url\";s:72:\"https://www.meetup.com/Kailua-Kona-WordPress-Meetup/events/ldfzfpyzjbzb/\";s:6:\"meetup\";s:28:\"Kailua-Kona WordPress Meetup\";s:10:\"meetup_url\";s:52:\"https://www.meetup.com/Kailua-Kona-WordPress-Meetup/\";s:4:\"date\";s:19:\"2019-06-19 18:00:00\";s:8:\"location\";a:4:{s:8:\"location\";s:20:\"Kailua-Kona, HI, USA\";s:7:\"country\";s:2:\"us\";s:8:\"latitude\";d:19.636334999999999;s:9:\"longitude\";d:-155.99197000000001;}}i:3;a:7:{s:4:\"type\";s:6:\"meetup\";s:5:\"title\";s:47:\"Come join our growing Kona Wordpress community!\";s:3:\"url\";s:72:\"https://www.meetup.com/Kailua-Kona-WordPress-Meetup/events/ldfzfpyzkbwb/\";s:6:\"meetup\";s:28:\"Kailua-Kona WordPress Meetup\";s:10:\"meetup_url\";s:52:\"https://www.meetup.com/Kailua-Kona-WordPress-Meetup/\";s:4:\"date\";s:19:\"2019-07-17 18:00:00\";s:8:\"location\";a:4:{s:8:\"location\";s:20:\"Kailua-Kona, HI, USA\";s:7:\"country\";s:2:\"us\";s:8:\"latitude\";d:19.636334999999999;s:9:\"longitude\";d:-155.99197000000001;}}i:4;a:7:{s:4:\"type\";s:6:\"meetup\";s:5:\"title\";s:47:\"Come join our growing Kona Wordpress community!\";s:3:\"url\";s:72:\"https://www.meetup.com/Kailua-Kona-WordPress-Meetup/events/ldfzfpyzlbcc/\";s:6:\"meetup\";s:28:\"Kailua-Kona WordPress Meetup\";s:10:\"meetup_url\";s:52:\"https://www.meetup.com/Kailua-Kona-WordPress-Meetup/\";s:4:\"date\";s:19:\"2019-08-21 18:00:00\";s:8:\"location\";a:4:{s:8:\"location\";s:20:\"Kailua-Kona, HI, USA\";s:7:\"country\";s:2:\"us\";s:8:\"latitude\";d:19.636334999999999;s:9:\"longitude\";d:-155.99197000000001;}}}}','no'),(130,'can_compress_scripts','1','no'),(131,'_transient_timeout_feed_ac0b00fe65abe10e0c5b588f3ed8c7ca','1553953538','no'),(132,'_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:34:\"\n Wed, 27 Mar 2019 23:39:26 +0000 \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"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=5.2-beta1-45072\";s:7:\"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:54:\"\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 5.2 Beta 1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://wordpress.org/news/2019/03/wordpress-5-2-beta-1/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 27 Mar 2019 23:39:25 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a: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:\"5.2\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=6798\";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:318:\"WordPress 5.2 Beta 1 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 to play with the new version. You can test the WordPress 5.2 Beta two ways: Try the WordPress Beta Tester plugin (choose the “bleeding edge […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}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:\"Josepha\";s: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:8581:\"\n<p>WordPress 5.2 Beta 1 is now available!</p>\n\n\n\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 to play with the new version.</p>\n\n\n\n<p>You can test the WordPress 5.2 Beta two ways:</p>\n\n\n\n<ul><li>Try the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin (choose the “bleeding edge nightlies” option)</li><li>Or <a href=\"https://wordpress.org/wordpress-5.2-beta1.zip\">download the beta here</a> (zip).</li></ul>\n\n\n\n<p>WordPress 5.2 is slated for release on <a href=\"https://make.wordpress.org/core/5-2/\">April 30</a>, and we need your help to get there. Here are some of the big items to test so we can find as many bugs as possible in the coming weeks.</p>\n\n\n\n<h2>Block Editor</h2>\n\n\n\n<p>The block editor has received significant performance improvements since WordPress 5.1, shaving 35% off the load time for massive posts, and cutting the keypress time (how responsive it feels when you’re typing) in half!</p>\n\n\n\n<p>Accessibility continues to improve, too. The block editor now supports your browser’s reduced motion settings. The post URL slug has better labelling and help text. The focus styling for keyboard navigating through landmarks is clearer and more consistent. There are a variety of new speak messages, and existing messages have been tweaked for more useful screen-reader behaviour.</p>\n\n\n\n<p>We’ve added several new blocks:</p>\n\n\n\n<ul><li>An RSS block</li><li>An Amazon Kindle embed block</li><li>A Search block</li><li>A Calendar block</li><li>A Tag Cloud block</li></ul>\n\n\n\n<p>To help you keep track of these blocks, and only show the ones you need, there’s a new block management tool to switch blocks on and off.</p>\n\n\n\n<figure class=\"wp-block-image\"><img src=\"https://i2.wp.com/wordpress.org/news/files/2019/03/01-block-manager-1024x768.png?fit=632%2C474&ssl=1\" alt=\"\" class=\"wp-image-6806\" srcset=\"https://i2.wp.com/wordpress.org/news/files/2019/03/01-block-manager-1024x768.png?resize=1024%2C768&ssl=1 1024w, https://i2.wp.com/wordpress.org/news/files/2019/03/01-block-manager-1024x768.png?resize=300%2C225&ssl=1 300w, https://i2.wp.com/wordpress.org/news/files/2019/03/01-block-manager-1024x768.png?resize=768%2C576&ssl=1 768w\" sizes=\"(max-width: 632px) 100vw, 632px\" /><figcaption>Block Management Modal</figcaption></figure>\n\n\n\n<p>We’re constantly working on existing blocks, too. There are hundreds of bug fixes and improvements in the block editor, you can read more about them in the Gutenberg plugin releases: <a href=\"https://make.wordpress.org/core/2019/01/23/whats-new-in-gutenberg-23th-january/\">4.9</a>, <a href=\"https://make.wordpress.org/core/2019/02/06/whats-new-in-gutenberg-6th-february/\">5.0</a>, <a href=\"https://make.wordpress.org/core/2019/02/20/whats-new-in-gutenberg-20th-february/\">5.1</a>, <a href=\"https://make.wordpress.org/core/2019/03/06/whats-new-in-gutenberg-6th-march/\">5.2</a>, and <a href=\"https://make.wordpress.org/core/2019/03/20/whats-new-in-gutenberg-20th-march/\">5.3</a>.</p>\n\n\n\n<h3>The WordPress Mobile Apps</h3>\n\n\n\n<p>The block editor isn’t just for websites, either. The WordPress mobile apps now include an experimental version of a built-in block editor. This is still under development, but you can try it out now!</p>\n\n\n\n<figure class=\"wp-block-embed is-type-rich is-provider-make-wordpress-mobile\"><div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"wp-embedded-content\" data-secret=\"BEX89Pj6RV\"><a href=\"https://make.wordpress.org/mobile/2019/02/26/the-block-editor-is-coming-to-the-mobile-apps/\">The block editor is coming to the mobile apps</a></blockquote><iframe title=\"“The block editor is coming to the mobile apps” — Make WordPress Mobile\" class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" src=\"https://make.wordpress.org/mobile/2019/02/26/the-block-editor-is-coming-to-the-mobile-apps/embed/#?secret=BEX89Pj6RV\" data-secret=\"BEX89Pj6RV\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>\n</div></figure>\n\n\n\n<h2>Site Health Check</h2>\n\n\n\n<p>Site Health Check is an ongoing project aimed at improving the stability and performance of the entire WordPress ecosystem.</p>\n\n\n\n<p>The first phase of this project (originally scoped for WordPress 5.1) is now included in WordPress 5.2. For the first time, WordPress will catch and pause the problem code, so you can log in to your Dashboard and see what the problem is (<a href=\"https://core.trac.wordpress.org/ticket/44458\">#44458</a>). Before, you’d have to FTP in to your files or get in touch with your host.</p>\n\n\n\n<figure class=\"wp-block-embed is-type-rich is-provider-make-wordpress-core\"><div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"wp-embedded-content\" data-secret=\"ueLxW5eatZ\"><a href=\"https://make.wordpress.org/core/2019/03/20/the-improved-fatal-error-protection/\">The Improved Fatal Error Protection</a></blockquote><iframe title=\"“The Improved Fatal Error Protection” — Make WordPress Core\" class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" src=\"https://make.wordpress.org/core/2019/03/20/the-improved-fatal-error-protection/embed/#?secret=ueLxW5eatZ\" data-secret=\"ueLxW5eatZ\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>\n</div></figure>\n\n\n\n<p>In addition, we’re adding a new Health Check tool to your Dashboard. Visit the <em>Tools</em> menu and click on <em>Health Check</em> to get information that can help improve the speed and security of your site.</p>\n\n\n\n<h2>PHP Version Bump</h2>\n\n\n\n<p>With this release, <a href=\"https://make.wordpress.org/core/2018/12/08/updating-the-minimum-php-version/\">WordPress will increase its minimum supported PHP version to 5.6</a>. To help you check if you’re prepared for this change, WordPress 5.2 will show you a warning and help you upgrade your version of PHP, if necessary.</p>\n\n\n\n<h2>For Developers</h2>\n\n\n\n<ul><li>Plugins can now specify the minimum version of PHP that they support, so you can safely modernise your development practices without risking breaking your users’ sites. (<a href=\"https://core.trac.wordpress.org/ticket/40934\">#40934</a>)</li><li>We’ve added the <code>sodium_compat</code> library, which provides backwards compatibility for the <a href=\"https://blog.zend.com/2018/11/06/modern-cryptography-in-php-7-2-with-sodium/\">Sodium-based cryptography library added in PHP 7.2</a>. (<a href=\"https://core.trac.wordpress.org/ticket/45806\">#45806</a>)</li><li>There’s a new release of Dashicons, the WordPress Dashboard icon font. There are 25 new icons for you to use! (<a href=\"https://core.trac.wordpress.org/ticket/41074\">#41074</a>)</li><li>You can now pass a label to <code>get_search_form()</code>, improving accessibility. (<a href=\"https://core.trac.wordpress.org/ticket/42057\">#42057</a>)</li></ul>\n\n\n\n<p>There have been <a href=\"https://core.trac.wordpress.org/query?status=closed&milestone=5.2&group=resolution&order=priority\">130 tickets closed</a> in WordPress 5.2 so far, with numerous small bug fixes and improvements to help smooth your WordPress experience.</p>\n\n\n\n<p>Keep your eyes on the <a href=\"https://make.wordpress.org/core/\">Make WordPress Core blog</a> for developer notes (which are <a href=\"https://make.wordpress.org/core/tag/5-2+dev-notes/\">assigned</a> the <code>dev-notes</code> tag) in the coming weeks detailing other changes in 5.2 that you should be aware of.</p>\n\n\n\n<h2>How to Help</h2>\n\n\n\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\n\n\n<p><em><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://core.trac.wordpress.org/newticket\">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>.</em></p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<p><em>With each new release,<br>bearing multiple betas; <br>We fix, then we fly.</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:\"6798\";s: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:48:\"\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:21:\"One-third of the web!\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://wordpress.org/news/2019/03/one-third-of-the-web/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 15 Mar 2019 13:16:08 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:7:\"General\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=6789\";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:306:\"WordPress now powers over 1/3rd of the top 10 million sites on the web according to W3Techs. Our market share has been growing steadily over the last few years, going from 29.9% just one year ago to 33.4% now. We are, of course, quite proud of these numbers! The path here has been very exciting. […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Joost de Valk\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}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:2681:\"\n<p>WordPress now powers over 1/3rd of the top 10 million sites on the web according to <a href=\"https://w3techs.com/technologies/history_overview/content_management/all\">W3Techs</a>. Our market share has been growing steadily over the last few years, going from 29.9% just one year ago to 33.4% now. We are, of course, quite proud of these numbers! <br></p>\n\n\n\n<p>The path here has been very exciting. In 2005, we were celebrating <a href=\"https://wordpress.org/news/2005/03/fifty-thousand/\">50,000 downloads</a>. Six years later, in January 2011, WordPress was powering 13.1% of websites. And now, early in 2019, we are powering 33.4% of sites. Our latest release has already been <a href=\"https://wordpress.org/download/counter/\">downloaded close to 14 million times</a>, and it was only released on the 21st of February.<br></p>\n\n\n\n<figure class=\"wp-block-image\"><img src=\"https://i0.wp.com/wordpress.org/news/files/2019/03/w3techs-content-management-systems-usage.png?w=632&ssl=1\" alt=\"Graph showing the growth of WordPress market share relative to other CMS\'s like Joomla, Drupal and others. Starting at just over 10% in January 2011 to 33.4% now.\" class=\"wp-image-6790\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2019/03/w3techs-content-management-systems-usage.png?w=900&ssl=1 900w, https://i0.wp.com/wordpress.org/news/files/2019/03/w3techs-content-management-systems-usage.png?resize=300%2C167&ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2019/03/w3techs-content-management-systems-usage.png?resize=768%2C427&ssl=1 768w\" sizes=\"(max-width: 632px) 100vw, 632px\" data-recalc-dims=\"1\" /><figcaption>WordPress market share on the rise over the last 8 years. Image source: <a href=\"https://w3techs.com/technologies/history_overview/content_management/all/y\">W3Techs</a>.</figcaption></figure>\n\n\n\n<p>Over the years WordPress has become the CMS of choice for more and more people and companies. As various businesses use WordPress, the variety of WordPress sites grows. Large enterprise businesses all the way down to small local businesses: all of them use WordPress to power their site. We love seeing that and we strive to continuously make WordPress better for all of you.</p>\n\n\n\n<p>We’d like to thank everyone who works on WordPress, which is built and maintained by a <a href=\"https://make.wordpress.org\">huge community of volunteers</a> that has grown alongside the CMS. This incredible community makes it possible for WordPress to keep growing while still also remaining <em>free</em>. And of course, we’d like to thank all of you <em>using</em> WordPress for using it and trusting in it. To all of you: let’s celebrate!</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:\"6789\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:2;a:6:{s:4:\"data\";s:54:\"\n \n \n \n \n \n \n \n\n \n \n \n \";s:7:\"attribs\";a: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 5.1.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/2019/03/wordpress-5-1-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:\"Tue, 12 Mar 2019 03:34:22 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s: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:5:\"5.1.1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=6736\";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:369:\"WordPress 5.1.1 is now available! This security and maintenance release introduces 14 fixes and enhancements, including changes designed to help hosts prepare users for the minimum PHP version bump coming in 5.2. This release also includes a pair of security fixes that handle how comments are filtered and then stored in the database. With a maliciously […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}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:\"Luke Carbis\";s: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:4084:\"\n<p>WordPress 5.1.1 is now available! This security and maintenance release introduces 14 fixes and enhancements, including changes designed to help hosts prepare users for the <a href=\"https://make.wordpress.org/core/2018/12/08/updating-the-minimum-php-version/\">minimum PHP version bump coming in 5.2</a>.</p>\n\n\n\n<p>This release also includes a pair of security fixes that handle how comments are filtered and then stored in the database. With a maliciously crafted comment, a WordPress post was vulnerable to cross-site scripting.</p>\n\n\n\n<p>WordPress versions 5.1 and earlier are affected by these bugs, which are fixed in version 5.1.1. Updated versions of WordPress 5.0 and earlier are also available for any users who have not yet updated to 5.1.</p>\n\n\n\n<p>Props to Simon Scannell of RIPS Technologies who discovered this flaw independent of some work that was being done by members of the core security team. Thank you to all of the reporters for <a href=\"https://make.wordpress.org/core/handbook/testing/reporting-security-vulnerabilities/\">privately disclosing the vulnerabilities</a>, which gave us time to fix them before WordPress sites could be attacked.</p>\n\n\n\n<p>Other highlights of this release include:</p>\n\n\n\n<ul><li>Hosts can now offer a button for their users to update PHP.</li><li>The recommended PHP version used by the “Update PHP” notice can now be filtered.</li><li>Several minor bug fixes.</li></ul>\n\n\n\n<p>You can browse the <a href=\"https://core.trac.wordpress.org/query?status=closed&resolution=fixed&milestone=5.1.1&order=priority\">full list of changes on Trac</a>.</p>\n\n\n\n<p>WordPress 5.1.1 was a short-cycle maintenance release. <a href=\"https://core.trac.wordpress.org/query?milestone=5.1.2\">Version 5.1.2</a> is expected to follow a similar two week release cadence.</p>\n\n\n\n<p>You can download <a href=\"https://wordpress.org/download/\">WordPress 5.1.1</a> or visit <strong>Dashboard → Updates</strong> and click <strong>Update Now</strong>. Sites that support automatic background updates have already started to update automatically.</p>\n\n\n\n<p>In addition to the security researcher mentioned above, thank you to everyone who contributed to WordPress 5.1.1:</p>\n\n\n\n<p><a href=\"https://profiles.wordpress.org/jorbin/\">Aaron Jorbin</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/afragen/\">Andy Fragen</a>, <a href=\"https://profiles.wordpress.org/vanyukov/\">Anton Vanyukov</a>, <a href=\"https://profiles.wordpress.org/vortfu/\">Ben Bidner</a>, <a href=\"https://profiles.wordpress.org/bulletdigital/\">bulletdigital</a>, <a href=\"https://profiles.wordpress.org/davidbinda/\">David Binovec</a>, <a href=\"https://profiles.wordpress.org/dd32/\">Dion Hulse</a>, <a href=\"https://profiles.wordpress.org/flixos90/\">Felix Arntz</a>, <a href=\"https://profiles.wordpress.org/garrett-eclipse/\">Garrett Hyder</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/whyisjake/\">Jake Spurlock</a>, <a href=\"https://profiles.wordpress.org/audrasjb/\">Jb Audras</a>, <a href=\"https://profiles.wordpress.org/jeremyfelt/\">Jeremy Felt</a>, <a href=\"https://profiles.wordpress.org/j-falk/\">Johan Falk</a>, <a href=\"https://profiles.wordpress.org/desrosj/\">Jonathan Desrosiers</a>, <a href=\"https://profiles.wordpress.org/lukecarbis/\">Luke Carbis</a>, <a href=\"https://profiles.wordpress.org/mikeschroder/\">Mike Schroder</a>, <a href=\"https://profiles.wordpress.org/dimadin/\">Milan Dinić</a>, <a href=\"https://profiles.wordpress.org/mukesh27/\">Mukesh Panchal</a>, <a href=\"https://profiles.wordpress.org/pbiron/\">Paul Biron</a>, <a href=\"https://profiles.wordpress.org/peterwilsoncc/\">Peter Wilson</a>, <a href=\"https://profiles.wordpress.org/sergeybiryukov/\">Sergey Biryukov</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:\"6736\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:3;a:6:{s:4:\"data\";s:48:\"\n \n \n \n \n \n\n \n \n \n \";s:7:\"attribs\";a: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:37:\"The Month in WordPress: February 2019\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:72:\"https://wordpress.org/news/2019/03/the-month-in-wordpress-february-2019/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_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, 01 Mar 2019 10:00:10 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Month 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:34:\"https://wordpress.org/news/?p=6652\";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:363:\"A new version of WordPress, significant security enhancements, important discussions, and much more – read on to find out what has been going on in the WordPress community for the month of February. Release of WordPress 5.1 Near the end of the month, WordPress 5.1 was released, featuring significant stability and performance enhancements as well […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}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:\"Hugh Lashbrooke\";s: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:7509:\"\n<p>A new version of WordPress, significant security enhancements, important discussions, and much more – read on to find out what has been going on in the WordPress community for the month of February.</p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h2>Release of WordPress 5.1</h2>\n\n\n\n<p>Near the end of the month, <a href=\"https://wordpress.org/news/2019/02/betty/\">WordPress 5.1 was released</a>, featuring significant stability and performance enhancements as well as the first of the <a href=\"https://make.wordpress.org/core/2019/01/14/php-site-health-mechanisms-in-5-1/\">Site Health</a> mechanisms that are in active development. Most prominent is the new warning for sites running long-outdated versions of PHP.<br></p>\n\n\n\n<p>You can check out <a href=\"https://make.wordpress.org/core/2019/02/08/wordpress-5-1-field-guide/\">the Field Guide for this release</a> for a detailed look at all the new features and improvements. The next release <a href=\"https://make.wordpress.org/core/2019/02/19/wordpress-5-2-schedule-and-scope/\">is already in development</a> with plans to improve the Site Health features, PHP compatibility, and a number of other things.<br></p>\n\n\n\n<p>Want to get involved in testing or building WordPress Core? You can install <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">the WordPress Beta Tester plugin</a>, follow <a href=\"https://make.wordpress.org/core/\">the Core team blog</a>, and join the #core channel in <a href=\"https://make.wordpress.org/chat/\">the Making WordPress Slack group</a>.</p>\n\n\n\n<h2>Gutenberg Development Continues </h2>\n\n\n\n<p>The block editor that is now a part of WordPress core started out as a project named <a href=\"https://wordpress.org/gutenberg/\">Gutenberg</a> with the lofty goal of creating a whole new site-building experience for all WordPress users. The first phase of Gutenberg resulted in the block editor that was included in WordPress 5.0, but development didn’t stop there – <a href=\"https://make.wordpress.org/core/2019/02/20/whats-new-in-gutenberg-20th-february/\">phase 2 of the project is well underway</a>.<br></p>\n\n\n\n<p>This month, one of the initial goals for this phase was reached with <a href=\"https://make.wordpress.org/core/2019/02/18/porting-widgets-to-blocks-feb-18-2019/\">all of the core WordPress widgets being converted to blocks</a> – this will go a long way to allowing full sites to be built using blocks, rather than simply post or page content.<br></p>\n\n\n\n<p>Want to get involved in developing Gutenberg? Check out <a href=\"https://github.com/wordpress/gutenberg\">the GitHub repository</a> and join the #core-editor channel in <a href=\"https://make.wordpress.org/chat/\">the Making WordPress Slack group</a>.</p>\n\n\n\n<h2>Block Editor Comes to the Mobile Apps</h2>\n\n\n\n<p>As Gutenberg development continues, the Mobile team has been working hard to integrate the new block editor into <a href=\"https://wordpress.org/mobile/\">the WordPress mobile apps</a>. Near the end of February, <a href=\"https://make.wordpress.org/mobile/2019/02/26/the-block-editor-is-coming-to-the-mobile-apps/\">the team shipped a complete integration in the beta versions of the apps</a> – this a significant milestone and a big step towards unifying the mobile and desktop editing experiences.<br></p>\n\n\n\n<p>Both the iOS and Android apps are open for beta testers, so if you would like to experience the block editor on mobile today, then <a href=\"https://apps.wordpress.com/contribute/\">join the beta program</a>.<br></p>\n\n\n\n<p>Want to get involved in developing the WordPress mobile apps? Follow <a href=\"https://make.wordpress.org/mobile/\">the Mobile team blog</a>, and join the #mobile channel in <a href=\"https://make.wordpress.org/chat/\">the Making WordPress Slack group</a>.<br></p>\n\n\n\n<h2>WordPress Triage Team Announced</h2>\n\n\n\n<p>One of the goals for 2019 that Matt Mullenweg (<a href=\'https://profiles.wordpress.org/matt/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>matt</a>) announced in his <a href=\"https://2018.us.wordcamp.org/state-of-the-word/\">State of the Word</a> address last year was to form a team who would work to manage the ever-increasing number of tickets in <a href=\"https://core.trac.wordpress.org/\">Trac</a>, the bug tracker that WordPress Core employs.</p>\n\n\n\n<p>This team, known as the Triage Team, <a href=\"https://make.wordpress.org/core/2019/03/01/introducing-the-wordpress-triage-team/\">has been announced</a>. Their work will involve coordinating with component maintainers, release leads, project leadership, contributors, and other WordPress related projects with issue trackers outside of Trac to ensure that everyone is empowered to focus on contributing.</p>\n\n\n\n<p>The team was formed based on nominations of volunteers to take part and will be led by Jonathan Desrosiers (<a href=\'https://profiles.wordpress.org/desrosj/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>desrosj</a>). The other members of the team are Chris Christoff (<a href=\'https://profiles.wordpress.org/chriscct7/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>chriscct7</a>), Tammie Lister (<a href=\'https://profiles.wordpress.org/karmatosed/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>karmatosed</a>), Sergey Biryukov (<a href=\'https://profiles.wordpress.org/sergey/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>sergey</a>), and Sheri Bigelow (<a href=\'https://profiles.wordpress.org/designsimply/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>designsimply</a>) – all of whom have a strong track record of contributing to WordPress, have exhibited good triaging practices, and are overall good community members.</p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h2>Further Reading:</h2>\n\n\n\n<ul><li>In this year alone, <a href=\"https://make.wordpress.org/community/handbook/meetup-organizer/welcome/\">the WordPress meetup program</a> has hosted 800 events across the world, all organized by local community members.</li><li><a href=\"https://make.wordpress.org/community/2019/02/21/discussion-how-could-we-improve-the-wordpress-community-summit/\">An important discussion has been opened</a> regarding the future of the WordPress Community Summit.</li><li>The Polyglots team <a href=\"https://make.wordpress.org/polyglots/2019/03/01/global-wordpress-translation-day-4-is-coming/\">has started planning the fourth Global WordPress Translation Day</a> to take place on 11 May 2019.</li><li>The Theme Review team <a href=\"https://make.wordpress.org/themes/2019/02/26/theme-sniffer-plugin-v1-0-0-rc1-version/\">is working on a useful tool named Theme Sniffer</a> to assist theme developers and reviewers in making sure their code is standards-compliant.</li><li>The first <a href=\"https://2019.nordic.wordcamp.org/\">WordCamp Nordic</a> is coming up on March 7-8.</li><li>The WordCamp Europe team <a href=\"https://make.wordpress.org/community/2019/02/13/wordcamp-pwa-plugin-proposal-and-designs/\">is looking for feedback</a> on their designs for a Progressive Web Application (PWA) for WordCamp.org.</li><li>The Design team has been working hard on designing the new Navigation Menu block and are <a href=\"https://make.wordpress.org/design/2019/02/26/proposal-navigation-menu-block/\">looking for feedback</a>.</li></ul>\n\n\n\n<p><em>Have a story that we should include in the next “Month in WordPress” post? Please </em><a href=\"https://make.wordpress.org/community/month-in-wordpress-submissions/\"><em>submit it here</em></a><em>.</em><br></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:\"6652\";s: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:51:\"\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:25:\"WordPress 5.1 “Betty”\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"https://wordpress.org/news/2019/02/betty/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 21 Feb 2019 22:48: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:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:3:\"5.1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=6589\";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:153:\"A Little Better Every Day: Version 5.1 of WordPress, named \"Betty\" in honour of acclaimed jazz vocalist Betty Carter, is available for download! ??\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}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:43948:\"\n<div style=\"height:5px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<h2 style=\"text-align:center\">A Little Better Every Day</h2>\n\n\n\n<figure class=\"wp-block-image\"><img src=\"https://s.w.org/images/core/5.1/update.svg\" alt=\"\" /></figure>\n\n\n\n<p>Version 5.1 of WordPress, named “Betty” in honour of acclaimed jazz vocalist Betty Carter, is available for download or update in your WordPress dashboard.</p>\n\n\n\n<p>Following <a href=\"https://wordpress.org/news/2018/12/bebo/\">WordPress 5.0</a> — a major release which introduced the new block editor — 5.1 focuses on polish, in particular by improving the overall performance of the editor. In addition, this release paves the way for a better, faster, and more secure WordPress with some essential tools for site administrators and developers.</p>\n\n\n\n<div style=\"height:5px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<h2 style=\"text-align:left\">Site Health</h2>\n\n\n\n<div class=\"wp-block-image inline-svg\"><figure class=\"alignright is-resized\"><img src=\"https://s.w.org/images/core/5.1/site-health.svg\" alt=\"\" width=\"191\" height=\"168\" /></figure></div>\n\n\n\n<p>With security and speed in mind, this release introduces WordPress’s first <a href=\"https://make.wordpress.org/core/2019/01/14/php-site-health-mechanisms-in-5-1/\">Site Health</a> features. WordPress will start showing notices to administrators of sites that run long-outdated versions of PHP, which is the programming language that powers WordPress.</p>\n\n\n\n<p>When you install new plugins, WordPress’s Site Health features will check them against the version of PHP you’re running. If the plugin requires a version that won’t work with your site, WordPress will keep you from installing that plugin.</p>\n\n\n\n<div style=\"height:5px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<h2 style=\"text-align:left\">Editor Performance</h2>\n\n\n\n<div class=\"wp-block-image\"><figure class=\"alignright is-resized\"><img src=\"https://s.w.org/images/core/5.1/editor-performance.svg\" alt=\"\" width=\"182\" height=\"182\" /></figure></div>\n\n\n\n<p>Introduced in WordPress 5.0, the new block editor continues to improve. Most significantly, WordPress 5.1 includes solid performance improvements within the editor. The editor should feel a little quicker to start, and typing should feel smoother. </p>\n\n\n\n<p>Expect more performance improvements in the next couple of releases.</p>\n\n\n\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h2 style=\"text-align:left\">Developer Happiness</h2>\n\n\n\n<h3><a href=\"https://make.wordpress.org/core/2019/01/28/multisite-support-for-site-metadata-in-5-1/\">Multisite Metadata</a></h3>\n\n\n\n<p>5.1 introduces a new database table to store metadata associated with sites and allows for the storage of arbitrary site data relevant in a multisite / network context.</p>\n\n\n\n<h3><a href=\"https://make.wordpress.org/core/2019/01/23/cron-api-changes-in-wordpress-5-1/\">Cron API</a></h3>\n\n\n\n<p>The Cron API has been updated with new functions to assist with returning data and includes new filters for modifying cron storage. Other changes in behavior affect cron spawning on servers running FastCGI and PHP-FPM versions 7.0.16 and above.</p>\n\n\n\n<h3><a href=\"https://make.wordpress.org/core/2018/05/16/preparing-wordpress-for-a-javascript-future-part-1-build-step-and-folder-reorganization/\">New JS Build Processes</a></h3>\n\n\n\n<p>WordPress 5.1 features a new JavaScript build option, following the large reorganisation of code that started in the 5.0 release.</p>\n\n\n\n<h3><a href=\"https://make.wordpress.org/core/2019/01/23/miscellaneous-developer-focused-changes-in-5-1/\">Other Developer Goodness</a></h3>\n\n\n\n<p>Miscellaneous improvements include:</p>\n\n\n\n<ul><li>Updates to values for the <code>WP_DEBUG_LOG</code> constant</li><li>New test config file constant in the test suite, new plugin action hooks </li><li>Short-circuit filters for <code>wp_unique_post_slug()</code>, <code>WP_User_Query</code>, and <code>count_users()</code></li><li>A new <code>human_readable_duration</code> function</li><li>Improved taxonomy metabox sanitization</li><li>Limited <code>LIKE</code> support for meta keys when using <code>WP_Meta_Query</code></li><li>A new “doing it wrong” notice when registering REST API endpoints</li></ul>\n\n\n\n<p>…and more!</p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h2 style=\"text-align:left\">The Squad</h2>\n\n\n\n<p>This release was led by <a href=\"http://ma.tt/\">Matt Mullenweg</a>, along with <a href=\"https://pento.net/\">Gary Pendergast</a> as <a href=\"https://core.trac.wordpress.org/changeset/42343\">Senior Code Reshuffler</a> and <a href=\"https://core.trac.wordpress.org/changeset/43309\">Poet</a>. They received wonderful assistance from the following 561 contributors for this release, 231 of whom were making their first ever contribution! Pull up some Betty Carter on your music service of choice, and check out some of their profiles:</p>\n\n\n<a href=\"https://profiles.wordpress.org/0x6f0\">0x6f0</a>, <a href=\"https://profiles.wordpress.org/1265578519-1\">1265578519</a>, <a href=\"https://profiles.wordpress.org/1naveengiri\">1naveengiri</a>, <a href=\"https://profiles.wordpress.org/360zen\">360zen</a>, <a href=\"https://profiles.wordpress.org/aardrian\">aardrian</a>, <a href=\"https://profiles.wordpress.org/jorbin\">Aaron Jorbin</a>, <a href=\"https://profiles.wordpress.org/abdullahramzan\">Abdullah Ramzan</a>, <a href=\"https://profiles.wordpress.org/abhayvishwakarma\">Abhay Vishwakarma</a>, <a href=\"https://profiles.wordpress.org/abhijitrakas\">Abhijit Rakas</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/adamsilverstein\">Adam Silverstein</a>, <a href=\"https://profiles.wordpress.org/ajitbohra\">Ajit Bohra</a>, <a href=\"https://profiles.wordpress.org/schlessera\">Alain Schlesser</a>, <a href=\"https://profiles.wordpress.org/aldavigdis\">aldavigdis</a>, <a href=\"https://profiles.wordpress.org/alejandroxlopez\">alejandroxlopez</a>, <a href=\"https://profiles.wordpress.org/alexstine\">Alex</a>, <a href=\"https://profiles.wordpress.org/xknown\">Alex Concha</a>, <a href=\"https://profiles.wordpress.org/tellyworth\">Alex Shiels</a>, <a href=\"https://profiles.wordpress.org/xyfi\">Alexander Botteram</a>, <a href=\"https://profiles.wordpress.org/alexvorn2\">Alexandru Vornicescu</a>, <a href=\"https://profiles.wordpress.org/alexgso\">alexgso</a>, <a href=\"https://profiles.wordpress.org/allancole\">allancole</a>, <a href=\"https://profiles.wordpress.org/allendav\">Allen Snook</a>, <a href=\"https://profiles.wordpress.org/alvarogois\">Alvaro Gois dos Santos</a>, <a href=\"https://profiles.wordpress.org/acirujano\">Ana Cirujano</a>, <a href=\"https://profiles.wordpress.org/anantajitjg\">Anantajit JG</a>, <a href=\"https://profiles.wordpress.org/afercia\">Andrea Fercia</a>, <a href=\"https://profiles.wordpress.org/andg\">Andrea Gandino</a>, <a href=\"https://profiles.wordpress.org/andreamiddleton\">Andrea Middleton</a>, <a href=\"https://profiles.wordpress.org/andrei0x309\">andrei0x309</a>, <a href=\"https://profiles.wordpress.org/andreiglingeanu\">andreiglingeanu</a>, <a href=\"https://profiles.wordpress.org/aduth\">Andrew Duthie</a>, <a href=\"https://profiles.wordpress.org/andrewza\">Andrew Lima</a>, <a href=\"https://profiles.wordpress.org/nacin\">Andrew Nacin</a>, <a href=\"https://profiles.wordpress.org/anevins\">Andrew Nevins</a>, <a href=\"https://profiles.wordpress.org/azaozz\">Andrew Ozz</a>, <a href=\"https://profiles.wordpress.org/rarst\">Andrey Savchenko</a>, <a href=\"https://profiles.wordpress.org/nosolosw\">Andrés Maneiro</a>, <a href=\"https://profiles.wordpress.org/afragen\">Andy Fragen</a>, <a href=\"https://profiles.wordpress.org/andizer\">Andy Meerwaldt</a>, <a href=\"https://profiles.wordpress.org/la-geek\">Angelika Reisiger</a>, <a href=\"https://profiles.wordpress.org/antaltettinger\">Antal Tettinger</a>, <a href=\"https://profiles.wordpress.org/antipole\">antipole</a>, <a href=\"https://profiles.wordpress.org/atimmer\">Anton Timmermans</a>, <a href=\"https://profiles.wordpress.org/vanyukov\">Anton Vanyukov</a>, <a href=\"https://profiles.wordpress.org/avillegasn\">Antonio Villegas</a>, <a href=\"https://profiles.wordpress.org/antonioeatgoat\">antonioeatgoat</a>, <a href=\"https://profiles.wordpress.org/aranwer104\">Anwer AR</a>, <a href=\"https://profiles.wordpress.org/aryamaaru\">Arun</a>, <a href=\"https://profiles.wordpress.org/mrasharirfan\">Ashar Irfan</a>, <a href=\"https://profiles.wordpress.org/ashokrd2013\">ashokrd2013</a>, <a href=\"https://profiles.wordpress.org/ayeshrajans\">Ayesh Karunaratne</a>, <a href=\"https://profiles.wordpress.org/ayubadiputra\">Ayub Adiputra</a>, <a href=\"https://profiles.wordpress.org/barryceelen\">Barry Ceelen</a>, <a href=\"https://profiles.wordpress.org/behzod\">Behzod Saidov</a>, <a href=\"https://profiles.wordpress.org/drywallbmb\">Ben Byrne</a>, <a href=\"https://profiles.wordpress.org/benhuberman\">benhuberman</a>, <a href=\"https://profiles.wordpress.org/benoitchantre\">Benoit Chantre</a>, <a href=\"https://profiles.wordpress.org/benvaassen\">benvaassen</a>, <a href=\"https://profiles.wordpress.org/bhargavmehta\">Bhargav Mehta</a>, <a href=\"https://profiles.wordpress.org/bikecrazyy\">bikecrazyy</a>, <a href=\"https://profiles.wordpress.org/birgire\">Birgir Erlendsson</a>, <a href=\"https://profiles.wordpress.org/bjornw\">BjornW</a>, <a href=\"https://profiles.wordpress.org/blair-jersyer\">Blair jersyer</a>, <a href=\"https://profiles.wordpress.org/blobfolio\">Blobfolio</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/boonebgorges\">Boone Gorges</a>, <a href=\"https://profiles.wordpress.org/bor0\">Boro Sitnikovski</a>, <a href=\"https://profiles.wordpress.org/bradparbs\">Brad Parbs</a>, <a href=\"https://profiles.wordpress.org/bradleyt\">Bradley Taylor</a>, <a href=\"https://profiles.wordpress.org/bramheijmink\">bramheijmink</a>, <a href=\"https://profiles.wordpress.org/kraftbj\">Brandon Kraft</a>, <a href=\"https://profiles.wordpress.org/bpayton\">Brandon Payton</a>, <a href=\"https://profiles.wordpress.org/brentswisher\">Brent Swisher</a>, <a href=\"https://profiles.wordpress.org/rzen\">Brian Richards</a>, <a href=\"https://profiles.wordpress.org/bridgetwillard\">bridgetwillard</a>, <a href=\"https://profiles.wordpress.org/bandonrandon\">Brooke.</a>, <a href=\"https://profiles.wordpress.org/bruceallen\">bruceallen</a>, <a href=\"https://profiles.wordpress.org/bulletdigital\">bulletdigital</a>, <a href=\"https://profiles.wordpress.org/burhandodhy\">Burhan Nasir</a>, <a href=\"https://profiles.wordpress.org/burlingtonbytes\">Bytes.co</a>, <a href=\"https://profiles.wordpress.org/icaleb\">Caleb Burks</a>, <a href=\"https://profiles.wordpress.org/calin\">Calin Don</a>, <a href=\"https://profiles.wordpress.org/campusboy1987\">campusboy</a>, <a href=\"https://profiles.wordpress.org/carolinegeven\">carolinegeven</a>, <a href=\"https://profiles.wordpress.org/ccismaru\">ccismaru</a>, <a href=\"https://profiles.wordpress.org/chasewg\">chasewg</a>, <a href=\"https://profiles.wordpress.org/chetan200891\">Chetan Prajapati</a>, <a href=\"https://profiles.wordpress.org/chouby\">Chouby</a>, <a href=\"https://profiles.wordpress.org/chrico\">ChriCo</a>, <a href=\"https://profiles.wordpress.org/chriscct7\">chriscct7</a>, <a href=\"https://profiles.wordpress.org/boda1982\">Christopher Spires</a>, <a href=\"https://profiles.wordpress.org/claudiu\">claudiu</a>, <a href=\"https://profiles.wordpress.org/cliffpaulick\">Clifford Paulick</a>, <a href=\"https://profiles.wordpress.org/munklefish\">Code Clinic</a>, <a href=\"https://profiles.wordpress.org/codegrau\">codegrau</a>, <a href=\"https://profiles.wordpress.org/coleh\">coleh</a>, <a href=\"https://profiles.wordpress.org/conner_bw\">conner_bw</a>, <a href=\"https://profiles.wordpress.org/coreymckrill\">Corey McKrill</a>, <a href=\"https://profiles.wordpress.org/croce\">croce</a>, <a href=\"https://profiles.wordpress.org/littlebigthing\">Csaba (LittleBigThings)</a>, <a href=\"https://profiles.wordpress.org/clarinetlord\">Cyrus Collier</a>, <a href=\"https://profiles.wordpress.org/danielbachhuber\">Daniel Bachhuber</a>, <a href=\"https://profiles.wordpress.org/danieltj\">Daniel James</a>, <a href=\"https://profiles.wordpress.org/daniel-koskinen\">Daniel Koskinen</a>, <a href=\"https://profiles.wordpress.org/talldanwp\">Daniel Richards</a>, <a href=\"https://profiles.wordpress.org/mte90\">Daniele Scasciafratte</a>, <a href=\"https://profiles.wordpress.org/danimalbrown\">danimalbrown</a>, <a href=\"https://profiles.wordpress.org/dannycooper\">Danny Cooper</a>, <a href=\"https://profiles.wordpress.org/dannydehaan\">Danny de Haan</a>, <a href=\"https://profiles.wordpress.org/darko-a7\">Darko A7</a>, <a href=\"https://profiles.wordpress.org/nerrad\">Darren Ethier</a>, <a href=\"https://profiles.wordpress.org/davepullig\">Dave Pullig</a>, <a href=\"https://profiles.wordpress.org/davidakennedy\">David A. Kennedy</a>, <a href=\"https://profiles.wordpress.org/davidanderson\">David Anderson</a>, <a href=\"https://profiles.wordpress.org/davidbinda\">David Binovec</a>, <a href=\"https://profiles.wordpress.org/desertsnowman\">David Cramer</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/dshanske\">David Shanske</a>, <a href=\"https://profiles.wordpress.org/superdav42\">David Stone</a>, <a href=\"https://profiles.wordpress.org/dekervit\">dekervit</a>, <a href=\"https://profiles.wordpress.org/denisco\">Denis Yanchevskiy</a>, <a href=\"https://profiles.wordpress.org/dmsnell\">Dennis Snell</a>, <a href=\"https://profiles.wordpress.org/designsimply\">designsimply</a>, <a href=\"https://profiles.wordpress.org/dfangstrom\">dfangstrom</a>, <a href=\"https://profiles.wordpress.org/dhanendran\">Dhanendran</a>, <a href=\"https://profiles.wordpress.org/dharm1025\">Dharmesh Patel</a>, <a href=\"https://profiles.wordpress.org/dhavalkasvala\">Dhaval kasavala</a>, <a href=\"https://profiles.wordpress.org/dhruvin\">Dhruvin</a>, <a href=\"https://profiles.wordpress.org/diedeexterkate\">DiedeExterkate</a>, <a href=\"https://profiles.wordpress.org/dilipbheda\">Dilip Bheda</a>, <a href=\"https://profiles.wordpress.org/dingo_d\">dingo-d</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/ocean90\">Dominik Schilling</a>, <a href=\"https://profiles.wordpress.org/donncha\">Donncha O Caoimh</a>, <a href=\"https://profiles.wordpress.org/dontstealmyfish\">dontstealmyfish</a>, <a href=\"https://profiles.wordpress.org/drewapicture\">Drew Jaynes</a>, <a href=\"https://profiles.wordpress.org/drivingralle\">Drivingralle</a>, <a href=\"https://profiles.wordpress.org/dschalk\">dschalk</a>, <a href=\"https://profiles.wordpress.org/dsifford\">dsifford</a>, <a href=\"https://profiles.wordpress.org/eamax\">eamax</a>, <a href=\"https://profiles.wordpress.org/eartboard\">eArtboard</a>, <a href=\"https://profiles.wordpress.org/edo888\">edo888</a>, <a href=\"https://profiles.wordpress.org/electricfeet\">ElectricFeet</a>, <a href=\"https://profiles.wordpress.org/iseulde\">Ella Van Durpe</a>, <a href=\"https://profiles.wordpress.org/edocev\">Emil Dotsev</a>, <a href=\"https://profiles.wordpress.org/ericlewis\">Eric Andrew Lewis</a>, <a href=\"https://profiles.wordpress.org/ericdaams\">Eric Daams</a>, <a href=\"https://profiles.wordpress.org/erich_k4wp\">Erich Munz</a>, <a href=\"https://profiles.wordpress.org/ethitter\">Erick Hitter</a>, <a href=\"https://profiles.wordpress.org/ericmeyer\">ericmeyer</a>, <a href=\"https://profiles.wordpress.org/etoledom\">etoledom</a>, <a href=\"https://profiles.wordpress.org/evansolomon\">Evan Solomon</a>, <a href=\"https://profiles.wordpress.org/dyrer\">Evangelos Athanasiadis</a>, <a href=\"https://profiles.wordpress.org/faisal03\">Faisal Alvi</a>, <a href=\"https://profiles.wordpress.org/felipeelia\">Felipe Elia</a>, <a href=\"https://profiles.wordpress.org/flixos90\">Felix Arntz</a>, <a href=\"https://profiles.wordpress.org/fclaussen\">Fernando Claussen</a>, <a href=\"https://profiles.wordpress.org/flipkeijzer\">flipkeijzer</a>, <a href=\"https://profiles.wordpress.org/mista-flo\">Florian TIAR</a>, <a href=\"https://profiles.wordpress.org/fpcsjames\">FPCSJames</a>, <a href=\"https://profiles.wordpress.org/frank-klein\">Frank Klein</a>, <a href=\"https://profiles.wordpress.org/fuchsws\">fuchsws</a>, <a href=\"https://profiles.wordpress.org/fullyint\">fullyint</a>, <a href=\"https://profiles.wordpress.org/gma992\">Gabriel Maldonado</a>, <a href=\"https://profiles.wordpress.org/garetharnold\">Gareth</a>, <a href=\"https://profiles.wordpress.org/garrett-eclipse\">Garrett Hyder</a>, <a href=\"https://profiles.wordpress.org/garyj\">Gary Jones</a>, <a href=\"https://profiles.wordpress.org/soulseekah\">Gennady Kovshenin</a>, <a href=\"https://profiles.wordpress.org/kloon\">Gerhard Potgieter</a>, <a href=\"https://profiles.wordpress.org/girishpanchal\">Girish Panchal</a>, <a href=\"https://profiles.wordpress.org/gm_alex\">GM_Alex</a>, <a href=\"https://profiles.wordpress.org/gnif\">gnif</a>, <a href=\"https://profiles.wordpress.org/graymouser\">graymouser</a>, <a href=\"https://profiles.wordpress.org/greg\">greg</a>, <a href=\"https://profiles.wordpress.org/gziolo\">Grzegorz Ziółkowski</a>, <a href=\"https://profiles.wordpress.org/guido07111975\">Guido</a>, <a href=\"https://profiles.wordpress.org/gutendev\">GutenDev <img src=\"https://s.w.org/images/core/emoji/11.2.0/72x72/270d.png\" alt=\"✍\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /><img src=\"https://s.w.org/images/core/emoji/11.2.0/72x72/3299.png\" alt=\"㊙\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /></a>, <a href=\"https://profiles.wordpress.org/hafiz\">Hafiz Rahman</a>, <a href=\"https://profiles.wordpress.org/hailite\">Hai@LiteSpeed<img src=\"https://s.w.org/images/core/emoji/11.2.0/72x72/26a1.png\" alt=\"⚡\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /></a>, <a href=\"https://profiles.wordpress.org/hansjovisyoast\">Hans-Christiaan Braun</a>, <a href=\"https://profiles.wordpress.org/hardeepasrani\">Hardeep Asrani</a>, <a href=\"https://profiles.wordpress.org/hardik-amipara\">Hardik Amipara</a>, <a href=\"https://profiles.wordpress.org/harsh175\">Harsh Patel</a>, <a href=\"https://profiles.wordpress.org/haruharuharuby\">haruharuharuby</a>, <a href=\"https://profiles.wordpress.org/idea15\">Heather Burns</a>, <a href=\"https://profiles.wordpress.org/helen\">Helen Hou-Sandi</a>, <a href=\"https://profiles.wordpress.org/henrywright\">Henry Wright</a>, <a href=\"https://profiles.wordpress.org/herregroen\">Herre Groen</a>, <a href=\"https://profiles.wordpress.org/hitendra-chopda\">Hitendra Chopda</a>, <a href=\"https://profiles.wordpress.org/ianbelanger\">Ian Belanger</a>, <a href=\"https://profiles.wordpress.org/iandunn\">Ian Dunn</a>, <a href=\"https://profiles.wordpress.org/ibantxillo\">ibantxillo</a>, <a href=\"https://profiles.wordpress.org/igmoweb\">Ignacio Cruz Moreno</a>, <a href=\"https://profiles.wordpress.org/igorsch\">Igor</a>, <a href=\"https://profiles.wordpress.org/ibenic\">Igor Benic</a>, <a href=\"https://profiles.wordpress.org/imath\">imath</a>, <a href=\"https://profiles.wordpress.org/ionvv\">ionvv</a>, <a href=\"https://profiles.wordpress.org/ireneyoast\">Irene Strikkers</a>, <a href=\"https://profiles.wordpress.org/isabel104\">isabel104</a>, <a href=\"https://profiles.wordpress.org/ishitaka\">ishitaka</a>, <a href=\"https://profiles.wordpress.org/meatman89fs\">Ivan Mudrik</a>, <a href=\"https://profiles.wordpress.org/jdgrimes\">J.D. Grimes</a>, <a href=\"https://profiles.wordpress.org/jackreichert\">Jack Reichert</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/janak007\">janak Kaneriya</a>, <a href=\"https://profiles.wordpress.org/janalwin\">janalwin</a>, <a href=\"https://profiles.wordpress.org/jankimoradiya\">Janki Moradiya</a>, <a href=\"https://profiles.wordpress.org/janthiel\">janthiel</a>, <a href=\"https://profiles.wordpress.org/jaswrks\">Jason Caldwell</a>, <a href=\"https://profiles.wordpress.org/javorszky\">javorszky</a>, <a href=\"https://profiles.wordpress.org/jaydeep-rami\">Jaydip Rami</a>, <a href=\"https://profiles.wordpress.org/jaymanpandya\">Jayman Pandya</a>, <a href=\"https://profiles.wordpress.org/audrasjb\">Jb Audras</a>, <a href=\"https://profiles.wordpress.org/jfarthing84\">Jeff Farthing</a>, <a href=\"https://profiles.wordpress.org/cheffheid\">Jeffrey de Wit</a>, <a href=\"https://profiles.wordpress.org/jeffpaul\">Jeffrey Paul</a>, <a href=\"https://profiles.wordpress.org/jmdodd\">Jennifer M. Dodd</a>, <a href=\"https://profiles.wordpress.org/miss_jwo\">Jenny</a>, <a href=\"https://profiles.wordpress.org/jeremeylduvall\">Jeremey</a>, <a href=\"https://profiles.wordpress.org/jeremyfelt\">Jeremy Felt</a>, <a href=\"https://profiles.wordpress.org/jeherve\">Jeremy Herve</a>, <a href=\"https://profiles.wordpress.org/jpry\">Jeremy Pry</a>, <a href=\"https://profiles.wordpress.org/jeremyescott\">Jeremy Scott</a>, <a href=\"https://profiles.wordpress.org/jesperher\">Jesper V Nielsen</a>, <a href=\"https://profiles.wordpress.org/professor44\">Jesse Friedman</a>, <a href=\"https://profiles.wordpress.org/jjcomack\">Jimmy Comack</a>, <a href=\"https://profiles.wordpress.org/jipmoors\">Jip Moors</a>, <a href=\"https://profiles.wordpress.org/jirihon\">Jiri Hon</a>, <a href=\"https://profiles.wordpress.org/johnjamesjacoby\">JJJ</a>, <a href=\"https://profiles.wordpress.org/joanrho\">joanrho</a>, <a href=\"https://profiles.wordpress.org/jobthomas\">Job</a>, <a href=\"https://profiles.wordpress.org/sephsekla\">Joe Bailey-Roberts</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 <img src=\"https://s.w.org/images/core/emoji/11.2.0/72x72/2764.png\" alt=\"❤\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /></a>, <a href=\"https://profiles.wordpress.org/joen\">Joen Asmussen</a>, <a href=\"https://profiles.wordpress.org/j-falk\">Johan Falk</a>, <a href=\"https://profiles.wordpress.org/johnbillion\">John Blackbourn</a>, <a href=\"https://profiles.wordpress.org/johnny5\">John Godley</a>, <a href=\"https://profiles.wordpress.org/johnalarcon\">johnalarcon</a>, <a href=\"https://profiles.wordpress.org/johnpgreen\">johnpgreen</a>, <a href=\"https://profiles.wordpress.org/johnschulz\">johnschulz</a>, <a href=\"https://profiles.wordpress.org/jrchamp\">Jonathan Champ</a>, <a href=\"https://profiles.wordpress.org/desrosj\">Jonathan Desrosiers</a>, <a href=\"https://profiles.wordpress.org/joneiseman\">joneiseman</a>, <a href=\"https://profiles.wordpress.org/spacedmonkey\">Jonny Harris</a>, <a href=\"https://profiles.wordpress.org/joostdevalk\">Joost de Valk</a>, <a href=\"https://profiles.wordpress.org/jorgefilipecosta\">Jorge Costa</a>, <a href=\"https://profiles.wordpress.org/josephscott\">Joseph Scott</a>, <a href=\"https://profiles.wordpress.org/joshuawold\">JoshuaWold</a>, <a href=\"https://profiles.wordpress.org/joyously\">Joy</a>, <a href=\"https://profiles.wordpress.org/jpurdy647\">jpurdy647</a>, <a href=\"https://profiles.wordpress.org/jrdelarosa\">jrdelarosa</a>, <a href=\"https://profiles.wordpress.org/jryancard\">jryancard</a>, <a href=\"https://profiles.wordpress.org/juiiee8487\">Juhi Patel</a>, <a href=\"https://profiles.wordpress.org/jamosova\">Julia Amosova</a>, <a href=\"https://profiles.wordpress.org/juliemoynat\">juliemoynat</a>, <a href=\"https://profiles.wordpress.org/jrf\">Juliette Reinders Folmer</a>, <a href=\"https://profiles.wordpress.org/junaidkbr\">Junaid Ahmed</a>, <a href=\"https://profiles.wordpress.org/justinsainton\">Justin Sainton</a>, <a href=\"https://profiles.wordpress.org/jtsternberg\">Justin Sternberg</a>, <a href=\"https://profiles.wordpress.org/greenshady\">Justin Tadlock</a>, <a href=\"https://profiles.wordpress.org/kadamwhite\">K.Adam White</a>, <a href=\"https://profiles.wordpress.org/kapteinbluf\">kapteinbluf</a>, <a href=\"https://profiles.wordpress.org/keesiemeijer\">keesiemeijer</a>, <a href=\"https://profiles.wordpress.org/ryelle\">Kelly Dwan</a>, <a href=\"https://profiles.wordpress.org/kelvink\">kelvink</a>, <a href=\"https://profiles.wordpress.org/khaihong\">khaihong</a>, <a href=\"https://profiles.wordpress.org/kiranpotphode\">Kiran Potphode</a>, <a href=\"https://profiles.wordpress.org/ixkaito\">Kite</a>, <a href=\"https://profiles.wordpress.org/kjellr\">Kjell Reigstad</a>, <a href=\"https://profiles.wordpress.org/kkarpieszuk\">kkarpieszuk</a>, <a href=\"https://profiles.wordpress.org/kmeze\">kmeze</a>, <a href=\"https://profiles.wordpress.org/knutsp\">Knut Sparhell</a>, <a href=\"https://profiles.wordpress.org/konainm\">konainm</a>, <a href=\"https://profiles.wordpress.org/obenland\">Konstantin Obenland</a>, <a href=\"https://profiles.wordpress.org/xkon\">Konstantinos Xenos</a>, <a href=\"https://profiles.wordpress.org/kristastevens\">kristastevens</a>, <a href=\"https://profiles.wordpress.org/krutidugade\">krutidugade</a>, <a href=\"https://profiles.wordpress.org/laghee\">laghee</a>, <a href=\"https://profiles.wordpress.org/lakenh\">Laken Hafner</a>, <a href=\"https://profiles.wordpress.org/lancewillett\">Lance Willett</a>, <a href=\"https://profiles.wordpress.org/laurelfulford\">laurelfulford</a>, <a href=\"https://profiles.wordpress.org/lbenicio\">lbenicio</a>, <a href=\"https://profiles.wordpress.org/leanderiversen\">Leander Iversen</a>, <a href=\"https://profiles.wordpress.org/leemon\">leemon</a>, <a href=\"https://profiles.wordpress.org/lenasterg\">lenasterg</a>, <a href=\"https://profiles.wordpress.org/lisannekluitmans\">lisannekluitmans</a>, <a href=\"https://profiles.wordpress.org/lizkarkoski\">lizkarkoski</a>, <a href=\"https://profiles.wordpress.org/lucagrandicelli\">Luca Grandicelli</a>, <a href=\"https://profiles.wordpress.org/lucasrolff\">LucasRolff</a>, <a href=\"https://profiles.wordpress.org/luciano-croce\">luciano-croce</a>, <a href=\"https://profiles.wordpress.org/lukecarbis\">Luke Carbis</a>, <a href=\"https://profiles.wordpress.org/luminus\">Luminus</a>, <a href=\"https://profiles.wordpress.org/mariovalney\">Mário Valney</a>, <a href=\"https://profiles.wordpress.org/maartenleenders\">maartenleenders</a>, <a href=\"https://profiles.wordpress.org/macbookandrew\">macbookandrew</a>, <a href=\"https://profiles.wordpress.org/travel_girl\">Maja Benke</a>, <a href=\"https://profiles.wordpress.org/mako09\">Mako</a>, <a href=\"https://profiles.wordpress.org/tomdxw\">mallorydxw-old</a>, <a href=\"https://profiles.wordpress.org/manuelaugustin\">Manuel Augustin</a>, <a href=\"https://profiles.wordpress.org/manuel_84\">manuel_84</a>, <a href=\"https://profiles.wordpress.org/zottto\">Marc Nilius</a>, <a href=\"https://profiles.wordpress.org/marcelo2605\">marcelo2605</a>, <a href=\"https://profiles.wordpress.org/marcomartins\">Marco Martins</a>, <a href=\"https://profiles.wordpress.org/marcomarsala\">marco.marsala</a>, <a href=\"https://profiles.wordpress.org/mkaz\">Marcus Kazmierczak</a>, <a href=\"https://profiles.wordpress.org/marcwieland95\">marcwieland95</a>, <a href=\"https://profiles.wordpress.org/clorith\">Marius L. J.</a>, <a href=\"https://profiles.wordpress.org/mariusvw\">mariusvw</a>, <a href=\"https://profiles.wordpress.org/mbelchev\">Mariyan Belchev</a>, <a href=\"https://profiles.wordpress.org/markjaquith\">Mark Jaquith</a>, <a href=\"https://profiles.wordpress.org/iceable\">Mathieu Sarrasin</a>, <a href=\"https://profiles.wordpress.org/mathieuhays\">mathieuhays</a>, <a href=\"https://profiles.wordpress.org/webdevmattcrom\">Matt Cromwell</a>, <a href=\"https://profiles.wordpress.org/mgibbs189\">Matt Gibbs</a>, <a href=\"https://profiles.wordpress.org/sivel\">Matt Martz</a>, <a href=\"https://profiles.wordpress.org/mboynes\">Matthew Boynes</a>, <a href=\"https://profiles.wordpress.org/lonelyvegan\">Matthew Riley MacPherson</a>, <a href=\"https://profiles.wordpress.org/mattyrob\">mattyrob</a>, <a href=\"https://profiles.wordpress.org/mcmwebsol\">mcmwebsol</a>, <a href=\"https://profiles.wordpress.org/melchoyce\">Mel Choyce</a>, <a href=\"https://profiles.wordpress.org/mensmaximus\">mensmaximus</a>, <a href=\"https://profiles.wordpress.org/mermel\">mermel</a>, <a href=\"https://profiles.wordpress.org/metalandcoffee\">metalandcoffee</a>, <a href=\"https://profiles.wordpress.org/wpscholar\">Micah Wood</a>, <a href=\"https://profiles.wordpress.org/mnelson4\">Michael Nelson</a>, <a href=\"https://profiles.wordpress.org/michielatyoast\">Michiel Heijmans</a>, <a href=\"https://profiles.wordpress.org/sebastienthivinfocom\">Migrated to @sebastienserre</a>, <a href=\"https://profiles.wordpress.org/mcsf\">Miguel Fonseca</a>, <a href=\"https://profiles.wordpress.org/mmtr86\">Miguel Torres</a>, <a href=\"https://profiles.wordpress.org/mihaiiceyro\">mihaiiceyro</a>, <a href=\"https://profiles.wordpress.org/mihdan\">mihdan</a>, <a href=\"https://profiles.wordpress.org/mikegillihan\">Mike Gillihan</a>, <a href=\"https://profiles.wordpress.org/mikejolley\">Mike Jolley</a>, <a href=\"https://profiles.wordpress.org/mikeschroder\">Mike Schroder</a>, <a href=\"https://profiles.wordpress.org/dimadin\">Milan Dinić</a>, <a href=\"https://profiles.wordpress.org/lanche86\">Milan Ivanovic</a>, <a href=\"https://profiles.wordpress.org/milana_cap\">Milana Cap</a>, <a href=\"https://profiles.wordpress.org/milindmore22\">Milind More</a>, <a href=\"https://profiles.wordpress.org/mirkoschubert\">mirkoschubert</a>, <a href=\"https://profiles.wordpress.org/monikarao\">Monika Rao</a>, <a href=\"https://profiles.wordpress.org/boemedia\">Monique Dubbelman</a>, <a href=\"https://profiles.wordpress.org/mt8biz\">moto hachi ( mt8.biz )</a>, <a href=\"https://profiles.wordpress.org/mrmadhat\">mrmadhat</a>, <a href=\"https://profiles.wordpress.org/xpertone\">Muhammad Kashif</a>, <a href=\"https://profiles.wordpress.org/mukesh27\">Mukesh Panchal</a>, <a href=\"https://profiles.wordpress.org/lorenzone92\">MultiformeIngegno</a>, <a href=\"https://profiles.wordpress.org/mmaumio\">Muntasir Mahmud</a>, <a href=\"https://profiles.wordpress.org/munyagu\">munyagu</a>, <a href=\"https://profiles.wordpress.org/mythemeshop\">MyThemeShop</a>, <a href=\"https://profiles.wordpress.org/mzorz\">mzorz</a>, <a href=\"https://profiles.wordpress.org/nadim0988\">nadim0988</a>, <a href=\"https://profiles.wordpress.org/nandorsky\">nandorsky</a>, <a href=\"https://profiles.wordpress.org/naoki0h\">Naoki Ohashi</a>, <a href=\"https://profiles.wordpress.org/nao\">Naoko Takano</a>, <a href=\"https://profiles.wordpress.org/nataliashitova\">nataliashitova</a>, <a href=\"https://profiles.wordpress.org/nateallen\">Nate Allen</a>, <a href=\"https://profiles.wordpress.org/nathanatmoz\">Nathan Johnson</a>, <a href=\"https://profiles.wordpress.org/ndavison\">ndavison</a>, <a href=\"https://profiles.wordpress.org/greatislander\">Ned Zimmerman</a>, <a href=\"https://profiles.wordpress.org/nextendweb\">Nextendweb</a>, <a href=\"https://profiles.wordpress.org/ndiego\">Nick Diego</a>, <a href=\"https://profiles.wordpress.org/celloexpressions\">Nick Halsey</a>, <a href=\"https://profiles.wordpress.org/nickmomrik\">Nick Momrik</a>, <a href=\"https://profiles.wordpress.org/nick_thegeek\">Nick the Geek</a>, <a href=\"https://profiles.wordpress.org/nahuelmahe\">Nicolas Figueira</a>, <a href=\"https://profiles.wordpress.org/nikeo\">Nicolas GUILLAUME</a>, <a href=\"https://profiles.wordpress.org/nicollle\">Nicolle Helgers</a>, <a href=\"https://profiles.wordpress.org/jainnidhi\">Nidhi Jain</a>, <a href=\"https://profiles.wordpress.org/nielslange\">Niels Lange</a>, <a href=\"https://profiles.wordpress.org/nikschavan\">Nikhil Chavan</a>, <a href=\"https://profiles.wordpress.org/rabmalin\">Nilambar Sharma</a>, <a href=\"https://profiles.wordpress.org/mrtortai\">Noam Eppel</a>, <a href=\"https://profiles.wordpress.org/notnownikki\">notnownikki</a>, <a href=\"https://profiles.wordpress.org/odysseygate\">odyssey</a>, <a href=\"https://profiles.wordpress.org/omarreiss\">Omar Reiss</a>, <a href=\"https://profiles.wordpress.org/codestor\">Omkar Bhagat</a>, <a href=\"https://profiles.wordpress.org/ov3rfly\">Ov3rfly</a>, <a href=\"https://profiles.wordpress.org/paaljoachim\">Paal Joachim Romdahl</a>, <a href=\"https://profiles.wordpress.org/palmiak\">palmiak</a>, <a href=\"https://profiles.wordpress.org/panchen\">panchen</a>, <a href=\"https://profiles.wordpress.org/parbaugh\">parbaugh</a>, <a href=\"https://profiles.wordpress.org/xparham\">Parham Ghaffarian</a>, <a href=\"https://profiles.wordpress.org/swissspidy\">Pascal Birchler</a>, <a href=\"https://profiles.wordpress.org/casiepa\">Pascal Casier</a>, <a href=\"https://profiles.wordpress.org/pbearne\">Paul Bearne</a>, <a href=\"https://profiles.wordpress.org/pbiron\">Paul Biron</a>, <a href=\"https://profiles.wordpress.org/natacado\">Paul Paradise</a>, <a href=\"https://profiles.wordpress.org/paulschreiber\">Paul Schreiber</a>, <a href=\"https://profiles.wordpress.org/piewp\">Perdaan</a>, <a href=\"https://profiles.wordpress.org/pputzer\">Peter Putzer</a>, <a href=\"https://profiles.wordpress.org/peterwilsoncc\">Peter Wilson</a>, <a href=\"https://profiles.wordpress.org/walbo\">Petter Walbø Johnsgård</a>, <a href=\"https://profiles.wordpress.org/pskli\">Pierre Saïkali</a>, <a href=\"https://profiles.wordpress.org/wizzard_\">Pieter Daalder</a>, <a href=\"https://profiles.wordpress.org/piyush9100\">Piyush Patel</a>, <a href=\"https://profiles.wordpress.org/poena\">poena</a>, <a href=\"https://profiles.wordpress.org/promz\">Pramod Jodhani</a>, <a href=\"https://profiles.wordpress.org/pmbaldha\">Prashant Baldha</a>, <a href=\"https://profiles.wordpress.org/pratikthink\">Pratik</a>, <a href=\"https://profiles.wordpress.org/pratikkry\">Pratik K. Yadav</a>, <a href=\"https://profiles.wordpress.org/precies\">precies</a>, <a href=\"https://profiles.wordpress.org/presskopp\">Presskopp</a>, <a href=\"https://profiles.wordpress.org/presslabs\">Presslabs</a>, <a href=\"https://profiles.wordpress.org/presstigers\">PressTigers</a>, <a href=\"https://profiles.wordpress.org/programmin\">programmin</a>, <a href=\"https://profiles.wordpress.org/punit5658\">Punit Patel</a>, <a href=\"https://profiles.wordpress.org/purnendu\">Purnendu Dash</a>, <a href=\"https://profiles.wordpress.org/qcmiao\">Qucheng</a>, <a href=\"https://profiles.wordpress.org/rachelbaker\">Rachel Baker</a>, <a href=\"https://profiles.wordpress.org/bamadesigner\">Rachel Cherry</a>, <a href=\"https://profiles.wordpress.org/larrach\">Rachel Peter</a>, <a href=\"https://profiles.wordpress.org/rafsuntaskin\">Rafsun Chowdhury</a>, <a href=\"https://profiles.wordpress.org/rahulsprajapati\">Rahul Prajapati</a>, <a href=\"https://profiles.wordpress.org/cthreelabs\">Raja Mohammed</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/ramizmanked\">Ramiz Manked</a>, <a href=\"https://profiles.wordpress.org/ramonopoly\">ramonopoly</a>, <a href=\"https://profiles.wordpress.org/ravanh\">RavanH</a>, <a href=\"https://profiles.wordpress.org/redcastor\">redcastor</a>, <a href=\"https://profiles.wordpress.org/remyvv\">remyvv</a>, <a href=\"https://profiles.wordpress.org/rensw90\">rensw90</a>, <a href=\"https://profiles.wordpress.org/rhetorical\">rhetorical</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/rickalee\">Ricky Lee Whittemore</a>, <a href=\"https://profiles.wordpress.org/rinkuyadav999\">Rinku Y</a>, <a href=\"https://profiles.wordpress.org/rishishah\">Rishi Shah</a>, <a href=\"https://profiles.wordpress.org/robbie505\">Robbie</a>, <a href=\"https://profiles.wordpress.org/robdxw\">robdxw</a>, <a href=\"https://profiles.wordpress.org/noisysocks\">Robert Anderson</a>, <a href=\"https://profiles.wordpress.org/littlerchicken\">Robin Cornett</a>, <a href=\"https://profiles.wordpress.org/robinvandervliet\">Robin van der Vliet</a>, <a href=\"https://profiles.wordpress.org/rmccue\">Ryan McCue</a>, <a href=\"https://profiles.wordpress.org/othellobloke\">Ryan Paul</a>, <a href=\"https://profiles.wordpress.org/welcher\">Ryan Welcher</a>, <a href=\"https://profiles.wordpress.org/ryotsun\">ryotsun</a>, <a href=\"https://profiles.wordpress.org/sebastienserre\">Sébastien SERRE</a>, <a href=\"https://profiles.wordpress.org/stodorovic\">Saša</a>, <a href=\"https://profiles.wordpress.org/sagarnasit\">sagarnasit</a>, <a href=\"https://profiles.wordpress.org/sasiddiqui\">Sami Ahmed Siddiqui</a>, <a href=\"https://profiles.wordpress.org/samikeijonen\">Sami Keijonen</a>, <a href=\"https://profiles.wordpress.org/otto42\">Samuel Wood (Otto)</a>, <a href=\"https://profiles.wordpress.org/tinkerbelly\">sarah semark</a>, <a href=\"https://profiles.wordpress.org/sayedwp\">Sayed Taqui</a>, <a href=\"https://profiles.wordpress.org/scottlee\">Scott Lee</a>, <a href=\"https://profiles.wordpress.org/coffee2code\">Scott Reilly</a>, <a href=\"https://profiles.wordpress.org/seanchayes\">Sean Hayes</a>, <a href=\"https://profiles.wordpress.org/sebakurzyn\">Sebastian Kurzynoswki</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/shamim51\">Shamim Hasan</a>, <a href=\"https://profiles.wordpress.org/shaneeckert\">Shane Eckert</a>, <a href=\"https://profiles.wordpress.org/sharaz\">Sharaz Shahid</a>, <a href=\"https://profiles.wordpress.org/shashwatmittal\">Shashwat Mittal</a>, <a href=\"https://profiles.wordpress.org/shooper\">Shawn Hooper</a>, <a href=\"https://profiles.wordpress.org/sherwood\">sherwood</a>, <a href=\"https://profiles.wordpress.org/shital-patel\">Shital Marakana</a>, <a href=\"https://profiles.wordpress.org/shivapoudel\">Shiva Poudel</a>, <a href=\"https://profiles.wordpress.org/pross\">Simon Prosser</a>, <a href=\"https://profiles.wordpress.org/sjardo\">sjardo</a>, <a href=\"https://profiles.wordpress.org/skoldin\">skoldin</a>, <a href=\"https://profiles.wordpress.org/slilley\">slilley</a>, <a href=\"https://profiles.wordpress.org/slushman\">slushman</a>, <a href=\"https://profiles.wordpress.org/sonjaleix\">Sonja Leix</a>, <a href=\"https://profiles.wordpress.org/sonjanyc\">sonjanyc</a>, <a href=\"https://profiles.wordpress.org/soean\">Soren Wrede</a>, <a href=\"https://profiles.wordpress.org/spartank\">spartank</a>, <a href=\"https://profiles.wordpress.org/spyderbytes\">spyderbytes</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/stazdotio\">stazdotio</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/stevenlinx\">stevenlinx</a>, <a href=\"https://profiles.wordpress.org/stormrockwell\">Storm Rockwell</a>, <a href=\"https://profiles.wordpress.org/skostadinov\">Stoyan Kostadinov</a>, <a href=\"https://profiles.wordpress.org/strategio\">strategio</a>, <a href=\"https://profiles.wordpress.org/subrataemfluence\">Subrata Sarkar</a>, <a href=\"https://profiles.wordpress.org/manikmist09\">Sultan Nasir Uddin</a>, <a href=\"https://profiles.wordpress.org/swift\">swift</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/tlovett1\">Taylor Lovett</a>, <a href=\"https://profiles.wordpress.org/teddytime\">teddytime</a>, <a href=\"https://profiles.wordpress.org/terriann\">Terri Ann</a>, <a href=\"https://profiles.wordpress.org/terwdan\">terwdan</a>, <a href=\"https://profiles.wordpress.org/tharsheblows\">tharsheblows</a>, <a href=\"https://profiles.wordpress.org/themezee\">ThemeZee</a>, <a href=\"https://profiles.wordpress.org/thomasplevy\">Thomas Patrick Levy</a>, <a href=\"https://profiles.wordpress.org/thomas-vitale\">Thomas Vitale</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/thrijith\">Thrijith Thankachan</a>, <a href=\"https://profiles.wordpress.org/tiagohillebrandt\">Tiago Hillebrandt</a>, <a href=\"https://profiles.wordpress.org/tigertech\">tigertech</a>, <a href=\"https://profiles.wordpress.org/timhavinga\">Tim Havinga</a>, <a href=\"https://profiles.wordpress.org/hedgefield\">Tim Hengeveld</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/titodevera\">titodevera</a>, <a href=\"https://profiles.wordpress.org/tkama\">Tkama</a>, <a href=\"https://profiles.wordpress.org/tz-media\">Tobias Zimpel</a>, <a href=\"https://profiles.wordpress.org/tjnowell\">Tom J Nowell</a>, <a href=\"https://profiles.wordpress.org/tomharrigan\">TomHarrigan</a>, <a href=\"https://profiles.wordpress.org/tferry\">Tommy Ferry</a>, <a href=\"https://profiles.wordpress.org/tonybogdanov\">tonybogdanov</a>, <a href=\"https://profiles.wordpress.org/tobifjellner\">Tor-Bjorn Fjellner</a>, <a href=\"https://profiles.wordpress.org/torontodigits\">TorontoDigits</a>, <a href=\"https://profiles.wordpress.org/mirucon\">Toshihiro Kanai</a>, <a href=\"https://profiles.wordpress.org/itowhid06\">Towhidul Islam</a>, <a href=\"https://profiles.wordpress.org/transl8or\">transl8or</a>, <a href=\"https://profiles.wordpress.org/grapplerulrich\">Ulrich</a>, <a href=\"https://profiles.wordpress.org/upadalavipul\">upadalavipul</a>, <a href=\"https://profiles.wordpress.org/usmankhalid\">Usman Khalid</a>, <a href=\"https://profiles.wordpress.org/utsav72640\">Utsav tilava</a>, <a href=\"https://profiles.wordpress.org/uttam007\">uttam007</a>, <a href=\"https://profiles.wordpress.org/vaishalipanchal\">Vaishali Panchal</a>, <a href=\"https://profiles.wordpress.org/valer1e\">Valérie Galassi</a>, <a href=\"https://profiles.wordpress.org/valchovski\">valchovski</a>, <a href=\"https://profiles.wordpress.org/vishaldodiya\">vishaldodiya</a>, <a href=\"https://profiles.wordpress.org/vnsavage\">vnsavage</a>, <a href=\"https://profiles.wordpress.org/voneff\">voneff</a>, <a href=\"https://profiles.wordpress.org/vortfu\">vortfu</a>, <a href=\"https://profiles.wordpress.org/warmlaundry\">warmlaundry</a>, <a href=\"https://profiles.wordpress.org/wbrubaker\">wbrubaker</a>, <a href=\"https://profiles.wordpress.org/westonruter\">Weston Ruter</a>, <a href=\"https://profiles.wordpress.org/kwonye\">Will Kwon</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/wpzinc\">wpzinc</a>, <a href=\"https://profiles.wordpress.org/xhezairi\">xhezairi</a>, <a href=\"https://profiles.wordpress.org/yahil\">Yahil Madakiya</a>, <a href=\"https://profiles.wordpress.org/yoavf\">Yoav Farhi</a>, <a href=\"https://profiles.wordpress.org/fierevere\">Yui</a>, <a href=\"https://profiles.wordpress.org/yuriv\">YuriV</a>, <a href=\"https://profiles.wordpress.org/zanematthew\">Zane Matthew</a>, and <a href=\"https://profiles.wordpress.org/zebulan\">zebulan</a>.\n\n\n\n<p>Finally, thanks to all the community translators who worked on WordPress 5.1. Their efforts bring WordPress 5.1 fully translated to 34 languages at release time, with more on the way.</p>\n\n\n\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>.</p>\n\n\n\n<p>Thanks for choosing WordPress!</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"6589\";s: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:54:\"\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:17:\"WordPress 5.1 RC2\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"https://wordpress.org/news/2019/02/wordpress-5-1-rc2/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 19 Feb 2019 02:58:12 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s: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:\"5.1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=6585\";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:333:\"The second release candidate for WordPress 5.1 is now available! WordPress 5.1 will be released on Thursday, February 21, but we need your help to get there—if you haven’t tried 5.1 yet, now is the time! There are two ways to test the WordPress 5.1 release candidate: try the WordPress Beta Tester plugin (you’ll want […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}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:\"Gary Pendergast\";s: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:3550:\"\n<p>The second release candidate for WordPress 5.1 is now available!</p>\n\n\n\n<p>WordPress 5.1 will be released on <a href=\"https://make.wordpress.org/core/5-1/\"><strong>Thursday, February 21</strong></a>, but we need <em>your</em> help to get there—if you haven’t tried 5.1 yet, now is the time!</p>\n\n\n\n<p>There are two ways to test the WordPress 5.1 release candidate: try the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin (you’ll want to select the “bleeding edge nightlies” option), or you can <a href=\"https://wordpress.org/wordpress-5.1-RC2.zip\">download the release candidate here</a> (zip).</p>\n\n\n\n<p>For details about what to expect in WordPress 5.1, please see the <a href=\"https://wordpress.org/news/2019/02/wordpress-5-1-release-candidate/\">first release candidate post</a>.</p>\n\n\n\n<p>This release includes the final About page design. It also contains fixes for:</p>\n\n\n\n<ul><li>New WordPress installs not setting the database table prefix correctly (<a href=\"https://core.trac.wordpress.org/ticket/46220\">#46220</a>).</li><li>A HTTP error occurring when opening browser developer tools (<a href=\"https://core.trac.wordpress.org/ticket/46218\">#46218</a>).</li><li>The legacy media dialog having incorrect pagination link styling (<a href=\"https://core.trac.wordpress.org/ticket/41858\">#41858</a>).</li><li>The comment form not appearing when clicking “Reply” on comments loaded via Ajax (<a href=\"https://core.trac.wordpress.org/ticket/46260\">#46260</a>).</li></ul>\n\n\n\n<h2>Plugin and Theme Developers</h2>\n\n\n\n<p>Please test your plugins and themes against WordPress 5.1 and update the <em>Tested up to</em> version in the readme to 5.1. If you find compatibility problems, please be sure to post to the <a href=\"https://wordpress.org/support/forum/alphabeta/\">support forums</a> so we can figure those out before the final release.</p>\n\n\n\n<p>The WordPress 5.1 Field Guide has also been published, which goes into the details of the major changes.</p>\n\n\n\n<figure class=\"wp-block-embed is-type-rich is-provider-make-wordpress-core\"><div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"wp-embedded-content\" data-secret=\"0OzM0i1KJx\"><a href=\"https://make.wordpress.org/core/2019/02/08/wordpress-5-1-field-guide/\">WordPress 5.1 Field Guide</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" src=\"https://make.wordpress.org/core/2019/02/08/wordpress-5-1-field-guide/embed/#?secret=0OzM0i1KJx\" data-secret=\"0OzM0i1KJx\" width=\"600\" height=\"338\" title=\"“WordPress 5.1 Field Guide” — Make WordPress Core\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>\n</div></figure>\n\n\n\n<h2>How to Help</h2>\n\n\n\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\n\n\n<p><em><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>.</em></p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<p><em>WordPress Five Point One:<br> It’s so slick, shiny, and new.<br> Lands in a few days!</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:\"6585\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:6;a:6:{s:4:\"data\";s:51:\"\n \n \n \n \n \n \n\n \n \n \n \";s:7:\"attribs\";a: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 5.1 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/2019/02/wordpress-5-1-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:\"Fri, 08 Feb 2019 02:22: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:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:11:\"Development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=6577\";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:365:\"The first release candidate for WordPress 5.1 is now available! This is an important milestone, as the release date for WordPress 5.1 draws near. “Release Candidate” means that the new version is ready for release, but with millions of users and thousands of plugins and themes, it’s possible something was missed. WordPress 5.1 is scheduled […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}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:\"Gary Pendergast\";s: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:4874:\"\n<p>The first release candidate for WordPress 5.1 is now available!</p>\n\n\n\n<p>This is an important milestone, as the release date for WordPress 5.1 draws near. “Release Candidate” means that the new version is ready for release, but with millions of users and thousands of plugins and themes, it’s possible something was missed. WordPress 5.1 is <a href=\"https://make.wordpress.org/core/5-1/\">scheduled to be released</a> on <strong>Thursday, February 21</strong>, but we need <em>your</em> help to get there—if you haven’t tried 5.1 yet, now is the time!</p>\n\n\n\n<p>There are two ways to test the WordPress 5.1 release candidate: try the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin (you’ll want to select the “bleeding edge nightlies” option), or you can <a href=\"https://wordpress.org/wordpress-5.1-RC1.zip\">download the release candidate here</a> (zip).</p>\n\n\n\n<h2>What’s in WordPress 5.1?</h2>\n\n\n\n<p>Inspired by Archie Bell & The Drells, WordPress’s theme for 2019 is to “tighten up”, and WordPress 5.1 focussed on exactly that.</p>\n\n\n\n<figure class=\"wp-block-embed-youtube wp-block-embed is-type-video is-provider-youtube wp-embed-aspect-4-3 wp-has-aspect-ratio\"><div class=\"wp-block-embed__wrapper\">\n<iframe class=\'youtube-player\' type=\'text/html\' width=\'632\' height=\'356\' src=\'https://www.youtube.com/embed/Wro3bqi4Eb8?version=3&rel=1&fs=1&autohide=2&showsearch=0&showinfo=1&iv_load_policy=1&wmode=transparent\' allowfullscreen=\'true\' style=\'border:0;\'></iframe>\n</div></figure>\n\n\n\n<p>With security and speed in mind, this release introduces WordPress’s first <a href=\"https://make.wordpress.org/core/2019/01/14/php-site-health-mechanisms-in-5-1/\">Site Health</a> features. WordPress will start showing notices to administrators of sites that run long-outdated versions of PHP, which is the programming language that powers WordPress.</p>\n\n\n\n<p>Furthermore, when installing new plugins, WordPress’s Site Health features will check whether a plugin requires a version of PHP incompatible with your site. If so, WordPress will prevent you from installing that plugin.</p>\n\n\n\n<p>The new block editor has kept improving since its introduction in WordPress 5.0. Most significantly, WordPress 5.1 includes solid performance improvements within the editor. The editor should feel a little quicker to start, and typing should feel smoother. There are more features and performance improvements planned in upcoming WordPress releases, you can check them out in the <a href=\"https://wordpress.org/plugins/gutenberg\">Gutenberg plugin</a>.</p>\n\n\n\n<h2>Plugin and Theme Developers</h2>\n\n\n\n<p>Please test your plugins and themes against WordPress 5.1 and update the <em>Tested up to</em> version in the readme to 5.1. If you find compatibility problems, please be sure to post to the <a href=\"https://wordpress.org/support/forum/alphabeta/\">support forums</a> so we can figure those out before the final release.</p>\n\n\n\n<p>The WordPress 5.1 Field Guide has also been published, which goes into the details of the major changes.</p>\n\n\n\n<figure class=\"wp-block-embed is-type-rich is-provider-make-wordpress-core\"><div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"wp-embedded-content\" data-secret=\"vJJstvskLt\"><a href=\"https://make.wordpress.org/core/2019/02/08/wordpress-5-1-field-guide/\">WordPress 5.1 Field Guide</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" src=\"https://make.wordpress.org/core/2019/02/08/wordpress-5-1-field-guide/embed/#?secret=vJJstvskLt\" data-secret=\"vJJstvskLt\" width=\"600\" height=\"338\" title=\"“WordPress 5.1 Field Guide” — Make WordPress Core\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>\n</div></figure>\n\n\n\n<h2>How to Help</h2>\n\n\n\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> This release also marks the <a href=\"https://make.wordpress.org/polyglots/handbook/glossary/#hard-freeze\">hard string freeze</a> point of the 5.1 release schedule.</p>\n\n\n\n<p><em><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>.</em></p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<p><em>This is my release<br> candidate. There are many<br> like it. This is mine.</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:\"6577\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:7;a:6:{s:4:\"data\";s:48:\"\n \n \n \n \n \n\n \n \n \n \";s:7:\"attribs\";a: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:36:\"The Month in WordPress: January 2019\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"https://wordpress.org/news/2019/02/the-month-in-wordpress-january-2019/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 04 Feb 2019 09:17: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:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Month 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:34:\"https://wordpress.org/news/?p=6575\";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:381:\"The momentum from December’s WordPress 5.0 release was maintained through January with some big announcements and significant updates. Read on to find out what happened in the WordPress project last month. WordPress Leadership Grows In a milestone announcement this month, WordPress project lead, Matt Mullenweg (@matt), named two individuals who are coming on board to […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Hugh Lashbrooke\";s: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:4627:\"\n<p>The momentum from December’s WordPress 5.0 release was maintained through January with some big announcements and significant updates. Read on to find out what happened in the WordPress project last month.</p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h2>WordPress Leadership Grows</h2>\n\n\n\n<p>In a milestone announcement this month, WordPress project lead, Matt Mullenweg (<a href=\'https://profiles.wordpress.org/matt/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>matt</a>), <a href=\"https://make.wordpress.org/updates/2019/01/16/expanding-wordpress-leadership/\">named two individuals</a> who are coming on board to expand the leadership team of the project.<br></p>\n\n\n\n<p>As Executive Director, Josepha Haden (<a href=\'https://profiles.wordpress.org/chanthaboune/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>chanthaboune</a>) will oversee <a href=\"https://make.wordpress.org/\">all the contribution teams</a> across the project. As Marketing & Communications Lead, Joost de Valk (<a href=\'https://profiles.wordpress.org/joostdevalk/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>joostdevalk</a>) will lead <a href=\"https://make.wordpress.org/marketing/\">the Marketing team</a> and generally oversee improvements to WordPress.org.<br></p>\n\n\n\n<p>Both Josepha and Joost have contributed to the WordPress project for many years and will certainly have a much larger impact going forward in their new roles.</p>\n\n\n\n<h2>WordPress 5.1 Development Continues</h2>\n\n\n\n<p>Immediately after the 5.0 release of WordPress, work started on version 5.1 with <a href=\"https://make.wordpress.org/core/tag/5-1/\">some highly anticipated new features</a> coming out in <a href=\"https://wordpress.org/news/2019/01/wordpress-5-1-beta-1/\">the first beta release</a>. Since then, the <a href=\"https://wordpress.org/news/2019/01/wordpress-5-1-beta-2/\">second</a> and <a href=\"https://wordpress.org/news/2019/01/wordpress-5-1-beta-3/\">third</a> betas have been made available.<br></p>\n\n\n\n<p>One of the core updates in this release — <a href=\"https://make.wordpress.org/core/2019/01/14/php-site-health-mechanisms-in-5-1/\">a feature to improve the way in which WordPress handles PHP errors</a> — has <a href=\"https://make.wordpress.org/core/2019/01/30/wordpress-5-1-beta-3-delay/\">been pushed back</a> to version 5.2 due to unforeseen issues that would have caused significant delays to the 5.1 release.<br></p>\n\n\n\n<p>Want to get involved in testing or building WordPress Core? You can install <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">the WordPress Beta Tester plugin</a>, follow <a href=\"https://make.wordpress.org/core/\">the Core team blog</a>, and join the #core channel in <a href=\"https://make.wordpress.org/chat/\">the Making WordPress Slack group</a>.</p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h2>Further Reading:</h2>\n\n\n\n<ul><li>The WordPress Coding Standards team <a href=\"https://github.com/WordPress-Coding-Standards/WordPress-Coding-Standards/releases/tag/2.0.0\">released version 2.0</a> this month.</li><li>In her new role as Executive Director, Josepha Haden <a href=\"https://make.wordpress.org/updates/2019/01/21/our-strengths-and-challenges/\">looks at what contributors need</a> to help support them more effectively.</li><li>Approximately 2,300 tickets in the Core bug tracker <a href=\"https://make.wordpress.org/core/2019/01/14/follow-up-on-recent-trac-bulk-edit/\">were closed</a> in a large bulk edit this month due to their inactivity over the last two years.</li><li>Autocomplete for usernames has been added to <a href=\"https://wordpress.org/support/forums/\">the WordPress Support Forums</a>, making it much easier to communicate directly with individuals.</li><li><a href=\"https://make.wordpress.org/core/tag/gutenberg/\">Work continues on the Gutenberg project</a>, expanding into more areas of the WordPress dashboard.</li><li>Since the new <a href=\"https://wordpress.org/support/\">WordPress Support portal</a> release in December, <a href=\"https://make.wordpress.org/docs/2019/01/28/summary-for-docs-team-meeting-28-january-2019/\">work has been ongoing</a> to improve its features and complete the content migration.</li><li>The Plugin Review team has published <a href=\"https://make.wordpress.org/plugins/2019/01/28/reminder-about-behavior/\">an important reminder about behavior</a> in the Plugin Directory and support forums.</li></ul>\n\n\n\n<p><em>Have a story that we should include in the next “Month in WordPress” post? Please </em><a href=\"https://make.wordpress.org/community/month-in-wordpress-submissions/\"><em>submit it here</em></a><em>.</em><br></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:\"6575\";s: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:51:\"\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 5.1 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/2019/01/wordpress-5-1-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:\"Thu, 31 Jan 2019 03:34:21 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:11:\"Development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=6566\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:344:\"WordPress 5.1 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 to play with the new version. There are two ways to test the WordPress 5.1 beta: try the WordPress Beta Testerplugin (you’ll want to select the “bleeding […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}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:\"Gary Pendergast\";s: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:3754:\"\n<p>WordPress 5.1 Beta 3 is now available!</p>\n\n\n\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 to play with the new version.</p>\n\n\n\n<p>There are two ways to test the WordPress 5.1 beta: try the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a>plugin (you’ll want to select the “bleeding edge nightlies” option), or you can <a href=\"https://wordpress.org/wordpress-5.1-beta3.zip\">download the beta here</a> (zip).</p>\n\n\n\n<p>WordPress 5.1 is slated for release on <a href=\"https://make.wordpress.org/core/5-1/\">February 21</a>, and we need your help to get there!</p>\n\n\n\n<h2>Site Health Check</h2>\n\n\n\n<p>One of the features originally slated for WordPress 5.1—the PHP error protection handler—will target WordPress 5.2 instead. Some potential security issues were discovered in the implementation: rather than risk releasing insecure code, the team decided to pull it out of WordPress 5.1. The work in <a href=\"https://core.trac.wordpress.org/ticket/46130\">#46130</a> is showing good progress towards addressing the security concerns, if you’d like to follow development progress on this feature.</p>\n\n\n\n<h2>Additional Changes</h2>\n\n\n\n<p>A handful of smaller bugs have also been fixed in this release, including:</p>\n\n\n\n<ul><li>TinyMCE has been upgraded to version 4.9.2 (<a href=\"https://core.trac.wordpress.org/ticket/46094\">#46094</a>).</li><li>The block editor has had a couple of bugs fixed (<a href=\"https://core.trac.wordpress.org/ticket/46137\">#46137</a>).</li><li>A few differences in behaviour between the classic block and the classic editor have been fixed (<a href=\"https://core.trac.wordpress.org/ticket/46062\">#46062</a>, <a href=\"https://core.trac.wordpress.org/ticket/46071\">#46071</a>, <a href=\"https://core.trac.wordpress.org/ticket/46085\">#46085</a>).</li><li>When adding <code>rel</code> attributes to links, ensure the value isn’t empty (<a href=\"https://core.trac.wordpress.org/ticket/45352\">#45352</a>), and that it works as expected with customizer changesets (<a href=\"https://core.trac.wordpress.org/ticket/45292\">#45292</a>).</li></ul>\n\n\n\n<h2>Developer Notes</h2>\n\n\n\n<p>WordPress 5.1 has many changes aimed at polishing the developer experience. To keep you informed, we publish <a href=\"https://make.wordpress.org/core/tag/5-1+dev-notes/\">developers’ notes</a> on the <a href=\"https://make.wordpress.org/core/\">Make WordPress Core blog</a> throughout the release cycle. Subscribe to the Make WordPress Core blog for updates over the coming weeks, detailing other changes in 5.1 that you should be aware of.</p>\n\n\n\n<h2>How to Help</h2>\n\n\n\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> The beta 2 release also marks the <a href=\"https://make.wordpress.org/polyglots/handbook/glossary/#soft-freeze\">soft string freeze</a> point of the 5.1 release schedule.</p>\n\n\n\n<p><em><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>.</em></p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<p><em>In just a few weeks<br> WordPress Five-One will be here.<br> Your testing helps us!</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:\"6566\";s: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:51:\"\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 5.1 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/2019/01/wordpress-5-1-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:\"Tue, 22 Jan 2019 01:01: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:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:11:\"Development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=6550\";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:312:\"WordPress 5.1 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 to play with the new version. There are two ways to test the WordPress 5.1 beta: try the WordPress Beta Tester plugin (you’ll want to […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Gary Pendergast\";s: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:4592:\"\n<p>WordPress 5.1 Beta 2 is now available!</p>\n\n\n\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 to play with the new version.</p>\n\n\n\n<p>There are two ways to test the WordPress 5.1 beta: try the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin (you’ll want to select the “bleeding edge nightlies” option), or you can <a href=\"https://wordpress.org/wordpress-5.1-beta2.zip\">download the beta here</a> (zip).</p>\n\n\n\n<p>WordPress 5.1 is slated for release on <a href=\"https://make.wordpress.org/core/5-1/\">February 21</a>, and we need your help to get there!</p>\n\n\n\n<p>Over <a href=\"https://core.trac.wordpress.org/query?status=closed&changetime=01%2F11%2F2019..&milestone=5.1&group=component&col=id&col=summary&col=owner&col=type&col=priority&col=component&col=version&order=priority\">110 tickets have been closed</a> since <a href=\"https://wordpress.org/news/2019/01/wordpress-5-1-beta-1/\">beta 1</a>, many of which are documentation and testing suite improvements. Here are the major changes and bug fixes:</p>\n\n\n\n<ul><li><a href=\"https://core.trac.wordpress.org/query?status=closed&changetime=01%2F11%2F2019..01%2F22%2F2019&focuses=!~docs&keywords=~servehappy&milestone=5.1&group=component&col=id&col=summary&col=owner&col=type&col=priority&col=component&col=version&order=priority\">Several refinements and bug fixes</a> related to the Site Health project have been made.</li><li>The <code>pre_render_block</code> and <code>render_block_data</code> filters have been introduced allowing plugins to override block attribute values (<a href=\"https://core.trac.wordpress.org/ticket/45451\">#45451</a>, dev note coming soon).</li><li><code>get_template_part()</code> will now return a value indicating whether a template file was found and loaded (<a href=\"https://core.trac.wordpress.org/ticket/40969\">#40969</a>).</li><li>A notice will now be triggered when developers incorrectly register REST API endpoints (related <a href=\"https://make.wordpress.org/core/2019/01/11/new-rest-api-notice-in-5-1/\">dev note</a>).</li><li>Bulk editing posts will no longer unintentionally change a post’s post format (<a href=\"https://core.trac.wordpress.org/ticket/44914\">#44914</a>)</li><li>Twemoji has been updated to the latest version, 11.2.0 (<a href=\"https://core.trac.wordpress.org/ticket/45133\">#45133</a>).</li><li>A bug preventing the Custom Fields meta box from being enabled has been fixed (#<a href=\"https://core.trac.wordpress.org/ticket/46028\">46028</a>).</li><li>The treatment of <code>orderby</code> values for <code>post__in</code>, <code>post_parent__in</code>, and <code>post_name__in</code> has been standardized (<a href=\"https://core.trac.wordpress.org/ticket/38034\">#38034</a>).</li><li>When updating language packs, old language packs are now correctly deleted to avoid filling up disk space (<a href=\"https://core.trac.wordpress.org/ticket/45468\">#45468</a>).</li></ul>\n\n\n\n<h2>Developer Notes</h2>\n\n\n\n<p>WordPress 5.1 has many changes aimed at polishing the developer experience. To keep you informed, we publish <a href=\"https://make.wordpress.org/core/tag/5-1+dev-notes/\">developers notes</a> on the <a href=\"https://make.wordpress.org/core/\">Make WordPress Core blog</a> throughout the release cycle. Subscribe to the Make WordPress Core blog for updates over the coming weeks, detailing other changes in 5.1 that you should be aware of.</p>\n\n\n\n<h2>How to Help</h2>\n\n\n\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> The beta 2 release als marks the <a href=\"https://make.wordpress.org/polyglots/handbook/glossary/#soft-freeze\">soft string freeze</a> point of the 5.1 release schedule.</p>\n\n\n\n<p><em><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>.</em></p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<p><em>Do you enjoy bugs?<br> I don’t. So, we fixed them all.<br> Well, not all. But close.</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:\"6550\";s: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:9:\"\n 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:4:\"\n 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:\"Sat, 30 Mar 2019 01:45:38 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:\"Wed, 27 Mar 2019 23:39:26 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:9:\"HIT ord 2\";}}s:5:\"build\";s:14:\"20180206170026\";}','no'),(133,'_transient_timeout_feed_mod_ac0b00fe65abe10e0c5b588f3ed8c7ca','1553953538','no'),(134,'_transient_feed_mod_ac0b00fe65abe10e0c5b588f3ed8c7ca','1553910338','no'),(135,'_transient_timeout_feed_d117b5738fbd35bd8c0391cda1f2b5d9','1553953539','no'),(136,'_transient_feed_d117b5738fbd35bd8c0391cda1f2b5d9','a:4:{s:5:\"child\";a:1:{s:0:\"\";a:1:{s:3:\"rss\";a:1:{i:0;a:6:{s:4:\"data\";s:3:\"\n\n\n\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:7:\"version\";s:3:\"2.0\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:1:{s:7:\"channel\";a:1:{i:0;a:6:{s:4:\"data\";s:61:\"\n \n \n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"WordPress Planet\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://planet.wordpress.org/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"language\";a:1:{i:0;a:5:{s:4:\"data\";s:2:\"en\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:47:\"WordPress Planet - http://planet.wordpress.org/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"item\";a:50:{i:0;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:62:\"WPTavern: WordCamp Asia Proposed for 2020 in Bangkok, Thailand\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=88339\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:72:\"https://wptavern.com/wordcamp-asia-proposed-for-2020-in-bangkok-thailand\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2775:\"<a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2019/03/bangkok.jpg?ssl=1\"><img /></a>photo credit: <a href=\"https://www.flickr.com/photos/eustaquio/9699604924\">Eustaquio Santimano</a>\n<p>The organizers of WordCamp Asia, a brand new regional WordCamp, have published a <a href=\"https://make.wordpress.org/community/2019/03/29/wordcamp-asia-proposal/\" rel=\"noopener noreferrer\" target=\"_blank\">proposal</a> for making Bangkok, Thailand, the host city for a 2-3 day event in early 2020. They are currently planning for February or March to avoid clashing with other regional WordCamps (WCEU, WCUS). The camp has been <a href=\"https://wptavern.com/wordsesh-asia-now-in-planning-for-2018-wordcamp-asia-targeted-for-2019\" rel=\"noopener noreferrer\" target=\"_blank\">informally discussed since 2015</a> while organizers focused on growing new city-based WordCamps across the region.</p>\n<p>“WordCamps in Asia have reached a critical mass that will enable a successful regional WordCamp,” Jon Ang said in the introduction to the proposal. “We believe that running this WordCamp will contribute directly to long term efforts in fostering WordPress interest in countries that lack it.”</p>\n<p>WordCamp Asia organizers are being mentored by lead organizers of WordCamp Europe and have created an official proposal based heavily on the one submitted by WordCamp Nordic organizers. They have submitted it to the broader WordCamp community leaders for review before submitting and official application to WordCamp Central. </p>\n<p>Asia has many vibrant and diverse WordPress communities across distant geographical areas. It technically includes Middle Eastern countries such as Turkey, Israel, and Iran, as well as all of Russia and India and everything in between.</p>\n<p>Hugh Lashbrooke commented on the proposal, asking if it is actually a “WordCamp South-East Asia,” given all the currently listed organizers are from this region, or if they intend to include other countries beyond this area. Ang said that the event will certainly include leaders from India and Pakistan and they have discussed forming a global team with two representatives from each country. The leaders currently listed in the proposal are those who were specifically involved in drafting it.</p>\n<p>Bangkok is proposed for the first host city due to its relatively affordable location, the ease of obtaining a visa on arrival for attendees from many Asian counties, and the availability of inexpensive flights to most major cities in Asia. The local WordPress community is also experienced at running large WordCamps (500+ attendees) and Bangkok’s local meetup group has more than 1,500 members. WordCamp Asia organizers are planning for 750-1,000 attendees.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 29 Mar 2019 20:19: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: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:116:\"WPTavern: New Gutenberg Playground Offers a Standalone Version of the Editor for Testing Outside the WordPress Admin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=88324\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:127:\"https://wptavern.com/new-gutenberg-playground-offers-a-standalone-version-of-the-editor-for-testing-outside-the-wordpress-admin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1992:\"<p>The Gutenberg team <a href=\"https://github.com/WordPress/gutenberg/pull/14497\" rel=\"noopener noreferrer\" target=\"_blank\">merged a pull request</a> three days ago that adds a local “playground” development environment for testing outside of the WordPress admin. Riad Benguella, the technical lead for Gutenberg phase 2, said that the playground could grow over time to contain “more than just a standalone version of the editor” and could become a way for developers to test out components in isolation. He shared a screenshot of the playground in action:</p>\n<p><a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2019/03/gutenberg-playground.png?ssl=1\"><img /></a></p>\n<p>During Tuesday’s JavaScript chat meeting, Benguella elaborated on the playground’s intended use. </p>\n<p>“Now that we’re expanding the usage of Gutenberg outside of the edit-post and also talking about cross-CMS usage and external usage (in the broad sense), we need a way to run the block editor in a context independent from the WordPress Admin. This means no WordPress admin styles, no API.”</p>\n<p>Testing Gutenberg in the playground’s “no-context” mode allows developers to ensure their components don’t rely on WP-Admin styles to be present. Benguella said it demonstrates how core blocks can be used without requiring a post object, which will be useful for architecting the widgets screen. </p>\n<p>“This playground could evolve to contain examples of our reusable components (think Storybook),” Benguella said. “It could also serve as a contributor tool. For example, we could include a way to search for selectors.”</p>\n<p>The playground was just merged this week, so contributors are working on better documentation. In the meantime, <a href=\"https://github.com/WordPress/gutenberg/pull/14497\" rel=\"noopener noreferrer\" target=\"_blank\">check out the PR</a> for more details on how to test it.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 28 Mar 2019 20:04:10 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:113:\"WPTavern: WordPress 5.2 Beta 1 Released: Help Test New Blocks, Block Manager, and Improved Fatal Error Protection\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=88304\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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/wordpress-5-2-beta-1-released-help-test-new-blocks-block-manager-and-improved-fatal-error-protection\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3149:\"<p><a href=\"https://wordpress.org/news/2019/03/wordpress-5-2-beta-1/\">WordPress 5.2 beta 1</a> was released this evening with an exciting lineup of new user-facing features that are ready for testing. The upcoming release introduces new blocks for RSS, Search, Calendar, Tag Cloud, and Amazon Kindle embed.</p>\n<p><a href=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2019/03/block-manager-modal-e1553096924444.png?ssl=1\"><img /></a>The proliferation of block collection plugins as a block distribution mechanism has caused some WordPress installations to become bloated with too many unused blocks. Version 5.2 includes new block management capabilities that will make it easy to turn blocks on or off and tidy up the block inserter tool for greater efficiency.</p>\n<p>This release also introduces <a href=\"https://core.trac.wordpress.org/ticket/44458\" rel=\"noopener noreferrer\" target=\"_blank\">fatal error protection</a> that catches errors before they produce a white screen, so that users can still log into the admin to attempt to resolve the issue. This feature was previously <a href=\"https://wptavern.com/wordpress-5-1-to-introduce-new-white-screen-protection-feature-beta-1-now-available-for-testing\" rel=\"noopener noreferrer\" target=\"_blank\">targeted for 5.1</a> but needed a few security issues ironed out before it was ready for core.</p>\n<p>If you’re just getting started with testing WordPress, the 5.2 beta is a very approachable release with features that anyone can put through the paces. The easiest way is to install the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\" rel=\"noopener noreferrer\" target=\"_blank\">WordPress Beta Testing</a> plugin and select “bleeding edge nightlies.” Try out the new blocks, experiment with turning blocks and and off. Do the new features seem like they work as advertised? Are there any bumps in the road when trying to use them? You can report any issues to the <a href=\"https://wordpress.org/support/forum/alphabeta\" rel=\"noopener noreferrer\" target=\"_blank\">Alpha/Beta</a> area in the support forums or <a href=\"https://core.trac.wordpress.org/newticket\" rel=\"noopener noreferrer\" target=\"_blank\">log a ticket on trac</a>.</p>\n<p>Developers have a few big items to test as well. Plugin authors can now <a href=\"https://core.trac.wordpress.org/ticket/40934\" rel=\"noopener noreferrer\" target=\"_blank\">specify a minimum PHP version</a> that the plugin will support. WordPress is also adding the <a href=\"https://core.trac.wordpress.org/ticket/45806\" rel=\"noopener noreferrer\" target=\"_blank\">sodium_compat library</a>, a libsodium-compatible cryptography API for PHP 7.2+. </p>\n<p>According to the <a href=\"https://make.wordpress.org/core/2019/03/27/dev-chat-summary-march-27/\" rel=\"noopener noreferrer\" target=\"_blank\">notes</a> from today’s core developer chat, there are currently 116 open tickets that contributors plan to address in three betas. The goal is to slash that number down to 66 before beta 2. WordPress 5.2 is targeted for <a href=\"https://make.wordpress.org/core/5-2/\" rel=\"noopener noreferrer\" target=\"_blank\">April 30, 2019</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 28 Mar 2019 03:36: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: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:40:\"WordPress.org blog: WordPress 5.2 Beta 1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=6798\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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/2019/03/wordpress-5-2-beta-1/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:6940:\"<p>WordPress 5.2 Beta 1 is now available!</p>\n\n\n\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 to play with the new version.</p>\n\n\n\n<p>You can test the WordPress 5.2 Beta two ways:</p>\n\n\n\n<ul><li>Try the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin (choose the “bleeding edge nightlies” option)</li><li>Or <a href=\"https://wordpress.org/wordpress-5.2-beta1.zip\">download the beta here</a> (zip).</li></ul>\n\n\n\n<p>WordPress 5.2 is slated for release on <a href=\"https://make.wordpress.org/core/5-2/\">April 30</a>, and we need your help to get there. Here are some of the big items to test so we can find as many bugs as possible in the coming weeks.</p>\n\n\n\n<h2>Block Editor</h2>\n\n\n\n<p>The block editor has received significant performance improvements since WordPress 5.1, shaving 35% off the load time for massive posts, and cutting the keypress time (how responsive it feels when you’re typing) in half!</p>\n\n\n\n<p>Accessibility continues to improve, too. The block editor now supports your browser’s reduced motion settings. The post URL slug has better labelling and help text. The focus styling for keyboard navigating through landmarks is clearer and more consistent. There are a variety of new speak messages, and existing messages have been tweaked for more useful screen-reader behaviour.</p>\n\n\n\n<p>We’ve added several new blocks:</p>\n\n\n\n<ul><li>An RSS block</li><li>An Amazon Kindle embed block</li><li>A Search block</li><li>A Calendar block</li><li>A Tag Cloud block</li></ul>\n\n\n\n<p>To help you keep track of these blocks, and only show the ones you need, there’s a new block management tool to switch blocks on and off.</p>\n\n\n\n<img src=\"https://i2.wp.com/wordpress.org/news/files/2019/03/01-block-manager-1024x768.png?fit=632%2C474&ssl=1\" alt=\"\" class=\"wp-image-6806\" />Block Management Modal\n\n\n\n<p>We’re constantly working on existing blocks, too. There are hundreds of bug fixes and improvements in the block editor, you can read more about them in the Gutenberg plugin releases: <a href=\"https://make.wordpress.org/core/2019/01/23/whats-new-in-gutenberg-23th-january/\">4.9</a>, <a href=\"https://make.wordpress.org/core/2019/02/06/whats-new-in-gutenberg-6th-february/\">5.0</a>, <a href=\"https://make.wordpress.org/core/2019/02/20/whats-new-in-gutenberg-20th-february/\">5.1</a>, <a href=\"https://make.wordpress.org/core/2019/03/06/whats-new-in-gutenberg-6th-march/\">5.2</a>, and <a href=\"https://make.wordpress.org/core/2019/03/20/whats-new-in-gutenberg-20th-march/\">5.3</a>.</p>\n\n\n\n<h3>The WordPress Mobile Apps</h3>\n\n\n\n<p>The block editor isn’t just for websites, either. The WordPress mobile apps now include an experimental version of a built-in block editor. This is still under development, but you can try it out now!</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"wp-embedded-content\"><a href=\"https://make.wordpress.org/mobile/2019/02/26/the-block-editor-is-coming-to-the-mobile-apps/\">The block editor is coming to the mobile apps</a></blockquote>\n</div>\n\n\n\n<h2>Site Health Check</h2>\n\n\n\n<p>Site Health Check is an ongoing project aimed at improving the stability and performance of the entire WordPress ecosystem.</p>\n\n\n\n<p>The first phase of this project (originally scoped for WordPress 5.1) is now included in WordPress 5.2. For the first time, WordPress will catch and pause the problem code, so you can log in to your Dashboard and see what the problem is (<a href=\"https://core.trac.wordpress.org/ticket/44458\">#44458</a>). Before, you’d have to FTP in to your files or get in touch with your host.</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"wp-embedded-content\"><a href=\"https://make.wordpress.org/core/2019/03/20/the-improved-fatal-error-protection/\">The Improved Fatal Error Protection</a></blockquote>\n</div>\n\n\n\n<p>In addition, we’re adding a new Health Check tool to your Dashboard. Visit the <em>Tools</em> menu and click on <em>Health Check</em> to get information that can help improve the speed and security of your site.</p>\n\n\n\n<h2>PHP Version Bump</h2>\n\n\n\n<p>With this release, <a href=\"https://make.wordpress.org/core/2018/12/08/updating-the-minimum-php-version/\">WordPress will increase its minimum supported PHP version to 5.6</a>. To help you check if you’re prepared for this change, WordPress 5.2 will show you a warning and help you upgrade your version of PHP, if necessary.</p>\n\n\n\n<h2>For Developers</h2>\n\n\n\n<ul><li>Plugins can now specify the minimum version of PHP that they support, so you can safely modernise your development practices without risking breaking your users’ sites. (<a href=\"https://core.trac.wordpress.org/ticket/40934\">#40934</a>)</li><li>We’ve added the <code>sodium_compat</code> library, which provides backwards compatibility for the <a href=\"https://blog.zend.com/2018/11/06/modern-cryptography-in-php-7-2-with-sodium/\">Sodium-based cryptography library added in PHP 7.2</a>. (<a href=\"https://core.trac.wordpress.org/ticket/45806\">#45806</a>)</li><li>There’s a new release of Dashicons, the WordPress Dashboard icon font. There are 25 new icons for you to use! (<a href=\"https://core.trac.wordpress.org/ticket/41074\">#41074</a>)</li><li>You can now pass a label to <code>get_search_form()</code>, improving accessibility. (<a href=\"https://core.trac.wordpress.org/ticket/42057\">#42057</a>)</li></ul>\n\n\n\n<p>There have been <a href=\"https://core.trac.wordpress.org/query?status=closed&milestone=5.2&group=resolution&order=priority\">130 tickets closed</a> in WordPress 5.2 so far, with numerous small bug fixes and improvements to help smooth your WordPress experience.</p>\n\n\n\n<p>Keep your eyes on the <a href=\"https://make.wordpress.org/core/\">Make WordPress Core blog</a> for developer notes (which are <a href=\"https://make.wordpress.org/core/tag/5-2+dev-notes/\">assigned</a> the <code>dev-notes</code> tag) in the coming weeks detailing other changes in 5.2 that you should be aware of.</p>\n\n\n\n<h2>How to Help</h2>\n\n\n\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\n\n\n<p><em><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://core.trac.wordpress.org/newticket\">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>.</em></p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<p><em>With each new release,<br />bearing multiple betas; <br />We fix, then we fly.</em></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 27 Mar 2019 23:39:25 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:7:\"Josepha\";s: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:112:\"WPTavern: rtCamp Releases GitHub Actions for Automated Code Review, Deploying WordPress, and Slack Notifications\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=88285\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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/rtcamp-releases-github-actions-for-automated-code-review-deploying-wordpress-and-slack-notifications\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4016:\"<p>rtCamp, a 60+ person agency and WordPress.com VIP service partner, has released <a href=\"https://rtcamp.com/blog/automated-wordpress-code-review-deployment-using-github-actions/\" rel=\"noopener noreferrer\" target=\"_blank\">three new GitHub Actions</a> that handle automated code review, WordPress deployment, and Slack notifications. </p>\n<p>The <a href=\"https://github.com/rtCamp/action-phpcs-code-review\" rel=\"noopener noreferrer\" target=\"_blank\">PHPCS Code Review action</a> takes advantage of GitHub’s <a href=\"https://help.github.com/en/articles/about-pull-request-reviews\" rel=\"noopener noreferrer\" target=\"_blank\">pull request review</a> feature. It performs an automated code review on pull requests using <a href=\"https://github.com/squizlabs/PHP_CodeSniffer\" rel=\"noopener noreferrer\" target=\"_blank\">PHPCS</a>. This Action is based on WordPress.com VIP’s GPL-licensed <a href=\"https://github.com/Automattic/vip-go-ci\" rel=\"noopener noreferrer\" target=\"_blank\">review scripts</a>.</p>\n<p><a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2019/03/automated-phpcs-code-review.png?ssl=1\"><img /></a></p>\n<p>“Our action is a wrapper around the original <a href=\"https://github.com/Automattic/vip-go-ci\" rel=\"noopener noreferrer\" target=\"_blank\">vip-go-ci</a> project,” rtCamp CEO Rahul Bansal said. “VIP’s project uses Teamcity which is expensive and very hard to get up and running. We built a wrapper around it to get it working with Github. Still huge props to them for sharing what we consider to be the USP of the VIP platform to the public at large.”</p>\n<p>The <a href=\"https://github.com/rtCamp/action-deploy-wordpress\" rel=\"noopener noreferrer\" target=\"_blank\">Deploy WordPress GitHub action</a> uses the <a href=\"https://deployer.org/\" rel=\"noopener noreferrer\" target=\"_blank\">Deployer.org</a> tool to deploy code changes. Using it requires your git repo to match rtCamp’s <a href=\"https://github.com/rtCamp/wordpress-skeleton\" rel=\"noopener noreferrer\" target=\"_blank\">WordPress Skeleton</a> which is very similar to the <a href=\"https://github.com/Automattic/vip-go-skeleton\" rel=\"noopener noreferrer\" target=\"_blank\">VIP Go Skeleton</a>. The action includes optional support for <a href=\"https://www.vaultproject.io/\" rel=\"noopener noreferrer\" target=\"_blank\">Hashicorp Vault</a>, which is useful for managing multiple servers.</p>\n<p>“Our action supports secrets fetching via HashiCorp Vault project,” Bansal said. “For small teams or indies using Vault might be overkill. But at scale, such as our hosting dept, where they are responsible for more than 100+ servers, <a href=\"https://github.com/rtCamp/action-deploy-wordpress#hashicorp-vault-optional\" rel=\"noopener noreferrer\" target=\"_blank\">Vault streamlines WordPress Deploys</a>. It’s partly because of Vault, devs can simply change the hostname on the fly and everything still works.”</p>\n<p>rtCamp has also released a GitHub action called <a href=\"https://github.com/rtCamp/action-slack-notify\" rel=\"noopener noreferrer\" target=\"_blank\">Slack Notify</a> that sends a message to a Slack channel. It can be customized to notify a channel about deployment status. The Site and SSH Host details are available if the action is run following the <a href=\"https://github.com/rtCamp/action-deploy-wordpress\" rel=\"noopener noreferrer\" target=\"_blank\">Deploy WordPress GitHub action</a>. All three of the new Actions are designed to work seamlessly together.</p>\n<p>rtCamp plans to add more Actions to its <a href=\"https://github.com/rtCamp/github-actions-library\" rel=\"noopener noreferrer\" target=\"_blank\">GitHub Actions Library</a> in the future. Bansal said they are currently working on build actions to cover Sass, Webpack, and Grunt, as well as Testing actions for phpunit and QUnit. Further down the road they are planning to build an action that will automatically update their theme and plugin products in their EDD store when there is a GitHub release. </p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 27 Mar 2019 22:46:16 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:5;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:81:\"WPTavern: How Will Gutenberg Phase 4 Impact Multilingual Solutions for WordPress?\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=88262\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:91:\"https://wptavern.com/how-will-gutenberg-phase-4-impact-multilingual-solutions-for-wordpress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3056:\"<p>During the <a href=\"https://wptavern.com/state-of-the-word-2018-wordpress-embraces-the-block-editor\" rel=\"noopener noreferrer\" target=\"_blank\">2018 State of the Word</a> address, Matt Mullenweg announced that Phase 4 of the Gutenberg project would be aimed at developing an official way for WordPress to support multilingual sites. There are no technical details available yet for what approach core will take, because it’s still in the experimental stage. The <a href=\"https://make.wordpress.org/core/2018/12/08/gutenberg-phase-2/\" rel=\"noopener noreferrer\" target=\"_blank\">site building objectives in Phase 2</a> are currently the primary focus of the Gutenberg team. </p>\n<p>Although Phase 4 is still a long way off (targeted for 2020 and beyond), WordPress multilingual product owners are starting to speculate about the impact of core offering its own standardized solution for multilingual sites. At WordCamp Nordic I had a quick chat with <a href=\"https://twitter.com/nullbytes\" rel=\"noopener noreferrer\" target=\"_blank\">Robert Windisch</a>, CIO of <a href=\"https://inpsyde.com/\" rel=\"noopener noreferrer\" target=\"_blank\">Inpsyde</a>, a large WordPress agency in Germany and the creators of the <a href=\"https://multilingualpress.org/\" rel=\"noopener noreferrer\" target=\"_blank\">MultilingualPress</a> plugin.</p>\n<p>Windisch predicts a culling of the multilingual solutions for WordPress after Phase 4, in the same way that Gutenberg has challenged page builders. Maintaining a plugin with thousands of users takes a toll on a company, because users require support and product owners need to have a way to continue offering something that isn’t already available by default in core.</p>\n<p>“It’s the same with Gutenberg and all the page builders,” Windisch said. “You need to adapt. If core tackles 80-90% of the features the plugin does, then I’m sure some will decide to pursue other roads or extend core features with a new plugin.”</p>\n<p>Windisch doesn’t see any issues for his company’s multilingual solution because of how it is architected to closely align with WordPress core in its use of multisite. The MultilingualPress website advertises the product as having “future-proof, WordPress core-based architecture.” Windisch said that big agencies and companies with local sites tend to opt for MultilingualPress’ solution because of the separation of access that multisite provides.</p>\n<p>After some consideration, he said he found that Mullenweg’s timeline for getting multilingual support in core made sense, because existing solutions mean there is no pressing need to provide this functionality.</p>\n<p>“Currently nobody waits for the multilingual in core, because there are already solutions out there,” Windisch said. “There’s not really the pressure to have it right now.”</p>\n<p>Check out the quick interview below to hear more thoughts on how Gutenberg Phase 4 may impact other multilingual solutions:</p>\n<p></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 26 Mar 2019 19:00:37 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:6;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:49:\"WPTavern: Codecademy Launches New Free PHP Course\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=88229\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:60:\"https://wptavern.com/codecademy-launches-new-free-php-course\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2262:\"<p>Codecademy introduced a new free course today called <a href=\"https://www.codecademy.com/learn/learn-php\" rel=\"noopener noreferrer\" target=\"_blank\">Learn PHP</a>. The company, which offers free coding courses, is rebuilding its PHP education after removing all of its PHP courses in 2017. </p>\n<p>A Codecademy representative <a href=\"https://discuss.codecademy.com/t/php-sunset/85690/4\">explained</a> that the courses were outdated and that their team thought PHP was declining in popularity:</p>\n<blockquote><p>The PHP courses were very old, buggy, and outdated. They were the least used courses on Codecademy by far, and declining in use all the time, just as PHP itself is declining in popularity in the web development world. Student demand was far higher towards making, for example, more content in other languages like JavaScript or offer all-new languages like C#, rather than continuing to maintain PHP. Continued support and maintenance of any course for us costs money, and hiring PHP specialists to rewrite a course costs more money, but the market for PHP is very small. So, the decision was clear – to sunset this course.</p></blockquote>\n<p>PHP was created in 1994 by Rasmus Lerdorf, and it is still going strong 25 years later. Roughy <a href=\"https://w3techs.com/technologies/details/pl-php/all/all\" rel=\"noopener noreferrer\" target=\"_blank\">80% of websites run on PHP</a>. Redmonk’s <a href=\"https://redmonk.com/sogrady/2019/03/20/language-rankings-1-19/\" rel=\"noopener noreferrer\" target=\"_blank\">2019 language rankings</a> put PHP at #4 behind JavaScript, Java, and Python, based on data from GitHub and Stack Overflow.</p>\n<p>Codecademy’s new <a href=\"https://www.codecademy.com/learn/learn-php/\" rel=\"noopener noreferrer\" target=\"_blank\">Learn PHP</a> course offers users an introduction to the fundamentals of PHP with language-specific syntax. Prerequisites include basic HTML. Students will learn about PHP variables and the string and number data types. Codecademy Pro users will get more quizzes and will create a portfolio project to showcase their new skills, but the basic course is free. The course currently takes approximately three hours to complete, and the company plans to add more content in the future.</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, 26 Mar 2019 00:26:08 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"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:112:\"WPTavern: Gutenberg Cloud Team Advocates for Making WordPress.org’s New Block Directory a CMS-Agnostic Library\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=88181\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:120:\"https://wptavern.com/gutenberg-cloud-team-advocates-for-making-wordpress-orgs-new-block-directory-a-cms-agnostic-library\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4955:\"<p><a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2019/03/gutenberg-cloud.jpg?ssl=1\"><img /></a></p>\n<p><a href=\"https://www.frontkom.no/\" rel=\"noopener noreferrer\" target=\"_blank\">Frontkom</a>‘s presentation at WordCamp Nordic introduced the audience to the <a href=\"https://gutenbergcloud.org/\" rel=\"noopener noreferrer\" target=\"_blank\">Gutenberg Cloud</a> project, which allows developers to share JS-only blocks across CMS platforms. Marco Fernandes and Thor Andre Gretland, representatives of the 45-person agency based in Europe, are also part of the <a href=\"https://drupalgutenberg.org/\" rel=\"noopener noreferrer\" target=\"_blank\">Drupal Gutenberg</a> project that brings WordPress’ open source editor to Drupal via an optional module. The module’s release candidate has been downloaded more than 9,000 times. </p>\n<p>In the video below, I had the opportunity to sit down with the team at WordCamp Nordic to discuss the progress on their Gutenberg-related projects. Frontkom has clients using the Drupal module in production and their experience echoes a theme that seems common among those who are using the Gutenberg editor with clients.</p>\n<p>“We see that especially people who don’t have too much experience in general working with visual content online, they find it easier to use than the ones that are into a routine where they expect some behavior,” Gretland said.</p>\n<p>Drupal’s Gutenberg module could become a primary driver for the Gutenberg Cloud project, as access to the cloud blocks is included by default for all installations. The <a href=\"https://wordpress.org/plugins/cloud-blocks/\" rel=\"noopener noreferrer\" target=\"_blank\">Cloud Blocks</a> plugin for WordPress has been much less popular so far, with an estimated 100 active installations. </p>\n<p>We discussed the potential of Drupal adopting Gutenberg as its core editor and the Frontkom team predicts that it will likely remain a separate module. Their vision for both Drupal Gutenberg and the Gutenberg Cloud is to make Gutenberg “the go-to solution for editing rich content on the web.” It is still achievable as a separate module but would have more impetus behind it if Drupal adopted it for its default editor.</p>\n<p>Gretland said idea behind the Gutenberg Cloud was to provide “a sustainable ecosystem of blocks but also ease of use.” The project is a precursor to <a href=\"https://wptavern.com/wordpress-explores-proposal-for-new-block-directory-to-host-single-block-plugins\" rel=\"noopener noreferrer\" target=\"_blank\">WordPress.org’s planned JS-only single block library</a>. We discussed whether they perceive any competition between the two directories. </p>\n<p>As the <a href=\"https://make.wordpress.org/meta/2019/03/08/the-block-directory-and-a-new-type-of-plugin/\" rel=\"noopener noreferrer\" target=\"_blank\">discussion</a> on make.wordpress.org was just developing at the time of the interview, I contacted Frontkom CTO Per Andre Rønsen later on to get their thoughts on WordPress.org’s planned block directory. He had commented on the proposal, asking if this could become a library of truly CMS-agnostic blocks.</p>\n<p>“I <a href=\"https://make.wordpress.org/meta/2019/03/08/the-block-directory-and-a-new-type-of-plugin/#comment-8947\" rel=\"noopener noreferrer\" target=\"_blank\">commented</a> on the Make WP blog post right away, because I simply loved the idea of a directory of JS-only blocks,” Rønsen said. “We haven’t discussed it directly with Matt, but have had some good chats with the core Gutenberg team, and are planning to meet on a weekly basis. If Gutenberg Cloud can serve as a proof of concept that WP.org can later adopt as their own, we are happy. As the spec is very similar to what we already have created, porting between the two will be easy.” </p>\n<p>Rønsen is advocating for a more open approach that isn’t so strictly tied to WordPress’ infrastructure. </p>\n<p>“A more ideal approach however, would be to merge the two efforts,” Rønsen said. “The key for us, is to make the infrastructure open to other communities, not just WP developers. We are happy to put our project in the hands of the WP core team – given that they share the same open vision.”</p>\n<p>A CMS-agnostic library for Gutenberg blocks is part of Frontkom’s long term vision for improving the open web. This is one of reasons the team created Gutenberg.js, which provides a foundation for using Gutenberg on any CMS or framework. Gretland said they see it as “more than just a new editor but a platform that enables communities to build new features.” This is the vision the team came to share at WordCamp Nordic. Check out the video below to hear more about how the Gutenberg Cloud team is working to make Gutenberg an editor that more open source communities on the web can share.</p>\n<p></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 25 Mar 2019 20:00:42 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s: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:92:\"WPTavern: WPWeekly Episode 349 – Sandy Edwards and the Kids Event Working Group Initiative\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"https://wptavern.com/?p=88216&preview=true&preview_id=88216\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:99:\"https://wptavern.com/wpweekly-episode-349-sandy-edwards-and-the-kids-event-working-group-initiative\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2166:\"<p>In this episode, <a href=\"http://jjj.me\">John James Jacoby</a> and I are joined by <a href=\"https://sandyedwards.me/\">Sandy Edwards</a>. Sandy gave us a behind the scenes look at what it takes to organize a WordPress event for children and teens.</p>\n<p>She also provides background information on a new group that’s been formed called the <a href=\"https://make.wordpress.org/community/2019/01/14/call-for-volunteers-kids-events-working-group/\">Kids Events Working Group</a>. This group is responsible for setting the foundation for organizers to create and manage WordPress events geared towards children.</p>\n<p>John recaps his experience at WordCamp Miami last weekend and we discussed some noteworthy news items.</p>\n<h2>Stories Discussed:</h2>\n<p><a href=\"https://wptavern.com/wordcamp-miami-draws-100-for-kids-camp-plans-to-host-standalone-kids-wordpress-conference-in-summer-2019\">WordCamp Miami Draws 100+ for Kid’s Camp, Plans to Host Standalone Kid’s WordPress Conference in Summer 2019</a></p>\n<p><a href=\"https://wptavern.com/wordpress-5-1-1-patches-critical-vulnerability\">WordPress 5.1.1 Patches Critical Vulnerability</a></p>\n<p><a href=\"https://wptavern.com/dark-mode-wordpress-plugin-up-for-adoption\">Dark Mode WordPress Plugin Up for Adoption</a></p>\n<p><a href=\"https://make.wordpress.org/core/2019/03/20/whats-new-in-gutenberg-20th-march/\">Gutenberg 5.3 Released</a></p>\n<p><a href=\"https://www.mozilla.org/en-US/firefox/66.0/releasenotes/\">FireFox 66.0 Released </a></p>\n<h2>WPWeekly Meta:</h2>\n<p><strong>Next Episode:</strong> Wednesday, March 27th 3:00 P.M. Eastern</p>\n<p>Subscribe to <a href=\"https://itunes.apple.com/us/podcast/wordpress-weekly/id694849738\">WordPress Weekly via Itunes</a></p>\n<p>Subscribe to <a href=\"https://www.wptavern.com/feed/podcast\">WordPress Weekly via RSS</a></p>\n<p>Subscribe to <a href=\"http://www.stitcher.com/podcast/wordpress-weekly-podcast?refid=stpr\">WordPress Weekly via Stitcher Radio</a></p>\n<p>Subscribe to <a href=\"https://play.google.com/music/listen?u=0#/ps/Ir3keivkvwwh24xy7qiymurwpbe\">WordPress Weekly via Google Play</a></p>\n<p><strong>Listen To Episode #349:</strong><br />\n</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 22 Mar 2019 20:59: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: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:95:\"WPTavern: WordPress Ends Support for PHP 5.2 – 5.5, Bumps Minimum Required PHP Version to 5.6\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=88188\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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-ends-support-for-php-5-2-5-5-bumps-minimum-required-php-version-to-5-6\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4275:\"<p>WordPress has officially <a href=\"https://core.trac.wordpress.org/changeset/44950\" rel=\"noopener noreferrer\" target=\"_blank\">ended support for PHP 5.2 – 5.5</a> and bumped its minimum required PHP version to 5.6. The plan <a href=\"https://make.wordpress.org/core/2018/12/08/updating-the-minimum-php-version/\" rel=\"noopener noreferrer\" target=\"_blank\">announced</a> last December was to bump the minimum required version in early 2019 and, depending on the results, bump it again to PHP 7 in December 2019. Sites on PHP 5.5 or earlier can still get security updates but will not be able to upgrade to the latest major WordPress version.</p>\n<p>Today only <a href=\"https://wordpress.org/about/stats/\" rel=\"noopener noreferrer\" target=\"_blank\">2% of WordPress sites remain on PHP 5.2</a>. Roughly 20% are on versions 5.5 or earlier. Nearly half of WordPress installs are on PHP 7.0+.</p>\n<p><a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2019/03/Screen-Shot-2019-03-20-at-10.37.55-PM.png?ssl=1\"><img /></a></p>\n<p>One might wonder why WordPress’ approach isn’t to just bump it all the way up to PHP 7. With its influence and dominant market share, this requirement would inevitably force users to get on board. However, WordPress contributors believe in supporting users who, for whatever reason, need more help upgrading PHP. Steamrolling this requirement has not been the WordPress way, despite years of immense pressure from the developer community.</p>\n<p>“Leaving users behind for technical reasons creates a two-folded web with only few being able to leverage its power,” WordPress Core Committer Felix Arntz said. “Collaborating with and supporting these users gives that power to everyone in the long run.”</p>\n<p>Gary Pendergast shared a few stats about how effective <a href=\"https://wptavern.com/wordpress-5-1-improves-editor-performance-encourages-users-to-update-outdated-php-versions\" rel=\"noopener noreferrer\" target=\"_blank\">WordPress 5.1’s PHP update notice</a> has been in prodding site owners to get on newer versions of PHP:</p>\n<blockquote><p>For WordPress 5.0, sites updated their PHP version from PHP <= 5.6 to PHP 7+ at the rate of 1 basis point per day. That is, the percentage of WordPress 5.0 sites using PHP <= 5.6 dropped by 0.01 every day, prior to the release of WordPress 5.1.\n</p>\n<p>For WordPress 5.1 (after adding the update notice), that has increased to a steady 5 basis points per day. Doesn’t sounds like much? Every day, that’s hundreds of extra site owners choosing to go through the (frankly, terrifying) process of updating their PHP version. All they needed was a little extra nudge, and a little bit of information.</p>\n<p>Scary EOL notices and attitudes of “well, we’re just bumping our supported PHP version, too bad if you don’t know what to do next” don’t help. Giving people the information they need to help themselves works.</p>\n<p>WordPress folks are doing our part to help clean up the ancient PHP installs that are still running a large percentage of the internet, and we’re find that this isn’t an insurmountable problem. It just requires a bit of patience and empathy to solve.</p></blockquote>\n<p>WordPress developers around the web sent out celebration tweets after the news was announced. Although PHP 5.6 is the new minimum required version for running WordPress, the project’s <a href=\"https://wordpress.org/about/requirements/\" rel=\"noopener noreferrer\" target=\"_blank\">technical requirements</a> page recommends users ask their hosts for PHP version 7.3 or greater. PHP 7+ offers massive performance gains for users and developers will be able to update their plugins to use more modern syntax. </p>\n<blockquote class=\"twitter-tweet\">\n<p lang=\"en\" dir=\"ltr\">This is big news!! </p>\n<p>WPGraphQL has a minimum requirement of PHP 5.6, so it couldn’t even be considered for core until now. </p>\n<p>Still a ways to go before we’re ready for serious consideration, but pretty big news. <a href=\"https://t.co/gCbJM9VcRc\">https://t.co/gCbJM9VcRc</a></p>\n<p>— GraphQL for WordPress (@wpgraphql) <a href=\"https://twitter.com/wpgraphql/status/1108548227882602496?ref_src=twsrc%5Etfw\">March 21, 2019</a></p></blockquote>\n<p></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 21 Mar 2019 04:10:47 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:84:\"WPTavern: Gutenberg 5.3 Introduces Block Management, Adds Nesting to the Cover Block\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=88148\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:94:\"https://wptavern.com/gutenberg-5-3-introduces-block-management-adds-nesting-to-the-cover-block\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3894:\"<p><a href=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2019/03/block-manager-modal-e1553096924444.png?ssl=1\"><img /></a><a href=\"https://make.wordpress.org/core/2019/03/20/whats-new-in-gutenberg-20th-march/\" rel=\"noopener noreferrer\" target=\"_blank\">Gutenberg 5.3</a> was released today with basic block management, a feature that will be included in WordPress 5.2. It is a new modal that can be launched from the vertical ellipses menu, inspired by Rich Tabor’s <a href=\"https://www.youtube.com/watch?v=0v9rXLDv-FM\" rel=\"noopener noreferrer\" target=\"_blank\">CoBlocks implementation</a>. Users can turn individual blocks on/off or even entire sections, such as Common Blocks, Formatting, and Embeds. Block management should help users avoid the bloat that happens when installing block collections with more blocks than they need. </p>\n<p>This version’s updates to the Cover Block make it possible to <a href=\"https://github.com/WordPress/gutenberg/pull/13822\" rel=\"noopener noreferrer\" target=\"_blank\">nest other blocks inside of it</a>. Users can now add buttons, paragraphs, and headers to easily create a call to action. It’s not immediately evident that nesting blocks is possible, despite the floating inserter. It takes a little bit of time to discover that it is available. There are still some quirks with this feature, but overall it makes the Cover Block much more useful than previous versions.</p>\n<p><a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2019/03/Screen-Shot-2019-03-20-at-11.53.48-AM.png?ssl=1\"><img /></a></p>\n<p>A few contributors commenting on the <a href=\"https://github.com/WordPress/gutenberg/pull/13822\" rel=\"noopener noreferrer\" target=\"_blank\">Cover Block’s nesting PR</a> said that it seems like the work on this iteration is essentially a light version of a section block. They questioned if it might be better to finish the work on the Section block (<a href=\"https://github.com/WordPress/gutenberg/issues/4900\" rel=\"noopener noreferrer\" target=\"_blank\">#4900</a>) and build from there. Many developers and designers are eagerly awaiting the addition of a Section block to core, which will provide a standard for the plugin and theme industries to build on.</p>\n<p>“I think the cover block has very specific functionality that the section may not have like the focal point selector,” Automattic JavaScript engineer Jorge Costa said. “It is also important to note that the adjustments we make here to the way nesting works will also benefit a future section. This also allows us to test nesting a little bit more, before going to the section block. I expect the section block to be widely used in the community and will probably serve as a basis for many things being built in the future so it is important that we get it right. Exploring in cover will contribute to that.”</p>\n<p>Gutenberg 5.3 adds an experimental Legacy Widget Block that allows existing WordPress widgets to be added as Gutenberg blocks. It offers a dropdown of available widgets. After selecting one, the block populates that area with the widget’s settings.</p>\n<p><a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2019/03/Screen-Shot-2019-03-20-at-12.49.23-PM.png?ssl=1\"><img /></a></p>\n<p>This version also <a href=\"https://github.com/WordPress/gutenberg/pull/14145\" rel=\"noopener noreferrer\" target=\"_blank\">improves block outlines for the hover and selected states</a> for a more accessible UI with less distraction. Performance benchmarks show a slight decrease in performance with Gutenberg 5.3. Check out the <a href=\"https://make.wordpress.org/core/2019/03/20/whats-new-in-gutenberg-20th-march/\" rel=\"noopener noreferrer\" target=\"_blank\">release post</a> for a full list of enhancements and bug fixes. This is the last plugin release that will be rolled into the upcoming WordPress 5.2 release.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 20 Mar 2019 21:14:47 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:78:\"HeroPress: Sometimes bad things that happen to you are good things in disguise\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=2716\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:208:\"https://heropress.com/essays/sometimes-bad-things-that-happen-to-you-are-good-things-in-disguise/#utm_source=rss&utm_medium=rss&utm_campaign=sometimes-bad-things-that-happen-to-you-are-good-things-in-disguise\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:10451:\"<img width=\"960\" height=\"480\" src=\"https://s20094.pcdn.co/wp-content/uploads/2020/03/032019-1024x512.jpg\" class=\"attachment-large size-large wp-post-image\" alt=\"Pull Quote: Sometimes bad things that happen to you are good things in disguise.\" /><p>My Mom used to say that things you remember from your past the most are things that had an impact on who you are today. Negative or positive, they affected you in a way that helped create the person you are.</p>\n<h3>The Early Days</h3>\n<p>Her father said to her, “Jean, you are always welcome but leave your kids at home.” That I will remember until the day I die. Why? We were biracial. My mother (who was White) left her home in Virginia to run away to Cleveland with my father (who was Black, and from West Virginia) to get married. That was in 1956.</p>\n<p>My father left us when I was about 8. Left us high and dry. The only positive thing I remember that he gave me was a typewriter. He said to me, “Teach yourself how to type and you’ll always be able to make a living.” I didn’t realize he “gave me anything” until after he died.</p>\n<p>After my second failed marriage, I moved my Mom in with me because she was ill. That was 2005 and that’s when my journey with WordPress began. I originally started using Joomla but found that it was too cumbersome to keep up-to-date because things needed to be done manually, whereas WordPress had this cool way of updating the plugins right inside the dashboard. I was hooked and left Joomla behind.</p>\n<p>I went back to work full time at one of the local hospitals. But not even a year into it I quit.</p>\n<blockquote><p>One morning as I am waiting for the home health aide to arrive, my Mom started to cry and said, “I don’t want to die alone.” I stopped and looked at her and said, “You aren’t going to die alone.”</p></blockquote>\n<p>That day, I got to work and one of the doctor’s pissed me off. I thought about what my Mom said and then starting thinking, “I don’t need this bullshit.” I went to my desk and started packing my things. My co-worker said, “What are you doing?” I said, “I quit.” She said, “What?” I said, “I quit.” The doctor ran out, “What are you doing and where are you going?” I said, “I quit, and you can kiss my ass!”</p>\n<p>I got home too early and my Mom asks, “Why are you home?” I just stood there. She looked at me and said, “Did you quit?” I started laughing, “Yep sure did and told that doctor he could kiss my ass!” She started giggling! “We’ll be okay.” she said.</p>\n<h3>Shifting Gears</h3>\n<p>At that moment I said I must take this hobby of building sites part time, to a full fledge business. I hunkered down in one of the upstairs bedrooms and started to write out my strategy. I had already completed a few small business websites, so I contacted them and from there and word of mouth, my business started to grow.</p>\n<p>But it wasn’t until after my Mom died that WordPress really saved my life.</p>\n<p>We were thick as thieves my Mom and me. She almost died having me. I had a sister (she died last April) but she wasn’t close to us and kept mainly to herself. But Mom and I…we were two peas in a pod all the way up to the day she died. I sat with her for five days in hospice and those were some of the longest days and nights of my life.</p>\n<blockquote><p>I felt like someone dropped a weight on my chest. I couldn’t breathe. I felt faint. I felt lost.</p></blockquote>\n<p>Thank God I had Buster, my dog. If it hadn’t been for him, I don’t know what I would have done. There was a night I just couldn’t bear not having my Mom. I had a bottle of Valium and thought, “I should just get it over with, go be with my Mom.” But I looked down at Buster and thought, “No one is going to take better care of him than me. I can’t do that to him.”</p>\n<p>I struggled with depression. Slowly over time I couldn’t function to even work on projects. It finally got to a point where my gas was turned off in the winter and I didn’t have food. I was bundled up with blankets and small heaters in my house to stay warm.</p>\n<blockquote><p>Every penny I got, was basically food for Buster. One time I went 5 days without food.</p></blockquote>\n<p>My car was repossessed. It was just crazy. Then I got evicted in mid-January 2013. Yep, evicted.</p>\n<p>My sister, who I wasn’t close to, had received a lump sum of money from Social Security. She sent money to me since I had cared for our Mom all that time by myself. I rented a van, packed up what I could fit in the U-Haul on my own and ended up at an Extended Stay hotel – in the middle of a blizzard. Left all my furniture behind because I didn’t have help.</p>\n<p>I got to the hotel and sat there in the U-Haul. I looked in the mirror and said out loud, “How the fuck did you get here? You don’t even have a pot to piss in!” Buster sitting in the other seat looking at me like I was crazy. That’s when I knew I had hit rock bottom. Depression led me to the bottom.</p>\n<h3>Rising Up</h3>\n<p>But… that was a good thing! I met a lot of wonderful people online. I joined a few WordPress groups, but mainly the StudioPress forum because I had been using their free themes when they were Revolution Two. Then they developed the Genesis Framework. Their old forum was a gold mine of information and the people were awesome. I learned so much from that forum.</p>\n<p>Every day from that point on was WordPress and Genesis. Meeting more people, learning more code. I was completely off the grid in that hotel room! No one here even knew where I was that’s how far off the grid I was. But sometimes, you must do that in order to focus and get back on track.</p>\n<blockquote><p>There were a lot of bumps in that road the first year, too many to even write out in this essay, but I learned something from each bump.</p></blockquote>\n<p>My business grew from word-of-mouth, I started getting work from people who needed help who saw me on social media and through the forums. Work from people all over the world. It truly was exciting.</p>\n<p>Each day is still WordPress and websites. Learning new things every day. Sitting with Slack windows open and chatting with other WordPress people online. It’s been my entire world since 2013 and pretty much my “Saving Grace” because I feel like I know some people online better than people right here in the same city where I live at. I lived in the hotel for 2 years. Not because I had to but because I wanted to.</p>\n<h3>The Power of Communiity</h3>\n<p>The WordPress community is awesome and giving. The Genesis community is the same. It feels like family and I’ve never met anyone in person but care so much about the people! I would hope that those who know me would feel the same.</p>\n<p>A friend recently shared a quote by the author Dodinsky that started off, “A lot of walking away will do your life good.” But it was the end that really caught my attention and it said, “The more you walk away from things that poison your soul, the healthier your life will be.”</p>\n<p>And that is so true. Healthier in a sense that I walked away from all the bad, negative things and people that were in my space. I was able to grieve and heal. Sometimes bad things that happen to you are good things in disguise.</p>\n<p>What’s in my future? Well, one of my dreams is to get a Sprinter Van, have it customized for living on the road and drive cross country with Bella. Buster passed end of 2016 and Bella is my other life-saver. I’d love to drive cross country and stop and meet people I’ve met in the WordPress community. I know I can’t really make that happen, but I can dream, can’t I? LOL!</p>\n<p>I’d love to follow you on Twitter. Follow me at @thecre8tivediva and I’ll follow you back!</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: Sometimes bad things that happen to you are good things in disguise\" class=\"rtsocial-twitter-button\" href=\"https://twitter.com/share?text=Sometimes%20bad%20things%20that%20happen%20to%20you%20are%20good%20things%20in%20disguise&via=heropress&url=https%3A%2F%2Fheropress.com%2Fessays%2Fsometimes-bad-things-that-happen-to-you-are-good-things-in-disguise%2F\" rel=\"nofollow\" target=\"_blank\"></a></div></div><div class=\"rtsocial-fb-horizontal fb-light\"><div class=\"rtsocial-fb-horizontal-button\"><a title=\"Like: Sometimes bad things that happen to you are good things in disguise\" class=\"rtsocial-fb-button rtsocial-fb-like-light\" href=\"https://www.facebook.com/sharer.php?u=https%3A%2F%2Fheropress.com%2Fessays%2Fsometimes-bad-things-that-happen-to-you-are-good-things-in-disguise%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%2Fsometimes-bad-things-that-happen-to-you-are-good-things-in-disguise%2F&title=Sometimes+bad+things+that+happen+to+you+are+good+things+in+disguise\" rel=\"nofollow\" target=\"_blank\" title=\"Share: Sometimes bad things that happen to you are good things in disguise\"></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/sometimes-bad-things-that-happen-to-you-are-good-things-in-disguise/&media=https://heropress.com/wp-content/uploads/2020/03/032019-150x150.jpg&description=Sometimes bad things that happen to you are good things in disguise\" rel=\"nofollow\" target=\"_blank\" title=\"Pin: Sometimes bad things that happen to you are good things in disguise\"></a></div></div><a rel=\"nofollow\" class=\"perma-link\" href=\"https://heropress.com/essays/sometimes-bad-things-that-happen-to-you-are-good-things-in-disguise/\" title=\"Sometimes bad things that happen to you are good things in disguise\"></a></div><p>The post <a rel=\"nofollow\" href=\"https://heropress.com/essays/sometimes-bad-things-that-happen-to-you-are-good-things-in-disguise/\">Sometimes bad things that happen to you are good things in disguise</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, 20 Mar 2019 12:00:51 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Anita Carter\";s: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:122:\"WPTavern: WordCamp Miami Draws 100+ for Kid’s Camp, Plans to Host Standalone Kid’s WordPress Conference in Summer 2019\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=88102\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:125:\"https://wptavern.com/wordcamp-miami-draws-100-for-kids-camp-plans-to-host-standalone-kids-wordpress-conference-in-summer-2019\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4384:\"<p>The 11th edition of <a href=\"https://2019.miami.wordcamp.org/\" rel=\"noopener noreferrer\" target=\"_blank\">WordCamp Miami</a> was held this past weekend, a three-day event that featured multiple learning workshops and six different tracks. The speaker ratio was 50% male and 50% female, and nearly half of the speakers were new to WordCamp Miami.</p>\n<blockquote class=\"twitter-tweet\">\n<p lang=\"en\" dir=\"ltr\">Another great year of amazing, diverse speakers! <a href=\"https://twitter.com/hashtag/WCMIA?src=hash&ref_src=twsrc%5Etfw\">#WCMIA</a> <a href=\"https://twitter.com/hashtag/WordPress?src=hash&ref_src=twsrc%5Etfw\">#WordPress</a> <a href=\"https://t.co/e2smmCpPAF\">pic.twitter.com/e2smmCpPAF</a></p>\n<p>— WordCamp Miami (@wordcampmiami) <a href=\"https://twitter.com/wordcampmiami/status/1107383222453833728?ref_src=twsrc%5Etfw\">March 17, 2019</a></p></blockquote>\n<p></p>\n<p>One of the highlights of this year’s event were the WordPress stories coming out of the Kid’s Panel. WordCamp Miami has been hosting learning experiences for kids since 2014 and for the past four years has included a two-day Kid’s Camp along with a Kid’s Panel. More than 100 children (not including parents and guardians) attended this year’s event. Some of the kids who are more experienced with WordPress shared their experiences during the Kid’s Panel. </p>\n<p>Kids reported that they using WordPress for blogs, science projects, and robotic competitions. One fifth grade student, who has been using WordPress for three years, said she plans to continue using it to document her life and share her future educational experiences:</p>\n<p>“I plan to be using it later in my life when I go to college, so I can be talking about what my life journey was and what I’m going to be studying, which is software engineering.”</p>\n<blockquote class=\"twitter-tweet\">\n<p lang=\"en\" dir=\"ltr\">Listen to how a 4th grader explains why she likes using <a href=\"https://twitter.com/hashtag/WordPress?src=hash&ref_src=twsrc%5Etfw\">#WordPress</a>. <a href=\"https://twitter.com/hashtag/WCMIA?src=hash&ref_src=twsrc%5Etfw\">#WCMIA</a> <a href=\"https://t.co/Zd5cRP3Afg\">pic.twitter.com/Zd5cRP3Afg</a></p>\n<p>— David Bisset (@dimensionmedia) <a href=\"https://twitter.com/dimensionmedia/status/1107290298756009985?ref_src=twsrc%5Etfw\">March 17, 2019</a></p></blockquote>\n<p></p>\n<h3>Miami to Host New One-Day WordPress Event for Kids and Teachers</h3>\n<p>The growing popularity of WordCamp Miami’s kids events has inspired organizers to host a new one-day event for kids and teachers. The date has not yet been set but the plan is to have it scheduled for summer 2019. </p>\n<p>The event will be divided into two tracks, one for kids aged 6 to 18 and another for teachers and educators. The kid’s track will include talks on WordPress, MineCraft, STEAM/STEM activities, and ways they can improve their coding skills. Teachers and educators will have a dedicated track with talks that will help them incorporate coding, WordPress, and broader STEAM/STEM activities into their curricula.</p>\n<p>In their <a href=\"https://2019.miami.wordcamp.org/kids-at-wordcamp-miami-2019/\" rel=\"noopener noreferrer\" target=\"_blank\">announcement</a>, WordCamp Miami’s organizers said they believe the next generation of WordPress users are “vital to the growth of the open web.” They are looking for sponsors to cover the costs of snacks and lunch for approximately 100 students, volunteers and speakers to give presentations on various subjects for kids and teachers, and people to spread the word to schools in the Dade/Broward area.</p>\n<p>Kids engaging with WordPress is one of the most inspiring things happening in the community right now. It’s the spark of a new generation of users who are embracing the concept of sharing their ideas on the open web. WordPress’ Community team also has a new <a href=\"https://make.wordpress.org/community/tag/kids-events/\" rel=\"noopener noreferrer\" target=\"_blank\">Kids Event Working Group</a> that kicked off last month to support the growth of these kinds of events around the world. They are currently working on documentation, training guides, legal documents, supply lists, and other resources. This is another way to get involved if you don’t live near a local kid’s event.</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, 20 Mar 2019 00:57:35 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:13;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:98:\"WPTavern: New Tools for Theme Developers: Theme Sniffer Plugin and Automated Accessibility Testing\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=88080\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:108:\"https://wptavern.com/new-tools-for-theme-developers-theme-sniffer-plugin-and-automated-accessibility-testing\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2707:\"<p>WordPress contributor teams have shipped several new tools for theme developers in the past couple weeks, which have the potential to raise the quality of new themes coming into the ecosystem. The <a href=\"https://wordpress.org/plugins/theme-sniffer/\" rel=\"noopener noreferrer\" target=\"_blank\">Theme Sniffer</a> plugin is a new effort from the Theme Review team that uses custom sniffs for <a href=\"https://github.com/squizlabs/PHP_CodeSniffer\" rel=\"noopener noreferrer\" target=\"_blank\">PHP_CodeSniffer</a> to test a theme against WordPress coding standards and check for PHP version compatibility.</p>\n<p><a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2019/03/theme-sniffer.png?ssl=1\"><img /></a></p>\n<p>The plugin is useful for both theme reviewers and developers who want to get their themes approved for the WordPress.org directory. It includes several optional standards to test against beyond the ruleset for theme review requirements. Passing the Theme Sniffer checks is not required for themes entering the directory but reviewers can use the plugin to speed the process up.</p>\n<p>The Accessibility Team also published a new tool called <a href=\"https://github.com/wpaccessibility/wp-theme-auditor\" rel=\"noopener noreferrer\" target=\"_blank\">WP Theme Auditor</a> that runs <a href=\"https://www.deque.com/axe/\" rel=\"noopener noreferrer\" target=\"_blank\">Axe</a> tests against a theme for automated accessibility feedback. Axe is an open source library and testing engine created by the accessibility experts at <a href=\"https://www.deque.com\" rel=\"noopener noreferrer\" target=\"_blank\">Deque</a>. The WP Theme Auditor package can be installed into a theme’s root directory. Developers can then add test cases. Examples are available in the project’s <a href=\"https://github.com/wpaccessibility/wp-theme-auditor#readme\" rel=\"noopener noreferrer\" target=\"_blank\">README file</a>. The tests are run against <a href=\"http://one.wordpress.test\" rel=\"noopener noreferrer\" target=\"_blank\">http://one.wordpress.test</a> by default but developers can specify a different test environment URL.</p>\n<p>The Accessibility team plans to expand the test cases in the tool to include all the content from the current <a href=\"https://github.com/wpaccessibility/a11y-theme-unit-test/blob/master/a11y-theme-unit-test-data.xml\" rel=\"noopener noreferrer\" target=\"_blank\">Theme Unit Test Data</a> package. In the most recent team meeting, they decided to recommend WP Theme Auditor as a WordPress testing tool and plan to post more details about it on the <a href=\"https://make.wordpress.org/accessibility/\" rel=\"noopener noreferrer\" target=\"_blank\">make.wordpress.org/accessibility</a> blog.</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, 19 Mar 2019 03:42:50 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:14;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:66:\"WPTavern: A Quick Introduction to WordPress’ Date/Time Component\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=88053\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:74:\"https://wptavern.com/a-quick-introduction-to-wordpress-date-time-component\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3109:\"<p>At WordCamp Nordic’s contributor day I had the opportunity to chat with <a href=\"https://www.rarst.net\" rel=\"noopener noreferrer\" target=\"_blank\">Andrey “Rarst” Savchenko</a> about WordPress’ <a href=\"https://make.wordpress.org/core/components/date-time/\" rel=\"noopener noreferrer\" target=\"_blank\">Date/Time component</a>, the code that manages date, time, and timezone functionality. Savchenko is one of the maintainers of this lesser-known component, which includes code that dates back to PHP 4 times. After volunteering for years in the WordPress Stack Exchange forums, he encountered some of the worst Date/Time bugs, eventually spurring him on to get involved improving the code.</p>\n<p>“From there it was a slow descent into the madness of the component,” Savchenko said. “Much of my experience ended up in my <a href=\"https://github.com/Rarst/wpdatetime\" rel=\"noopener noreferrer\" target=\"_blank\">WpDateTime library</a>. By last year I was, at last, confident I had a good grasp on the extent of the problem and a way forward for core.”</p>\n<p>Date/Time issues affect both developers and users. Savchenko said most of the problems, by volume, are related to an incorrect output of localized time by `date_i18n()`. These things can trickle down to users and affect post scheduling, querying, and other operations.</p>\n<p>“Some of them are outright bugs and some are easy to break due to incompatibility with Unix timestamps,” Savchenko said. “But many other parts of the core have problems related to time – most often around time zones and daylight savings time. Posts can end up with the wrong time, not published when needed, sorted in the wrong order, and so on.”</p>\n<p>The requirement for backwards compatibility makes progress slow but Savchenko and fellow contributors shipped some of their work in the most recent release of WordPress. They will have more solutions available to pursue when the minimum required PHP version is bumped.</p>\n<p>“In WordPress 5.1 we had shipped a set of <a href=\"https://core.trac.wordpress.org/query?component=Date%2FTime&milestone=5.1\" rel=\"noopener noreferrer\" target=\"_blank\">important fixes for documentation and some of the worst bugs in `date_i18n()`</a>. </p>\n<p>“At the moment we continue to work on outstanding issues and get ready to implement <a href=\"https://github.com/Rarst/wp-date/issues/4\" rel=\"noopener noreferrer\" target=\"_blank\">a set of major new API functions</a>. The work on the component has also revitalized the discussion of <a href=\"https://core.trac.wordpress.org/ticket/18146\" rel=\"noopener noreferrer\" target=\"_blank\">introducing user timezones</a>. However I think those need a lot of UX work to reach workable proposal.”</p>\n<p>Check out the video below for a quick overview of the work being done on the Date/Time component and find out how you can get involved at the <a href=\"https://wordpress.slack.com/messages/core-datetime\" rel=\"noopener noreferrer\" target=\"_blank\">#core-datetime</a> channel in WordPress Slack.</p>\n<p></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 18 Mar 2019 20:04: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: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:62:\"WPTavern: GitHub Is Testing Commits on Behalf of Organizations\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=88028\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"https://wptavern.com/github-is-testing-commits-on-behalf-of-organizations\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2012:\"<p>GitHub users may soon be able to <a href=\"https://github.blog/changelog/2019-03-15-creating-a-commit-on-behalf-of-an-organization/\" rel=\"noopener noreferrer\" target=\"_blank\">contribute to projects on behalf of an organization</a>. This feature has often been requested by developers who are contributing on behalf of their employers.</p>\n<p>“Corporate contributions to the third-party open source projects can still be a source of friction and ambiguity,” GitHub Product Manager Ben Balter said. “We’re beta testing a new platform-agnostic commit pattern we hope can help you contribute on behalf of your employer.”</p>\n<p>Committers who are members of an organization can add a commit trailer in the following format: </p>\n<pre class=\"brush: php; light: true; title: ; notranslate\">On-behalf-of: @ORG <ORG CONTACT EMAIL></pre>\n<p>The committer must use an email that matches the organization’s verified domain and sign the commit. Committing on behalf of an organization can also be done <a href=\"https://help.github.com/en/articles/creating-a-commit-on-behalf-of-an-organization\" rel=\"noopener noreferrer\" target=\"_blank\">via the command line</a>. </p>\n<p>Balter posted a demo of how the organization’s badge appears next to the committer’s. The feature is now in public beta:</p>\n<p><a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2019/03/github-commit-organization.png?ssl=1\"><img /></a></p>\n<p>It will be interesting to see how well this is adopted among individuals and organizations committing to open source projects. Some projects have more overt contribution from commercial entities than others. Having individuals commit on behalf of their employers makes it easier to track contributions funded by organizations. It may also provide project owners a more accurate picture of how deeply companies are invested in a project, especially in scenarios where the lines between individual and employer contributions are blurry or unclear.</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, 16 Mar 2019 01:17:12 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:85:\"WPTavern: Deploy WordPress Plugins from GitHub to the WordPress.org Plugin Repository\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=87994\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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/deploy-wordpress-plugins-from-github-to-the-wordpress-org-plugin-repository\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2439:\"<p>10up has <a href=\"https://10up.com/blog/2019/introducing-github-actions-for-wordpress-plugins/\" rel=\"noopener noreferrer\" target=\"_blank\">released a GitHub Action</a> that enables developers to deploy to the WordPress.org Plugin repository by tagging a new version on GitHub. Helen Hou-Sandí, 10up’s Director of Open Source Initiatives, explained how it works:</p>\n<blockquote><p>You’ll be able to manage your entire development lifecycle in GitHub—no more futzing with local Bash scripts or controlling commit/push access in multiple places. You reference our action in your plugin repo’s workflow file, filtered to only run when a tag is pushed, and set your username/password secrets. After that, each time you tag a new version on GitHub, whether by pushing a Git tag from the command line or making one using the GitHub releases interface, your plugin will be deployed to WordPress.org.</p></blockquote>\n<p>Developers who want to use this Action will need to <a href=\"https://github.com/features/actions/signup\" rel=\"noopener noreferrer\" target=\"_blank\">sign up for beta access to GitHub Actions</a> in order to create their own Actions-enabled repo for pushing plugin releases to WordPress.org. Check out 10up’s release <a href=\"https://10up.com/blog/2019/introducing-github-actions-for-wordpress-plugins/\" rel=\"noopener noreferrer\" target=\"_blank\">post</a> and the <a href=\"https://github.com/10up/actions-wordpress/blob/master/dotorg-plugin-deploy/README.md\" rel=\"noopener noreferrer\" target=\"_blank\">README file</a> for instructions on how to use and customize the WordPress.org Plugin Deploy action. </p>\n<p>Reception from the WordPress development community has been enthusiastic, as anything that removes WordPress.org’s requirement to use SVN qualifies as a little piece of magic. 10up is working on more WordPress Actions that they plan to release soon.</p>\n<blockquote class=\"twitter-tweet\">\n<p lang=\"en\" dir=\"ltr\">This project makes me want to make a plugin again <img src=\"https://s.w.org/images/core/emoji/11.2.0/72x72/2764.png\" alt=\"❤\" class=\"wp-smiley\" /><img src=\"https://s.w.org/images/core/emoji/11.2.0/72x72/1f64c.png\" alt=\"?\" class=\"wp-smiley\" /> <a href=\"https://t.co/aTtTpu6562\">https://t.co/aTtTpu6562</a></p>\n<p>— Jeremy Felt (@jeremyfelt) <a href=\"https://twitter.com/jeremyfelt/status/1106273161383796736?ref_src=twsrc%5Etfw\">March 14, 2019</a></p></blockquote>\n<p></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 15 Mar 2019 15:52:32 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s: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: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:41:\"WordPress.org blog: One-third of the web!\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=6789\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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/2019/03/one-third-of-the-web/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2168:\"<p>WordPress now powers over 1/3rd of the top 10 million sites on the web according to <a href=\"https://w3techs.com/technologies/history_overview/content_management/all\">W3Techs</a>. Our market share has been growing steadily over the last few years, going from 29.9% just one year ago to 33.4% now. We are, of course, quite proud of these numbers! <br /></p>\n\n\n\n<p>The path here has been very exciting. In 2005, we were celebrating <a href=\"https://wordpress.org/news/2005/03/fifty-thousand/\">50,000 downloads</a>. Six years later, in January 2011, WordPress was powering 13.1% of websites. And now, early in 2019, we are powering 33.4% of sites. Our latest release has already been <a href=\"https://wordpress.org/download/counter/\">downloaded close to 14 million times</a>, and it was only released on the 21st of February.<br /></p>\n\n\n\n<img src=\"https://i0.wp.com/wordpress.org/news/files/2019/03/w3techs-content-management-systems-usage.png?w=632&ssl=1\" alt=\"Graph showing the growth of WordPress market share relative to other CMS\'s like Joomla, Drupal and others. Starting at just over 10% in January 2011 to 33.4% now.\" class=\"wp-image-6790\" />WordPress market share on the rise over the last 8 years. Image source: <a href=\"https://w3techs.com/technologies/history_overview/content_management/all/y\">W3Techs</a>.\n\n\n\n<p>Over the years WordPress has become the CMS of choice for more and more people and companies. As various businesses use WordPress, the variety of WordPress sites grows. Large enterprise businesses all the way down to small local businesses: all of them use WordPress to power their site. We love seeing that and we strive to continuously make WordPress better for all of you.</p>\n\n\n\n<p>We’d like to thank everyone who works on WordPress, which is built and maintained by a <a href=\"https://make.wordpress.org\">huge community of volunteers</a> that has grown alongside the CMS. This incredible community makes it possible for WordPress to keep growing while still also remaining <em>free</em>. And of course, we’d like to thank all of you <em>using</em> WordPress for using it and trusting in it. To all of you: let’s celebrate!</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 15 Mar 2019 13:16:08 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Joost de Valk\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:112:\"WPTavern: WordCamp Miami to Livestream Workshops, Sessions, and a Worldwide WordPress Trivia Contest March 15-17\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=87992\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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/wordcamp-miami-to-livestream-workshops-sessions-and-a-worldwide-wordpress-trivia-contest-march-15-17\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2166:\"<p><a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2019/03/Screen-Shot-2019-03-14-at-9.23.29-PM.png?ssl=1\"><img /></a></p>\n<p><a href=\"https://2019.miami.wordcamp.org/\" rel=\"noopener\" target=\"_blank\">WordCamp Miami</a> (WCMIA) is heading into its 11th year running this weekend, making it one of the longest running non-profit tech conferences in South Florida. Known for its many learning opportunities and workshops, the event spans three days from March 15 – 17 at <a href=\"https://2019.miami.wordcamp.org/location/\" rel=\"noopener\" target=\"_blank\">Florida International University</a>.</p>\n<p>For the vast majority of the WordPress world that cannot make it to Miami, the next best alternative is tuning into the <a href=\"https://2019.miami.wordcamp.org/live/\" rel=\"noopener\" target=\"_blank\">free livestream</a>. WCMIA will be broadcasting a selection of workshops and sessions from the schedule, beginning with the Freelancer’s Workshop on Friday, March 15. The main event features six different tracks, and Saturday’s live broadcast will include sessions from “WordPress & The Web” and the “Design & Community” tracks. Sunday’s livestream will broadcast sessions from the <a href=\"https://2019.miami.wordcamp.org/2019/02/12/introducing-the-wordcamp-miami-business-track-for-2019/\" rel=\"noopener\" target=\"_blank\">Business track</a>. </p>\n<p>WCMIA is also hosting a <a href=\"https://2019.miami.wordcamp.org/2019/03/14/wordcamp-miami-hosts-worldwide-wordpress-trivia-contest/\" rel=\"noopener\" target=\"_blank\">worldwide WordPress trivia contest</a> on Saturday, March 16, at 6PM EST. It is open to both in-person attendees and livestream viewers. Directions for how to sign into kahoot.it remotely for the game show are <a href=\"https://2019.miami.wordcamp.org/2019/03/14/wordcamp-miami-hosts-worldwide-wordpress-trivia-contest/\" rel=\"noopener\" target=\"_blank\">available on the event’s website</a>. Digital prizes may be awarded to those playing online and winners will be announced on the <a href=\"https://twitter.com/wordcampmiami\" rel=\"noopener\" target=\"_blank\">WCMIA Twitter account</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 15 Mar 2019 02:28:26 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:78:\"WPTavern: Automattic Takes on Facebook with “A Meditation on the Open Web”\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=87971\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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/automattic-takes-on-facebook-with-a-meditation-on-the-open-web\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3913:\"<p>Last week Automattic published a video titled “<a href=\"https://www.youtube.com/watch?v=pB5gaJloeRU\" rel=\"noopener\" target=\"_blank\">A meditation on the open web</a>” that calls out Facebook as the antithesis of the open web:</p>\n<blockquote><p>As you get closer the air gets smoggier and you realize it’s a vast metropolis. It’s surrounded by high concrete walls, completely contained. Inside it’s bustling, lots of honking traffic, people everywhere, the sound is deafening. You see people arguing in bars and chatting on street corners. Billboards and advertisements are everywhere, touting ever kind of good and service. It’s noisy and dense and overwhelming. </p>\n<p>This is Facebook.</p></blockquote>\n<p>The video also likens Instagram to a cookie cutter housing development that is actually just a collection of billboards with no one living there.</p>\n<p>My expectation before playing the video was that it would enumerate the positive aspects of the open web but I was surprised to find it juxtaposed with Facebook and Instagram in a somewhat jarring fashion midway through. It effectively communicates the stark contrast between the limitations and restrictions of social media silos and the freedom of owning your own website.</p>\n<p></p>\n<p>Open Web Meditation was created as a design experiment at Automattic that encourages viewers to look beyond the walls of dominant social media platforms and consider how our experiences on the web differ based on where we choose to share our ideas. The company is looking to gain global exposure for the video by <a href=\"https://github.com/automattic/openwebmeditation\" rel=\"noopener\" target=\"_blank\">inviting people to create their own versions of it in their own languages</a>. </p>\n<p>Automattic’s video is a timely message, as the world pauses to reflect on the 30th birthday of the World Wide Web this week. In his <a href=\"https://webfoundation.org/2019/03/web-birthday-30/\" rel=\"noopener\" target=\"_blank\">open letter</a> published by the Web Foundation, Tim Berners-Lee urged companies, governments, and the web’s citizens not to give up on building a better web. He identified “system design that creates perverse incentives,” where user value is sacrificed, as one of the most dangerous threats to the web at this time.</p>\n<p>“You can’t just blame one government, one social network or the human spirit,” Berners-Lee said. “Simplistic narratives risk exhausting our energy as we chase the symptoms of these problems instead of focusing on their root causes. To get this right, we will need to come together as a global web community.”</p>\n<p>Many commercial entities have enjoyed extraordinary and unprecedented opportunities and influence because of the creation of the world wide web. Berners-Lee underscored their responsibility toward the public as stewards of the open web.</p>\n<p>“Companies must do more to ensure their pursuit of short-term profit is not at the expense of human rights, democracy, scientific fact or public safety,” he said. “Platforms and products must be designed with privacy, diversity and security in mind. This year, we’ve seen a number of tech employees stand up and demand better business practices. We need to encourage that spirit.”</p>\n<p>In an <a href=\"https://www.bbc.com/news/technology-47524474\" rel=\"noopener\" target=\"_blank\">interview with the BBC</a>, Berners-Lee said that global action is required tackle the web’s “downward plunge to a dysfunctional future.” This 30-year anniversary is a good time to re-examine our complex relationships with centralized services and return to the <a href=\"https://webfoundation.org/about/vision/history-of-the-web/\" rel=\"noopener\" target=\"_blank\">guiding principles</a> that have made the web a universal, open place of opportunity.</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, 14 Mar 2019 19:56:42 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:20;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:22:\"Matt: The Web Turns 30\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=49261\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:39:\"https://ma.tt/2019/03/the-web-turns-30/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1358:\"<div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">In 2003, <a href=\"https://twitter.com/WordPress?ref_src=twsrc%5Etfw\">@WordPress</a> was created to democratize publishing on the open web. <a href=\"https://twitter.com/hashtag/Web30?src=hash&ref_src=twsrc%5Etfw\">#Web30</a> <a href=\"https://twitter.com/hashtag/ForTheWeb?src=hash&ref_src=twsrc%5Etfw\">#ForTheWeb</a> <a href=\"https://t.co/1Xny14pqu4\">pic.twitter.com/1Xny14pqu4</a></p>— Matt Mullenweg (@photomatt) <a href=\"https://twitter.com/photomatt/status/1105574279091900416?ref_src=twsrc%5Etfw\">March 12, 2019</a></blockquote>\n</div>\n\n\n\n<p>“Vague, but exciting.” Thirty years ago yesterday, Sir Tim Berners-Lee submitted his original proposal for an information management system to his boss at CERN — what would later become the World Wide Web (and, it turns out, a huge influence on my life and career).</p>\n\n\n\n<p>To help celebrate, I tweeted WordPress’s contribution to the web’s grand timeline (above), and I got to participate in <a href=\"https://www.economist.com/podcasts/2019/03/13/meeting-the-pioneers-of-the-world-wide-web?fsrc=gp_en\">The Economist’s Babbage podcast</a> looking back at the pioneers of the early web. Listen to the whole episode below: </p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n\n</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, 14 Mar 2019 18:28: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: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: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:56:\"WPTavern: WordPress 5.1.1 Patches Critical Vulnerability\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=87953\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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/wordpress-5-1-1-patches-critical-vulnerability\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2091:\"<p><a href=\"https://wordpress.org/news/2019/03/wordpress-5-1-1-security-and-maintenance-release/\" rel=\"noopener\" target=\"_blank\">WordPress 5.1.1</a> was released yesterday evening with an important security update for a critical cross-site scripting vulnerability found in 5.1 and prior versions. The release post credited Simon Scannell of RIPS Technologies for discovering and reporting the vulnerability. Scannell published a <a href=\"https://blog.ripstech.com/2019/wordpress-csrf-to-rce/\" rel=\"noopener\" target=\"_blank\">post</a> summarizing how an unauthenticated attacker could take over any WordPress site that has comments enabled:</p>\n<blockquote><p>An attacker can take over any WordPress site that has comments enabled by tricking an administrator of a target blog to visit a website set up by the attacker. As soon as the victim administrator visits the malicious website, a cross-site request forgery (CSRF) exploit is run against the target WordPress blog in the background, without the victim noticing. The CSRF exploit abuses multiple logic flaws and sanitization errors that when combined lead to Remote Code Execution and a full site takeover.</p></blockquote>\n<p>Since WordPress ships with comments enabled by default, an attacker could exploit this vulnerability on any site with the default settings. Auto-updates went out yesterday but administrators who have background updates disabled are advised to update immediately.</p>\n<p>The maintenance release also includes the ability for hosts to <a href=\"https://core.trac.wordpress.org/ticket/46074\" rel=\"noopener\" target=\"_blank\">offer a button to prompt their users to update PHP</a> ahead of WordPress’ planned <a href=\"https://make.wordpress.org/core/2018/12/08/updating-the-minimum-php-version/\" rel=\"noopener\" target=\"_blank\">minimum PHP version bump in 5.2</a>. The “Update PHP” notice can be filtered to change the recommended version. </p>\n<p><a href=\"https://core.trac.wordpress.org/query?milestone=5.1.2\" rel=\"noopener\" target=\"_blank\">Version 5.1.2</a> is expected to follow in two weeks.</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, 14 Mar 2019 03:42: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: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:52:\"WPTavern: Dark Mode WordPress Plugin Up for Adoption\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=87912\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:63:\"https://wptavern.com/dark-mode-wordpress-plugin-up-for-adoption\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3804:\"<p><a href=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2019/03/dark-mode.png?ssl=1\"><img /></a></p>\n<p>Daniel James is putting his <a href=\"https://wordpress.org/plugins/dark-mode/\" rel=\"noopener\" target=\"_blank\">Dark Mode</a> plugin up for adoption. </p>\n<p>“I’m stepping back from plugin development (and WordPress contributions) and would like to see someone passionate about it pick it up,” James said.</p>\n<p>Dark Mode has 2,000 active installations and is the most popular among a handful of dark or “night mode” plugins in the official directory. In August 2018, James submitted a <a href=\"https://make.wordpress.org/core/2018/08/30/merge-proposal-dark-mode/\" rel=\"noopener\" target=\"_blank\">merge proposal</a> for including Dark Mode in core, but it was shot down the same day it was published. Gary Pendergast said the proposal “seemed premature” and noted that the project was lacking several merge criteria outlined on <a href=\"https://make.wordpress.org/core/handbook/about/release-cycle/features-as-plugins/#feature-plugin-merge-criteria\" rel=\"noopener\" target=\"_blank\">the Handbook page for feature plugins</a>. He cited a lack of weekly chats, no kickoff and update posts, and no testing from the Flow team, among other concerns.</p>\n<p>“I decided recently that because of the direction WordPress is going in with the move towards React with Gutenberg that I should probably focus my efforts elsewhere,” James said. </p>\n<p>“That’s mostly to do with the merge proposal getting rejected fairly quickly without any helpful next steps on how to improve it. Plus, with how rapidly Gutenberg is being developed, I’d have to pretty much work in tandem with the Gutenberg team to ensure the Dark Mode plugin styled the UI correctly. That’s spare time I just don’t have.</p>\n<p>“I feel like WordPress leadership is another reason. It’s really difficult (I think/feel) to get something like Dark Mode pushed through. It’s very much near the bottom of the priority list, which I get, but sucks a bit when you’re volunteering in spare time of course.” James said the plugin currently requires a few hours per week in support and maintenance.</p>\n<p>The popularity of dark modes for applications has taken off after macOS Mojave introduced a dark mode, and has also been spurred on by the news that Apple’s 2020 iPhone lineup will be produced with OLED screens. Many popular applications, such as YouTube, Facebook Messenger, Twitter, and Google Maps already have a dark mode that either works automatically based on light conditions or can be manually enabled. Chrome also recently <a href=\"https://support.google.com/chrome/answer/9275525\" rel=\"noopener\" target=\"_blank\">added a dark browsing mode for Mac users</a>. Fans of dark mode claim it is <a href=\"https://www.popsci.com/night-dark-mode-design\" rel=\"noopener\" target=\"_blank\">easier on the eyes and conserves battery</a>. </p>\n<p>Users who tend to gravitate towards dark mode are still a small subset, but the feature is gaining momentum. A dark mode may one day come to WordPress core but it doesn’t seem likely in the near future. Daniel James’ Dark Mode plugin isn’t ready for core, since it doesn’t support the new editor, but he said he hopes the new owner will find the time to take it where it needs to go. </p>\n<p>“I’m happy to transfer the plugin to someone else to continue it, as long as they’re well known/respected,” James said. “I won’t just be giving it away for security reasons. It would be great for it to be included in core one day, but at the very least it would be nice for someone who really likes it to just continue it.”</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 13 Mar 2019 22:51:09 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:49:\"HeroPress: Work Life “Balance” With WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://heropress.com/?post_type=heropress-essays&p=2711\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:138:\"https://heropress.com/essays/work-life-balance-with-wordpress/#utm_source=rss&utm_medium=rss&utm_campaign=work-life-balance-with-wordpress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:6674:\"<img width=\"960\" height=\"480\" src=\"https://s20094.pcdn.co/wp-content/uploads/2020/03/031619-1024x512.jpg\" class=\"attachment-large size-large wp-post-image\" alt=\"Pull Quote: I can’t imagine how I could have ever achieved my goal of integrating family and an impactful career without WordPress.\" /><p>I always knew I wanted to have a career, and I also knew I wanted a family. As my family grew, I realized that a typical job where you have to show up at an office every day didn’t work with the dynamic and unpredictable nature of kids. I didn’t understand why being at a physical office was a requirement: wasn’t the most important thing getting the work done? I could work just as well from home, and the flexibility would mean I could do my work at hours that worked for me. Who cares if I finished a project at 11 pm, if I did it well and on time?</p>\n<h3>Creating Change</h3>\n<p>So after my fourth kid was born, I decided to create that flexibility for myself, and went freelance, but with a vision to grow into a company. That’s why from the beginning I created a brand for my services, and called the “company” illuminea. At first I offered content related services, like marketing writing, and Hebrew to English translation. Increasingly the work I was doing was related to company websites, and the power websites had in terms of communicating messages and content marketing really caught my attention. I also had always been fascinated by technology.</p>\n<blockquote><p>So I started to teach myself how to build websites, using Google as my teacher.</p></blockquote>\n<p>At first I built basic HTML websites, but as I also learned about web marketing I realized that a site that can’t be easily updated is not doing any favors for its owners. Website content needs to be quickly and easily updatable. So I started researching CMS options. Many companies in those days were using expensive and clunky proprietary CMSs, and I was not impressed. I tested the three leading Open Source CMSs, and fell in love with WordPress. I was impressed by the templating system, the plugin ecosystem, and the community.</p>\n<h3>Moving to WordPress</h3>\n<p>At that time companies did not take WordPress seriously as a CMS. Blogging was catching on, so companies would install a WordPress blog as a subdomain, but they weren’t using it for general site management. I thought it could be more, and managed to convince a few clients to let me build their sites on WP.</p>\n<blockquote><p>And then version 3.0 was released, and WP became a full-fledged CMS.</p></blockquote>\n<p>Companies started to become sick of the limitations and costs of their proprietary CMSs, and since I was one of the first in the Israeli market to offer WP as a service, I started to get more and more clients for full website projects.</p>\n<p>Right before I had my fifth kid, I made my first hire: Rebecca Markowitz. I taught her whatever I knew, and she quickly surpassed me with her skills in many areas. We have been working (and laughing) together ever since!</p>\n<p>One thing led to another and illuminea became one of the leading providers of custom WordPress business solutions in Israel. We were privileged to work with inspiring innovators and generally nice people.</p>\n<h3>Building Something New</h3>\n<p>I had had many ideas for products throughout the years, but managing a business and having babies meant I could not realistically build a product on the side. However, after about twelve years of illuminea, and when my youngest was no longer a baby, I had an idea for a WordPress-related product: our clients, and ourselves, were suffering from issues related to speed and security. No matter what we did, we could never speed up client websites as much as they or we would have liked; and no matter what we did on the security side, sites still had vulnerabilities too often. So I thought: why not convert WordPress websites to serverless and static versions of themselves so they’ll be fast and secure?</p>\n<blockquote><p>I decided to go for it. I got accepted to a Jerusalem startup accelerator called Siftech, and they gave me the tools and access to resources and mentors that I needed to take the next steps.</p></blockquote>\n<p>I called that venture Strattic, and today we are a venture-backed team of seven with a great product that our clients love.</p>\n<p>I can’t imagine how I could have ever achieved my goal of integrating family and an impactful career without WordPress. To this day I love that I am always challenged and learning more, and always meeting more people in our amazing community, while also having the flexibility I need to be a mom. Of course it’s not perfect, but it’s pretty good, thank God.</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: Work Life “Balance” With WordPress\" class=\"rtsocial-twitter-button\" href=\"https://twitter.com/share?text=Work%20Life%20%22Balance%22%20With%20WordPress&via=heropress&url=https%3A%2F%2Fheropress.com%2Fessays%2Fwork-life-balance-with-wordpress%2F\" rel=\"nofollow\" target=\"_blank\"></a></div></div><div class=\"rtsocial-fb-horizontal fb-light\"><div class=\"rtsocial-fb-horizontal-button\"><a title=\"Like: Work Life “Balance” With WordPress\" class=\"rtsocial-fb-button rtsocial-fb-like-light\" href=\"https://www.facebook.com/sharer.php?u=https%3A%2F%2Fheropress.com%2Fessays%2Fwork-life-balance-with-wordpress%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%2Fwork-life-balance-with-wordpress%2F&title=Work+Life+%26%238220%3BBalance%26%238221%3B+With+WordPress\" rel=\"nofollow\" target=\"_blank\" title=\"Share: Work Life “Balance” With WordPress\"></a></div></div><div class=\"rtsocial-pinterest-horizontal\"><div class=\"rtsocial-pinterest-horizontal-button\"><a class=\"rtsocial-pinterest-button\" rel=\"nofollow\" target=\"_blank\" title=\"Pin: Work Life “Balance” With WordPress\"></a></div></div><a rel=\"nofollow\" class=\"perma-link\" href=\"https://heropress.com/essays/work-life-balance-with-wordpress/\" title=\"Work Life “Balance” With WordPress\"></a></div><p>The post <a rel=\"nofollow\" href=\"https://heropress.com/essays/work-life-balance-with-wordpress/\">Work Life “Balance” With WordPress</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, 13 Mar 2019 20:00:09 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Miriam Schwab\";s: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:102:\"WPTavern: Google Announces Season of Docs Program to Match Technical Writers with 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=87914\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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/google-announces-season-of-docs-program-to-match-technical-writers-with-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:2280:\"<p><a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2019/03/Screen-Shot-2019-03-12-at-6.13.26-PM.png?ssl=1\"><img /></a></p>\n<p>Google is launching a new program called <a href=\"https://developers.google.com/season-of-docs/\" rel=\"noopener\" target=\"_blank\">Season of Docs</a> with the goal of fostering collaboration between technical writers and open source projects. The initiative is very similar to <a href=\"https://summerofcode.withgoogle.com/\" rel=\"noopener\" target=\"_blank\">Google Summer of Code</a>, except it is focused on documentation and technical writing contributions instead. </p>\n<p>Prospective participants can apply during the month of April 2019. Google plans to publish a list of accepted organizations with their ideas for documentation projects. Technical writers can choose a project and submit a proposal to Season of Docs. The accepted proposals will be published July 30, 2019, and participants will then spend a month bonding with their open source communities and collaborating with mentors. The Season of Docs program officially runs from September 2 – November 29, and participants will receive a stipend of $2400 – $6,000 USD, calculated based on <a href=\"http://siteresources.worldbank.org/ICPINT/Resources/270056-1255977254560/6483625-1338834270350/FVogel_WhatisPurchasingPowerParity.pdf\" rel=\"noopener\" target=\"_blank\">Purchasing Power Parity</a>.</p>\n<p>In 2017, <a href=\"https://opensourcesurvey.org/2017/\" rel=\"noopener\" target=\"_blank\">Google’s Open Source Survey</a> results showed that incomplete or missing documentation was one of the most common problems encountered in open source, observed by 93% of respondents. The Season of Docs program aims to give technical writers an opportunity to contribute to open source projects in a more structured way while learning about open source code. Participating organizations gain the chance to improve their processes for documenting their projects while working with a technical writer. Check out the <a href=\"https://developers.google.com/season-of-docs/docs/faq\" rel=\"noopener\" target=\"_blank\">FAQ section</a> of the <a href=\"https://developers.google.com/season-of-docs/\" rel=\"noopener\" target=\"_blank\">Season of Docs</a> website for more detailed information.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 13 Mar 2019 01:17:51 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:56:\"WPTavern: WordCamp Nordic Hosts Successful Kids Workshop\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=87893\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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/wordcamp-nordic-hosts-successful-kids-workshop\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2631:\"<p><a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2019/03/wordcamp-nordic-kids-camp.jpg?ssl=1\"><img /></a></p>\n<p>WordCamp Nordic <a href=\"https://wptavern.com/wordcamp-nordic-to-host-workshop-for-kids-on-march-7\" rel=\"noopener\" target=\"_blank\">hosted a successful kids workshop</a> over the weekend where participants learned how to start publishing with WordPress. The event was held during Contributor Day at the same venue, tucked into a comfortable corner with soft chairs and ample floor space for the kids to stretch out. </p>\n<p><a href=\"https://profiles.wordpress.org/petya/\" rel=\"noopener\" target=\"_blank\">Petya Raykovska</a> led the workshop and participants followed along with the help of a large screen for demonstrating basic publishing-related tasks. The kids learned how to use the editor, add text and images, create galleries, and customize their sites by selecting a theme. Each participant left the workshop with their own WordPress site hosted at WordPress.com.</p>\n<p>“It’s like an exercise in creativity, showing them how to use a tool to express themselves on the web,” Raykovska said.</p>\n<p></p>\n<p>Teaching kids how to use WordPress is far easier than teaching adults how to use it for the first time, because they don’t have preconceived notions about how the editor should behave. Raykovska said the group at WordCamp Nordic had no issues using Gutenberg.</p>\n<p>“It doesn’t matter for them what editor they use,” Raykovska said. “They are very intuitive; they go along with anything that comes their way.”</p>\n<p>She also reported that many of the kids from past kids workshop events have kept their blogs going and maintain strong relationships with the volunteers who helped them get started. </p>\n<p>Each kids workshop is a new opportunity for organizers to test and refine different methods for teaching kids how to use WordPress. As these workshops become more common at WordCamps around the globe, it would be exciting to see them grow to become large scale events where more experienced kids can present on what they are learning and doing with WordPress. </p>\n<p>If you are interested in running a kids workshop at another WordCamp, Raykovska has created an <a href=\"https://paper.dropbox.com/doc/WordPress-Workshop-for-Kids-organiser-kit-kxmOjjycWysa3jFYoaBTv\" rel=\"noopener\" target=\"_blank\">organizer kit</a> for training the next generation of WordPress users and developers. It includes all the tasks and requirements for organizing this type of event, sample content, and a workshop script that organizers can follow.</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, 12 Mar 2019 19:09:40 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:26;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:68:\"WordPress.org blog: WordPress 5.1.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:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=6736\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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/2019/03/wordpress-5-1-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:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4070:\"<p>WordPress 5.1.1 is now available! This security and maintenance release introduces 14 fixes and enhancements, including changes designed to help hosts prepare users for the <a href=\"https://make.wordpress.org/core/2018/12/08/updating-the-minimum-php-version/\">minimum PHP version bump coming in 5.2</a>.</p>\n\n\n\n<p>This release also includes a pair of security fixes that handle how comments are filtered and then stored in the database. With a maliciously crafted comment, a WordPress post was vulnerable to cross-site scripting.</p>\n\n\n\n<p>WordPress versions 5.1 and earlier are affected by these bugs, which are fixed in version 5.1.1. Updated versions of WordPress 5.0 and earlier are also available for any users who have not yet updated to 5.1.</p>\n\n\n\n<p>Props to Simon Scannell of RIPS Technologies who discovered this flaw independent of some work that was being done by members of the core security team. Thank you to all of the reporters for <a href=\"https://make.wordpress.org/core/handbook/testing/reporting-security-vulnerabilities/\">privately disclosing the vulnerabilities</a>, which gave us time to fix them before WordPress sites could be attacked.</p>\n\n\n\n<p>Other highlights of this release include:</p>\n\n\n\n<ul><li>Hosts can now offer a button for their users to update PHP.</li><li>The recommended PHP version used by the “Update PHP” notice can now be filtered.</li><li>Several minor bug fixes.</li></ul>\n\n\n\n<p>You can browse the <a href=\"https://core.trac.wordpress.org/query?status=closed&resolution=fixed&milestone=5.1.1&order=priority\">full list of changes on Trac</a>.</p>\n\n\n\n<p>WordPress 5.1.1 was a short-cycle maintenance release. <a href=\"https://core.trac.wordpress.org/query?milestone=5.1.2\">Version 5.1.2</a> is expected to follow a similar two week release cadence.</p>\n\n\n\n<p>You can download <a href=\"https://wordpress.org/download/\">WordPress 5.1.1</a> or visit <strong>Dashboard → Updates</strong> and click <strong>Update Now</strong>. Sites that support automatic background updates have already started to update automatically.</p>\n\n\n\n<p>In addition to the security researcher mentioned above, thank you to everyone who contributed to WordPress 5.1.1:</p>\n\n\n\n<p><a href=\"https://profiles.wordpress.org/jorbin/\">Aaron Jorbin</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/afragen/\">Andy Fragen</a>, <a href=\"https://profiles.wordpress.org/vanyukov/\">Anton Vanyukov</a>, <a href=\"https://profiles.wordpress.org/vortfu/\">Ben Bidner</a>, <a href=\"https://profiles.wordpress.org/bulletdigital/\">bulletdigital</a>, <a href=\"https://profiles.wordpress.org/davidbinda/\">David Binovec</a>, <a href=\"https://profiles.wordpress.org/dd32/\">Dion Hulse</a>, <a href=\"https://profiles.wordpress.org/flixos90/\">Felix Arntz</a>, <a href=\"https://profiles.wordpress.org/garrett-eclipse/\">Garrett Hyder</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/whyisjake/\">Jake Spurlock</a>, <a href=\"https://profiles.wordpress.org/audrasjb/\">Jb Audras</a>, <a href=\"https://profiles.wordpress.org/jeremyfelt/\">Jeremy Felt</a>, <a href=\"https://profiles.wordpress.org/j-falk/\">Johan Falk</a>, <a href=\"https://profiles.wordpress.org/desrosj/\">Jonathan Desrosiers</a>, <a href=\"https://profiles.wordpress.org/lukecarbis/\">Luke Carbis</a>, <a href=\"https://profiles.wordpress.org/mikeschroder/\">Mike Schroder</a>, <a href=\"https://profiles.wordpress.org/dimadin/\">Milan Dinić</a>, <a href=\"https://profiles.wordpress.org/mukesh27/\">Mukesh Panchal</a>, <a href=\"https://profiles.wordpress.org/pbiron/\">Paul Biron</a>, <a href=\"https://profiles.wordpress.org/peterwilsoncc/\">Peter Wilson</a>, <a href=\"https://profiles.wordpress.org/sergeybiryukov/\">Sergey Biryukov</a>, and <a href=\"https://profiles.wordpress.org/westonruter/\">Weston Ruter</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, 12 Mar 2019 03:34:22 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Luke Carbis\";s: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:90:\"WPTavern: WordPress Explores Proposal for New Block Directory to Host Single Block 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=87864\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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-explores-proposal-for-new-block-directory-to-host-single-block-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:5749:\"<p>WordPress core contributor Alex Shiels has published a <a href=\"https://make.wordpress.org/meta/2019/03/08/the-block-directory-and-a-new-type-of-plugin\" rel=\"noopener\" target=\"_blank\">proposal for a WordPress.org block directory</a> that would host JavaScript-based, single block plugins. The directory would make blocks searchable and installable from within the Gutenberg editor. Building a directory for discovering blocks and seamlessly installing them is one of the <a href=\"https://make.wordpress.org/core/2018/12/08/9-priorities-for-2019/\" rel=\"noopener\" target=\"_blank\">nine projects</a> that Matt Mullenweg identified as a priority for 2019.</p>\n<p>Block collections have become one of the most popular ways for distributing a group of related blocks but this method can cause bloat. Users currently cannot search for individual blocks by name and plugin names and descriptions are not always a good indication of what the blocks do.</p>\n<p>Shiels proposed the new directory be limited to single block plugins, frontend JavaScript blocks with no UI outside of the editor. It would be a separate section inside the Plugins Directory, optimized for users to find blocks by name and description. Developers would be required to use a block.json file with metadata as outlined in the <a href=\"https://github.com/WordPress/gutenberg/blob/288853cc57436b0eda17a82f6a58b77e21d5c7ba/docs/rfc/block-registration.md\" rel=\"noopener\" target=\"_blank\">Block Registration RFC</a>, which provides a technical specification for block type registration.</p>\n<p>The most controversial part of the proposal is having blocks installable from within the Gutenberg editor. The long term goal is to make that process as seamless as possible. Block collections and blocks that do not meet the requirements of the single block directory would still be available via the normal plugin installation process. This could be confusing for users who do not know that blocks can be found in two separate directories.</p>\n<p>“The Gutenberg editor should NOT be a plugin installation source,” Matt Cromwell commented on the proposal. “That just seems ripe for scope-creep. That’s not its purpose or function. Let it be an editor, layout builder, content manager, etc. Moving into searching an external library and installing plugins is the definition of losing site of the purpose of a ‘product.\'”</p>\n<p>Cromwell suggested a centralized block manager as an alternative that would offer a better experience for searching and installing blocks. He also echoed other participants’ opinions on the importance of including dynamic blocks in the directory, instead of limiting it to “JavaScript only” blocks.</p>\n<p>“A centralized Block Manager like has already been suggested is a far better user-experience for searching and installing blocks than doing that in the Gutenberg editor. I like the idea of single-block plugins being the only option in the Directory. But make sure Dynamic Blocks that depend on other existing plugins or outside functionality are able to be added to that very important Directory as well. I really don’t see a benefit to limiting this Directory so much.”</p>\n<p>WordPress developer Jamie Schmid also expressed hesitation about pursuing a solution that puts block installation inside the editor, as it may discourage users from thinking about their block usage across the entire site.</p>\n<p>“I am not convinced that making blocks searchable and installable from within the editor is the best solution,” Schmid said. “This, along with page level block controls and style overrides, is encouraging a very short-sighted, page-level solution to an issue that is very likely a global site (or content or even business) issue. I’d love to instead see a central view for all installed blocks – similar to how plugins are, but more organized by type/function/etc and with a visual alongside. This will encourage making decisions at the site level, encouraging some bigger-picture reflection. And same to being able to apply access controls to the installation of new blocks.”</p>\n<p>The proposal would place the single block plugin search interface inside the block inserter in the Gutenberg editor. This would enable users to quickly search for and install a block if they don’t see one they need among the existing blocks.</p>\n<a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2019/03/inserter-with-search-results-from-block-dir.jpg?ssl=1\"><img /></a>A mockup of what inline block installation might look like\n<p>Riad Benguella, Gutenberg’s technical lead for phase 2, encouraged participants in the discussion to think about blocks as pieces of content that do not rely on the post editor but can be configured anywhere inside WordPress.</p>\n<p>“It is important to think of blocks as its own unit that have a meaning on its own, and that can be used in different contexts,” Benguella said. “A block is a piece of content (static or dynamic) that can be configured and rendered anywhere.” This includes blocks found both inside and outside post_content, content in a full site editor, inside the WordPress admin, a headless application, or even another CMS.</p>\n<p>“We should be ambitious and think about all these contexts (the final picture), but at the same time we should be pragmatic and iterate to achieve this goal,” Benguella said.</p>\n<p>The discussion regarding the new block directory and block plugin architecture continues across WordPress contributor teams. Shiels said the proposal was meant as a starting place and contributors are still in the preliminary stage of exploring ideas. </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, 12 Mar 2019 01:32: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: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:107:\"BuddyPress: Join the Worldwide BuddyPress table during the first Contributor Day of the 11th WordCamp Paris\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=303465\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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/2019/03/wordcamp-paris-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:3364:\"<p>To start a new decade of WordCamps in Paris (France), the Parisian organizing team has scheduled their first Contributor Day on <strong>April 24th, 2019</strong>.</p>\n\n\n\n<div class=\"wp-block-image\"><a href=\"https://2019.paris.wordcamp.org/contributor-day/\" target=\"_blank\" rel=\"noreferrer noopener\"><img src=\"https://buddypress.org/wp-content/uploads/1/2019/03/i-contribute.png\" alt=\"The « I contribute » badge\" class=\"wp-image-303467\" /></a>The « I contribute » badge</div>\n\n\n\n<span id=\"more-303465\"></span>\n\n\n\n<p>As a member of this team, I‘m very excited and as one of the BuddyPress core developers <strong>I’m very proud to announce I will run a BuddyPress contributor table</strong> !</p>\n\n\n\n<p>The WordCamp Paris Contributor Day will start at <a rel=\"noreferrer noopener\" target=\"_blank\" href=\"https://www.timeanddate.com/worldclock/fixedtime.html?iso=20190424T0800\">8:00am UTC</a> and will end at <a rel=\"noreferrer noopener\" target=\"_blank\" href=\"https://www.timeanddate.com/worldclock/fixedtime.html?iso=20190424T1600\">4:00pm UTC</a>.</p>\n\n\n\n<p><strong>If you’re in Paris on April 24th</strong> : you can <a rel=\"noreferrer noopener\" href=\"https://2019.paris.wordcamp.org/billetterie/?tix_reservation_id=public&tix_reservation_token=Di6KA7Xyi8Zp8Iv9#solo-jdc\" target=\"_blank\">get your free ticket</a> to have a sit at our table. We’ll work on resolving issues, testing patches, improving the documentation and the french translation and why not on enhancements we can imagine using the <em>BuddyPress REST API</em> (It’s arriving in BuddyPress 5.0.0 !).</p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<blockquote class=\"wp-block-quote is-style-default\"><p>BuddyPress is created by a worldwide network of friendly folks</p><cite><a href=\"https://buddypress.trac.wordpress.org/changeset/6558\" target=\"_blank\" rel=\"noreferrer noopener\">John James Jacoby</a></cite></blockquote>\n\n\n\n<p>Then I thought what about trying to extend our BuddyPress table to a <a rel=\"noreferrer noopener\" target=\"_blank\" href=\"https://wordpress.slack.com/archives/C02RQBYUG/p1552040854025500\">Worldwide BuddyPress Contributor Time</a> ? <a href=\"https://buddypress.org/members/boonebgorges/\">@boonebgorges</a> & <a href=\"https://buddypress.org/members/johnjamesjacoby/\">@johnjamesjacoby</a> will try to be around in our <a rel=\"noreferrer noopener\" href=\"https://wordpress.slack.com/messages/BuddyPress/\" target=\"_blank\">Slack channel</a> to help us, to review the code and commit our changes.</p>\n\n\n\n<p><strong>If you’re not in Paris on April 24th</strong> : you can participate from where you are, you simply need to hang around into our <a rel=\"noreferrer noopener\" href=\"https://wordpress.slack.com/messages/BuddyPress/\" target=\"_blank\">#BuddyPress</a> Slack channel. If you’re not familiar with Slack, please read this <a rel=\"noreferrer noopener\" target=\"_blank\" href=\"https://make.wordpress.org/chat/\">short documentation</a> about it.</p>\n\n\n\n<p>Let’s <a href=\"https://codex.buddypress.org/participate-and-contribute/\">contribute</a> to BuddyPress together <img src=\"https://s.w.org/images/core/emoji/11.2.0/72x72/2665.png\" alt=\"♥\" class=\"wp-smiley\" /></p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<p>Il existe une <a href=\"https://fr.buddypress.org/2019/03/12/journee-contribution-du-wordcamp-paris/\">version française de cet article</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, 12 Mar 2019 01:10: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:5:\"imath\";s: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:34:\"Matt: A Meditation on the Open Web\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:22:\"https://ma.tt/?p=49220\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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://ma.tt/2019/03/a-meditation-on-the-open-web/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:45:\"<div class=\"wp-block-embed__wrapper\">\n\n</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, 08 Mar 2019 23:28:54 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:40:\"HeroPress: How WordPress Changed My Life\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=2703\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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://heropress.com/essays/how-wordpress-changed-my-life/#utm_source=rss&utm_medium=rss&utm_campaign=how-wordpress-changed-my-life\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:35846:\"<img width=\"960\" height=\"480\" src=\"https://s20094.pcdn.co/wp-content/uploads/2020/03/030619-min-1024x512.jpg\" class=\"attachment-large size-large wp-post-image\" alt=\"Pull Quote: Without the WordPress community, I would not have learned to be ok with failure that’s free of judgment.\" /><p><a href=\"https://heropress.com/feed/#arabic\">هذا المقال متاح باللغة العربية</a></p>\n<p>I’m about to get real! Vulnerable! Transparent! & guess what…I don’t give a fuck! So buckle up boys…you’re about to go for a ride!</p>\n<h3>Escape</h3>\n<p>June 2014 when I decided to leave my life I’ve lived with my husband for thirteen years, left everything behind. My community I always knew, my friends, my way of life, I just dropped everything!</p>\n<p>The only thing I took with me was my idea box and my two kids to started our new life in Chandler Arizona. When I moved, I lived with my mom till I figured it out. At the time I was in school for my Computer Science degree at Austin Peay State University. I figured I have only one year, so why not finish, get a good paying job and my mom was ok with us living in her house. It was difficult and the most challenging experiences as my mom had her own health challenge and having her newly divorced 29 year old daughter with two kids in her house was not easy for her. I was so broken. I was broken spiritually. I was broken mentally and this affected my overall physical health. And still had to find the strength to be strong in front of my kids. I did not have a job. I had never worked a day in my life as my husband did not allow it.</p>\n<blockquote><p>So here I was, 29 years old, two kids, divorced, no degree, no work experience…yet I had to find a way to not only support myself but my kids as well.</p></blockquote>\n<p>While living with my mom, the atmosphere got a little tense. As I mentioned above, my mom went through a lot, she had her own struggles, her own journey, and I happened to be a part of her narrative. With the loss of the man she loved so dearly, and her health declining, she as well had her own capacity of what she can handle, and having me in the house with the kids was getting burdensome. I tried to do my part with buying food in bulk as there was nine of us in a five bedroom house. But sometimes, my idea of “doing my part” does not match the other, and issues may arise.</p>\n<p>One day my mom approached me with the Cox internet bill and asked me to pay for it. Honestly, I probably could have afford the bill under $100.00 dollars, but the inconsistent deposit of child support from my ex at that time, I was not able to commit to paying for anything. That is why I would buy food from Costco in bulk, etc. But, that was the turning point for my mom to pull the plug and say,</p>\n<p>“I don’t want you in my house anymore.”</p>\n<p>So the plan to finish school within a year went out the door!</p>\n<p>I came home one day I and found my stuff in a baskets in front of the garage. I reversed the car from my moms driveway and went in search of an apartment I could afford. At the time, my ex was depositing a total of $1,000 dollars in the joint account for our kids. I had to find an apartment that was under $1,000 dollars plus cover the cost of gas and food. To my surprise I found an apartment called CrossWinds Apartments for $550 a month on Arizona Ave and Pecos rd.</p>\n<h3>Restarting</h3>\n<p>On Aug. 2014 I moved in my first apartment with my two kids.</p>\n<p>So here I was 29 years old, no job yet, the idea of finishing school went out the door, and I have to find a way to make it.</p>\n<p>Breath…just breath…(sometimes breathing doesn’t work. I mean…I feel like I was gasping for air in order to breath!)</p>\n<blockquote><p>My kids where very sad. I was confused. I had no idea what to do and where to go and I needed a job.</p></blockquote>\n<p>After reaching out my friend, <a href=\"https://www.facebook.com/DeedraNotion/\"><i>Deedra Hill Abboud</i></a> who helped me with revamping my resume based on past experiences, I started applying to every job I could find. And just a side note, <a href=\"https://www.facebook.com/DeedraNotion/\"><i>Deedra Hill Abboud</i></a> not only helped with my resume which I was clueless on how to put together, but also helped me with my mindset, reminded me to be grateful even though I felt so defeated, and I was at my lowest point in my life. But, I had no luck with my job hunt and I was ready to settle for anything! I was hired as a nanny on Aug 29, 2014. I moved that month into a new apartment, never lived on my own before, never payed for bills (like what the fuck are those yo), and was able to find a job by the end of the month that payed me $300.00 a week. I was so happy. Like you have noooo idea! I was so happy.</p>\n<p>My family visited sporadically. But, on October 2014, my sister Eman, who’s known for <a href=\"https://www.instagram.com/emanbfendi/?hl=en\"><i>Eman B. Fendi</i></a>, came over to visit. I had no couch, no bed, no furniture for a while. We had a long conversation about life, and everything in between. During the conversation, I pulled out my idea box and shared with her a card game I had created when I used to tutor Muslim kids back in Clarksville TN. She informed me about <a href=\"https://www.score.org/?gclid=EAIaIQobChMIjOW5lofO4AIV0iCtBh2LHAhAEAAYASAAEgLaFPD_BwE\"><i>Score</i></a><i>,</i> a non-profit organization that provides free business mentorship all over the USA. She said, “reach out to them. They will help you with your idea.”</p>\n<h3>First Steps</h3>\n<p>I’m like…OMG! I was soooo excited! I went to <a href=\"https://peixotocoffee.com/\"><i>Peixoto</i></a> coffee in Chandler AZ…for internet…I could not afford internet at the time. I checked out <a href=\"https://www.score.org/?gclid=EAIaIQobChMIjOW5lofO4AIV0iCtBh2LHAhAEAAYASAAEgLaFPD_BwE\"><i>Score</i></a> website and they had an event I attended on November 2014. I was so nervous and so scared. As I did not know what to really do with my idea. All I know is I had an idea, I was passionate about it, and had the drive to do something about it! The event host asked everyone in the room to stand up and introduce themselves. Everyone had their fancy title and so much amazing experience to represent themselves, and here I am trying to make something out of myself I have never done before. In all my insecurities, self doubt, and internal contradictions, my intro goes as follows…</p>\n<p>“Hi! My name is Amena Mabrouk and I have a card game idea that helps kids learn the name and position of Salah(prayer). I am here because I have no idea what to do with my idea.”</p>\n<p>After the session was over a man walked towards me by the name of <a href=\"https://www.linkedin.com/in/douglaswhitneyarizona/\"><i>Doug Whitney</i></a>. He was a certified <a href=\"https://www.score.org/?gclid=EAIaIQobChMIjOW5lofO4AIV0iCtBh2LHAhAEAAYASAAEgLaFPD_BwE\"><i>Score</i></a> mentor helping clients who want to start or grow their businesses. He approached me and said,</p>\n<p>“Hi! My name is <a href=\"https://www.linkedin.com/in/douglaswhitneyarizona/\"><i>Doug Whitney</i></a>. I think I can help you with your idea. Here’s my business card.”</p>\n<p>WOW! I was thrilled! I booked an appointment with him that day and I continued to meet with my business mentor weekly for two years. The journey was lonely. As I was so focused on work, my kids, and my idea, I started to miss being apart of a community.</p>\n<blockquote><p>During the two years I was meeting with my business mentor, <a href=\"https://www.linkedin.com/in/douglaswhitneyarizona/\"><i>Whitney</i></a> said to me, “You need to start building a website. I recommend you start building your website on WordPress.”</p></blockquote>\n<p>“I’m like, WordPress. Ok! I will start tonight. Like what is it? I press words? “</p>\n<p>Ha…ha…Just kidding! I figured you lasted this long reading my blog, we’re practically related at this point….might as well add a little humor…lol</p>\n<p>So please continue on…</p>\n<h3>WordPress</h3>\n<p>So I went to <a href=\"https://peixotocoffee.com/\"><i>Peixoto</i></a> coffee, opened my computer, went to <a href=\"https://wordpress.org/\"><i>wordpress.org</i></a>, created an account and started to build my website. This was my first time building a website. I googled everything and lots of youtube videos. And man, I got stuck. I was frustrated. I was so disappointed especially when you see all the pretty websites out-there, I was a little discouraged to continue. In the process of trying to figure out this <i>WordPress</i> thing, I also learned about co-working spaces which I became obsessed with!</p>\n<p>Did you know there all over the valley! OMG!</p>\n<p>I found out about one near my home called <a href=\"https://gangplankhq.com/chandler/\"><i>GangPlank </i></a>in Chandler Arizona. I started working out of GangPlank and fell in love with the community there. This was the first time in two years to finally feel a sense of community after my divorce. I worked there consistently and an amazing woman by the name of <a href=\"https://www.facebook.com/annewatson.barber.9?__tn__=C-R&eid=ARDgx1bJAP6i7lOBAplL8Wzf3ktNKZrCGQiOP563d9GQzUAhUw-BDwvKH2tmQu7ZYvZO8mllj_-GSsTw&hc_ref=ARTqRfmleXnPPIEZjIvgFRjGV_b6g1HAolr8x1djPRbY-o2CxGcichNRB19TTOGEzIU&fref=nf&__xts__%5B0%5D=68.ARD66y89DBaB1hqI3FpzMqP-zIFIUw-dS1ZwT3OL2qB6-YVgZqEmiGfsyIgh0KA2-AhWIm3qo81qbiXJxOpQLciMX200P0_Q5geFvyHml7MFg8jxJkz8uOalO0lVRNS7-Ll4PwdBI7bKG5AeySV57vPv9letQrbH_bQPgBl0XRt06iFz97T1QQUo8lwhIv06cSbdoAq9LyA8CxLNrYTDZmZIVD9S8vodbLHNcti65yUK76SmDaf-q6SDsR7gW9HD-MoJwe-dV5GJCr5FQ6exvu5hsy9r7Scd\"><i>Anne Watson Barber. </i></a>During our conversation, I informed her about my dilemma with my WordPress website. She automatically, without hesitation, offered to help me without any question. I was so so excited! Thrilled! You have no idea!</p>\n<p>I consistently met up with <a href=\"https://www.facebook.com/annewatson.barber.9?__tn__=C-R&eid=ARDgx1bJAP6i7lOBAplL8Wzf3ktNKZrCGQiOP563d9GQzUAhUw-BDwvKH2tmQu7ZYvZO8mllj_-GSsTw&hc_ref=ARTqRfmleXnPPIEZjIvgFRjGV_b6g1HAolr8x1djPRbY-o2CxGcichNRB19TTOGEzIU&fref=nf&__xts__%5B0%5D=68.ARD66y89DBaB1hqI3FpzMqP-zIFIUw-dS1ZwT3OL2qB6-YVgZqEmiGfsyIgh0KA2-AhWIm3qo81qbiXJxOpQLciMX200P0_Q5geFvyHml7MFg8jxJkz8uOalO0lVRNS7-Ll4PwdBI7bKG5AeySV57vPv9letQrbH_bQPgBl0XRt06iFz97T1QQUo8lwhIv06cSbdoAq9LyA8CxLNrYTDZmZIVD9S8vodbLHNcti65yUK76SmDaf-q6SDsR7gW9HD-MoJwe-dV5GJCr5FQ6exvu5hsy9r7Scd\"><i>Anne Watson Barber</i></a> at <a href=\"https://gangplankhq.com/chandler/\"><i>GangPlank</i></a> for a while. In all honesty, without this WordPress thing, I would have never looked for a place where people work out of, which led me to meeting <a href=\"https://www.facebook.com/annewatson.barber.9?__tn__=C-R&eid=ARDgx1bJAP6i7lOBAplL8Wzf3ktNKZrCGQiOP563d9GQzUAhUw-BDwvKH2tmQu7ZYvZO8mllj_-GSsTw&hc_ref=ARTqRfmleXnPPIEZjIvgFRjGV_b6g1HAolr8x1djPRbY-o2CxGcichNRB19TTOGEzIU&fref=nf&__xts__%5B0%5D=68.ARD66y89DBaB1hqI3FpzMqP-zIFIUw-dS1ZwT3OL2qB6-YVgZqEmiGfsyIgh0KA2-AhWIm3qo81qbiXJxOpQLciMX200P0_Q5geFvyHml7MFg8jxJkz8uOalO0lVRNS7-Ll4PwdBI7bKG5AeySV57vPv9letQrbH_bQPgBl0XRt06iFz97T1QQUo8lwhIv06cSbdoAq9LyA8CxLNrYTDZmZIVD9S8vodbLHNcti65yUK76SmDaf-q6SDsR7gW9HD-MoJwe-dV5GJCr5FQ6exvu5hsy9r7Scd\"><i>Anne Watson Barber</i></a> and many other amazing people. But that was the beginning. As not only did I get a sense of community I was missing in my life at <a href=\"https://gangplankhq.com/chandler/\"><i>GangPlank</i></a>, I was making legit friends who selflessly are willing to help out no matter what! WOW!</p>\n<p>Can we just stop for a moment and talk about it!</p>\n<p>Throughout our meetings my friend Anne informed me about <a href=\"https://www.meetup.com/Arizona-WordPress-Group/\"><i>Meetup</i></a> groups for WordPress.</p>\n<p>I started to google <a href=\"https://www.meetup.com/Arizona-WordPress-Group/\"><i>Meetup</i></a> groups around the valley for WordPress. I went to all of them! Some WordPress <a href=\"https://www.meetup.com/Arizona-WordPress-Group/\"><i>Meetup</i></a> where one hour and thirty minutes way! I loved every bit of it! Disclaimer, most of it was over my head, but I still went, made new friends, and continued building my WordPress website.</p>\n<p>How WordPress Changed My Life, well the story speaks for itself. Choosing to build my site on WordPress was the catalyst from the beginning that opened many doors I was not aware of. I continued to build my site for a few years, and then moved on to a different venture.</p>\n<blockquote><p>But, without WordPress which lead to the WordPress community, I would not have learned how to build an online presence, to fearlessly ask questions when I’m stuck, to be around people who are willing selflessly help out, even-though I needed the information repeated over and over again for me to understand it.</p></blockquote>\n<p>Without the WordPress community, I would not have learned to be ok with failure that’s free of judgment, as we are all trying to make it. Without the WordPress community, I would not have learned to be ok with the idea of shared information – because your success is my success. Without the WordPress community, I would not have learned how to be tolerant when feeling defeated and to continue with the little courage I had to figuring it out. It really did change my life.</p>\n<p><i>After venturing off with other things</i>, the universe has it’s way of reminding me of where I belong. I was informed about volunteering at <a href=\"https://2019.phoenix.wordcamp.org/\"><i>WordCamp Phoenix 2019</i></a> by a good friend, <a href=\"https://www.instagram.com/justinnealey/\"><i>Justin Nealey</i></a> at <a href=\"https://www.godaddy.com/\"><i>GoDaddy</i></a>. So I used my volunteer and sick time to take off from work to be apart of the event. I was blown away! I never knew what WordPress really meant to its people. I did not understand the heart of the WordPress project, and how important it is in the way it impacts the community. When I started with WordPress, it was about building my website for my startup business. But this time, I had a glimpse of it’s magnitude in the world and I am so thrilled to be apart of it on a whole new level!</p>\n<p>During my time at <a href=\"https://2019.phoenix.wordcamp.org/\"><i>WordCamp Phoenix 2019</i></a> , I meet amazing people and had the time of my life! This event lead to the opportunity to take photos/video during Contributor Day + Organizing WordPress Panels at <a href=\"https://www.galvanize.com/campuses/phoenix\"><i>Galvanize Phoenix</i></a>. This further opened doors to meeting <a href=\"https://twitter.com/topher1kenobe?ref_src=twsrc%5Egoogle%7Ctwcamp%5Eserp%7Ctwgr%5Eauthor\"><i>Topher DeRosia</i></a> who approached me and inspired me to write this essay for his website called <a href=\"https://heropress.com/\"><i>HeroPress</i></a>; to meeting <a href=\"https://twitter.com/wpmodder\"><i>Adam Warner</i></a> | Field Marketing Manager for <a href=\"https://www.godaddy.com/pro\"><i>GoDaddy Pro</i></a>; to the amazing conversation with <a href=\"https://twitter.com/aaroncampbell\"><i>Aaron Campbell</i></a> |WordPress Core/Ecosystem; and so many amazing humans who came into my life because of it!</p>\n<p>Currently, I work at <a href=\"https://www.godaddy.com/\"><i>GoDaddy</i></a> Hosting Support. I love my job and I’m making a comeback into my <a href=\"https://www.meetup.com/Arizona-WordPress-Group/\"><i>WordPress community</i></a> here in the valley. I am working closely with <a href=\"https://www.linkedin.com/in/matt-clancy-a46274122/\"><i>Matthew Clancy</i></a> to record and edit the <a href=\"https://www.meetup.com/Arizona-WordPress-Group/\">Advanced <i>WordPress Developer Meetup</i> </a>and other upcoming events as well. I am so excited for the future!</p>\n<p>Oh, and in case you’re wondering about my Salah(Prayer) card idea…that’s another blog post, another joy ride boys! In the meantime, let’s be friends! Let’s connect! Twitter @AmenaMabrouk</p>\n<p> </p>\n<p> </p>\n<h1 id=\"arabic\">كيف غير وورد بريس حياتي</h1>\n<p>أنا على وشك أن اصبح صادقة! و قوية و صريحة ! هل تعلم… انا لا اكترث نهائيا! .. أنتم على وشك الذهاب فى نزهه! فى يونيو 2014 عندما قررت أن أترك حياتي التى عشتها مع زوجي لمدة ثلاثة عشر عاما ، تركت كل شيء خلفى. مجتمعي ألذى عرفته ،أصدقائي ، طريقه معيشتى، فقد تركت كل شيء! الشيء الوحيد الذي أخذته معي كان صندوق أفكارى وأطفالي الاثنين لكى نبدأ حياتنا الجديدة في تشاندلر أريزونا. عندما انتقلت ، عشت مع أمي حتى أكتشفت الأمر. ويوم ان كنت في المدرسة لكى أحصل على درجتى العلميه فى علوم الكمبيوتر في جامعة أوستن بيي ستيت. كان لدى سنة واحدة فقط لانهى دراستى، فلماذا لا انهيها ، وأحصل على وظيفة جيدة الأجر ، وكانت أمي طيبه معنا في منزلها. كان ذلك صعبا ومن اكثر التجارب تحدياً …فقد كانت أمي تواجه تحديهاالخاص من الناحيه الصحيه ، ولديها ابنتها المطلقة حديثا والبالغه من العمر 29 عاما مع طفلين في منزلها لم يكن ذلك سهلا بالنسبه البها. كنت محطمه بشكل كبير . فقد تحطمت روحيا وعقليًا وأثر ذلك على حالتى الصحيه بشكل عام. وكان يجب ان أكون قويه أمام أطفالي. ولم أكن أعمل. فلم أعمل ابدا ولم يسمح زوجي بذلك. ﻟذا ، والان ، انا ابلغ 29 ﻋﺎﻣﺎً ، وأم لطفلين ومطلقه وليست لدى درجه علميه ولا خبره مهنيه ورغما عن كل ذلك كان يتوجب على ان ابحث عن وسيله ليس فقط لاعاله نفسى و لكن لاعاله أطفالى أيضا ً. أثناء الاقامه مع والدتى ، أصبحت الحياه متوترةً شيئا ما . فكما ذكرت ، فقد مرت أمي بالكثير ، ولديها صراعاتها ورحلتها الخاصة ، وقد أصبحت انا جزءا من قصتها. ومع خسارتها بفقدان الرجل الذي أحبته كثيرا ، وصحتها المتدهوره، فهى أيضا لها قدراتها الخاصة على تحمل ما تتعامل معه ، وأصبح وجودى في المنزل مع اطفالى عبئا ثقيلا بالنسبه اليها. وقد حاولت أن أقوم بدوري بشراء الطعام بكميات كبيرة فقد كنا تسعة أشخاص في منزل مكون من خمس غرف نوم. لكن أحيانا ، لا تتطابق مع وجهه نظرى عن “القيام بدوري” مع الأخرىن ، وأحيانا تحدث بعض المشكلات. ففي أحد الأيام اتصلت والدتى وطلبت منى دفع فاتوره الإنترنت . بصراحة ، قد استطيع دفع فاتورة أقل من 100.00 دولار ، ولكن النفقه الغير عادله لاطفالى من طليقى في ذلك الوقت ، لم تمكننى من الالتزام بدفع أي شيء. وذلك هو السبب في أنني أشتري الطعام من كوستكو بكميات كبيرة ، وهكذا. ولكن ، كانت تلك نقطة التحول بالنسبة لأمي فقد قالت لى ، “أنا لا أريدك في منزلى بعد الآن”. لذا فإن خطتى لإنهاء المدرسة في عام واحد اختفت ! وعدت إلى المنزل في يوم ما لاجد أغراضي قد وضعت في سلات أمام الجراج. فغيرت اتجاه السيارة وذهبت في البحث عن شقة أستطيع تحمل نفقتها. في ذلك الوقت ، كان زوجى السابق يودع 1000 دولار في الحساب المشترك لأطفالنا. كان علي أن أجد شقة أقل من 1000 دولار بالإضافة إلى تغطية تكلفة البنزين والطعام . ولدهشتي وجدت شقة تسمى شقق كروس ويندز مقابل 550 دولار شهريا فى أريزونا افي وبيكوس . في أغسطس 2014 ، انتقلت للعيش فى شقتى الأولى مع أطفالى. كنت في التاسعة والعشرين من عمري ، ولم يكن لدى وظيفة بعد ، وتلاشت فكرة إلانتهاء من المدرسة ، ولا بد لي من إيجاد طريقة للتغلب على ظروفى . اتنفس … فقط اتنفس … (فاحيانا لا أستطيع. أعني … أشعر وكأنني كنت أبحث عن الهواء حتى اتنفس!) وكان أطفالي فى حاله حزن شديده. وكنت مشوشه. لم يكن عندى أدنى فكرة عما يجب أن أفعله وأين أذهب فأنا أحتاج إلى وظيفة. بعد أن وصلت إلى صديقتي ، ديدرا هيل ابود التى ساعدتني في ان اجدد السيرة الذاتية الخاصه بى بناءا على خبراتى السابقة ، بدأت أتقدم بطلب لكل وظيفة أعثر عليها. وكملاحظة جانبية ، فإن ديدرا هيل ابود لم تساعدنى في عمل سيرتي الذاتية والتى لم أكن أعرف طريقه تنظيمها فقط ، ولكن أيضا ساعدتني في طريقه تفكيري ، وذكّرتني بأن أكون شاكره حتى مع شعوري بالهزيمه ، وقد كنت في أدنى نقطة من مراحل حياتي. ولكن ، لم أكن محظوظه في البحث عن عمل ، وكنت على استعدادأن أقبل بأى شىء! ولكن في أكتوبر 2014 ، جاءت شقيقتي إيمان ، التي كانت شهرتها إيمان بى فندي ، لزيارتى. لم يكن لدي مقعد ، ولا سرير ، ولا أثاث لفتره. وتحدثنا طويلا عن الحياة ، وكل شيء بيننا. خلال المحادثة ، حدثتها عن فكرتي وشاركت معها لعبة بطاقة ابتدعتها عندما كنت أعلم الأطفال المسلمين مرة أخرى في كلاركسفيل تينيسي. وفى 29 أغسطس 2014 تم تعيينى كمربية. وانتقلت في ذلك الشهر إلى شقة جديدة ، لم أحيا أبدا فى شقه خاصه بى من قبل ، ولم أقم بدفع أيه فواتير (كما يفعل الاخرون ) ، وأستطعت العثور على وظيفة فى نهاية الشهر وكان راتبها 300.00 دولار في الأسبوع. وكنت سعيدة جدا بدرجه لا يمكن أن تتخيلوها. كنت سعيدة جدا. وكانت عائلتي تزورنى فى اوقات متفرقه. أخبرتني عن “سكور” ، وهي منظمة غير ربحية تقوم بتقديم إرشادًات مهنيه مجانيًة في جميع أنحاء الولايات المتحدة الأمريكية. قالت ، “تواصلى معهم. سيقومون بمساعدتك في فكرتك. و انا “يا اللهي!” فقد كنت متحمسة للغايه! ذهبت إلى مفهى بيكسوتو في تشاندلر أيه زى … للولوج الى الإنترنت … فلم أكن أستطيع تحمل تكلفة الإنترنت في ذلك الوقت. وتفقدت موقع سكور على الإنترنت وكان لديهم حدث قمت بحضوره في نوفمبر 2014. كنت متوترة وخائفه جدًا. لاننى لم أكن أعرف ماذا أفعل بفكرتي. كل ما أعرفه هو أن لدي فكرة ، وكنت متحمسة لها ، ولدى الدافع لعمل أى شيء لتلك الفكره! طلب مضيف الحدث من جميع الحضور الوقوف وتقديم أنفسهم. الجميع كان لهم لقب ممتاز وتجربة رائعة جدا لتقديم أنفسهم ، وعندئذ حاولت ان اقدم شيئا عن نفسى لم اقم به من قبل. بكل ما لدى من عدم الاحساس بالامان ، وعدم الثقة بالنفس ، والتناقضات الداخلية ، وقمت بتقديم نفسى كالتالى … “مرحبا! اسمي أمينة مبروك ولدي فكرة لعبة بطاقة تساعد الأطفال على ان يتعلموا اسم ومكان (الصلاة). أننى هنا لأنني لا أعرف ماأفعله بفكرتي “. بعد الجلسة ، كان هناك رجل يتجه نحوي يسمى” دوج ويتني “. وهو معلمًا معتمدًا في سكور ، وهو يساعد العملاء الراغبون في البدء فى أعمالهم أو تنمية أعمالهم. اقترب مني قائلا: “مرحبا! أنا اسمي دوج ويتني. أظن أنني أستطيع أن أساعدك في فكرتك.هذا هو الكارت المهنى الخاص بى . وااو ! فقد شعرت بسعادة كبيره! وقمت بحجز موعدًا معه في ذلك اليوم ، واستمريت فى مقابلة المشرف المهنى الخاص بى اسبوعيا و لمدة عامين. كنت أشعر بالوحدة فى رحلتى . فقد كنت أركز على العمل ، أطفالي وفكرتي ، بدأت أفتقد كونى جزء من المجتمع. خلال السنتين اللتين كنت التقى فيهما مع المشرف المهنى ، قال لي ويتني: “يجب عليكى ان تبدأى في بناء موقع إلكتروني. أنصحك بإنشاء موقع الويب الخاص بك على وورد بريس . ” أنى أحب وورد بريس . حسنا! سأبدأ الليلة. و انا كمن يقول “ما هذا؟ اقوم بالضغط علي الكلمات؟” ها ها اني امزح فحسب! لقد اكتشفت انك استغرقت هذا الوقت في قراءة مدونتي, حيث ترتبط عمليًا في هذه المرحلة … .كما يضفى قليلا من المزاح … أكمل ارجوك … ثم ذهبت إلى قهوة بيكسوتو ، وفتحت جهاز الكمبيوتر الخاص بي ، ثم ولجت إلى wordpress.org ، أنشأت حسابًا وبدأت إنشىء موقع الويب الخاص بي. كانت هذه المرة الأولى التي أنشئ فيها موقعًا على الويب. وبحثت فى جوجل عن كل شيء وكثيرا من الفيديوهات على يوتيوب. اتدري, لقد تعلقت بما ابحث فيه. فقد كنت محبطة. واحسست بخيبة أمل كبيرة وخاصة عندما رأيت المواقع الجميلة هناك ، كنت متردده قليلاً فى الاستمرار. ففي محاولة معرفة هذا الوورد بريس ، تعلمت أيضًا ماهى مساحات العمل المشترك التي صرت مهووسة بها! هل تعلم أنهم هنا في جميع أنحاء المدينه! يا الله ! لقد اكتشفت أن أحدا هنهم قريبا من منزلى جانج بلانك في تشاندلر أريزونا. بدأت العمل من خلال جانج بلانك وأحببت ذلك المجتمع. كانت تلك هي المرة الأولى منذ عامين أشعر بالتواصل الاجتماعى بعد الطلاق. عملت هناك باستمرار وقابلت سيدة رائعه اسمها أن واتسون باربر ومن خلال أحاديثنا ، أخبرتها عن مشكلتى مع موقع الوورد بريس</p>\n<p>وبدون تردد و بتلقائيه عرضت على مساعدتى بدون أى سؤال. كنت متحمسة جدا! ليس لديك فكره عن السعادة الكبيرة التى احسست بها! كنت ألتقي باستمرار مع آن واتسون باربر في جانج بلانك كثيرا. وبأمانة ، بدون الوورد بريس ، ماكنت بحثت عن مكان يعمل فيه الناس معا ، والذى قابلنى بآن واتسون باربر والكثير من الأشخاص الرائعين . لكن ذلك كان البداية. فلم احصل فقط على شعور التواصل الاجتماعى والذي كنت افتقده في حياتي في جانج بلانك ، بل قمت بعمل صداقات مع اشخاص رائعين ممن هم مستعدين لتقديم المساعدة مهما حدث ! هل يمكن ان نتوقف لحظه ونتحدث عن ذلك.! فمن خلال اجتماعاتنا ، أخبرتنى صديقتي “آن” عن مجموعات Meetup في وورد بريس. بدأت أبحث فى جوجل عن مجموعات الميت اب من حولى للوورد بريس. ذهبت الى كل منهم! بعض من WordPress Meetup تكون ساعة وواحد وثلاثون دقيقة ولقد احببت كل هذا ! ولكني استمريت فى تكوين أصدقاء جدد ، واستمريت في بناء موقعي على وورد بريس. كيف غيرت وورد برس حياتي ، تتحدث القصة عن نفسها. فاختيارى لبناء موقعي على وورد بريس كان هو الحافز منذ البداية والذي فتح لى الكثير من الأبواب التي لم أكن على علم بوجودها. واصلت بناء موقعي لسنوات عديده ، ثم انتقلت إلى مشروع آخر. ولكن ، بدون الوورد بريس والذى عرفنى على مجتمع الوورد بريس ، لم أكن لاتعلم كيفية بناء وجود لى على الإنترنت ، لكى أطرح الأسئلة بلا خوف عندما أعجز عن عمل الاشياء ، وأن يكون حولى أشخاص على استعداد للمساعده بلا أنانيه ، وبالرغم من أنى أحتاج إلى تكرار المعلومات كثيرا لكى افهمها.</p>\n<p>فبدون مجتمع الوورد بريس ، لم أكن لاتعلم أن أتقبل الفشل والذى يخلو من من النقد ، حيث أننا جميعا نحاول أن نحقق مانريد. وبدون مجتمع الوورد بريس ، لم أكن لاتعلم فكرة مشاركه المعلومات – حيث أن نجاحك هو نجاحي. بدون مجتمع وورد بريس ، لم أكن لأتحمل ألشعور بالهزيمة وان استمر ولو بقليل من الشجاعة التى امتلكها لتحقيق ما أريد. لقد غير الوورد بريس حياتى حقا. بعد المغامرة بأشياء أخرى ، و للكون طريقتة فى تذكيري بما أنتمي إليه. أبلغت عن التطوع. ففي 15 – 17 من فبراير 2019 ابلغنى صديقى جاستن نيلى بالتطوع فى وورلد كامب فينكس #WCPHX ، في جو دادى. لذا استخدمت تطوعي وأوقات المرض للإبتعاد لاكون جزءا من هذا الحدث. لقد كنت b! لم أكن أعرف أبداً ماذا تعنى الوورد بريس لاصحابها. لم أفهم قلب مشروع الوورد بريس ، ومدى أهميته في طريقة تأثيرة على المجتمع. عندما بدأت مع الوورد بريس ، فقد كان من أجل بناء موقعي على الويب لنشاطي المبدئى. لكن في هذه المرة ، تلقيت نظره خاطفة عن أهميتها في العالم ، وأننى سعيدة بأن أكون جزءا منها على مستوى جديد! وأثناء تواجدى فى وورد كامب فينكس من 15 – 17 فبراير 2019 قابلت اشخاصا رائعين وكان هذا من اسعد اوقات حياتى! وقد اتاح لى هذا الحدث الفرصه لالتقاط الصور والفيديوهات فى يوم المشاركة و تنظيم أجتماعات المناقشة الخاصه بوورد بريس فى جالفانيز فينكس. وفتح ذلك مزيدا من الأبواب لمقابلة توفر دى روسيا الذي اقترح وألهمني أن أكتب هذه المدونة لموقعه الإلكتروني والذي أطلق عليه أسم هيرو بريس ؛ ولمقابلة آدم وارنر مدير التسويق الميداني لـ جو دادى ؛ ولمحادثة رائعة مع آرون كامبل | WordPress Core / Ecosystem؛ والكثير من الاشخاص الرائعين الذين ظهروا فى حياتي بسبب ذلك! والان اناأعمل في جو دادى هوستنج سابورت. فأنا أحب عملي وأقاتل فى مجتمع الوورد بريس هنا في المدينه. إنني أعمل قريبه من ماثيو كلانسي لتسجيل وتحرير برنامج وورد بريس المتقدم وتطوير الاجتماعات وغيرذلك من الأحداث القادمة. أننى متحمسة جدا للمستقبل! ، وأذا ما كنت تتساءل عن فكرتى لبطاقه الصلاة … فهذه مدوّنة أخرى ، و سعادة أخرى. في نفس الوقت ، دعنا نكن أصدقاء! دعنا نتواصل! على تويتر AmenaMabrouk</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: How WordPress Changed My Life\" class=\"rtsocial-twitter-button\" href=\"https://twitter.com/share?text=How%20WordPress%20Changed%20My%20Life&via=heropress&url=https%3A%2F%2Fheropress.com%2Fessays%2Fhow-wordpress-changed-my-life%2F\" rel=\"nofollow\" target=\"_blank\"></a></div></div><div class=\"rtsocial-fb-horizontal fb-light\"><div class=\"rtsocial-fb-horizontal-button\"><a title=\"Like: How WordPress Changed My Life\" class=\"rtsocial-fb-button rtsocial-fb-like-light\" href=\"https://www.facebook.com/sharer.php?u=https%3A%2F%2Fheropress.com%2Fessays%2Fhow-wordpress-changed-my-life%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%2Fhow-wordpress-changed-my-life%2F&title=How+WordPress+Changed+My+Life\" rel=\"nofollow\" target=\"_blank\" title=\"Share: How WordPress Changed My Life\"></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/how-wordpress-changed-my-life/&media=https://heropress.com/wp-content/uploads/2020/03/030619-min-150x150.jpg&description=How WordPress Changed My Life\" rel=\"nofollow\" target=\"_blank\" title=\"Pin: How WordPress Changed My Life\"></a></div></div><a rel=\"nofollow\" class=\"perma-link\" href=\"https://heropress.com/essays/how-wordpress-changed-my-life/\" title=\"How WordPress Changed My Life\"></a></div><p>The post <a rel=\"nofollow\" href=\"https://heropress.com/essays/how-wordpress-changed-my-life/\">How WordPress Changed My Life</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:\"Fri, 08 Mar 2019 01:30:09 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Amena Mabrouk\";s: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:92:\"WPTavern: WPWeekly Episode 348 – RIP Alex, Facebook Moderators, and Shorter Release Cycles\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"https://wptavern.com/?p=87851&preview=true&preview_id=87851\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:97:\"https://wptavern.com/wpweekly-episode-348-rip-alex-facebook-moderators-and-shorter-release-cycles\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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>In this episode, <a href=\"http://jjj.me\">John James Jacoby</a> and I review feedback from last week’s show, share a few more memories of Alex Mills, and discuss an article that describes what it’s like to be a content moderator for Facebook. We also share our opinions on the idea of WordPress having shorter release cycles.</p>\n<h2>Stories Discussed:</h2>\n<p><a href=\"http://www.thedrive.com/news/26723/alex-mills-founder-of-the-infamous-fan-site-that-spread-top-gear-across-the-world-dies-at-34\">The Drive Remembers Alex Mills</a></p>\n<p><a href=\"https://www.theverge.com/2019/2/25/18229714/cognizant-facebook-content-moderator-interviews-trauma-working-conditions-arizona\">The Secret Lives of Facebook Moderators</a></p>\n<p><a href=\"https://jetpack.com/2019/03/05/jetpack-7-1-business-blocks/\">Jetpack 7.1 Released</a></p>\n<p><a href=\"https://pressnomics.com/\">PressNomics 6 Tickets are on sale</a></p>\n<p><a href=\"https://wptavern.com/freemius-patches-severe-vulnerability-in-library-used-by-popular-wordpress-plugins\">Freemius Patches Severe Vulnerability in Library Used by Popular WordPress Plugins</a></p>\n<p><a href=\"https://wptavern.com/wordpress-contributors-propose-shorter-time-based-release-cycles\">WordPress Contributors Propose Shorter, Time-based Release Cycles</a></p>\n<p><a href=\"https://ericwbailey.design/writing/2019-03-05-fighting-uphill.html\">Fighting uphill</a></p>\n<h2>WPWeekly Meta:</h2>\n<p><strong>Next Episode:</strong> Wednesday, March 13th 3:00 P.M. Eastern</p>\n<p>Subscribe to <a href=\"https://itunes.apple.com/us/podcast/wordpress-weekly/id694849738\">WordPress Weekly via Itunes</a></p>\n<p>Subscribe to <a href=\"https://www.wptavern.com/feed/podcast\">WordPress Weekly via RSS</a></p>\n<p>Subscribe to <a href=\"http://www.stitcher.com/podcast/wordpress-weekly-podcast?refid=stpr\">WordPress Weekly via Stitcher Radio</a></p>\n<p>Subscribe to <a href=\"https://play.google.com/music/listen?u=0#/ps/Ir3keivkvwwh24xy7qiymurwpbe\">WordPress Weekly via Google Play</a></p>\n<p><strong>Listen To Episode #348:</strong><br />\n</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 07 Mar 2019 22:11:16 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:32;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:72:\"WPTavern: Watch WordCamp Nordic Sessions for Free via Livestream March 8\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=87842\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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/watch-wordcamp-nordic-sessions-for-free-via-livestream-march-8\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1218:\"<p>The inaugural <a href=\"https://2019.nordic.wordcamp.org\" rel=\"noopener\" target=\"_blank\">WordCamp Nordic</a> will be live streamed for free on March 8, from the <a href=\"https://www.paasitorni.fi/en/\" rel=\"noopener\" target=\"_blank\">Paasitorni Congress Center</a> in Helsinki. The conference starts at 9 AM. Those watching remotely can tune into both tracks via the following links:</p>\n<p><strong>Track 1</strong><br />\n<a href=\"https://2019.nordic.wordcamp.org/live-congress-hall/\" rel=\"noopener\" target=\"_blank\">https://2019.nordic.wordcamp.org/live-congress-hall/</a></p>\n<p><strong>Track 2</strong><br />\n<a href=\"https://2019.nordic.wordcamp.org/live-sirkus/\" rel=\"noopener\" target=\"_blank\">https://2019.nordic.wordcamp.org/live-sirkus/</a></p>\n<p>The WordCamp’s organizers published the direct links, so there is no need to sign up for a livestream ticket. Session topics include Gutenberg development, environmentally friendly WordPress development, preparing for PHP 7.2, Gutenberg Cloud, WooCommerce, blog marketing, multilingual websites, and more. Check out the <a href=\"https://2019.nordic.wordcamp.org/sessions/\" rel=\"noopener\" target=\"_blank\">full schedule</a> for a list of all the sessions.</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, 07 Mar 2019 22:09:13 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:33:\"Gary: Authentication 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:25:\"https://pento.net/?p=4591\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:57:\"https://pento.net/2019/03/06/authentication-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:2315:\"<p><a href=\"https://www.w3.org/TR/webauthn/\">WebAuthn</a> is now a W3C recommendation, bringing us one step closer to not having to use passwords anymore. If you’re not familiar with WebAuthn, <a href=\"https://webauthn.io/\">here’s a little demo</a> (if you don’t own a security key, it’ll probably work best on an Android phone with a fingerprint reader).</p>\n\n\n\n<p>That I needed to add a disclaimer for the demo indicates the state of WebAuthn authenticator support. It’s nice when it works, but it’s clearly still in progress, and <a href=\"https://caniuse.com/#feat=webauthn\">that progress varies</a>. WebAuthn also doesn’t cover how the authenticator device works, that falls under the <a href=\"https://fidoalliance.org/specs/fido-v2.0-ps-20190130-pub/fido-client-to-authenticator-protocol-v2.0-ps-20190130.html\">proposed CTAP standard</a>. They work together to form the <a href=\"https://fidoalliance.org/fido2/\">FIDO2 Project</a>. Currently, the most reliable option is to purchase a security key, but <a href=\"https://www.theverge.com/2019/2/22/18235173/the-best-hardware-security-keys-yubico-titan-key-u2f\">quality varies wildly</a>, and needing to carry around an extra dongle just for logging in to sites is no fun.</p>\n\n\n\n<h2>What WordPress Needs</h2>\n\n\n\n<p>Anything that replaces passwords needs to provide some extra benefit, without losing the strengths of the password model:</p>\n\n\n\n<ul><li>Passwords are universally understood as an authentication model.</li><li>They’re portable: you don’t need a special app or token to use them anywhere.</li><li>They’re extendable: strong passwords can be enforced as needed. Additional authentication (2FA codes, for example) can be added, too.</li></ul>\n\n\n\n<p>Magic login links are an interesting step in this direction. The WordPress mobile apps added <a href=\"https://en.blog.wordpress.com/2017/08/15/an-updated-login-coming-to-the-wordpress-mobile-apps/\">magic login support for WordPress.com accounts</a> a while ago, I’d love to see this working on all WordPress sites. </p>\n\n\n\n<p>A WebAuthn-based model would be a wonderful future step, once the entire user experience is more polished.</p>\n\n\n\n<p>The password-less future hasn’t quite arrived yet, but we’re getting closer.</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, 06 Mar 2019 02:13:26 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Gary\";s: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:63:\"WPTavern: Global WordPress Translation Day Set for May 11, 2019\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=87768\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"https://wptavern.com/global-wordpress-translation-day-set-for-may-11-2019\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2290:\"<p><a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2019/03/WordPress-Translation-Day4.jpeg?ssl=1\"><img /></a></p>\n<p>One of the the most important factors in WordPress’ growth is the software’s availability in <a href=\"https://make.wordpress.org/polyglots/teams/\" rel=\"noopener\" target=\"_blank\">186 languages</a>. Its vibrant community of translation volunteers, known as the <a href=\"https://make.wordpress.org/polyglots\" rel=\"noopener\" target=\"_blank\">Polyglots team</a>, continually update the translations to ensure access for millions of non-English speakers around the world. In 2016, the team began hosting their own events dedicated to educational sessions and topics that affect the translation community, along with coordinated translation sprints. </p>\n<p>The 4th edition of the <a href=\"https://wptranslationday.org\" rel=\"noopener\" target=\"_blank\">Global WordPress Translation Day</a> (GWTD) has been set for Saturday, May 11, 2019. It is a 24-hour virtual and in-person event that brings together new and experienced translators. The most recent event was held in 2017 with 71 local events in 29 countries. More than 1,300 people RSVP’d for local events and volunteers around the world translated 93,179 strings in core, themes, and plugins. The event was also successful at growing the local translation communities, adding 217 new translators to the project.</p>\n<p>It’s hard to overstate the importance of events like this that support and grow WordPress’ vital translation community. This colorful chart shows the <a href=\"https://wordpress.org/about/stats/\" rel=\"noopener\" target=\"_blank\">percentage of users running the software in different locales</a>. WordPress has a diverse global user base, thanks in large part to the efforts of volunteer translators.</p>\n<p><a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2019/03/Screen-Shot-2019-03-01-at-3.17.50-PM.png?ssl=1\"><img /></a></p>\n<p>If you want to get involved in the next Global WordPress Translation Day, mark your calendar for May 11, 2019. For more information, check out the <a href=\"https://make.wordpress.org/polyglots/tag/gwtd4/\" rel=\"noopener\" target=\"_blank\">#GWTD4</a> tag on the Polyglots blog and join in on the #polyglots-events Slack channel. </p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 01 Mar 2019 23:53:40 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:92:\"WPTavern: Freemius Patches Severe Vulnerability in Library Used by Popular WordPress Plugins\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=87723\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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/freemius-patches-severe-vulnerability-in-library-used-by-popular-wordpress-plugins\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:5480:\"<p><a href=\"https://freemius.com/\" rel=\"noopener\" target=\"_blank\">Freemius</a>, a monetization, analytics, and marketing library for WordPress plugin and theme developers, <a href=\"https://github.com/Freemius/wordpress-sdk/commit/50a7ca3d921d59e1d2b39bb6ab3c6c7efde494b8\" rel=\"noopener\" target=\"_blank\">patched</a> an authenticated option update vulnerability in its wordpress-sdk four days ago. The library is included with many popular plugins, such as NextGEN Gallery (1,000,000+ installs), 404 – 301 (100,000+ installs), WP Security Audit Log (80,000+ installs), and FooGallery (100,000 installs+). Freemius CEO Vova Feldman said he would classify it as “a severe vulnerability.” </p>\n<p>Feldman had planned to wait to publish anything about the vulnerability until more plugin authors had updated, but the security team at PluginVulnerabilities.com published a <a href=\"https://www.pluginvulnerabilities.com/2019/02/26/hackers-are-probably-already-exploiting-this-authenticated-option-update-vulnerability-just-fixed-in-freemius/\" rel=\"noopener\" target=\"_blank\">detailed explanation of the vulnerability</a> within 24 hours of plugin developers getting notified about the patch: </p>\n<blockquote><p>The vulnerability, an authenticated option update vulnerability, would allow anyone with access to a WordPress account to take complete control of the website. That is a type of vulnerability that hackers will try to exploit if there is significant usage of a plugin. Anyone that allows untrusted individuals access to WordPress accounts and is using a plugin with this library is at a pretty significant risk if they haven’t updated the plugin to a version that fixes this or deactivated the plugin.</p></blockquote>\n<p>Plugin developers using the library have already been notified by Freemius, the team at pluginvulnerabilities.com, and will soon be contacted by the WordPress.org plugin team. A full list of the plugins impacted by this vulnerability is not available yet, but Freemius has a page on its website <a href=\"https://includewp.com/freemius/#focus\" rel=\"noopener\" target=\"_blank\">showcasing 96 WordPress.org plugins and nine themes that use it</a>.</p>\n<p>“More than 60% of the developers who are using our SDK have already upgraded to the patched version,” Feldman said. As of today, Feldman said he has not received any reports of the vulnerability having been exploited.</p>\n<p>Feldman published a <a href=\"https://freemius.com/blog/sdk-security-vulnerability/\" rel=\"noopener\" target=\"_blank\">summary of his company’s actions on the security issue</a> and described how Freemius is working to mitigate exposure and try to give users more time to update. The company requested two things from developers using its wordpress-sdk library: </p>\n<ul>\n<li>If this security upgrade will be included in your changelog, please only use generic wording like “Security fix”.</li>\n<li>Even after updating and releasing the patched versions, please do not disclose this issue during the next 30 days, allowing enough time for all our partners and their users to update.</li>\n</ul>\n<p>It is in a company’s best interest to keep the details of a product’s security issue under wraps for as long as possible, but that may leave some users exposed when the vulnerability has already been published on the web. Any user who sees an update for a plugin using Freemius is advised to act on that update immediately, regardless of whatever generic note appears in the changelog. </p>\n<p>As a company providing a security service, PluginVulnerabilities.com had different priorities in publishing details about the vulnerability, according to a representative who identified himself as John:</p>\n<blockquote><p>In this case where we are not the discoverers. The biggest issue is that vulnerability looks to have already been being exploited when we came across it, so hiding the situation from the public seems highly irresponsible. Our customers pay us to warn them about vulnerabilities in their plugin, so we would need to warn them right away once we became aware of this. If we only warned our customers that obviously raises some serious questions since others in WordPress community would be left in the dark.</p></blockquote>\n<p>In cases like this, where developers are including a third-party library in their plugins, it can take longer for users to receive an update that fixes the vulnerability, since the need for a patch has to be communicated to multiple parties. The situation is similar to the <a href=\"https://wptavern.com/bootstrap-patches-xss-vulnerability-in-versions-4-3-1-and-3-4-1\" rel=\"noopener\" target=\"_blank\">recent vulnerability that Bootstrap patched</a> two weeks ago. Bootstrap announced the vulnerability in the same week it was reported and fixed, instead of trying to delay disclosure, even though thousands of products across the web use the Bootstrap framework.</p>\n<p>WordPress.org doesn’t currently have a mechanism to flag certain plugin updates as security updates, but if a security update is severe enough, the plugin team can push updates out faster with cooperation from plugin authors. That route has not yet been pursued in this case, but we will continue monitoring the situation. In the meantime, if you are using a plugin that includes Freemius and the author has not updated, you may want to consider turning the plugin off temporarily until a patch is available.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 01 Mar 2019 19:47: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: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:57:\"WordPress.org blog: The Month in WordPress: February 2019\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=6652\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:72:\"https://wordpress.org/news/2019/03/the-month-in-wordpress-february-2019/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:7523:\"<p>A new version of WordPress, significant security enhancements, important discussions, and much more – read on to find out what has been going on in the WordPress community for the month of February.</p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h2>Release of WordPress 5.1</h2>\n\n\n\n<p>Near the end of the month, <a href=\"https://wordpress.org/news/2019/02/betty/\">WordPress 5.1 was released</a>, featuring significant stability and performance enhancements as well as the first of the <a href=\"https://make.wordpress.org/core/2019/01/14/php-site-health-mechanisms-in-5-1/\">Site Health</a> mechanisms that are in active development. Most prominent is the new warning for sites running long-outdated versions of PHP.<br /></p>\n\n\n\n<p>You can check out <a href=\"https://make.wordpress.org/core/2019/02/08/wordpress-5-1-field-guide/\">the Field Guide for this release</a> for a detailed look at all the new features and improvements. The next release <a href=\"https://make.wordpress.org/core/2019/02/19/wordpress-5-2-schedule-and-scope/\">is already in development</a> with plans to improve the Site Health features, PHP compatibility, and a number of other things.<br /></p>\n\n\n\n<p>Want to get involved in testing or building WordPress Core? You can install <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">the WordPress Beta Tester plugin</a>, follow <a href=\"https://make.wordpress.org/core/\">the Core team blog</a>, and join the #core channel in <a href=\"https://make.wordpress.org/chat/\">the Making WordPress Slack group</a>.</p>\n\n\n\n<h2>Gutenberg Development Continues </h2>\n\n\n\n<p>The block editor that is now a part of WordPress core started out as a project named <a href=\"https://wordpress.org/gutenberg/\">Gutenberg</a> with the lofty goal of creating a whole new site-building experience for all WordPress users. The first phase of Gutenberg resulted in the block editor that was included in WordPress 5.0, but development didn’t stop there – <a href=\"https://make.wordpress.org/core/2019/02/20/whats-new-in-gutenberg-20th-february/\">phase 2 of the project is well underway</a>.<br /></p>\n\n\n\n<p>This month, one of the initial goals for this phase was reached with <a href=\"https://make.wordpress.org/core/2019/02/18/porting-widgets-to-blocks-feb-18-2019/\">all of the core WordPress widgets being converted to blocks</a> – this will go a long way to allowing full sites to be built using blocks, rather than simply post or page content.<br /></p>\n\n\n\n<p>Want to get involved in developing Gutenberg? Check out <a href=\"https://github.com/wordpress/gutenberg\">the GitHub repository</a> and join the #core-editor channel in <a href=\"https://make.wordpress.org/chat/\">the Making WordPress Slack group</a>.</p>\n\n\n\n<h2>Block Editor Comes to the Mobile Apps</h2>\n\n\n\n<p>As Gutenberg development continues, the Mobile team has been working hard to integrate the new block editor into <a href=\"https://wordpress.org/mobile/\">the WordPress mobile apps</a>. Near the end of February, <a href=\"https://make.wordpress.org/mobile/2019/02/26/the-block-editor-is-coming-to-the-mobile-apps/\">the team shipped a complete integration in the beta versions of the apps</a> – this a significant milestone and a big step towards unifying the mobile and desktop editing experiences.<br /></p>\n\n\n\n<p>Both the iOS and Android apps are open for beta testers, so if you would like to experience the block editor on mobile today, then <a href=\"https://apps.wordpress.com/contribute/\">join the beta program</a>.<br /></p>\n\n\n\n<p>Want to get involved in developing the WordPress mobile apps? Follow <a href=\"https://make.wordpress.org/mobile/\">the Mobile team blog</a>, and join the #mobile channel in <a href=\"https://make.wordpress.org/chat/\">the Making WordPress Slack group</a>.<br /></p>\n\n\n\n<h2>WordPress Triage Team Announced</h2>\n\n\n\n<p>One of the goals for 2019 that Matt Mullenweg (<a href=\"https://profiles.wordpress.org/matt/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>matt</a>) announced in his <a href=\"https://2018.us.wordcamp.org/state-of-the-word/\">State of the Word</a> address last year was to form a team who would work to manage the ever-increasing number of tickets in <a href=\"https://core.trac.wordpress.org/\">Trac</a>, the bug tracker that WordPress Core employs.</p>\n\n\n\n<p>This team, known as the Triage Team, <a href=\"https://make.wordpress.org/core/2019/03/01/introducing-the-wordpress-triage-team/\">has been announced</a>. Their work will involve coordinating with component maintainers, release leads, project leadership, contributors, and other WordPress related projects with issue trackers outside of Trac to ensure that everyone is empowered to focus on contributing.</p>\n\n\n\n<p>The team was formed based on nominations of volunteers to take part and will be led by Jonathan Desrosiers (<a href=\"https://profiles.wordpress.org/desrosj/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>desrosj</a>). The other members of the team are Chris Christoff (<a href=\"https://profiles.wordpress.org/chriscct7/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>chriscct7</a>), Tammie Lister (<a href=\"https://profiles.wordpress.org/karmatosed/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>karmatosed</a>), Sergey Biryukov (<a href=\"https://profiles.wordpress.org/sergey/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>sergey</a>), and Sheri Bigelow (<a href=\"https://profiles.wordpress.org/designsimply/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>designsimply</a>) – all of whom have a strong track record of contributing to WordPress, have exhibited good triaging practices, and are overall good community members.</p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h2>Further Reading:</h2>\n\n\n\n<ul><li>In this year alone, <a href=\"https://make.wordpress.org/community/handbook/meetup-organizer/welcome/\">the WordPress meetup program</a> has hosted 800 events across the world, all organized by local community members.</li><li><a href=\"https://make.wordpress.org/community/2019/02/21/discussion-how-could-we-improve-the-wordpress-community-summit/\">An important discussion has been opened</a> regarding the future of the WordPress Community Summit.</li><li>The Polyglots team <a href=\"https://make.wordpress.org/polyglots/2019/03/01/global-wordpress-translation-day-4-is-coming/\">has started planning the fourth Global WordPress Translation Day</a> to take place on 11 May 2019.</li><li>The Theme Review team <a href=\"https://make.wordpress.org/themes/2019/02/26/theme-sniffer-plugin-v1-0-0-rc1-version/\">is working on a useful tool named Theme Sniffer</a> to assist theme developers and reviewers in making sure their code is standards-compliant.</li><li>The first <a href=\"https://2019.nordic.wordcamp.org/\">WordCamp Nordic</a> is coming up on March 7-8.</li><li>The WordCamp Europe team <a href=\"https://make.wordpress.org/community/2019/02/13/wordcamp-pwa-plugin-proposal-and-designs/\">is looking for feedback</a> on their designs for a Progressive Web Application (PWA) for WordCamp.org.</li><li>The Design team has been working hard on designing the new Navigation Menu block and are <a href=\"https://make.wordpress.org/design/2019/02/26/proposal-navigation-menu-block/\">looking for feedback</a>.</li></ul>\n\n\n\n<p><em>Have a story that we should include in the next “Month in WordPress” post? Please </em><a href=\"https://make.wordpress.org/community/month-in-wordpress-submissions/\"><em>submit it here</em></a><em>.</em><br /></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 01 Mar 2019 10:00:10 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Hugh Lashbrooke\";s: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:78:\"WPTavern: WordPress Designers Seek Feedback on Navigation Menu Block Prototype\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=87642\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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/wordpress-designers-seek-feedback-on-navigation-menu-block-prototype\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2677:\"<p>Creating a block for navigation menus is one of the <a href=\"https://make.wordpress.org/core/2018/12/08/9-priorities-for-2019/\" rel=\"noopener\" target=\"_blank\">nine projects</a> Matt Mullenweg identified as a priority for 2019, and the future of WordPress menus is starting to take shape. Designers working on the new Navigation Menu block have <a href=\"https://make.wordpress.org/design/2019/02/26/proposal-navigation-menu-block/\" rel=\"noopener\" target=\"_blank\">published a prototype</a> this week with detailed notes on how users will interact with the block.</p>\n<p><a href=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2019/02/navigation-menu-prototype.png?ssl=1\"><img /></a></p>\n<p>The proposed solution would automatically generate a menu and users would able to delete menu items using the keyboard or block settings ellipsis menu. Individual menu items can be moved right or left and more advanced options for reordering or nesting would be hidden behind the block inspector.</p>\n<p><a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2019/02/navigation-menu-block-advanced.png?ssl=1\"><img /></a></p>\n<p>Adding a menu item opens a search bar that would give quick access to all the content in the site. From here users can create a new page or use advanced mode to bulk add more pages. The designs aim to hide most of the more complex tasks behind the block inspector.</p>\n<p><a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2019/02/navigation-block-add-new-item.png?ssl=1\"><img /></a></p>\n<p>Reading through the list of interactions this design is expected to cover, it’s clear that navigation menus are one of the most challenging interfaces to bring into the block editor. One of the principles the designs are based on is that “The editing state of the block itself should mimic as closely as possible the front-end output.” However, it’s difficult to fully visualize how this will work. Navigation menus are most likely to be used in the header and/or footer of a website, but it’s not yet clear how themes will reveal a navigation area to Gutenberg.</p>\n<p>There are still many questions to be answered and the design team is seeking feedback on the prototype. Comments are open on the <a href=\"https://make.wordpress.org/design/2019/02/26/proposal-navigation-menu-block/\" rel=\"noopener\" target=\"_blank\">post</a> and feedback on more specific interactions can be left on the relevant GitHub tickets or in Figma. The tickets related to the navigation block discussion are listed in the proposal. The design team is currently working on usability testing and aims to have a final design by the end of March.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 01 Mar 2019 04:55:59 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:87:\"WPTavern: WPWeekly Episode 347 – Chair Buying, Pressing Issues, and Block Management\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"https://wptavern.com/?p=87718&preview=true&preview_id=87718\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:91:\"https://wptavern.com/wpweekly-episode-347-chair-buying-pressing-issues-and-block-management\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2347:\"<p>In this episode, <a href=\"http://jjj.me\">John James Jacoby</a> and I start off by discussing the office chair purchasing process. I recently needed to buy a new chair and was surprised by some of the features that were highlighted.</p>\n<p>We talked about block managers and some of the pitfalls that will need to be overcome. For example, what should WordPress do if a user disables a block that’s already used in a post?</p>\n<p>We wrap up the show by sharing some of the most pressing issues people are having with WordPress.</p>\n<h2>Stories Discussed:</h2>\n<p><a href=\"https://wptavern.com/yoast-ceo-responds-to-yoastcon-twitter-controversy-calls-for-change-in-the-seo-industry\">Yoast CEO Responds to #YoastCon Twitter Controversy, Calls for Change in the SEO Industry</a></p>\n<p><a href=\"https://wptavern.com/wordpress-5-1-improves-editor-performance-encourages-users-to-update-outdated-php-versions\">WordPress 5.1 Improves Editor Performance, Encourages Users to Update Outdated PHP Versions</a></p>\n<p><a href=\"https://wptavern.com/block-management-features-proposed-for-wordpress-5-2\">Block Management Features Proposed for WordPress 5.2</a></p>\n<p><a href=\"https://make.wordpress.org/core/2019/02/19/wordpress-5-2-schedule-and-scope/\">5.2 Proposed Scope and Release Schedule </a></p>\n<p><a href=\"https://twitter.com/ClorithMJ/status/1100342470431391744\">UI/UX Changes for the Site Health Check Plugin </a></p>\n<p><a href=\"https://twitter.com/jeffr0/status/1098306572030279680\">Jeffrey Zeldman Promoted to Automattic Employee</a></p>\n<p><a href=\"https://twitter.com/jeffr0/status/1097603348977586178\">The Most Pressing Issues People Have with WordPress These Days</a></p>\n<h2>WPWeekly Meta:</h2>\n<p><strong>Next Episode:</strong> Wednesday, March 6th 3:00 P.M. Eastern</p>\n<p>Subscribe to <a href=\"https://itunes.apple.com/us/podcast/wordpress-weekly/id694849738\">WordPress Weekly via Itunes</a></p>\n<p>Subscribe to <a href=\"https://www.wptavern.com/feed/podcast\">WordPress Weekly via RSS</a></p>\n<p>Subscribe to <a href=\"http://www.stitcher.com/podcast/wordpress-weekly-podcast?refid=stpr\">WordPress Weekly via Stitcher Radio</a></p>\n<p>Subscribe to <a href=\"https://play.google.com/music/listen?u=0#/ps/Ir3keivkvwwh24xy7qiymurwpbe\">WordPress Weekly via Google Play</a></p>\n<p><strong>Listen To Episode #347:</strong><br />\n</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 28 Feb 2019 22:10:40 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"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:75:\"WPTavern: WordPress Contributors Propose Shorter, Time-based Release Cycles\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=87336\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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/wordpress-contributors-propose-shorter-time-based-release-cycles\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:5299:\"<p>WordPress release cycles may soon take a more predictable cadence, as contributors are considering moving to a time-based approach. The discussion began during a recent core dev chat in mid-February when Gutenberg phase 2 lead Riad Benguella proposed the project move to shorter, automated release cycles. </p>\n<p>The Gutenberg team has successfully been releasing a new version of the plugin every two weeks on schedule and any features that aren’t ready are postponed to the next releases automatically. Benguella contends that this type of release schedule has the potential to bring several benefits to WordPress:</p>\n<ul>\n<li>Less stress for contributors</li>\n<li>Predictability: People can plan around the release timelines easily</li>\n<li>No delays as releases are not feature-based</li>\n</ul>\n<p>Shortening major releases may prove more challenging for WordPress, which is at a much larger scale than the Gutenberg plugin. The plugin also has the added advantage of being able to manage releases and development on GitHub. </p>\n<p>“I think there are a lot of infrastructure problems that need to be solved for WordPress before we could move to a fast, automated release cycle,” Gary Pendergast said. </p>\n<p>“Having a major release once a month is achievable, it’s something I’d like us to get to, but the release process is too manual to have multiple releases running at the same time at the moment.”</p>\n<p>Jonathan Desrosiers drafted a <a href=\"https://make.wordpress.org/core/2019/02/27/major-and-minor-version-release-cadence/\" rel=\"noopener\" target=\"_blank\">proposal</a> that summarizes this discussion and outlines some of the manual tasks required for getting a major release out the door. These include time-consuming tasks like Trac gardening, creating a Field Guide, blog posts for the betas, RCs, and official release, documentation updates, videos, dev notes, and other items that are often completed by volunteers. </p>\n<p>The 3-4 month release cycles that WordPress had from versions 3.9 – 4.7 allowed for all of the administrative overhead outlined above to be completed in a reasonable amount of time, but the general consensus is that some of these tasks could be more simplified and/or automated. </p>\n<p>Desrosiers highlighted several benefits of moving to a shorter major release cycle, including less drastic change for users that might ultimately result in more users being comfortable enabling automatic updates for major releases. Detriments to shortening the release cycle are the increased burden it puts on volunteers as well as theme and plugin developers who need to push compatibility releases. It would also introduce more backporting work for security releases. </p>\n<p>Several contributors have left feedback on the post with insight gleaned from other projects’ release scheduling. Jeremy Felt reviewed <a href=\"https://wiki.mozilla.org/Release_Management/Release_owners\" rel=\"noopener\" target=\"_blank\">Firefox’s release owner table</a> that assigns leadership and dates for several releases in advance.</p>\n<p>“I think getting to a shorter release cycle in general will involve scheduling multiple releases and assigning their release leads in advance,” Felt said. “So far most of our scheduling is done as soon as the last release has been shipped.”</p>\n<p>Joe McGill examined <a href=\"https://github.com/Microsoft/vscode/wiki/Development-Process\" rel=\"noopener\" target=\"_blank\">VS Code’s development process</a> and found several similarities to the process he thinks WordPress could adopt in the future: </p>\n<ol>\n<li>A long term roadmap (theirs is 6–12 months) outlining major themes and features.</li>\n<li>A monthly release cadence based on 4 week sprints which begin with milestone planning and always results in a release of whatever was completed in that monthly iteration.</li>\n<li>Regular project triage, with release priorities managed at the team (i.e. Component) level.</li>\n<li>Documentation integrated into the development process.</li>\n<li>Automated testing of releases and upgrades.</li>\n<li>Only important regressions and security issues are handled in minor releases between monthly milestones, everything else is moved forward to the next release (or reprioritized in the backlog).</li>\n</ol>\n<p>Several of these points echo feedback from other contributors who have identified documentation integrated into development and automated testing as ways to speed up major release cycles.</p>\n<p>“If we don’t have the infrastructure and tooling to support a 1 month cycle, then I think we could attempt a 2 month cycle with a goal towards moving to shorter cycles,” McGill said.</p>\n<p>The Gutenberg plugin’s relentless pace of iteration and predictable release cycles have opened up a world of new ideas for improving the process for WordPress core. Discussion around moving the project to shorter, time-based release cycles is still in the preliminary stages. No major changes have been agreed upon yet, but the process of exploring different ideas has put the spotlight on tasks that could afford to be tightened up in the release process. This falls in line with WordPress’ 2019 theme of “tightening up.” </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, 28 Feb 2019 18:21: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: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:56:\"Post Status: Branching out: An interview with Peter Suhm\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"https://poststatus.com/?p=55639\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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://poststatus.com/branching-out-an-interview-with-peter-suhm/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:7103:\"<p>In Peter’s words, “the most basic way to think of WP Pusher is that it replaces FTP with a flow where updates come directly from GitHub/Bitbucket” through the WordPress core auto-updater.</p>\n<p>You may <em>not</em> know Peter built the first version of <a href=\"https://wppusher.com/\">WP Pusher</a> in a shopping mall in Thailand while traveling the globe for four years. Originally from Copenhagen, today Peter is settled down in Glasgow and has just launched <a href=\"https://usebranch.co/\">Branch</a>, a Docker-based build and deployment tool for WordPress developers that goes quite a bit further than WP Pusher. Branch is a continuous integration service for WordPress that adds “the ‘build’ and ‘test’ steps” before deployment.</p>\n<p><strong>DK: You’ve launched Branch with a manifesto that declares “WordPress developers are developers too” before outlining the well-known lack of modern tools for WordPress development. Why do you think that has been such a long-lamented situation and was there something unique in your experience that drove you to do something about it?</strong></p>\n<p><strong>PS: </strong>One of the things that makes WordPress really special is its low barrier of entry. The 5-minute install and all of that. The WordPress community proudly consists of a large percentage of amateurs and hobbyists. A lot of people have their first experience with programming because of WordPress, which is great and something WordPress should be really proud of. Most development frameworks exist to make the developer more productive, but I think WordPress has another purpose. The purpose of WordPress is to democratize publishing (which is something user facing), not to be an awesome tool for developers. There are obviously some political decisions behind this lack as well. Religiously supporting outdated versions of PHP is just one of them. Not having any sort of dependency management, so everyone has to reinvent the wheel on each project is another one.</p>\n<p>Every WordPress developer is asking the same questions. “How do I manage my dependencies?” or “how do I migrate changes to the database?” These are questions people literally ask me because I sell WordPress developer tools. Personally, I didn’t get into programming because of WordPress. I have been doing PHP development since my early teens, and my first job was as a Ruby on Rails junior developer. “Growing up” as a developer, I was raised very strictly! My co-workers would write failing unit tests for me, and I’d have to implement the code. This made me pretty religious about best practices, testing etc. After RoR I discovered Laravel in 2013 and helped build the Laravel community in Copenhagen. However, during high school, I had built quite a few different projects using WordPress for myself and my clients. Once in a while, I’d have to update these old WordPress sites, which always involved installing an FTP client. This was rough after five years of continuous deployment using Git and automated tests. I hate FTP with a passion. It’s an error-prone and outdated way to deploy your code.</p>\n<p>Inspired by some of the tooling I knew from RoR and Laravel, I set out to build a better way to deploy WordPress code. After a lot of experimentation, I landed on WP Pusher. However, WP Pusher only moves the code. It doesn’t run your build scripts or your unit tests. It just blindly moves your code from a Git repository to WordPress. I was intentionally ignoring this problem for a while, being kind of intimidated by it I guess. However, people kept asking me the questions I described earlier, so I started experimenting again and believe I found a really cool solution with Branch. Branch is built on top of Docker, so everything you can imagine doing inside of Docker containers will eventually be available within Branch. A major part of building Branch is to make this great, but highly technical, stack available to WordPress developers.</p>\n<div id=\"attachment_55795\" class=\"wp-caption aligncenter\"><img class=\"wp-image-55795 size-full\" src=\"https://cdn.poststatus.com/wp-content/uploads/2019/02/branch_screen.png\" alt=\"\" width=\"4152\" height=\"2305\" /><p id=\"caption-attachment-55795\" class=\"wp-caption-text\">The Branch Dashboard showing the configuration options for a theme’s build steps.</p></div>\n<p><strong>DK: Does Branch build on or incorporate WP Pusher, or are these totally separate technologies? As SaaS businesses, will they remain separate or merge? I imagine some of your agency customers for WP Pusher might want to move up to Branch, if they don’t lose anything in the process.</strong></p>\n<p><strong>PS:</strong> The best way to understand Branch, and why it’s different from WP Pusher, is to imagine it as two separate parts: The build + test part (continuous integration) and the deployment part (continuous deployment). The deployment part of Branch very much builds upon WP Pusher. The build part is what’s new. It’s the missing link between developing on your local machine and shipping to production.</p>\n<p>One of the things that excite me the most about Branch is that it’s a hosted SaaS, compared to WP Pusher which is “just” a WordPress plugin. That allows me to add a much more advanced feature set and ship much faster. With a SaaS, you are in control of the environment in which the software runs. That gives you a lot more flexibility and opportunity. I want WP Pusher to stay around for everyone to keep using. However, I want to make Branch so good that everyone wants to switch eventually. But WP Pusher will stay around. That’s for sure.</p>\n<p><strong>DK: What did you learn from life as a digital nomad? Have you given it up for good now, or do you plan to do more traveling?</strong></p>\n<p><strong>PS:</strong> That’s a good question, I should probably spend some more time thinking about! I came into the “nomadic” lifestyle sort of by accident. It wasn’t very purposeful. I think on a personal level the number one lesson has been how important for me it is to have a base. Traveling for a long time, you become very aware of your roots. You spend a lot of time thinking about the good and the bad parts of being back home. I think ideally it allows you to go “home” and have a better idea of which parts of settled life you like, and which ones you’d rather be without.</p>\n<p>On a business level, WP Pusher was born on the road and has a very different nature than most businesses. From day one it’s been a premise that I wasn’t always around 24/7. It’s never been a problem, because it’s never been an expectation. I’ve never had to change anything about WP Pusher to allow me to travel, because I was already traveling when I built it. Now I’m pretty settled, and I live with my fiancé and only travel for smaller trips. I’ll never stop traveling, hopefully, but I don’t think I’ll ever live on the road again! <img src=\"https://cdn.poststatus.com/wp-content/uploads/2015/10/cropped-logo-blue-192x192.png\" width=\"16px\" height=\"16px\" /></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, 27 Feb 2019 22:15:08 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"Dan Knauss\";s: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:100:\"WPTavern: Gatsby WordPress Themes Project Partners with Theme Shops to Port Popular Themes to Gatsby\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=87635\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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/gatsby-wordpress-themes-project-partners-with-theme-shops-to-port-popular-themes-to-gatsby\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:6696:\"<p><a href=\"https://gatsbywpthemes.com/\" rel=\"noopener\" target=\"_blank\">Gatsby WordPress Themes</a> is a new collaborative project led by Zac Gordon with help from Jason Bahl, Rich Tabor, Muhammad Muhsin, and Alexandra Spalato. The group is working together to port popular themes for use with <a href=\"https://www.gatsbyjs.org/\" rel=\"noopener\" target=\"_blank\">Gatsby</a>, the React-based static site generator that uses GraphQL for its data layer.</p>\n<p>Known for its performance and ease of deployment, Gatsby has captured developers’ attention and was <a href=\"https://risingstars.js.org/2018/\" rel=\"noopener\" target=\"_blank\">one of the rising stars</a> of the React ecosystem throughout 2018. Using WordPress as a headless CMS, developers can pull data into Gatsby and enjoy the scalability, speed, and security that comes with serving static files. </p>\n<p>Although static site generators have been around for awhile, the current Gatsby craze seems to be rooted in the fact that the project uses React, Webpack, and modern JavaScript and CSS. </p>\n<p>“WordPress devs love Gatsby because it lets them throw away the entire old school PHP based WordPress theming system and built sites with React and GraphQL,” Gordon said.</p>\n<p>“Gatsby devs are finding a new interest in WordPress because by default you have to edit Gatsby content in Markdown. WordPress gives a much richer editing experience.”</p>\n<p><a href=\"https://twitter.com/jasonbahl\" rel=\"noopener\" target=\"_blank\">Jason Bahl</a>, creator of the <a href=\"https://www.wpgraphql.com/\" rel=\"noopener\" target=\"_blank\">WPGraphQL</a> project, is a technical advisor for the Gatsby WP Themes project. He was inspired to collaborate with the team because he thinks Gatsby has a lot of benefits for WordPress sites.</p>\n<p>“The end result of a Gatsby site is a static site with no live Database connection,” Bahl said. “Just HTML and JavaScript files, so performance is better than even the most highly cached WordPress sites, and security is better because there’s no live database connection to be compromised.</p>\n<p>“Also, Gatsby is fully React. With Gutenberg in core, WordPress developers are writing a LOT more React. Using Gatsby as the presentation layer for a site allows for components to be re-used across the admin and the theme, where now developers need to create React components for Gutenberg and PHP template partials for the ‘regular’ theme rendering.”</p>\n<p>Regular WordPress theme are not immediately compatible with Gatsby, since the entire theme has to be built with React, but developers can use the same styles. </p>\n<p>“We are taking a distinctly different direction than the WordPress themes on the Gatsby themes repo currently,” Gordon said. “We are going to base all of our themes on the WP GraphQL plugin. The default Gatsby themes now work on a wrapper on top of the REST API and don’t have live GraphQL endpoints, so they are limited.”</p>\n<h3>Gatsby WordPress Themes Project Partners with Theme Shops to Offer Free and Commercial Gatsby Themes</h3>\n<p>The Gatsby WordPress Themes project will offer a combination of free and commercial Gatsby themes. Gordon is partnering with theme shops that are open to his team doing the heavy lifting of porting popular themes over to Gatsby.</p>\n<p>“The first two theme partners are Rich Tabor of <a href=\"https://coblocks.com/\" rel=\"noopener\" target=\"_blank\">CoBlocks</a> and <a href=\"https://themebeans.com/\" rel=\"noopener\" target=\"_blank\">ThemeBeans</a>, who is licensing us his super clean and Gutenberg perfect ‘Tabor’ premium theme,” Gordon said. “Then we have Leland Fiegel, a fellow DC WP chap and long time friend, from <a href=\"https://themetry.com/\" rel=\"noopener\" target=\"_blank\">Themetry</a>. They specialize in themes on WordPress.com, which means they are also battle tested. They have licensed us their great business theme Belmont.”</p>\n<p>Gordon said the first versions of the Gatsby themes are targeted towards business and brochure sites that might have a couple pages laid out in Gutenberg and possibly a news/blog section and contact page.</p>\n<p>“Since headless sites don’t work with a lot of plugins by default, the V1 of all the themes will be super opinionated and focused (but 100% extendable),” Gordon said.</p>\n<p>“The final set of themes are from the WordPress default themes collection. We will have a detailed article showing how we ported the Twenty Nineteen theme over to a Gatsby theme and that will be the first of the default themes we do.”</p>\n<p>Although this initiative is aimed at simpler WordPress sites, creating and maintaining a Gatsby site isn’t necessarily going to be well-suited to beginners.</p>\n<p>“As far as the target audience, I think any WordPress site that doesn’t have super fast moving content – like the average marketing site or documentation site is perfect for Gatsby,” Bahl said.</p>\n<p>“Gatsby does have a ‘Build’ step, where it collects ALL the data needed for the entire site, then outputs the content in the static Gatsby site. So even changing a typo on a post would require the ENTIRE SITE to rebuild, which can take anywhere from a few seconds to several minutes, which may not be acceptable for sites that need content live FAST (like a newspaper).</p>\n<p>“But for your average WordPress site, waiting two minutes for your changes to be live in production is acceptable. Many heavily cached WordPress sites already experience a delay in content being live anyway.”</p>\n<p>Gordon said he doesn’t believe Gatsby is the right fit for all WordPress sites but for certain projects it “can be a really cool approach both in terms of development experience and gains in speed and security.”</p>\n<p>The group is aiming to have its first themes released for WordCamp Miami in mid-March and plans to release more as they make new partnerships and see an actual demand. Gordon is actively looking for more theme shops to bring on board.</p>\n<p>“Zac will be primarily maintaining the Gatsby themes, though I’ll help where I’m needed,” ThemeBeans founder Rich Tabor said. “We’re still in the very initial stages of development. </p>\n<p>“Overall, it’s a super interesting idea. Static site generators are increasing in popularity and Gatsby is pretty much leading the pack in terms of performance and ease-of-use — both of which WordPress is not particularly well-known for (but is making strides to improve).”</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, 27 Feb 2019 19:50: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: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:38:\"HeroPress: Know That You Are Not Alone\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=2692\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:128:\"https://heropress.com/essays/know-that-you-are-not-alone/#utm_source=rss&utm_medium=rss&utm_campaign=know-that-you-are-not-alone\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:9625:\"<img width=\"960\" height=\"480\" src=\"https://s20094.pcdn.co/wp-content/uploads/2019/02/022719-min-1024x512.jpg\" class=\"attachment-large size-large wp-post-image\" alt=\"Pull Quote: WordPress for me has been a life skill that has brought be wealth.\" /><p>I remember when I was about 10 years and my mom got our first ever computer. She went to the store and got a bunch of CD’s which I was hyped about because I knew some of them were games. She gave me a yellow box that had “Microsoft FrontPage” on the front and said, “Here, learn this”. She saw my confused face and said “It shows you how to build websites. The web is huge right now. If you have this skill, one day you can make a lot of money.” I did go through the course and was pretty good at HTML and CSS but never stuck with it.</p>\n<blockquote><p>Besides, no one else I knew was doing it and what do moms know anyway?</p>\n<p>Everything. They know everything.</p></blockquote>\n<p>This was my first taste of coding. But it definitely wasn’t the last.</p>\n<h3>Growing Out</h3>\n<p>2016 was a bad year. I was still living in my hometown Philly, constantly working overtime at my low paying job, constantly stressed, trying to prove myself to a company that only viewed me as a number. That combined with the two hour commute both ways daily and I eventually burned myself out severely. I was so depressed that I would go to sleep crying and then wake back up crying again willing myself to get out of bed so that I could go to work. Eventually, I saw a therapist who diagnosed me with depression and she recommended that I take a break from work to recover. I was out of work for three months still recovering when my job called not to check on me, but to see when I was coming back. I ended up quitting over the phone, and never looked back.</p>\n<p>But I knew I needed to find out what I wanted to do career-wise. I decided to start teaching myself HTML and CSS again to see what I could do with that skill. I took the CodeAcademy courses and was surprised at how much I remembered.</p>\n<blockquote><p>I eventually found someone who wanted me to do maintenance on their site for really cheap. I was excited because in just a couple of months I landed a client! But it was also a HUGE mistake.</p></blockquote>\n<p>He was constantly nagging me daily on fixing his site, and every time I would fix it he would find something else wrong. Worse part is that went on for months without me collecting any extra money from him. I didn’t have him sign a contract (BIG Mistake) and he would contact me at various hours which I always responded right away because I felt I had to (Another mistake). Eventually, it got to be too much and I had to cut him off completely. I learned quite a bit about the business of web development and knew I needed to do more research before jumping head first into this again.</p>\n<h3>A Leap Of Faith</h3>\n<p>Fast forward to December 2017, I got offered an IT Management job in DC and moved within a couple of weeks with only $50 in my pocket which no place to live. But I made it work. I stayed in a hostel for two weeks while I found an apartment. My mom helped with getting the funds for my apartment and without her support, I don’t know think I would be here now. I stopped my web stuff for a while so I can focus on my transition. I’m not gonna lie, as much as I was happy to move here, I was also very lonely. The folks at my job were older and they were all family people, and I knew no one out here. But the biggest challenge was trying to run a whole IT department by myself and the upper-management C-Suite folks not having a clue about tech or why it costs so much. It also didn’t help that there were folks that had a huge dislike of IT and therefore transferred that dislike to me. I knew about a month into this job that this wasn’t going to be the path that I was going an needed to do something else.</p>\n<p>I searched online for a web course that would help me learn front-end development and eventually I came across Skillcrush. They were offering a course to teach WordPress development and all you needed to know was HTML and CSS. They offered the course for $150 a month for 3 months. After researching and seeing how many companies were using WordPress and the value in it I decided to take the plunge and take the course. I started in May and completed it in August.</p>\n<blockquote><p>While taking the course I joined their Slack and met a group of amazing women, some who were alumni and found success from freelancing building websites with WordPress. They shared advice and tips on how to find clients and freelance and how they made the transition.</p></blockquote>\n<p>I took all the knowledge I saw and absorbed it like a sponge. Then in September, I took the plunge and quit my job.</p>\n<h3>Finding Community</h3>\n<p>Now, this was reckless of me. While I did have some savings to keep me afloat for a minute I never planned this out. If you’re going to freelance I highly recommend you don’t go this route. I started looking everywhere I could to get gigs. Upwork was the most successful platform especially for finding WordPress gigs. I was able to find a few successful gigs and luckily got to work with a web agency which gave me a steady stream of income for a while. I learned how to do contracts, set rates and expectations and through these methods and more was able to secure quality clients that I still work with today. One client referred me to others who needed work, which brought in even more income. While I was doing this I also decided to join Twitter and found a community of other black folks who were also starting their tech journey. I was able to help others and well as ask for advice when I needed it. Finally, I no longer felt alone.</p>\n<p>But then in February, the agency jobs started to slow down. I could have gone a little longer without a proper job but I decided to go back into the workforce because I wanted to build back up my savings faster and also invest in other parts of my business. So I decided to get back into the job world and got a contract job with the federal government. The job was good and I did so well that after 2 months they offered me a full-time position. I still work at this job to this day.</p>\n<p>As for my WordPress websites, I still do work for existing clients if they really need it. In addition, I run a blog called #WordPressWednesday (now named #WordPressWisdom) where I share tips and tricks on all things WordPress. But my journey isn’t over. I recently got accepted into Flatiron Software Development Bootcamp where I will be diving into more backend development. I also have a lot of other things coming which I can’t share just yet. It took a lot of work to get to this point.</p>\n<blockquote><p>I don’t think I would have ever gotten to this point without the support of the tech community on Twitter and most notably the Digital Empire community that I’m a part of.</p></blockquote>\n<p>Having a place to share resources, tips and jokes daily have kept me motivated and going for the past year.</p>\n<p>WordPress for me has been a life skill that has brought wealth. It has given me the ability to generate a whole other means of income as well and give resources to other people who are looking for a place to start in the coding world. But it wasn’t an easy journey to get this point. And if you feel stuck like I was, know that there are people here for you. Start your journey today. Get on Twitter and introduce yourself to the community. Ask for help. And most importantly, know that you are not alone.</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: Know That You Are Not Alone\" class=\"rtsocial-twitter-button\" href=\"https://twitter.com/share?text=Know%20That%20You%20Are%20Not%20Alone&via=heropress&url=https%3A%2F%2Fheropress.com%2Fessays%2Fknow-that-you-are-not-alone%2F\" rel=\"nofollow\" target=\"_blank\"></a></div></div><div class=\"rtsocial-fb-horizontal fb-light\"><div class=\"rtsocial-fb-horizontal-button\"><a title=\"Like: Know That You Are Not Alone\" class=\"rtsocial-fb-button rtsocial-fb-like-light\" href=\"https://www.facebook.com/sharer.php?u=https%3A%2F%2Fheropress.com%2Fessays%2Fknow-that-you-are-not-alone%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%2Fknow-that-you-are-not-alone%2F&title=Know+That+You+Are+Not+Alone\" rel=\"nofollow\" target=\"_blank\" title=\"Share: Know That You Are Not Alone\"></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/know-that-you-are-not-alone/&media=https://heropress.com/wp-content/uploads/2019/02/022719-min-150x150.jpg&description=Know That You Are Not Alone\" rel=\"nofollow\" target=\"_blank\" title=\"Pin: Know That You Are Not Alone\"></a></div></div><a rel=\"nofollow\" class=\"perma-link\" href=\"https://heropress.com/essays/know-that-you-are-not-alone/\" title=\"Know That You Are Not Alone\"></a></div><p>The post <a rel=\"nofollow\" href=\"https://heropress.com/essays/know-that-you-are-not-alone/\">Know That You Are Not Alone</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, 27 Feb 2019 12:00:39 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Sarah Williams\";s: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:60:\"WPTavern: Block Editor Now in Beta for WordPress Mobile Apps\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=87647\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"https://wptavern.com/block-editor-now-in-beta-for-wordpress-mobile-apps\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2369:\"<p>The new Gutenberg block editor that arrived in WordPress 5.0 is <a href=\"https://make.wordpress.org/mobile/2019/02/26/the-block-editor-is-coming-to-the-mobile-apps/\" rel=\"noopener\" target=\"_blank\">now in beta testing on the mobile apps</a>. The editor will be available in version 11.9, which is planned to be released to the public on March 11.</p>\n<p>“For this first version, our main focus was to build a pleasant writing experience with support for the most basic types of content,” WordPress mobile engineer Jorge Bernal said.</p>\n<p>“Our data showed that 90%+ of the posts created on the mobile apps consisted of basic text and images, so we decided to focus on supporting the Paragraph, Image, and Heading blocks on this version.”</p>\n<p>The interface looks similar to using Gutenberg on desktop, but it has been pared back to allow for only the most commonly used blocks and access to simple block settings. </p>\n<p><a href=\"https://cloudup.com/c37PVQ3lpgK\"><img src=\"https://i2.wp.com/cldup.com/p1TdZhszqp.gif?resize=606%2C454&ssl=1\" alt=\"Block editor v1 0 demo FINAL 2019 02 26 08 29 03\" width=\"606\" height=\"454\" /></a></p>\n<p>The block editor in the Android app feels noticeably slower on mobile than the previous editor. It’s not yet an improvement on the existing mobile editor but it’s still in beta. Even though it’s still rough around the edges, the posting interface is more consistent with what users experience on the desktop. During this transition time, users will retain the ability to use either editor, since the Gutenberg implementation just provides the basics for now.</p>\n<p>After version 11.9 rolls out to the apps, users can choose if they want to use the block editor. The app detects which editor a post was created with and will automatically open it when a user attempts to edit a post. Users can manually switch back to the old editor for posts that have blocks by selecting “Switch to Classic Editor” under the ellipses menu. New posts will still use the Classic Editor by default but users can change the default to the block editor by going to Me > App Settings and enabling the “Use Block Editor” option. </p>\n<p>After 11.9 is released the team plans to work on UX improvements and bug fixes before moving on to add support for the most common blocks and use cases.</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, 27 Feb 2019 01:00:28 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s: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: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:82:\"WPTavern: Gumroad Plugin for WordPress Adds Gutenberg Block for Embedding Products\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=87606\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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/gumroad-plugin-for-wordpress-adds-gutenberg-block-for-embedding-products\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2290:\"<p><a href=\"https://gumroad.com/\">Gumroad</a> has updated its WordPress <a href=\"https://wordpress.org/plugins/gumroad/\">plugin</a> to include a Gutenberg block for embedding a product in any page or post. The online platform enables creators, artists, educators, writers, and anyone else to sell their products without having to manage their own e-commerce setup. Gumroad’s WordPress plugin has been available for several years and is now compatible with the new Gutenberg editor.</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\"><img src=\"https://s.w.org/images/core/emoji/11/72x72/1f4e2.png\" alt=\"?\" class=\"wp-smiley\" /> Re-introducing: Gumroad for WordPress.<br /><br />• automatically includes our JS if we detect a link to a Gumroad product<br />• support for Gutenberg blocks<br /><br />Get it now: <a href=\"https://t.co/DW87xf1f8K\">https://t.co/DW87xf1f8K</a> <a href=\"https://t.co/wRHy0pI5I0\">pic.twitter.com/wRHy0pI5I0</a></p>— Gumroad (@gumroad) <a href=\"https://twitter.com/gumroad/status/1098968154380808192?ref_src=twsrc%5Etfw\">February 22, 2019</a></blockquote>\n</div>\n\n\n\n<p>I tested the block and it works as advertised. It would be nice if the block also provided an optional button style, instead of just a plain link on the frontend. </p>\n\n\n\n<p>Gumroad founder and CEO Sahil Lavingia recently published a post titled “<a href=\"https://medium.com/s/story/reflecting-on-my-failure-to-build-a-billion-dollar-company-b0c31d7db0e7\">Reflecting on My Failure to Build a Billion-Dollar Company</a>” about his journey building Gumroad. The post gained a lot of attention due to Lavingia’s honest and inspiring account of the failures and painful changes he experienced throughout the company’s history. Last year he decided to embrace transparency and began publishing the company’s monthly financials. The post also included a nod to WordPress with Gumroad’s plans to go open source.</p>\n\n\n\n<p>“Soon, we’re also planning to open-source the whole product, WordPress-style,” Lavingia said. “Anyone will be able to deploy their own version of Gumroad, make the changes they want, and sell the content they want, without us being the middleman.”</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, 26 Feb 2019 16:23:10 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:62:\"WPTavern: Block Management Features Proposed for WordPress 5.2\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=87478\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"https://wptavern.com/block-management-features-proposed-for-wordpress-5-2\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:7394:\"<p>WordPress 5.1 has been <a href=\"https://wordpress.org/download/counter/\" rel=\"noopener\" target=\"_blank\">downloaded</a> more than 3.6 million times since its release last week and work on 5.2 is now underway. The upcoming release will be led by Matt Mullenweg with Josepha Haden acting as Release Coordinator. Gary Pendergast posted a <a href=\"https://make.wordpress.org/core/2019/02/19/wordpress-5-2-schedule-and-scope/\" rel=\"noopener\" target=\"_blank\">proposed scope and schedule</a> that would have 5.2 arriving April 23, 2019. </p>\n<p>One of the proposed features is block management, the ability for users to hide or turn off blocks that they are not using. An avalanche of blocks is pouring into the WordPress ecosystem, especially with the push to convert core widgets to blocks. Users’ expectations will soon become firmly rooted in the concept of the block interface as widgets slowly become a relic of the past. It’s also quite common for users to install block collections that introduce a dozen or more new blocks when they really only have use for a handful of blocks.</p>\n<p>Several standalone plugins already provide block management features, such as <a href=\"https://wordpress.org/plugins/manager-for-gutenberg/\" rel=\"noopener\" target=\"_blank\">Gutenberg Manager</a> and <a href=\"https://wordpress.org/plugins/disable-gutenberg-blocks/\" rel=\"noopener\" target=\"_blank\">Disable Gutenberg Blocks</a>. They all have different UI’s and approaches to letting users turn off blocks. For example, Gutenberg Manager uses a tabbed interface with checkboxes for disabling core blocks. The Disable Gutenberg Blocks plugin offers an admin screen that is similar to plugin management:</p>\n<p><a href=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2019/02/disable-gutenberg-blocks.jpg?ssl=1\"><img /></a></p>\n<p>A few block collections have also implemented their own block management features, including <a href=\"https://wordpress.org/plugins/advanced-gutenberg-blocks/\" rel=\"noopener\" target=\"_blank\">Advanced Gutenberg Blocks</a> and <a href=\"https://wordpress.org/plugins/coblocks/\" rel=\"noopener\" target=\"_blank\">CoBlocks</a>. Advanced Gutenberg Blocks adds a screen under its own top level menu for disabling blocks. </p>\n<p><a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2019/02/advanced-gutenberg-blocks-disable-blocks.jpg?ssl=1\"><img /></a></p>\n<p><a href=\"https://coblocks.com/\" rel=\"noopener\" target=\"_blank\">CoBlocks</a> recently introduced a block management feature that is one of the more elegant implementations currently available. It adds the block management interface inline with the editor in a modal window, instead of relegating it to its own admin page. It also offers the ability to turn entire categories on/off. </p>\n<p></p>\n<p>After CoBlocks announced its block management feature, Nick Hamze contended that this should be replicated for WordPress core. His comments received a bit of pushback from Gutenberg technical lead Riad Benguella who sees it as a feature for more advanced users.</p>\n<blockquote class=\"twitter-tweet\">\n<p lang=\"en\" dir=\"ltr\">Yeah, nice plugin. It feels like something for advanced WordPress users / developers / agencies… and not something that should be baked in initially but happy to discuss.</p>\n<p>— Riad Benguella (@riadbenguella) <a href=\"https://twitter.com/riadbenguella/status/1096382553521602560?ref_src=twsrc%5Etfw\">February 15, 2019</a></p></blockquote>\n<p></p>\n<p>“The ability to disable blocks seems pretty basic,” Hamze <a href=\"https://twitter.com/NickHamze/status/1096400194311254017\" rel=\"noopener\" target=\"_blank\">responded</a>. “Rich didn’t make this feature for fun. Regular users (not advanced ones or developers) asked for this. He made it to solve a problem that real users are having. You are telling me that more regular users will use the Amazon Kindle Embed Block (that is being baking into 5.1) than would like the ability to turn off blocks they don’t want to use.”</p>\n<p>Last week when I spoke to Benguella about the possibility of block management capabilities being included in core sometime in the future, he said it wasn’t an immediate priority for the project.</p>\n<p>“Block management is not an immediate focus in the Gutenberg roadmap and is considered plugin territory, but we keep close attention to the work done in the community and adapt in case user research and suggestions that bring value for the majority of users,” Benguella said. “My personal opinion for the moment is that, these are advanced features not required by every user of WordPress.</p>\n<p>“That said, it’s important to enable plugin developers to implement more block management features, and one important piece of the puzzle here is the work we’re doing right now to <a href=\"https://github.com/WordPress/gutenberg/pull/13693\" rel=\"noopener\" target=\"_blank\">improve the block registration and discovery both using REST APIs, PHP helpers and JavaScript APIs</a>.”</p>\n<p>The project’s priorities seem to have changed since that time, as block management is now a strong consideration for WordPress 5.2. Thousands of users have already installed a plugin that includes these kinds of capabilities, a good indication that there is a demand for this. As everything in the plugin ecosystem gradually moves towards blocks, it will be easy for users to get inundated by the many blocks available in the editor. Plugins are currently answering users’ needs with many different UI’s for turning blocks on/off. It’s clear that WordPress core needs to lead the way by providing a standard UI for block management.</p>\n<p>In recent #core-editor chats Benguella said he has some concerns regarding the short time frame for the newly proposed block management feature, but is starting initial explorations of what the first iteration may look like in WordPress 5.2.</p>\n<p>“So in addition to the currently shipped enhancements and the work done on the widget blocks, there has been a bunch of requests and feedback suggesting the need for a block management solution and block directory work,” Benguella said. “This is actually proposed for 5.2 and something we need to start thinking about and exploring the existing possibilities.” </p>\n<p>Pendergast referenced CoBlocks’ implementation in his <a href=\"https://make.wordpress.org/core/2019/02/19/wordpress-5-2-schedule-and-scope/\" rel=\"noopener\" target=\"_blank\">5.2 scope and schedule post</a> as an example of how plugin developers have approached block management.</p>\n<p>“We weren’t the first by far, but I’d argue it’s clearly the best experience,” CoBlocks author Rich Tabor said. “I built it because folks have been asking for just that, and I wanted to deliver a much better experience than asking them to go to a WP admin page elsewhere. I’d love to see something like the Block Manager in core and am available to help out in any way I can.”</p>\n<p>Other proposed features for WordPress 5.2 include the <a href=\"https://wordpress.org/plugins/health-check/\" rel=\"noopener\" target=\"_blank\">Site Health Check</a> plugin, PHP error protection, and package signing for updates. The first beta is expected March 14, 2019, and RC 1 is slated for April 10, 2019.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 25 Feb 2019 17:22:38 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:46;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:113:\"WPTavern: Ecwid E-Commerce Plugin Adds Gutenberg Support, Focuses on Small Businesses to Compete with WooCommerce\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=87223\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:123:\"https://wptavern.com/ecwid-e-commerce-plugin-adds-gutenberg-support-focuses-on-small-businesses-to-compete-with-woocommerce\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:5542:\"<p><a href=\"https://wordpress.org/plugins/ecwid-shopping-cart/\" rel=\"noopener\" target=\"_blank\">Ecwid’s e-commerce plugin for WordPress</a> is now fully integrated with the Gutenberg editor. The cloud-based store builder, pronounced “eck-wid,” is short for e-commerce widgets, but the service has fully embraced blocks in its latest releases. </p>\n<p>The new default Storefront block comes pre-installed and embeds the entire Ecwid store on a page, including product listing, filters, navigation, and checkout. It provides a quick way for a new seller to get everything working without having to do anything besides add the plugin. Inside the block sidebar, the seller can tweak the storefront’s appearance, including thumbnails, page layout, colors, and other settings. The short screencast below shows the block in action and part of it was featured during Matt Mullenweg’s State of the Word address in December 2018.</p>\n<p></p>\n<p>Ecwid also has a new Single Product block with a buy now button. It enables sellers to select a product and display it as a card with an image, title, and buy now button. This is convenient for using inside a blog post without having to open the whole storefront. </p>\n<p>The team behind Ecwid is working on adding more Gutenberg blocks, despite having only a small fraction of their customers using WordPress. The company has more than 1.5 million customers running stores in 175 countries, but only 1.3% (20,000) are using WordPress. Even with so few active installations of the company’s WordPress plugin, Ecwid has its sights set on competing with WooCommerce, the most dominant player in this spacee. Last year at <a href=\"https://2018.moscow.wordcamp.org\" rel=\"noopener\" target=\"_blank\">WordCamp Moscow</a>, Ecwid Product Manager Matvey Kuritsyn gave a presentation titled “Why does anyone need a WooCommerce alternative?” Much of the company’s strategy is outlined in the <a href=\"https://docs.google.com/presentation/d/1ElElYLGav9tJ1u99GidbSsfd5sVr-h7hsMrw5WTU-Ok/edit#slide=id.g3ecb0d6708_0_11\" rel=\"noopener\" target=\"_blank\">slides from that presentation</a>.</p>\n<p>“We are focusing on small businesses and resolving their problems — where WooCommerce is weak,” Ecwid Marketing Manager Kseniya Pinkova said. She identified a few ways that Ecwid is working to differentiate itself from competitors:</p>\n<ul>\n<li>Ecwid is easy-to-use. Developers can set it up very quickly, but also the end users can do that themselves. 75% of Ecwid installations on WordPress are made by the end users, not developers.</li>\n<li>With Ecwid, everything is in the cloud, which means we handle updates, security patches, backups, huge loads ourselves (with no actions required on the user side).</li>\n<li>Ecwid is secure, it’s PCI DSS Level 1 certified – a bank level of security.</li>\n<li>Ecwid works with any hosting (even the cheapest and crappiest ones) even if you have 10,000 products in your store.</li>\n<li>Ecwid provides customers support by email, chat, and phone.</li>\n</ul>\n<p>This level of security, support, and maintenance is only available for WooCommerce via a managed solution like <a href=\"https://wordpress.com/ecommerce/\" rel=\"noopener\" target=\"_blank\">WordPress.com</a> or <a href=\"https://www.liquidweb.com/products/managed-woocommerce-hosting/\" rel=\"noopener\" target=\"_blank\">Liquid Web</a>, but sellers may still struggle with setup and customization due to the vast number of options and integrations available. Ecwid is focusing on its strengths as a SaaS-only solution to target small businesses in the WordPress space, instead of trying to replicate all the features that the dominant plugins already have.</p>\n<p>The company started in 2009 and has a distributed team of 160 people who work in development, IT, operations, support, content, and business development.</p>\n<p>“The WordPress plugin is technically a separate application (because Ecwid is a cloud solution, SaaS), and it appeared in 2009 as well,” Pinkova said. “But everything is interconnected — when a new featured is released in Ecwid, WordPress plugin users see it appear in their stores as well and can use it even without updating their WordPress plugin. For example, we rolled out new in-house Product Filters last week and they are now available for all Ecwid users, including those using WordPress. Some other features touch the WordPress plugin code — for example, some SEO enhancements involve both robust cloud part (API) and changes on the plugin side. The Gutenberg block is a good example of a third kind of Ecwid feature — it mostly resides in the plugin and it’s great to see how it improves the experience of our WordPress user base segment specifically.”</p>\n<p>Ecwid’s roadmap for 2019 includes tighter integration with Facebook and Instagram, an in-house multilingual catalog, and marketing features to help small businesses find their customers. Because the WordPress plugin essentially hooks up the cloud-based solution, many of the features and improvements on Ecwid’s general roadmap for all platforms will be automatically available whenever they roll out. </p>\n<p>“Regarding our WordPress plugin, the main thing for us is Gutenberg,” Pinkova said. “We’re very excited about it, we’re looking forward to new features Gutenberg is going to provide, and working on our plugin to make sure we’re making those available and easy-to-use for Ecwid sellers.”</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 22 Feb 2019 19:57:40 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:101:\"WPTavern: WordPress 5.1 Improves Editor Performance, Encourages Users to Update Outdated PHP Versions\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=87494\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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/wordpress-5-1-improves-editor-performance-encourages-users-to-update-outdated-php-versions\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2420:\"<p><a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2019/02/betty-carter.jpg?ssl=1\"><img /></a>image credit: <a href=\"http://jazzmuseuminharlem.org/events/the-hall-of-fame-singer-betty-carter/\" target=\"_blank\">National Jazz Museum in Harlem</a></p>\n<p>WordPress 5.1 “Betty” was released today, honoring American jazz singer <a href=\"https://en.wikipedia.org/wiki/Betty_Carter\" rel=\"noopener\" target=\"_blank\">Betty Carter</a>. This is the first major release since Gutenberg came into core. As part of WordPress’ 2019 “<a href=\"https://www.youtube.com/watch?v=Wro3bqi4Eb8\" rel=\"noopener\" target=\"_blank\">tighten up</a>” theme, this release was focused on improving performance in the editor and helping users update outdated versions of PHP.</p>\n<p>WordPress 5.0 had been downloaded more than 35 million times prior to 5.1’s release. Users who have adopted the block editor will notice that it is much more responsive and writing posts should feel smoother. WordPress 5.1 includes the performance improvements from Gutenberg 4.8 – faster page initialization time, improved typing performance, and optimization of various background processes.</p>\n<p>This release introduces new features from the <a href=\"https://make.wordpress.org/core/2019/01/14/php-site-health-mechanisms-in-5-1/\" rel=\"noopener\" target=\"_blank\">Site Health</a> project. WordPress will now detect if a site is running on an insecure, outdated version of PHP and display a notice in the dashboard with information about how to update PHP. It also includes checks for PHP version compatibility with plugins. WordPress 5.1+ will prevent users from installing plugins that require newer versions of PHP than they have running.</p>\n<p>This release also introduces a medley of miscellaneous improvements under the hood for developers, including (but not limited to) the following:</p>\n<ul>\n<li>New database table to store metadata associated with multisite networks</li>\n<li>Updated Cron API with new functions to assist with returning data, new filters for modifying cron storage </li>\n<li>New JavaScript build processes</li>\n<li>Updates to values for the WP_DEBUG_LOG constant</li>\n<li>Improved taxonomy metabox sanitization</li>\n</ul>\n<p>WordPress 5.1 was led by Matt Mullenweg with help from Gary Pendergast and 561 contributors. Approximately 41% (231 people) were new contributors to the project.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 22 Feb 2019 00:29:53 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:48;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:45:\"WordPress.org blog: WordPress 5.1 “Betty”\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=6589\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"https://wordpress.org/news/2019/02/betty/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:43385:\"<div class=\"wp-block-spacer\"></div>\n\n\n\n<h2>A Little Better Every Day</h2>\n\n\n\n<img src=\"https://s.w.org/images/core/5.1/update.svg\" alt=\"\" />\n\n\n\n<p>Version 5.1 of WordPress, named “Betty” in honour of acclaimed jazz vocalist Betty Carter, is available for download or update in your WordPress dashboard.</p>\n\n\n\n<p>Following <a href=\"https://wordpress.org/news/2018/12/bebo/\">WordPress 5.0</a> — a major release which introduced the new block editor — 5.1 focuses on polish, in particular by improving the overall performance of the editor. In addition, this release paves the way for a better, faster, and more secure WordPress with some essential tools for site administrators and developers.</p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<h2>Site Health</h2>\n\n\n\n<div class=\"wp-block-image inline-svg\"><img src=\"https://s.w.org/images/core/5.1/site-health.svg\" alt=\"\" width=\"191\" height=\"168\" /></div>\n\n\n\n<p>With security and speed in mind, this release introduces WordPress’s first <a href=\"https://make.wordpress.org/core/2019/01/14/php-site-health-mechanisms-in-5-1/\">Site Health</a> features. WordPress will start showing notices to administrators of sites that run long-outdated versions of PHP, which is the programming language that powers WordPress.</p>\n\n\n\n<p>When you install new plugins, WordPress’s Site Health features will check them against the version of PHP you’re running. If the plugin requires a version that won’t work with your site, WordPress will keep you from installing that plugin.</p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<h2>Editor Performance</h2>\n\n\n\n<div class=\"wp-block-image\"><img src=\"https://s.w.org/images/core/5.1/editor-performance.svg\" alt=\"\" width=\"182\" height=\"182\" /></div>\n\n\n\n<p>Introduced in WordPress 5.0, the new block editor continues to improve. Most significantly, WordPress 5.1 includes solid performance improvements within the editor. The editor should feel a little quicker to start, and typing should feel smoother. </p>\n\n\n\n<p>Expect more performance improvements in the next couple of releases.</p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h2>Developer Happiness</h2>\n\n\n\n<h3><a href=\"https://make.wordpress.org/core/2019/01/28/multisite-support-for-site-metadata-in-5-1/\">Multisite Metadata</a></h3>\n\n\n\n<p>5.1 introduces a new database table to store metadata associated with sites and allows for the storage of arbitrary site data relevant in a multisite / network context.</p>\n\n\n\n<h3><a href=\"https://make.wordpress.org/core/2019/01/23/cron-api-changes-in-wordpress-5-1/\">Cron API</a></h3>\n\n\n\n<p>The Cron API has been updated with new functions to assist with returning data and includes new filters for modifying cron storage. Other changes in behavior affect cron spawning on servers running FastCGI and PHP-FPM versions 7.0.16 and above.</p>\n\n\n\n<h3><a href=\"https://make.wordpress.org/core/2018/05/16/preparing-wordpress-for-a-javascript-future-part-1-build-step-and-folder-reorganization/\">New JS Build Processes</a></h3>\n\n\n\n<p>WordPress 5.1 features a new JavaScript build option, following the large reorganisation of code that started in the 5.0 release.</p>\n\n\n\n<h3><a href=\"https://make.wordpress.org/core/2019/01/23/miscellaneous-developer-focused-changes-in-5-1/\">Other Developer Goodness</a></h3>\n\n\n\n<p>Miscellaneous improvements include:</p>\n\n\n\n<ul><li>Updates to values for the <code>WP_DEBUG_LOG</code> constant</li><li>New test config file constant in the test suite, new plugin action hooks </li><li>Short-circuit filters for <code>wp_unique_post_slug()</code>, <code>WP_User_Query</code>, and <code>count_users()</code></li><li>A new <code>human_readable_duration</code> function</li><li>Improved taxonomy metabox sanitization</li><li>Limited <code>LIKE</code> support for meta keys when using <code>WP_Meta_Query</code></li><li>A new “doing it wrong” notice when registering REST API endpoints</li></ul>\n\n\n\n<p>…and more!</p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h2>The Squad</h2>\n\n\n\n<p>This release was led by <a href=\"http://ma.tt/\">Matt Mullenweg</a>, along with <a href=\"https://pento.net/\">Gary Pendergast</a> as <a href=\"https://core.trac.wordpress.org/changeset/42343\">Senior Code Reshuffler</a> and <a href=\"https://core.trac.wordpress.org/changeset/43309\">Poet</a>. They received wonderful assistance from the following 561 contributors for this release, 231 of whom were making their first ever contribution! Pull up some Betty Carter on your music service of choice, and check out some of their profiles:</p>\n\n\n<a href=\"https://profiles.wordpress.org/0x6f0\">0x6f0</a>, <a href=\"https://profiles.wordpress.org/1265578519-1\">1265578519</a>, <a href=\"https://profiles.wordpress.org/1naveengiri\">1naveengiri</a>, <a href=\"https://profiles.wordpress.org/360zen\">360zen</a>, <a href=\"https://profiles.wordpress.org/aardrian\">aardrian</a>, <a href=\"https://profiles.wordpress.org/jorbin\">Aaron Jorbin</a>, <a href=\"https://profiles.wordpress.org/abdullahramzan\">Abdullah Ramzan</a>, <a href=\"https://profiles.wordpress.org/abhayvishwakarma\">Abhay Vishwakarma</a>, <a href=\"https://profiles.wordpress.org/abhijitrakas\">Abhijit Rakas</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/adamsilverstein\">Adam Silverstein</a>, <a href=\"https://profiles.wordpress.org/ajitbohra\">Ajit Bohra</a>, <a href=\"https://profiles.wordpress.org/schlessera\">Alain Schlesser</a>, <a href=\"https://profiles.wordpress.org/aldavigdis\">aldavigdis</a>, <a href=\"https://profiles.wordpress.org/alejandroxlopez\">alejandroxlopez</a>, <a href=\"https://profiles.wordpress.org/alexstine\">Alex</a>, <a href=\"https://profiles.wordpress.org/xknown\">Alex Concha</a>, <a href=\"https://profiles.wordpress.org/tellyworth\">Alex Shiels</a>, <a href=\"https://profiles.wordpress.org/xyfi\">Alexander Botteram</a>, <a href=\"https://profiles.wordpress.org/alexvorn2\">Alexandru Vornicescu</a>, <a href=\"https://profiles.wordpress.org/alexgso\">alexgso</a>, <a href=\"https://profiles.wordpress.org/allancole\">allancole</a>, <a href=\"https://profiles.wordpress.org/allendav\">Allen Snook</a>, <a href=\"https://profiles.wordpress.org/alvarogois\">Alvaro Gois dos Santos</a>, <a href=\"https://profiles.wordpress.org/acirujano\">Ana Cirujano</a>, <a href=\"https://profiles.wordpress.org/anantajitjg\">Anantajit JG</a>, <a href=\"https://profiles.wordpress.org/afercia\">Andrea Fercia</a>, <a href=\"https://profiles.wordpress.org/andg\">Andrea Gandino</a>, <a href=\"https://profiles.wordpress.org/andreamiddleton\">Andrea Middleton</a>, <a href=\"https://profiles.wordpress.org/andrei0x309\">andrei0x309</a>, <a href=\"https://profiles.wordpress.org/andreiglingeanu\">andreiglingeanu</a>, <a href=\"https://profiles.wordpress.org/aduth\">Andrew Duthie</a>, <a href=\"https://profiles.wordpress.org/andrewza\">Andrew Lima</a>, <a href=\"https://profiles.wordpress.org/nacin\">Andrew Nacin</a>, <a href=\"https://profiles.wordpress.org/anevins\">Andrew Nevins</a>, <a href=\"https://profiles.wordpress.org/azaozz\">Andrew Ozz</a>, <a href=\"https://profiles.wordpress.org/rarst\">Andrey Savchenko</a>, <a href=\"https://profiles.wordpress.org/nosolosw\">Andrés Maneiro</a>, <a href=\"https://profiles.wordpress.org/afragen\">Andy Fragen</a>, <a href=\"https://profiles.wordpress.org/andizer\">Andy Meerwaldt</a>, <a href=\"https://profiles.wordpress.org/la-geek\">Angelika Reisiger</a>, <a href=\"https://profiles.wordpress.org/antaltettinger\">Antal Tettinger</a>, <a href=\"https://profiles.wordpress.org/antipole\">antipole</a>, <a href=\"https://profiles.wordpress.org/atimmer\">Anton Timmermans</a>, <a href=\"https://profiles.wordpress.org/vanyukov\">Anton Vanyukov</a>, <a href=\"https://profiles.wordpress.org/avillegasn\">Antonio Villegas</a>, <a href=\"https://profiles.wordpress.org/antonioeatgoat\">antonioeatgoat</a>, <a href=\"https://profiles.wordpress.org/aranwer104\">Anwer AR</a>, <a href=\"https://profiles.wordpress.org/aryamaaru\">Arun</a>, <a href=\"https://profiles.wordpress.org/mrasharirfan\">Ashar Irfan</a>, <a href=\"https://profiles.wordpress.org/ashokrd2013\">ashokrd2013</a>, <a href=\"https://profiles.wordpress.org/ayeshrajans\">Ayesh Karunaratne</a>, <a href=\"https://profiles.wordpress.org/ayubadiputra\">Ayub Adiputra</a>, <a href=\"https://profiles.wordpress.org/barryceelen\">Barry Ceelen</a>, <a href=\"https://profiles.wordpress.org/behzod\">Behzod Saidov</a>, <a href=\"https://profiles.wordpress.org/drywallbmb\">Ben Byrne</a>, <a href=\"https://profiles.wordpress.org/benhuberman\">benhuberman</a>, <a href=\"https://profiles.wordpress.org/benoitchantre\">Benoit Chantre</a>, <a href=\"https://profiles.wordpress.org/benvaassen\">benvaassen</a>, <a href=\"https://profiles.wordpress.org/bhargavmehta\">Bhargav Mehta</a>, <a href=\"https://profiles.wordpress.org/bikecrazyy\">bikecrazyy</a>, <a href=\"https://profiles.wordpress.org/birgire\">Birgir Erlendsson</a>, <a href=\"https://profiles.wordpress.org/bjornw\">BjornW</a>, <a href=\"https://profiles.wordpress.org/blair-jersyer\">Blair jersyer</a>, <a href=\"https://profiles.wordpress.org/blobfolio\">Blobfolio</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/boonebgorges\">Boone Gorges</a>, <a href=\"https://profiles.wordpress.org/bor0\">Boro Sitnikovski</a>, <a href=\"https://profiles.wordpress.org/bradparbs\">Brad Parbs</a>, <a href=\"https://profiles.wordpress.org/bradleyt\">Bradley Taylor</a>, <a href=\"https://profiles.wordpress.org/bramheijmink\">bramheijmink</a>, <a href=\"https://profiles.wordpress.org/kraftbj\">Brandon Kraft</a>, <a href=\"https://profiles.wordpress.org/bpayton\">Brandon Payton</a>, <a href=\"https://profiles.wordpress.org/brentswisher\">Brent Swisher</a>, <a href=\"https://profiles.wordpress.org/rzen\">Brian Richards</a>, <a href=\"https://profiles.wordpress.org/bridgetwillard\">bridgetwillard</a>, <a href=\"https://profiles.wordpress.org/bandonrandon\">Brooke.</a>, <a href=\"https://profiles.wordpress.org/bruceallen\">bruceallen</a>, <a href=\"https://profiles.wordpress.org/bulletdigital\">bulletdigital</a>, <a href=\"https://profiles.wordpress.org/burhandodhy\">Burhan Nasir</a>, <a href=\"https://profiles.wordpress.org/burlingtonbytes\">Bytes.co</a>, <a href=\"https://profiles.wordpress.org/icaleb\">Caleb Burks</a>, <a href=\"https://profiles.wordpress.org/calin\">Calin Don</a>, <a href=\"https://profiles.wordpress.org/campusboy1987\">campusboy</a>, <a href=\"https://profiles.wordpress.org/carolinegeven\">carolinegeven</a>, <a href=\"https://profiles.wordpress.org/ccismaru\">ccismaru</a>, <a href=\"https://profiles.wordpress.org/chasewg\">chasewg</a>, <a href=\"https://profiles.wordpress.org/chetan200891\">Chetan Prajapati</a>, <a href=\"https://profiles.wordpress.org/chouby\">Chouby</a>, <a href=\"https://profiles.wordpress.org/chrico\">ChriCo</a>, <a href=\"https://profiles.wordpress.org/chriscct7\">chriscct7</a>, <a href=\"https://profiles.wordpress.org/boda1982\">Christopher Spires</a>, <a href=\"https://profiles.wordpress.org/claudiu\">claudiu</a>, <a href=\"https://profiles.wordpress.org/cliffpaulick\">Clifford Paulick</a>, <a href=\"https://profiles.wordpress.org/munklefish\">Code Clinic</a>, <a href=\"https://profiles.wordpress.org/codegrau\">codegrau</a>, <a href=\"https://profiles.wordpress.org/coleh\">coleh</a>, <a href=\"https://profiles.wordpress.org/conner_bw\">conner_bw</a>, <a href=\"https://profiles.wordpress.org/coreymckrill\">Corey McKrill</a>, <a href=\"https://profiles.wordpress.org/croce\">croce</a>, <a href=\"https://profiles.wordpress.org/littlebigthing\">Csaba (LittleBigThings)</a>, <a href=\"https://profiles.wordpress.org/clarinetlord\">Cyrus Collier</a>, <a href=\"https://profiles.wordpress.org/danielbachhuber\">Daniel Bachhuber</a>, <a href=\"https://profiles.wordpress.org/danieltj\">Daniel James</a>, <a href=\"https://profiles.wordpress.org/daniel-koskinen\">Daniel Koskinen</a>, <a href=\"https://profiles.wordpress.org/talldanwp\">Daniel Richards</a>, <a href=\"https://profiles.wordpress.org/mte90\">Daniele Scasciafratte</a>, <a href=\"https://profiles.wordpress.org/danimalbrown\">danimalbrown</a>, <a href=\"https://profiles.wordpress.org/dannycooper\">Danny Cooper</a>, <a href=\"https://profiles.wordpress.org/dannydehaan\">Danny de Haan</a>, <a href=\"https://profiles.wordpress.org/darko-a7\">Darko A7</a>, <a href=\"https://profiles.wordpress.org/nerrad\">Darren Ethier</a>, <a href=\"https://profiles.wordpress.org/davepullig\">Dave Pullig</a>, <a href=\"https://profiles.wordpress.org/davidakennedy\">David A. Kennedy</a>, <a href=\"https://profiles.wordpress.org/davidanderson\">David Anderson</a>, <a href=\"https://profiles.wordpress.org/davidbinda\">David Binovec</a>, <a href=\"https://profiles.wordpress.org/desertsnowman\">David Cramer</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/dshanske\">David Shanske</a>, <a href=\"https://profiles.wordpress.org/superdav42\">David Stone</a>, <a href=\"https://profiles.wordpress.org/dekervit\">dekervit</a>, <a href=\"https://profiles.wordpress.org/denisco\">Denis Yanchevskiy</a>, <a href=\"https://profiles.wordpress.org/dmsnell\">Dennis Snell</a>, <a href=\"https://profiles.wordpress.org/designsimply\">designsimply</a>, <a href=\"https://profiles.wordpress.org/dfangstrom\">dfangstrom</a>, <a href=\"https://profiles.wordpress.org/dhanendran\">Dhanendran</a>, <a href=\"https://profiles.wordpress.org/dharm1025\">Dharmesh Patel</a>, <a href=\"https://profiles.wordpress.org/dhavalkasvala\">Dhaval kasavala</a>, <a href=\"https://profiles.wordpress.org/dhruvin\">Dhruvin</a>, <a href=\"https://profiles.wordpress.org/diedeexterkate\">DiedeExterkate</a>, <a href=\"https://profiles.wordpress.org/dilipbheda\">Dilip Bheda</a>, <a href=\"https://profiles.wordpress.org/dingo_d\">dingo-d</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/ocean90\">Dominik Schilling</a>, <a href=\"https://profiles.wordpress.org/donncha\">Donncha O Caoimh</a>, <a href=\"https://profiles.wordpress.org/dontstealmyfish\">dontstealmyfish</a>, <a href=\"https://profiles.wordpress.org/drewapicture\">Drew Jaynes</a>, <a href=\"https://profiles.wordpress.org/drivingralle\">Drivingralle</a>, <a href=\"https://profiles.wordpress.org/dschalk\">dschalk</a>, <a href=\"https://profiles.wordpress.org/dsifford\">dsifford</a>, <a href=\"https://profiles.wordpress.org/eamax\">eamax</a>, <a href=\"https://profiles.wordpress.org/eartboard\">eArtboard</a>, <a href=\"https://profiles.wordpress.org/edo888\">edo888</a>, <a href=\"https://profiles.wordpress.org/electricfeet\">ElectricFeet</a>, <a href=\"https://profiles.wordpress.org/iseulde\">Ella Van Durpe</a>, <a href=\"https://profiles.wordpress.org/edocev\">Emil Dotsev</a>, <a href=\"https://profiles.wordpress.org/ericlewis\">Eric Andrew Lewis</a>, <a href=\"https://profiles.wordpress.org/ericdaams\">Eric Daams</a>, <a href=\"https://profiles.wordpress.org/erich_k4wp\">Erich Munz</a>, <a href=\"https://profiles.wordpress.org/ethitter\">Erick Hitter</a>, <a href=\"https://profiles.wordpress.org/ericmeyer\">ericmeyer</a>, <a href=\"https://profiles.wordpress.org/etoledom\">etoledom</a>, <a href=\"https://profiles.wordpress.org/evansolomon\">Evan Solomon</a>, <a href=\"https://profiles.wordpress.org/dyrer\">Evangelos Athanasiadis</a>, <a href=\"https://profiles.wordpress.org/faisal03\">Faisal Alvi</a>, <a href=\"https://profiles.wordpress.org/felipeelia\">Felipe Elia</a>, <a href=\"https://profiles.wordpress.org/flixos90\">Felix Arntz</a>, <a href=\"https://profiles.wordpress.org/fclaussen\">Fernando Claussen</a>, <a href=\"https://profiles.wordpress.org/flipkeijzer\">flipkeijzer</a>, <a href=\"https://profiles.wordpress.org/mista-flo\">Florian TIAR</a>, <a href=\"https://profiles.wordpress.org/fpcsjames\">FPCSJames</a>, <a href=\"https://profiles.wordpress.org/frank-klein\">Frank Klein</a>, <a href=\"https://profiles.wordpress.org/fuchsws\">fuchsws</a>, <a href=\"https://profiles.wordpress.org/fullyint\">fullyint</a>, <a href=\"https://profiles.wordpress.org/gma992\">Gabriel Maldonado</a>, <a href=\"https://profiles.wordpress.org/garetharnold\">Gareth</a>, <a href=\"https://profiles.wordpress.org/garrett-eclipse\">Garrett Hyder</a>, <a href=\"https://profiles.wordpress.org/garyj\">Gary Jones</a>, <a href=\"https://profiles.wordpress.org/soulseekah\">Gennady Kovshenin</a>, <a href=\"https://profiles.wordpress.org/kloon\">Gerhard Potgieter</a>, <a href=\"https://profiles.wordpress.org/girishpanchal\">Girish Panchal</a>, <a href=\"https://profiles.wordpress.org/gm_alex\">GM_Alex</a>, <a href=\"https://profiles.wordpress.org/gnif\">gnif</a>, <a href=\"https://profiles.wordpress.org/graymouser\">graymouser</a>, <a href=\"https://profiles.wordpress.org/greg\">greg</a>, <a href=\"https://profiles.wordpress.org/gziolo\">Grzegorz Ziółkowski</a>, <a href=\"https://profiles.wordpress.org/guido07111975\">Guido</a>, <a href=\"https://profiles.wordpress.org/gutendev\">GutenDev <img src=\"https://s.w.org/images/core/emoji/11.2.0/72x72/270d.png\" alt=\"✍\" class=\"wp-smiley\" /><img src=\"https://s.w.org/images/core/emoji/11.2.0/72x72/3299.png\" alt=\"㊙\" class=\"wp-smiley\" /></a>, <a href=\"https://profiles.wordpress.org/hafiz\">Hafiz Rahman</a>, <a href=\"https://profiles.wordpress.org/hailite\">Hai@LiteSpeed<img src=\"https://s.w.org/images/core/emoji/11.2.0/72x72/26a1.png\" alt=\"⚡\" class=\"wp-smiley\" /></a>, <a href=\"https://profiles.wordpress.org/hansjovisyoast\">Hans-Christiaan Braun</a>, <a href=\"https://profiles.wordpress.org/hardeepasrani\">Hardeep Asrani</a>, <a href=\"https://profiles.wordpress.org/hardik-amipara\">Hardik Amipara</a>, <a href=\"https://profiles.wordpress.org/harsh175\">Harsh Patel</a>, <a href=\"https://profiles.wordpress.org/haruharuharuby\">haruharuharuby</a>, <a href=\"https://profiles.wordpress.org/idea15\">Heather Burns</a>, <a href=\"https://profiles.wordpress.org/helen\">Helen Hou-Sandi</a>, <a href=\"https://profiles.wordpress.org/henrywright\">Henry Wright</a>, <a href=\"https://profiles.wordpress.org/herregroen\">Herre Groen</a>, <a href=\"https://profiles.wordpress.org/hitendra-chopda\">Hitendra Chopda</a>, <a href=\"https://profiles.wordpress.org/ianbelanger\">Ian Belanger</a>, <a href=\"https://profiles.wordpress.org/iandunn\">Ian Dunn</a>, <a href=\"https://profiles.wordpress.org/ibantxillo\">ibantxillo</a>, <a href=\"https://profiles.wordpress.org/igmoweb\">Ignacio Cruz Moreno</a>, <a href=\"https://profiles.wordpress.org/igorsch\">Igor</a>, <a href=\"https://profiles.wordpress.org/ibenic\">Igor Benic</a>, <a href=\"https://profiles.wordpress.org/imath\">imath</a>, <a href=\"https://profiles.wordpress.org/ionvv\">ionvv</a>, <a href=\"https://profiles.wordpress.org/ireneyoast\">Irene Strikkers</a>, <a href=\"https://profiles.wordpress.org/isabel104\">isabel104</a>, <a href=\"https://profiles.wordpress.org/ishitaka\">ishitaka</a>, <a href=\"https://profiles.wordpress.org/meatman89fs\">Ivan Mudrik</a>, <a href=\"https://profiles.wordpress.org/jdgrimes\">J.D. Grimes</a>, <a href=\"https://profiles.wordpress.org/jackreichert\">Jack Reichert</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/janak007\">janak Kaneriya</a>, <a href=\"https://profiles.wordpress.org/janalwin\">janalwin</a>, <a href=\"https://profiles.wordpress.org/jankimoradiya\">Janki Moradiya</a>, <a href=\"https://profiles.wordpress.org/janthiel\">janthiel</a>, <a href=\"https://profiles.wordpress.org/jaswrks\">Jason Caldwell</a>, <a href=\"https://profiles.wordpress.org/javorszky\">javorszky</a>, <a href=\"https://profiles.wordpress.org/jaydeep-rami\">Jaydip Rami</a>, <a href=\"https://profiles.wordpress.org/jaymanpandya\">Jayman Pandya</a>, <a href=\"https://profiles.wordpress.org/audrasjb\">Jb Audras</a>, <a href=\"https://profiles.wordpress.org/jfarthing84\">Jeff Farthing</a>, <a href=\"https://profiles.wordpress.org/cheffheid\">Jeffrey de Wit</a>, <a href=\"https://profiles.wordpress.org/jeffpaul\">Jeffrey Paul</a>, <a href=\"https://profiles.wordpress.org/jmdodd\">Jennifer M. Dodd</a>, <a href=\"https://profiles.wordpress.org/miss_jwo\">Jenny</a>, <a href=\"https://profiles.wordpress.org/jeremeylduvall\">Jeremey</a>, <a href=\"https://profiles.wordpress.org/jeremyfelt\">Jeremy Felt</a>, <a href=\"https://profiles.wordpress.org/jeherve\">Jeremy Herve</a>, <a href=\"https://profiles.wordpress.org/jpry\">Jeremy Pry</a>, <a href=\"https://profiles.wordpress.org/jeremyescott\">Jeremy Scott</a>, <a href=\"https://profiles.wordpress.org/jesperher\">Jesper V Nielsen</a>, <a href=\"https://profiles.wordpress.org/professor44\">Jesse Friedman</a>, <a href=\"https://profiles.wordpress.org/jjcomack\">Jimmy Comack</a>, <a href=\"https://profiles.wordpress.org/jipmoors\">Jip Moors</a>, <a href=\"https://profiles.wordpress.org/jirihon\">Jiri Hon</a>, <a href=\"https://profiles.wordpress.org/johnjamesjacoby\">JJJ</a>, <a href=\"https://profiles.wordpress.org/joanrho\">joanrho</a>, <a href=\"https://profiles.wordpress.org/jobthomas\">Job</a>, <a href=\"https://profiles.wordpress.org/sephsekla\">Joe Bailey-Roberts</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 <img src=\"https://s.w.org/images/core/emoji/11.2.0/72x72/2764.png\" alt=\"❤\" class=\"wp-smiley\" /></a>, <a href=\"https://profiles.wordpress.org/joen\">Joen Asmussen</a>, <a href=\"https://profiles.wordpress.org/j-falk\">Johan Falk</a>, <a href=\"https://profiles.wordpress.org/johnbillion\">John Blackbourn</a>, <a href=\"https://profiles.wordpress.org/johnny5\">John Godley</a>, <a href=\"https://profiles.wordpress.org/johnalarcon\">johnalarcon</a>, <a href=\"https://profiles.wordpress.org/johnpgreen\">johnpgreen</a>, <a href=\"https://profiles.wordpress.org/johnschulz\">johnschulz</a>, <a href=\"https://profiles.wordpress.org/jrchamp\">Jonathan Champ</a>, <a href=\"https://profiles.wordpress.org/desrosj\">Jonathan Desrosiers</a>, <a href=\"https://profiles.wordpress.org/joneiseman\">joneiseman</a>, <a href=\"https://profiles.wordpress.org/spacedmonkey\">Jonny Harris</a>, <a href=\"https://profiles.wordpress.org/joostdevalk\">Joost de Valk</a>, <a href=\"https://profiles.wordpress.org/jorgefilipecosta\">Jorge Costa</a>, <a href=\"https://profiles.wordpress.org/josephscott\">Joseph Scott</a>, <a href=\"https://profiles.wordpress.org/joshuawold\">JoshuaWold</a>, <a href=\"https://profiles.wordpress.org/joyously\">Joy</a>, <a href=\"https://profiles.wordpress.org/jpurdy647\">jpurdy647</a>, <a href=\"https://profiles.wordpress.org/jrdelarosa\">jrdelarosa</a>, <a href=\"https://profiles.wordpress.org/jryancard\">jryancard</a>, <a href=\"https://profiles.wordpress.org/juiiee8487\">Juhi Patel</a>, <a href=\"https://profiles.wordpress.org/jamosova\">Julia Amosova</a>, <a href=\"https://profiles.wordpress.org/juliemoynat\">juliemoynat</a>, <a href=\"https://profiles.wordpress.org/jrf\">Juliette Reinders Folmer</a>, <a href=\"https://profiles.wordpress.org/junaidkbr\">Junaid Ahmed</a>, <a href=\"https://profiles.wordpress.org/justinsainton\">Justin Sainton</a>, <a href=\"https://profiles.wordpress.org/jtsternberg\">Justin Sternberg</a>, <a href=\"https://profiles.wordpress.org/greenshady\">Justin Tadlock</a>, <a href=\"https://profiles.wordpress.org/kadamwhite\">K.Adam White</a>, <a href=\"https://profiles.wordpress.org/kapteinbluf\">kapteinbluf</a>, <a href=\"https://profiles.wordpress.org/keesiemeijer\">keesiemeijer</a>, <a href=\"https://profiles.wordpress.org/ryelle\">Kelly Dwan</a>, <a href=\"https://profiles.wordpress.org/kelvink\">kelvink</a>, <a href=\"https://profiles.wordpress.org/khaihong\">khaihong</a>, <a href=\"https://profiles.wordpress.org/kiranpotphode\">Kiran Potphode</a>, <a href=\"https://profiles.wordpress.org/ixkaito\">Kite</a>, <a href=\"https://profiles.wordpress.org/kjellr\">Kjell Reigstad</a>, <a href=\"https://profiles.wordpress.org/kkarpieszuk\">kkarpieszuk</a>, <a href=\"https://profiles.wordpress.org/kmeze\">kmeze</a>, <a href=\"https://profiles.wordpress.org/knutsp\">Knut Sparhell</a>, <a href=\"https://profiles.wordpress.org/konainm\">konainm</a>, <a href=\"https://profiles.wordpress.org/obenland\">Konstantin Obenland</a>, <a href=\"https://profiles.wordpress.org/xkon\">Konstantinos Xenos</a>, <a href=\"https://profiles.wordpress.org/kristastevens\">kristastevens</a>, <a href=\"https://profiles.wordpress.org/krutidugade\">krutidugade</a>, <a href=\"https://profiles.wordpress.org/laghee\">laghee</a>, <a href=\"https://profiles.wordpress.org/lakenh\">Laken Hafner</a>, <a href=\"https://profiles.wordpress.org/lancewillett\">Lance Willett</a>, <a href=\"https://profiles.wordpress.org/laurelfulford\">laurelfulford</a>, <a href=\"https://profiles.wordpress.org/lbenicio\">lbenicio</a>, <a href=\"https://profiles.wordpress.org/leanderiversen\">Leander Iversen</a>, <a href=\"https://profiles.wordpress.org/leemon\">leemon</a>, <a href=\"https://profiles.wordpress.org/lenasterg\">lenasterg</a>, <a href=\"https://profiles.wordpress.org/lisannekluitmans\">lisannekluitmans</a>, <a href=\"https://profiles.wordpress.org/lizkarkoski\">lizkarkoski</a>, <a href=\"https://profiles.wordpress.org/lucagrandicelli\">Luca Grandicelli</a>, <a href=\"https://profiles.wordpress.org/lucasrolff\">LucasRolff</a>, <a href=\"https://profiles.wordpress.org/luciano-croce\">luciano-croce</a>, <a href=\"https://profiles.wordpress.org/lukecarbis\">Luke Carbis</a>, <a href=\"https://profiles.wordpress.org/luminus\">Luminus</a>, <a href=\"https://profiles.wordpress.org/mariovalney\">Mário Valney</a>, <a href=\"https://profiles.wordpress.org/maartenleenders\">maartenleenders</a>, <a href=\"https://profiles.wordpress.org/macbookandrew\">macbookandrew</a>, <a href=\"https://profiles.wordpress.org/travel_girl\">Maja Benke</a>, <a href=\"https://profiles.wordpress.org/mako09\">Mako</a>, <a href=\"https://profiles.wordpress.org/tomdxw\">mallorydxw-old</a>, <a href=\"https://profiles.wordpress.org/manuelaugustin\">Manuel Augustin</a>, <a href=\"https://profiles.wordpress.org/manuel_84\">manuel_84</a>, <a href=\"https://profiles.wordpress.org/zottto\">Marc Nilius</a>, <a href=\"https://profiles.wordpress.org/marcelo2605\">marcelo2605</a>, <a href=\"https://profiles.wordpress.org/marcomartins\">Marco Martins</a>, <a href=\"https://profiles.wordpress.org/marcomarsala\">marco.marsala</a>, <a href=\"https://profiles.wordpress.org/mkaz\">Marcus Kazmierczak</a>, <a href=\"https://profiles.wordpress.org/marcwieland95\">marcwieland95</a>, <a href=\"https://profiles.wordpress.org/clorith\">Marius L. J.</a>, <a href=\"https://profiles.wordpress.org/mariusvw\">mariusvw</a>, <a href=\"https://profiles.wordpress.org/mbelchev\">Mariyan Belchev</a>, <a href=\"https://profiles.wordpress.org/markjaquith\">Mark Jaquith</a>, <a href=\"https://profiles.wordpress.org/iceable\">Mathieu Sarrasin</a>, <a href=\"https://profiles.wordpress.org/mathieuhays\">mathieuhays</a>, <a href=\"https://profiles.wordpress.org/webdevmattcrom\">Matt Cromwell</a>, <a href=\"https://profiles.wordpress.org/mgibbs189\">Matt Gibbs</a>, <a href=\"https://profiles.wordpress.org/sivel\">Matt Martz</a>, <a href=\"https://profiles.wordpress.org/mboynes\">Matthew Boynes</a>, <a href=\"https://profiles.wordpress.org/lonelyvegan\">Matthew Riley MacPherson</a>, <a href=\"https://profiles.wordpress.org/mattyrob\">mattyrob</a>, <a href=\"https://profiles.wordpress.org/mcmwebsol\">mcmwebsol</a>, <a href=\"https://profiles.wordpress.org/melchoyce\">Mel Choyce</a>, <a href=\"https://profiles.wordpress.org/mensmaximus\">mensmaximus</a>, <a href=\"https://profiles.wordpress.org/mermel\">mermel</a>, <a href=\"https://profiles.wordpress.org/metalandcoffee\">metalandcoffee</a>, <a href=\"https://profiles.wordpress.org/wpscholar\">Micah Wood</a>, <a href=\"https://profiles.wordpress.org/mnelson4\">Michael Nelson</a>, <a href=\"https://profiles.wordpress.org/michielatyoast\">Michiel Heijmans</a>, <a href=\"https://profiles.wordpress.org/sebastienthivinfocom\">Migrated to @sebastienserre</a>, <a href=\"https://profiles.wordpress.org/mcsf\">Miguel Fonseca</a>, <a href=\"https://profiles.wordpress.org/mmtr86\">Miguel Torres</a>, <a href=\"https://profiles.wordpress.org/mihaiiceyro\">mihaiiceyro</a>, <a href=\"https://profiles.wordpress.org/mihdan\">mihdan</a>, <a href=\"https://profiles.wordpress.org/mikegillihan\">Mike Gillihan</a>, <a href=\"https://profiles.wordpress.org/mikejolley\">Mike Jolley</a>, <a href=\"https://profiles.wordpress.org/mikeschroder\">Mike Schroder</a>, <a href=\"https://profiles.wordpress.org/dimadin\">Milan Dinić</a>, <a href=\"https://profiles.wordpress.org/lanche86\">Milan Ivanovic</a>, <a href=\"https://profiles.wordpress.org/milana_cap\">Milana Cap</a>, <a href=\"https://profiles.wordpress.org/milindmore22\">Milind More</a>, <a href=\"https://profiles.wordpress.org/mirkoschubert\">mirkoschubert</a>, <a href=\"https://profiles.wordpress.org/monikarao\">Monika Rao</a>, <a href=\"https://profiles.wordpress.org/boemedia\">Monique Dubbelman</a>, <a href=\"https://profiles.wordpress.org/mt8biz\">moto hachi ( mt8.biz )</a>, <a href=\"https://profiles.wordpress.org/mrmadhat\">mrmadhat</a>, <a href=\"https://profiles.wordpress.org/xpertone\">Muhammad Kashif</a>, <a href=\"https://profiles.wordpress.org/mukesh27\">Mukesh Panchal</a>, <a href=\"https://profiles.wordpress.org/lorenzone92\">MultiformeIngegno</a>, <a href=\"https://profiles.wordpress.org/mmaumio\">Muntasir Mahmud</a>, <a href=\"https://profiles.wordpress.org/munyagu\">munyagu</a>, <a href=\"https://profiles.wordpress.org/mythemeshop\">MyThemeShop</a>, <a href=\"https://profiles.wordpress.org/mzorz\">mzorz</a>, <a href=\"https://profiles.wordpress.org/nadim0988\">nadim0988</a>, <a href=\"https://profiles.wordpress.org/nandorsky\">nandorsky</a>, <a href=\"https://profiles.wordpress.org/naoki0h\">Naoki Ohashi</a>, <a href=\"https://profiles.wordpress.org/nao\">Naoko Takano</a>, <a href=\"https://profiles.wordpress.org/nataliashitova\">nataliashitova</a>, <a href=\"https://profiles.wordpress.org/nateallen\">Nate Allen</a>, <a href=\"https://profiles.wordpress.org/nathanatmoz\">Nathan Johnson</a>, <a href=\"https://profiles.wordpress.org/ndavison\">ndavison</a>, <a href=\"https://profiles.wordpress.org/greatislander\">Ned Zimmerman</a>, <a href=\"https://profiles.wordpress.org/nextendweb\">Nextendweb</a>, <a href=\"https://profiles.wordpress.org/ndiego\">Nick Diego</a>, <a href=\"https://profiles.wordpress.org/celloexpressions\">Nick Halsey</a>, <a href=\"https://profiles.wordpress.org/nickmomrik\">Nick Momrik</a>, <a href=\"https://profiles.wordpress.org/nick_thegeek\">Nick the Geek</a>, <a href=\"https://profiles.wordpress.org/nahuelmahe\">Nicolas Figueira</a>, <a href=\"https://profiles.wordpress.org/nikeo\">Nicolas GUILLAUME</a>, <a href=\"https://profiles.wordpress.org/nicollle\">Nicolle Helgers</a>, <a href=\"https://profiles.wordpress.org/jainnidhi\">Nidhi Jain</a>, <a href=\"https://profiles.wordpress.org/nielslange\">Niels Lange</a>, <a href=\"https://profiles.wordpress.org/nikschavan\">Nikhil Chavan</a>, <a href=\"https://profiles.wordpress.org/rabmalin\">Nilambar Sharma</a>, <a href=\"https://profiles.wordpress.org/mrtortai\">Noam Eppel</a>, <a href=\"https://profiles.wordpress.org/notnownikki\">notnownikki</a>, <a href=\"https://profiles.wordpress.org/odysseygate\">odyssey</a>, <a href=\"https://profiles.wordpress.org/omarreiss\">Omar Reiss</a>, <a href=\"https://profiles.wordpress.org/codestor\">Omkar Bhagat</a>, <a href=\"https://profiles.wordpress.org/ov3rfly\">Ov3rfly</a>, <a href=\"https://profiles.wordpress.org/paaljoachim\">Paal Joachim Romdahl</a>, <a href=\"https://profiles.wordpress.org/palmiak\">palmiak</a>, <a href=\"https://profiles.wordpress.org/panchen\">panchen</a>, <a href=\"https://profiles.wordpress.org/parbaugh\">parbaugh</a>, <a href=\"https://profiles.wordpress.org/xparham\">Parham Ghaffarian</a>, <a href=\"https://profiles.wordpress.org/swissspidy\">Pascal Birchler</a>, <a href=\"https://profiles.wordpress.org/casiepa\">Pascal Casier</a>, <a href=\"https://profiles.wordpress.org/pbearne\">Paul Bearne</a>, <a href=\"https://profiles.wordpress.org/pbiron\">Paul Biron</a>, <a href=\"https://profiles.wordpress.org/natacado\">Paul Paradise</a>, <a href=\"https://profiles.wordpress.org/paulschreiber\">Paul Schreiber</a>, <a href=\"https://profiles.wordpress.org/piewp\">Perdaan</a>, <a href=\"https://profiles.wordpress.org/pputzer\">Peter Putzer</a>, <a href=\"https://profiles.wordpress.org/peterwilsoncc\">Peter Wilson</a>, <a href=\"https://profiles.wordpress.org/walbo\">Petter Walbø Johnsgård</a>, <a href=\"https://profiles.wordpress.org/pskli\">Pierre Saïkali</a>, <a href=\"https://profiles.wordpress.org/wizzard_\">Pieter Daalder</a>, <a href=\"https://profiles.wordpress.org/piyush9100\">Piyush Patel</a>, <a href=\"https://profiles.wordpress.org/poena\">poena</a>, <a href=\"https://profiles.wordpress.org/promz\">Pramod Jodhani</a>, <a href=\"https://profiles.wordpress.org/pmbaldha\">Prashant Baldha</a>, <a href=\"https://profiles.wordpress.org/pratikthink\">Pratik</a>, <a href=\"https://profiles.wordpress.org/pratikkry\">Pratik K. Yadav</a>, <a href=\"https://profiles.wordpress.org/precies\">precies</a>, <a href=\"https://profiles.wordpress.org/presskopp\">Presskopp</a>, <a href=\"https://profiles.wordpress.org/presslabs\">Presslabs</a>, <a href=\"https://profiles.wordpress.org/presstigers\">PressTigers</a>, <a href=\"https://profiles.wordpress.org/programmin\">programmin</a>, <a href=\"https://profiles.wordpress.org/punit5658\">Punit Patel</a>, <a href=\"https://profiles.wordpress.org/purnendu\">Purnendu Dash</a>, <a href=\"https://profiles.wordpress.org/qcmiao\">Qucheng</a>, <a href=\"https://profiles.wordpress.org/rachelbaker\">Rachel Baker</a>, <a href=\"https://profiles.wordpress.org/bamadesigner\">Rachel Cherry</a>, <a href=\"https://profiles.wordpress.org/larrach\">Rachel Peter</a>, <a href=\"https://profiles.wordpress.org/rafsuntaskin\">Rafsun Chowdhury</a>, <a href=\"https://profiles.wordpress.org/rahulsprajapati\">Rahul Prajapati</a>, <a href=\"https://profiles.wordpress.org/cthreelabs\">Raja Mohammed</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/ramizmanked\">Ramiz Manked</a>, <a href=\"https://profiles.wordpress.org/ramonopoly\">ramonopoly</a>, <a href=\"https://profiles.wordpress.org/ravanh\">RavanH</a>, <a href=\"https://profiles.wordpress.org/redcastor\">redcastor</a>, <a href=\"https://profiles.wordpress.org/remyvv\">remyvv</a>, <a href=\"https://profiles.wordpress.org/rensw90\">rensw90</a>, <a href=\"https://profiles.wordpress.org/rhetorical\">rhetorical</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/rickalee\">Ricky Lee Whittemore</a>, <a href=\"https://profiles.wordpress.org/rinkuyadav999\">Rinku Y</a>, <a href=\"https://profiles.wordpress.org/rishishah\">Rishi Shah</a>, <a href=\"https://profiles.wordpress.org/robbie505\">Robbie</a>, <a href=\"https://profiles.wordpress.org/robdxw\">robdxw</a>, <a href=\"https://profiles.wordpress.org/noisysocks\">Robert Anderson</a>, <a href=\"https://profiles.wordpress.org/littlerchicken\">Robin Cornett</a>, <a href=\"https://profiles.wordpress.org/robinvandervliet\">Robin van der Vliet</a>, <a href=\"https://profiles.wordpress.org/rmccue\">Ryan McCue</a>, <a href=\"https://profiles.wordpress.org/othellobloke\">Ryan Paul</a>, <a href=\"https://profiles.wordpress.org/welcher\">Ryan Welcher</a>, <a href=\"https://profiles.wordpress.org/ryotsun\">ryotsun</a>, <a href=\"https://profiles.wordpress.org/sebastienserre\">Sébastien SERRE</a>, <a href=\"https://profiles.wordpress.org/stodorovic\">Saša</a>, <a href=\"https://profiles.wordpress.org/sagarnasit\">sagarnasit</a>, <a href=\"https://profiles.wordpress.org/sasiddiqui\">Sami Ahmed Siddiqui</a>, <a href=\"https://profiles.wordpress.org/samikeijonen\">Sami Keijonen</a>, <a href=\"https://profiles.wordpress.org/otto42\">Samuel Wood (Otto)</a>, <a href=\"https://profiles.wordpress.org/tinkerbelly\">sarah semark</a>, <a href=\"https://profiles.wordpress.org/sayedwp\">Sayed Taqui</a>, <a href=\"https://profiles.wordpress.org/scottlee\">Scott Lee</a>, <a href=\"https://profiles.wordpress.org/coffee2code\">Scott Reilly</a>, <a href=\"https://profiles.wordpress.org/seanchayes\">Sean Hayes</a>, <a href=\"https://profiles.wordpress.org/sebakurzyn\">Sebastian Kurzynoswki</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/shamim51\">Shamim Hasan</a>, <a href=\"https://profiles.wordpress.org/shaneeckert\">Shane Eckert</a>, <a href=\"https://profiles.wordpress.org/sharaz\">Sharaz Shahid</a>, <a href=\"https://profiles.wordpress.org/shashwatmittal\">Shashwat Mittal</a>, <a href=\"https://profiles.wordpress.org/shooper\">Shawn Hooper</a>, <a href=\"https://profiles.wordpress.org/sherwood\">sherwood</a>, <a href=\"https://profiles.wordpress.org/shital-patel\">Shital Marakana</a>, <a href=\"https://profiles.wordpress.org/shivapoudel\">Shiva Poudel</a>, <a href=\"https://profiles.wordpress.org/pross\">Simon Prosser</a>, <a href=\"https://profiles.wordpress.org/sjardo\">Sjardo</a>, <a href=\"https://profiles.wordpress.org/skoldin\">skoldin</a>, <a href=\"https://profiles.wordpress.org/slilley\">slilley</a>, <a href=\"https://profiles.wordpress.org/slushman\">slushman</a>, <a href=\"https://profiles.wordpress.org/sonjaleix\">Sonja Leix</a>, <a href=\"https://profiles.wordpress.org/sonjanyc\">sonjanyc</a>, <a href=\"https://profiles.wordpress.org/soean\">Soren Wrede</a>, <a href=\"https://profiles.wordpress.org/spartank\">spartank</a>, <a href=\"https://profiles.wordpress.org/spyderbytes\">spyderbytes</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/stazdotio\">stazdotio</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/stevenlinx\">stevenlinx</a>, <a href=\"https://profiles.wordpress.org/stormrockwell\">Storm Rockwell</a>, <a href=\"https://profiles.wordpress.org/skostadinov\">Stoyan Kostadinov</a>, <a href=\"https://profiles.wordpress.org/strategio\">strategio</a>, <a href=\"https://profiles.wordpress.org/subrataemfluence\">Subrata Sarkar</a>, <a href=\"https://profiles.wordpress.org/manikmist09\">Sultan Nasir Uddin</a>, <a href=\"https://profiles.wordpress.org/swift\">swift</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/tlovett1\">Taylor Lovett</a>, <a href=\"https://profiles.wordpress.org/teddytime\">teddytime</a>, <a href=\"https://profiles.wordpress.org/terriann\">Terri Ann</a>, <a href=\"https://profiles.wordpress.org/terwdan\">terwdan</a>, <a href=\"https://profiles.wordpress.org/tharsheblows\">tharsheblows</a>, <a href=\"https://profiles.wordpress.org/themezee\">ThemeZee</a>, <a href=\"https://profiles.wordpress.org/thomasplevy\">Thomas Patrick Levy</a>, <a href=\"https://profiles.wordpress.org/thomas-vitale\">Thomas Vitale</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/thrijith\">Thrijith Thankachan</a>, <a href=\"https://profiles.wordpress.org/tiagohillebrandt\">Tiago Hillebrandt</a>, <a href=\"https://profiles.wordpress.org/tigertech\">tigertech</a>, <a href=\"https://profiles.wordpress.org/timhavinga\">Tim Havinga</a>, <a href=\"https://profiles.wordpress.org/hedgefield\">Tim Hengeveld</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/titodevera\">titodevera</a>, <a href=\"https://profiles.wordpress.org/tkama\">Tkama</a>, <a href=\"https://profiles.wordpress.org/tz-media\">Tobias Zimpel</a>, <a href=\"https://profiles.wordpress.org/tjnowell\">Tom J Nowell</a>, <a href=\"https://profiles.wordpress.org/tomharrigan\">TomHarrigan</a>, <a href=\"https://profiles.wordpress.org/tferry\">Tommy Ferry</a>, <a href=\"https://profiles.wordpress.org/tonybogdanov\">tonybogdanov</a>, <a href=\"https://profiles.wordpress.org/tobifjellner\">Tor-Bjorn Fjellner</a>, <a href=\"https://profiles.wordpress.org/torontodigits\">TorontoDigits</a>, <a href=\"https://profiles.wordpress.org/mirucon\">Toshihiro Kanai</a>, <a href=\"https://profiles.wordpress.org/itowhid06\">Towhidul Islam</a>, <a href=\"https://profiles.wordpress.org/transl8or\">transl8or</a>, <a href=\"https://profiles.wordpress.org/grapplerulrich\">Ulrich</a>, <a href=\"https://profiles.wordpress.org/upadalavipul\">upadalavipul</a>, <a href=\"https://profiles.wordpress.org/usmankhalid\">Usman Khalid</a>, <a href=\"https://profiles.wordpress.org/utsav72640\">Utsav tilava</a>, <a href=\"https://profiles.wordpress.org/uttam007\">uttam007</a>, <a href=\"https://profiles.wordpress.org/vaishalipanchal\">Vaishali Panchal</a>, <a href=\"https://profiles.wordpress.org/valer1e\">Valérie Galassi</a>, <a href=\"https://profiles.wordpress.org/valchovski\">valchovski</a>, <a href=\"https://profiles.wordpress.org/vishaldodiya\">vishaldodiya</a>, <a href=\"https://profiles.wordpress.org/vnsavage\">vnsavage</a>, <a href=\"https://profiles.wordpress.org/voneff\">voneff</a>, <a href=\"https://profiles.wordpress.org/vortfu\">vortfu</a>, <a href=\"https://profiles.wordpress.org/warmlaundry\">warmlaundry</a>, <a href=\"https://profiles.wordpress.org/wbrubaker\">wbrubaker</a>, <a href=\"https://profiles.wordpress.org/westonruter\">Weston Ruter</a>, <a href=\"https://profiles.wordpress.org/kwonye\">Will Kwon</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/wpzinc\">wpzinc</a>, <a href=\"https://profiles.wordpress.org/xhezairi\">xhezairi</a>, <a href=\"https://profiles.wordpress.org/yahil\">Yahil Madakiya</a>, <a href=\"https://profiles.wordpress.org/yoavf\">Yoav Farhi</a>, <a href=\"https://profiles.wordpress.org/fierevere\">Yui</a>, <a href=\"https://profiles.wordpress.org/yuriv\">YuriV</a>, <a href=\"https://profiles.wordpress.org/zanematthew\">Zane Matthew</a>, and <a href=\"https://profiles.wordpress.org/zebulan\">zebulan</a>.\n\n\n\n<p>Finally, thanks to all the community translators who worked on WordPress 5.1. Their efforts bring WordPress 5.1 fully translated to 34 languages at release time, with more on the way.</p>\n\n\n\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>.</p>\n\n\n\n<p>Thanks for choosing WordPress!</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, 21 Feb 2019 22:48: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:14:\"Matt Mullenweg\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:47:\"WPTavern: WPWeekly Episode 346 – Cancer Sucks\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"https://wptavern.com/?p=87497&preview=true&preview_id=87497\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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://wptavern.com/wpweekly-episode-346-cancer-sucks\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1211:\"<p>In this episode, <a href=\"http://jjj.me\">John James Jacoby</a> and I reflect on Alex Mill’s latest blog post where he announced that he’s ending his battle with Leukemia. We highlight some of the impacts he’s had on people’s lives and the contributions he’s made to open-source software.</p>\n<h2>Stories Discussed:</h2>\n<p><a href=\"https://alex.blog/2019/02/18/leukemia-has-won/\">Leukemia Has Won</a></p>\n<p><a href=\"https://profiles.wordpress.org/viper007bond/#content-plugins\">Alex’s WordPress Plugins</a></p>\n<h2>WPWeekly Meta:</h2>\n<p><strong>Next Episode:</strong> Wednesday, February 27th 3:00 P.M. Eastern</p>\n<p>Subscribe to <a href=\"https://itunes.apple.com/us/podcast/wordpress-weekly/id694849738\">WordPress Weekly via Itunes</a></p>\n<p>Subscribe to <a href=\"https://www.wptavern.com/feed/podcast\">WordPress Weekly via RSS</a></p>\n<p>Subscribe to <a href=\"http://www.stitcher.com/podcast/wordpress-weekly-podcast?refid=stpr\">WordPress Weekly via Stitcher Radio</a></p>\n<p>Subscribe to <a href=\"https://play.google.com/music/listen?u=0#/ps/Ir3keivkvwwh24xy7qiymurwpbe\">WordPress Weekly via Google Play</a></p>\n<p><strong>Listen To Episode #346:</strong><br />\n</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 21 Feb 2019 20:56:06 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}}}}}}}}}}s:4:\"type\";i:128;s:7:\"headers\";O:42:\"Requests_Utility_CaseInsensitiveDictionary\":1:{s:7:\"\0*\0data\";a:8:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Sat, 30 Mar 2019 01:45:38 GMT\";s:12:\"content-type\";s:8:\"text/xml\";s:4:\"vary\";s:15:\"Accept-Encoding\";s:13:\"last-modified\";s:29:\"Sat, 30 Mar 2019 01:30:19 GMT\";s:15:\"x-frame-options\";s:10:\"SAMEORIGIN\";s:4:\"x-nc\";s:9:\"HIT ord 2\";s:16:\"content-encoding\";s:4:\"gzip\";}}s:5:\"build\";s:14:\"20180206170026\";}','no'),(137,'_transient_timeout_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9','1553953539','no'),(138,'_transient_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9','1553910339','no'),(139,'_transient_timeout_dash_v2_88ae138922fe95674369b1cb3d215a2b','1553953539','no'),(140,'_transient_dash_v2_88ae138922fe95674369b1cb3d215a2b','<div class=\"rss-widget\"><ul><li><a class=\'rsswidget\' href=\'https://wordpress.org/news/2019/03/wordpress-5-2-beta-1/\'>WordPress 5.2 Beta 1</a></li></ul></div><div class=\"rss-widget\"><ul><li><a class=\'rsswidget\' href=\'https://wptavern.com/wordcamp-asia-proposed-for-2020-in-bangkok-thailand\'>WPTavern: WordCamp Asia Proposed for 2020 in Bangkok, Thailand</a></li><li><a class=\'rsswidget\' href=\'https://wptavern.com/new-gutenberg-playground-offers-a-standalone-version-of-the-editor-for-testing-outside-the-wordpress-admin\'>WPTavern: New Gutenberg Playground Offers a Standalone Version of the Editor for Testing Outside the WordPress Admin</a></li><li><a class=\'rsswidget\' href=\'https://wptavern.com/wordpress-5-2-beta-1-released-help-test-new-blocks-block-manager-and-improved-fatal-error-protection\'>WPTavern: WordPress 5.2 Beta 1 Released: Help Test New Blocks, Block Manager, and Improved Fatal Error Protection</a></li></ul></div>','no'),(141,'_transient_timeout_plugin_slugs','1553996752','no'),(142,'_transient_plugin_slugs','a:2:{i:0;s:19:\"akismet/akismet.php\";i:1;s:9:\"hello.php\";}','no'),(143,'recently_activated','a:0:{}','yes'),(152,'theme_mods_twentysixteen','a:1:{s:18:\"custom_css_post_id\";i:-1;}','yes'); /*!40000 ALTER TABLE `wp_options` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_postmeta` -- DROP TABLE IF EXISTS `wp_postmeta`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_postmeta` ( `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `post_id` bigint(20) unsigned NOT NULL DEFAULT '0', `meta_key` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL, `meta_value` longtext COLLATE utf8mb4_unicode_520_ci, PRIMARY KEY (`meta_id`), KEY `post_id` (`post_id`), KEY `meta_key` (`meta_key`(191)) ) ENGINE=InnoDB AUTO_INCREMENT=46 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_postmeta` -- LOCK TABLES `wp_postmeta` WRITE; /*!40000 ALTER TABLE `wp_postmeta` DISABLE KEYS */; INSERT INTO `wp_postmeta` VALUES (1,2,'_wp_page_template','default'),(2,4,'_wp_attached_file','2019/03/espresso.jpg'),(3,4,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2000;s:6:\"height\";i:1200;s:4:\"file\";s:20:\"2019/03/espresso.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"espresso-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"espresso-300x180.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:20:\"espresso-768x461.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:461;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"espresso-1024x614.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:614;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"twentyseventeen-thumbnail-avatar\";a:4:{s:4:\"file\";s:20:\"espresso-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4,4,'_starter_content_theme','twentyseventeen'),(5,4,'_customize_draft_post_name','espresso'),(6,5,'_wp_attached_file','2019/03/sandwich.jpg'),(7,5,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2000;s:6:\"height\";i:1200;s:4:\"file\";s:20:\"2019/03/sandwich.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"sandwich-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"sandwich-300x180.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:20:\"sandwich-768x461.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:461;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"sandwich-1024x614.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:614;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"twentyseventeen-thumbnail-avatar\";a:4:{s:4:\"file\";s:20:\"sandwich-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(8,5,'_starter_content_theme','twentyseventeen'),(9,5,'_customize_draft_post_name','sandwich'),(10,6,'_wp_attached_file','2019/03/coffee.jpg'),(11,6,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2000;s:6:\"height\";i:1200;s:4:\"file\";s:18:\"2019/03/coffee.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"coffee-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"coffee-300x180.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:18:\"coffee-768x461.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:461;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:19:\"coffee-1024x614.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:614;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"twentyseventeen-thumbnail-avatar\";a:4:{s:4:\"file\";s:18:\"coffee-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(12,6,'_starter_content_theme','twentyseventeen'),(13,6,'_customize_draft_post_name','coffee'),(14,7,'_customize_draft_post_name','home'),(15,7,'_customize_changeset_uuid','9753b299-2f53-4efb-b1a9-952932f919d5'),(16,8,'_thumbnail_id','5'),(17,8,'_customize_draft_post_name','about'),(18,8,'_customize_changeset_uuid','9753b299-2f53-4efb-b1a9-952932f919d5'),(19,9,'_thumbnail_id','4'),(20,9,'_customize_draft_post_name','contact'),(21,9,'_customize_changeset_uuid','9753b299-2f53-4efb-b1a9-952932f919d5'),(22,10,'_thumbnail_id','6'),(23,10,'_customize_draft_post_name','blog'),(24,10,'_customize_changeset_uuid','9753b299-2f53-4efb-b1a9-952932f919d5'),(25,11,'_thumbnail_id','4'),(26,11,'_customize_draft_post_name','a-homepage-section'),(27,11,'_customize_changeset_uuid','9753b299-2f53-4efb-b1a9-952932f919d5'),(28,12,'_edit_lock','1553914091:1'),(29,13,'_wp_attached_file','2019/03/Aloha-Boys-Properties-Logo-and-Avatars-TransBack-no-CRLLC-240.png'),(30,13,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2529;s:6:\"height\";i:1570;s:4:\"file\";s:73:\"2019/03/Aloha-Boys-Properties-Logo-and-Avatars-TransBack-no-CRLLC-240.png\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:73:\"Aloha-Boys-Properties-Logo-and-Avatars-TransBack-no-CRLLC-240-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:73:\"Aloha-Boys-Properties-Logo-and-Avatars-TransBack-no-CRLLC-240-300x186.png\";s:5:\"width\";i:300;s:6:\"height\";i:186;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:73:\"Aloha-Boys-Properties-Logo-and-Avatars-TransBack-no-CRLLC-240-768x477.png\";s:5:\"width\";i:768;s:6:\"height\";i:477;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:74:\"Aloha-Boys-Properties-Logo-and-Avatars-TransBack-no-CRLLC-240-1024x636.png\";s:5:\"width\";i:1024;s:6:\"height\";i:636;s:9:\"mime-type\";s:9:\"image/png\";}s:30:\"twentyseventeen-featured-image\";a:4:{s:4:\"file\";s:75:\"Aloha-Boys-Properties-Logo-and-Avatars-TransBack-no-CRLLC-240-2000x1200.png\";s:5:\"width\";i:2000;s:6:\"height\";i:1200;s:9:\"mime-type\";s:9:\"image/png\";}s:32:\"twentyseventeen-thumbnail-avatar\";a:4:{s:4:\"file\";s:73:\"Aloha-Boys-Properties-Logo-and-Avatars-TransBack-no-CRLLC-240-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(31,14,'_wp_attached_file','2019/03/cropped-Aloha-Boys-Properties-Logo-and-Avatars-TransBack-no-CRLLC-240.png'),(32,14,'_wp_attachment_context','custom-logo'),(33,14,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:240;s:6:\"height\";i:103;s:4:\"file\";s:81:\"2019/03/cropped-Aloha-Boys-Properties-Logo-and-Avatars-TransBack-no-CRLLC-240.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:81:\"cropped-Aloha-Boys-Properties-Logo-and-Avatars-TransBack-no-CRLLC-240-150x103.png\";s:5:\"width\";i:150;s:6:\"height\";i:103;s:9:\"mime-type\";s:9:\"image/png\";}s:32:\"twentyseventeen-thumbnail-avatar\";a:4:{s:4:\"file\";s:81:\"cropped-Aloha-Boys-Properties-Logo-and-Avatars-TransBack-no-CRLLC-240-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(34,15,'_wp_attached_file','2019/03/Aloha-Boys-Properties-Logo-and-Avatars-TransBack-no-CRLLC-1000.jpg'),(35,15,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:621;s:4:\"file\";s:74:\"2019/03/Aloha-Boys-Properties-Logo-and-Avatars-TransBack-no-CRLLC-1000.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:74:\"Aloha-Boys-Properties-Logo-and-Avatars-TransBack-no-CRLLC-1000-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:74:\"Aloha-Boys-Properties-Logo-and-Avatars-TransBack-no-CRLLC-1000-300x186.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:186;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:74:\"Aloha-Boys-Properties-Logo-and-Avatars-TransBack-no-CRLLC-1000-768x477.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:477;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"twentyseventeen-thumbnail-avatar\";a:4:{s:4:\"file\";s:74:\"Aloha-Boys-Properties-Logo-and-Avatars-TransBack-no-CRLLC-1000-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(36,16,'_wp_attached_file','2019/03/cropped-Aloha-Boys-Properties-Logo-and-Avatars-TransBack-no-CRLLC-1000.jpg'),(37,16,'_wp_attachment_context','custom-logo'),(38,16,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:240;s:6:\"height\";i:73;s:4:\"file\";s:82:\"2019/03/cropped-Aloha-Boys-Properties-Logo-and-Avatars-TransBack-no-CRLLC-1000.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:81:\"cropped-Aloha-Boys-Properties-Logo-and-Avatars-TransBack-no-CRLLC-1000-150x73.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:73;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"twentyseventeen-thumbnail-avatar\";a:4:{s:4:\"file\";s:81:\"cropped-Aloha-Boys-Properties-Logo-and-Avatars-TransBack-no-CRLLC-1000-100x73.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:73;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(39,17,'_wp_attached_file','2019/03/Clark-Realty-logo-red-and-black-jpg.jpg'),(40,17,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1575;s:6:\"height\";i:975;s:4:\"file\";s:47:\"2019/03/Clark-Realty-logo-red-and-black-jpg.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:47:\"Clark-Realty-logo-red-and-black-jpg-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:47:\"Clark-Realty-logo-red-and-black-jpg-300x186.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:186;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:47:\"Clark-Realty-logo-red-and-black-jpg-768x475.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:475;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:48:\"Clark-Realty-logo-red-and-black-jpg-1024x634.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:634;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"twentyseventeen-thumbnail-avatar\";a:4:{s:4:\"file\";s:47:\"Clark-Realty-logo-red-and-black-jpg-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:37:\"Clark Realty Logo | Goudy + Helvetica\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(41,18,'_wp_attached_file','2019/03/Site-Icon-for-Webpages-ABP.jpg'),(42,18,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:492;s:6:\"height\";i:470;s:4:\"file\";s:38:\"2019/03/Site-Icon-for-Webpages-ABP.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:38:\"Site-Icon-for-Webpages-ABP-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:38:\"Site-Icon-for-Webpages-ABP-300x287.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:287;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"twentyseventeen-thumbnail-avatar\";a:4:{s:4:\"file\";s:38:\"Site-Icon-for-Webpages-ABP-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(43,19,'_wp_attached_file','2019/03/cropped-Site-Icon-for-Webpages-ABP.jpg'),(44,19,'_wp_attachment_context','site-icon'),(45,19,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:512;s:6:\"height\";i:512;s:4:\"file\";s:46:\"2019/03/cropped-Site-Icon-for-Webpages-ABP.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:46:\"cropped-Site-Icon-for-Webpages-ABP-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:46:\"cropped-Site-Icon-for-Webpages-ABP-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"twentyseventeen-thumbnail-avatar\";a:4:{s:4:\"file\";s:46:\"cropped-Site-Icon-for-Webpages-ABP-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"site_icon-270\";a:4:{s:4:\"file\";s:46:\"cropped-Site-Icon-for-Webpages-ABP-270x270.jpg\";s:5:\"width\";i:270;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"site_icon-192\";a:4:{s:4:\"file\";s:46:\"cropped-Site-Icon-for-Webpages-ABP-192x192.jpg\";s:5:\"width\";i:192;s:6:\"height\";i:192;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"site_icon-180\";a:4:{s:4:\"file\";s:46:\"cropped-Site-Icon-for-Webpages-ABP-180x180.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"site_icon-32\";a:4:{s:4:\"file\";s:44:\"cropped-Site-Icon-for-Webpages-ABP-32x32.jpg\";s:5:\"width\";i:32;s:6:\"height\";i:32;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'); /*!40000 ALTER TABLE `wp_postmeta` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_posts` -- DROP TABLE IF EXISTS `wp_posts`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_posts` ( `ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `post_author` bigint(20) unsigned NOT NULL DEFAULT '0', `post_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `post_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `post_content` longtext 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=InnoDB AUTO_INCREMENT=20 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_posts` -- LOCK TABLES `wp_posts` WRITE; /*!40000 ALTER TABLE `wp_posts` DISABLE KEYS */; INSERT INTO `wp_posts` VALUES (1,1,'2018-02-06 17:51:13','2018-02-06 17:51:13','Welcome to WordPress. This is your first post. Edit or delete it, then start writing!','Hello world!','','publish','open','open','','hello-world','','','2018-02-06 17:51:13','2018-02-06 17:51:13','',0,'http://www.jeffcalley.com/wordpress1/?p=1',0,'post','',1),(2,1,'2018-02-06 17:51:13','2018-02-06 17:51:13','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=\"http://www.jeffcalley.com/wordpress1/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','','','2018-02-06 17:51:13','2018-02-06 17:51:13','',0,'http://www.jeffcalley.com/wordpress1/?page_id=2',0,'page','',0),(3,1,'2019-03-30 01:45:28','0000-00-00 00:00:00','','Auto Draft','','auto-draft','open','open','','','','','2019-03-30 01:45:28','0000-00-00 00:00:00','',0,'http://www.jeffcalley.com/wordpress1/?p=3',0,'post','',0),(4,1,'2019-03-30 02:47:30','0000-00-00 00:00:00','','Espresso','','auto-draft','open','closed','','','','','2019-03-30 01:47:46','0000-00-00 00:00:00','',0,'http://www.jeffcalley.com/wordpress1/wp-content/uploads/2019/03/espresso.jpg',0,'attachment','image/jpeg',0),(5,1,'2019-03-30 02:47:30','0000-00-00 00:00:00','','Sandwich','','auto-draft','open','closed','','','','','2019-03-30 01:47:51','0000-00-00 00:00:00','',0,'http://www.jeffcalley.com/wordpress1/wp-content/uploads/2019/03/sandwich.jpg',0,'attachment','image/jpeg',0),(6,1,'2019-03-30 02:47:30','0000-00-00 00:00:00','','Coffee','','auto-draft','open','closed','','','','','2019-03-30 01:47:54','0000-00-00 00:00:00','',0,'http://www.jeffcalley.com/wordpress1/wp-content/uploads/2019/03/coffee.jpg',0,'attachment','image/jpeg',0),(7,1,'2019-03-30 02:47:30','0000-00-00 00:00:00','Welcome to your site! This is your homepage, which is what most visitors will see when they come to your site for the first time.','Home','','auto-draft','closed','closed','','','','','2019-03-30 01:47:58','0000-00-00 00:00:00','',0,'http://www.jeffcalley.com/wordpress1/?page_id=7',0,'page','',0),(8,1,'2019-03-30 02:47:30','0000-00-00 00:00:00','You might be an artist who would like to introduce yourself and your work here or maybe you’re a business with a mission to describe.','About','','auto-draft','closed','closed','','','','','2019-03-30 01:47:58','0000-00-00 00:00:00','',0,'http://www.jeffcalley.com/wordpress1/?page_id=8',0,'page','',0),(9,1,'2019-03-30 02:47:30','0000-00-00 00:00:00','This is a page with some basic contact information, such as an address and phone number. You might also try a plugin to add a contact form.','Contact','','auto-draft','closed','closed','','','','','2019-03-30 01:47:58','0000-00-00 00:00:00','',0,'http://www.jeffcalley.com/wordpress1/?page_id=9',0,'page','',0),(10,1,'2019-03-30 02:47:30','0000-00-00 00:00:00','','Blog','','auto-draft','closed','closed','','','','','2019-03-30 01:47:59','0000-00-00 00:00:00','',0,'http://www.jeffcalley.com/wordpress1/?page_id=10',0,'page','',0),(11,1,'2019-03-30 02:47:30','0000-00-00 00:00:00','This is an example of a homepage section. Homepage sections can be any page other than the homepage itself, including the page that shows your latest blog posts.','A homepage section','','auto-draft','closed','closed','','','','','2019-03-30 01:47:59','0000-00-00 00:00:00','',0,'http://www.jeffcalley.com/wordpress1/?page_id=11',0,'page','',0),(12,1,'2019-03-30 02:47:30','0000-00-00 00:00:00','{\n \"widget_text[2]\": {\n \"value\": {\n \"encoded_serialized_instance\": \"YTo0OntzOjU6InRpdGxlIjtzOjA6IiI7czo0OiJ0ZXh0IjtzOjQwNzoiPGltZyBjbGFzcz0iYWxpZ25ub25lIHNpemUtbWVkaXVtIHdwLWltYWdlLTE3IiBzcmM9Imh0dHA6Ly93d3cuamVmZmNhbGxleS5jb20vd29yZHByZXNzMS93cC1jb250ZW50L3VwbG9hZHMvMjAxOS8wMy9DbGFyay1SZWFsdHktbG9nby1yZWQtYW5kLWJsYWNrLWpwZy0zMDB4MTg2LmpwZyIgYWx0PSIiIHdpZHRoPSIzMDAiIGhlaWdodD0iMTg2IiAvPg0KDQo8c3Ryb25nPkFkZHJlc3M8L3N0cm9uZz4NCjEwMSBIdWFsYWxhaSBTdA0KSGlsbyBISSA5NjcyMA0KDQo4MDguNzY5LjA1MjUgZGlyZWN0DQo4MDguOTYxLjYwMTUgb2ZmaWNlDQoNCjxzdHJvbmc+Q29udGFjdCBtZSAoYnkgcGhvbmUvdGV4dCk8L3N0cm9uZz4NCjI0LzcvMzY1DQoocmVzcG9uZGluZyBhdCBteSBlYXJsaWVzdCwgbmV4dCBvcHBvcnR1bml0eSkiO3M6NjoiZmlsdGVyIjtiOjE7czo2OiJ2aXN1YWwiO2I6MTt9\",\n \"title\": \"\",\n \"is_widget_customizer_js_value\": true,\n \"instance_hash_key\": \"227c5f2887cfb5057f2358b4347969e9\"\n },\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-03-30 02:36:16\"\n },\n \"widget_search[3]\": {\n \"starter_content\": true,\n \"value\": {\n \"encoded_serialized_instance\": \"YToxOntzOjU6InRpdGxlIjtzOjY6IlNlYXJjaCI7fQ==\",\n \"title\": \"Search\",\n \"is_widget_customizer_js_value\": true,\n \"instance_hash_key\": \"037eda00017c85429e647ecdd7e75595\"\n },\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-03-30 01:47:59\"\n },\n \"widget_text[3]\": {\n \"starter_content\": true,\n \"value\": {\n \"encoded_serialized_instance\": \"YTo0OntzOjU6InRpdGxlIjtzOjE1OiJBYm91dCBUaGlzIFNpdGUiO3M6NDoidGV4dCI7czo4NToiVGhpcyBtYXkgYmUgYSBnb29kIHBsYWNlIHRvIGludHJvZHVjZSB5b3Vyc2VsZiBhbmQgeW91ciBzaXRlIG9yIGluY2x1ZGUgc29tZSBjcmVkaXRzLiI7czo2OiJmaWx0ZXIiO2I6MTtzOjY6InZpc3VhbCI7YjoxO30=\",\n \"title\": \"About This Site\",\n \"is_widget_customizer_js_value\": true,\n \"instance_hash_key\": \"9f7e0c804a75f91a8c62b8c193503db4\"\n },\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-03-30 01:47:59\"\n },\n \"sidebars_widgets[sidebar-1]\": {\n \"starter_content\": true,\n \"value\": [\n \"text-2\",\n \"search-3\",\n \"text-3\"\n ],\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-03-30 01:47:59\"\n },\n \"widget_text[4]\": {\n \"value\": {\n \"encoded_serialized_instance\": \"YTo0OntzOjU6InRpdGxlIjtzOjI2OiJTZWFyY2ggZm9yIEhvbWVzIGluIEhhd2FpaSI7czo0OiJ0ZXh0IjtzOjI1NToiVmlzaXQgbXkgVGVhbSByZWFsIGVzdGF0ZSB3ZWJzaXRlIHdoZXJlIG15IHBhcnRuZXIgYW5kIEkgd2lsbCBoZWxwIHlvdSBmaW5kIG9yIHNlbGwgeW91ciBob21lLg0KDQpPdXIgd2Vic2l0ZSBpcyBlcXVpcHBlZCB3aXRoIE1MUyBmdW5jdGlvbmFsaXR5IHRvIGhlbHAgeW91IG1hZGUgeW91ciBzZWFyY2ggYW5kIG90aGVyIHJlc2VhcmNoIGVhc3kuDQoNCkNsaWNrIGJlbG93Og0KDQp3d3cuYWxvaGFib3lzcHJvcGVydGllcy5jb20NCg0KJm5ic3A7IjtzOjY6ImZpbHRlciI7YjoxO3M6NjoidmlzdWFsIjtiOjE7fQ==\",\n \"title\": \"Search for Homes in Hawaii\",\n \"is_widget_customizer_js_value\": true,\n \"instance_hash_key\": \"1d421425f5f6bcdfccf9c2f045760a9b\"\n },\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-03-30 02:42:12\"\n },\n \"sidebars_widgets[sidebar-2]\": {\n \"starter_content\": true,\n \"value\": [\n \"text-4\"\n ],\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-03-30 01:47:59\"\n },\n \"widget_text[5]\": {\n \"value\": {\n \"encoded_serialized_instance\": \"YTo0OntzOjU6InRpdGxlIjtzOjE1OiJBYm91dCBUaGlzIFNpdGUiO3M6NDoidGV4dCI7czoyMzc6Ikphc29uIEMuIExhcnNlbiwgbXkgcGFydG5lciBpbiBsaWZlIGFuZCB3b3JrLCBhbmQgSSBhcmUgcmVhbHRvcnMgb24gSGF3YWlpJ3MgQmlnIElzbGFuZC4NCg0KVGhpcyBpcyBhbHNvIG15IHBlcnNvbmFsIHdlYnNpdGUsIGFuZCBtYXkgY29udGFpbiBzdWJqZWN0IG1hdHRlciBkZXNpZ25lZCB0byBlbnRlcnRhaW4sIGRlbGlnaHQgYW5kIGNvbmZvdW5kLsKgIEkgY2FuIGJlIGEgYml0IG9mIGEga29udW5kcnVtbWVyLiI7czo2OiJmaWx0ZXIiO2I6MTtzOjY6InZpc3VhbCI7YjoxO30=\",\n \"title\": \"About This Site\",\n \"is_widget_customizer_js_value\": true,\n \"instance_hash_key\": \"099d4694e3be603a3be4ede2bc4459f5\"\n },\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-03-30 02:42:12\"\n },\n \"widget_search[4]\": {\n \"starter_content\": true,\n \"value\": {\n \"encoded_serialized_instance\": \"YToxOntzOjU6InRpdGxlIjtzOjY6IlNlYXJjaCI7fQ==\",\n \"title\": \"Search\",\n \"is_widget_customizer_js_value\": true,\n \"instance_hash_key\": \"037eda00017c85429e647ecdd7e75595\"\n },\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-03-30 01:47:59\"\n },\n \"sidebars_widgets[sidebar-3]\": {\n \"starter_content\": true,\n \"value\": [\n \"text-5\",\n \"search-4\"\n ],\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-03-30 01:47:59\"\n },\n \"nav_menus_created_posts\": {\n \"starter_content\": true,\n \"value\": [\n 4,\n 5,\n 6,\n 7,\n 8,\n 9,\n 10,\n 11\n ],\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-03-30 01:47:59\"\n },\n \"nav_menu[-1]\": {\n \"starter_content\": true,\n \"value\": {\n \"name\": \"Top Menu\"\n },\n \"type\": \"nav_menu\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-03-30 01:47:59\"\n },\n \"nav_menu_item[-1]\": {\n \"starter_content\": true,\n \"value\": {\n \"type\": \"custom\",\n \"title\": \"Home\",\n \"url\": \"http://www.jeffcalley.com/wordpress1/\",\n \"position\": 0,\n \"nav_menu_term_id\": -1,\n \"object_id\": 0\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-03-30 01:47:59\"\n },\n \"nav_menu_item[-2]\": {\n \"starter_content\": true,\n \"value\": {\n \"type\": \"post_type\",\n \"object\": \"page\",\n \"object_id\": 8,\n \"position\": 1,\n \"nav_menu_term_id\": -1,\n \"title\": \"About\"\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-03-30 01:47:59\"\n },\n \"nav_menu_item[-3]\": {\n \"starter_content\": true,\n \"value\": {\n \"type\": \"post_type\",\n \"object\": \"page\",\n \"object_id\": 10,\n \"position\": 2,\n \"nav_menu_term_id\": -1,\n \"title\": \"Blog\"\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-03-30 01:47:59\"\n },\n \"nav_menu_item[-4]\": {\n \"starter_content\": true,\n \"value\": {\n \"type\": \"post_type\",\n \"object\": \"page\",\n \"object_id\": 9,\n \"position\": 3,\n \"nav_menu_term_id\": -1,\n \"title\": \"Contact\"\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-03-30 01:47:59\"\n },\n \"twentyseventeen::nav_menu_locations[top]\": {\n \"starter_content\": true,\n \"value\": -1,\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-03-30 01:47:59\"\n },\n \"nav_menu[-5]\": {\n \"starter_content\": true,\n \"value\": {\n \"name\": \"Social Links Menu\"\n },\n \"type\": \"nav_menu\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-03-30 01:47:59\"\n },\n \"nav_menu_item[-5]\": {\n \"starter_content\": true,\n \"value\": {\n \"title\": \"Yelp\",\n \"url\": \"https://www.yelp.com\",\n \"position\": 0,\n \"nav_menu_term_id\": -5,\n \"object_id\": 0\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-03-30 01:47:59\"\n },\n \"nav_menu_item[-6]\": {\n \"starter_content\": true,\n \"value\": {\n \"title\": \"Facebook\",\n \"url\": \"https://www.facebook.com/wordpress\",\n \"position\": 1,\n \"nav_menu_term_id\": -5,\n \"object_id\": 0\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-03-30 01:47:59\"\n },\n \"nav_menu_item[-7]\": {\n \"starter_content\": true,\n \"value\": {\n \"title\": \"Twitter\",\n \"url\": \"https://twitter.com/wordpress\",\n \"position\": 2,\n \"nav_menu_term_id\": -5,\n \"object_id\": 0\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-03-30 01:47:59\"\n },\n \"nav_menu_item[-8]\": {\n \"starter_content\": true,\n \"value\": {\n \"title\": \"Instagram\",\n \"url\": \"https://www.instagram.com/explore/tags/wordcamp/\",\n \"position\": 3,\n \"nav_menu_term_id\": -5,\n \"object_id\": 0\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-03-30 01:47:59\"\n },\n \"nav_menu_item[-9]\": {\n \"starter_content\": true,\n \"value\": {\n \"title\": \"Email\",\n \"url\": \"mailto:wordpress@example.com\",\n \"position\": 4,\n \"nav_menu_term_id\": -5,\n \"object_id\": 0\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-03-30 01:47:59\"\n },\n \"twentyseventeen::nav_menu_locations[social]\": {\n \"starter_content\": true,\n \"value\": -5,\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-03-30 01:47:59\"\n },\n \"show_on_front\": {\n \"starter_content\": true,\n \"value\": \"page\",\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-03-30 01:47:59\"\n },\n \"page_on_front\": {\n \"starter_content\": true,\n \"value\": 7,\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-03-30 01:47:59\"\n },\n \"page_for_posts\": {\n \"starter_content\": true,\n \"value\": 10,\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-03-30 01:47:59\"\n },\n \"twentyseventeen::panel_1\": {\n \"starter_content\": true,\n \"value\": 11,\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-03-30 01:47:59\"\n },\n \"twentyseventeen::panel_2\": {\n \"starter_content\": true,\n \"value\": 8,\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-03-30 01:47:59\"\n },\n \"twentyseventeen::panel_3\": {\n \"starter_content\": true,\n \"value\": 10,\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-03-30 01:47:59\"\n },\n \"twentyseventeen::panel_4\": {\n \"starter_content\": true,\n \"value\": 9,\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-03-30 01:47:59\"\n },\n \"old_sidebars_widgets_data\": {\n \"value\": {\n \"wp_inactive_widgets\": [],\n \"sidebar-1\": [\n \"text-2\",\n \"search-3\",\n \"text-3\"\n ],\n \"sidebar-2\": [\n \"text-4\"\n ],\n \"sidebar-3\": [\n \"text-5\",\n \"search-4\"\n ]\n },\n \"type\": \"global_variable\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-03-30 01:52:16\"\n },\n \"blogname\": {\n \"value\": \"Jeff Calley, Realtor\\u00ae RS-79890\",\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-03-30 02:37:13\"\n },\n \"blogdescription\": {\n \"value\": \"I\'m lucky you found me!\",\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-03-30 01:54:07\"\n },\n \"twentysixteen::custom_logo\": {\n \"value\": 16,\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-03-30 02:18:05\"\n },\n \"site_icon\": {\n \"value\": 19,\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-03-30 02:34:06\"\n },\n \"twentysixteen::background_color\": {\n \"value\": \"#9abc00\",\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-03-30 02:45:38\"\n },\n \"twentysixteen::page_background_color\": {\n \"value\": \"#ffffff\",\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-03-30 02:46:39\"\n },\n \"twentysixteen::main_text_color\": {\n \"value\": \"#000000\",\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2019-03-30 02:47:30\"\n }\n}','','','auto-draft','closed','closed','','9753b299-2f53-4efb-b1a9-952932f919d5','','','2019-03-30 02:47:30','2019-03-30 02:47:30','',0,'http://www.jeffcalley.com/wordpress1/?p=12',0,'customize_changeset','',0),(13,1,'2019-03-30 02:06:23','2019-03-30 02:06:23','','Aloha Boys Properties Logo and Avatars TransBack no CRLLC 240','','inherit','open','closed','','aloha-boys-properties-logo-and-avatars-transback-no-crllc-240','','','2019-03-30 02:06:23','2019-03-30 02:06:23','',0,'http://www.jeffcalley.com/wordpress1/wp-content/uploads/2019/03/Aloha-Boys-Properties-Logo-and-Avatars-TransBack-no-CRLLC-240.png',0,'attachment','image/png',0),(14,1,'2019-03-30 02:08:11','2019-03-30 02:08:11','http://www.jeffcalley.com/wordpress1/wp-content/uploads/2019/03/cropped-Aloha-Boys-Properties-Logo-and-Avatars-TransBack-no-CRLLC-240.png','cropped-Aloha-Boys-Properties-Logo-and-Avatars-TransBack-no-CRLLC-240.png','','inherit','open','closed','','cropped-aloha-boys-properties-logo-and-avatars-transback-no-crllc-240-png','','','2019-03-30 02:08:11','2019-03-30 02:08:11','',0,'http://www.jeffcalley.com/wordpress1/wp-content/uploads/2019/03/cropped-Aloha-Boys-Properties-Logo-and-Avatars-TransBack-no-CRLLC-240.png',0,'attachment','image/png',0),(15,1,'2019-03-30 02:16:18','2019-03-30 02:16:18','','','','inherit','open','closed','','aloha-boys-properties-logo-and-avatars-transback-no-crllc-1000','','','2019-03-30 02:16:53','2019-03-30 02:16:53','',0,'http://www.jeffcalley.com/wordpress1/wp-content/uploads/2019/03/Aloha-Boys-Properties-Logo-and-Avatars-TransBack-no-CRLLC-1000.jpg',0,'attachment','image/jpeg',0),(16,1,'2019-03-30 02:17:17','2019-03-30 02:17:17','http://www.jeffcalley.com/wordpress1/wp-content/uploads/2019/03/cropped-Aloha-Boys-Properties-Logo-and-Avatars-TransBack-no-CRLLC-1000.jpg','cropped-Aloha-Boys-Properties-Logo-and-Avatars-TransBack-no-CRLLC-1000.jpg','','inherit','open','closed','','cropped-aloha-boys-properties-logo-and-avatars-transback-no-crllc-1000-jpg','','','2019-03-30 02:17:17','2019-03-30 02:17:17','',0,'http://www.jeffcalley.com/wordpress1/wp-content/uploads/2019/03/cropped-Aloha-Boys-Properties-Logo-and-Avatars-TransBack-no-CRLLC-1000.jpg',0,'attachment','image/jpeg',0),(17,1,'2019-03-30 02:25:02','2019-03-30 02:25:02','','','','inherit','open','closed','','clark-realty-logo-goudy-helvetica','','','2019-03-30 02:25:21','2019-03-30 02:25:21','',0,'http://www.jeffcalley.com/wordpress1/wp-content/uploads/2019/03/Clark-Realty-logo-red-and-black-jpg.jpg',0,'attachment','image/jpeg',0),(18,1,'2019-03-30 02:33:27','2019-03-30 02:33:27','','','','inherit','open','closed','','site-icon-for-webpages-abp','','','2019-03-30 02:33:38','2019-03-30 02:33:38','',0,'http://www.jeffcalley.com/wordpress1/wp-content/uploads/2019/03/Site-Icon-for-Webpages-ABP.jpg',0,'attachment','image/jpeg',0),(19,1,'2019-03-30 02:33:46','2019-03-30 02:33:46','http://www.jeffcalley.com/wordpress1/wp-content/uploads/2019/03/cropped-Site-Icon-for-Webpages-ABP.jpg','cropped-Site-Icon-for-Webpages-ABP.jpg','','inherit','open','closed','','cropped-site-icon-for-webpages-abp-jpg','','','2019-03-30 02:33:46','2019-03-30 02:33:46','',0,'http://www.jeffcalley.com/wordpress1/wp-content/uploads/2019/03/cropped-Site-Icon-for-Webpages-ABP.jpg',0,'attachment','image/jpeg',0); /*!40000 ALTER TABLE `wp_posts` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_term_relationships` -- DROP TABLE IF EXISTS `wp_term_relationships`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_term_relationships` ( `object_id` bigint(20) unsigned NOT NULL DEFAULT '0', `term_taxonomy_id` bigint(20) unsigned NOT NULL DEFAULT '0', `term_order` int(11) NOT NULL DEFAULT '0', PRIMARY KEY (`object_id`,`term_taxonomy_id`), KEY `term_taxonomy_id` (`term_taxonomy_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_term_relationships` -- LOCK TABLES `wp_term_relationships` WRITE; /*!40000 ALTER TABLE `wp_term_relationships` DISABLE KEYS */; INSERT INTO `wp_term_relationships` VALUES (1,1,0); /*!40000 ALTER TABLE `wp_term_relationships` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_term_taxonomy` -- DROP TABLE IF EXISTS `wp_term_taxonomy`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_term_taxonomy` ( `term_taxonomy_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `term_id` bigint(20) unsigned NOT NULL DEFAULT '0', `taxonomy` varchar(32) 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=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_term_taxonomy` -- LOCK TABLES `wp_term_taxonomy` WRITE; /*!40000 ALTER TABLE `wp_term_taxonomy` DISABLE KEYS */; INSERT INTO `wp_term_taxonomy` VALUES (1,1,'category','',0,1); /*!40000 ALTER TABLE `wp_term_taxonomy` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_termmeta` -- DROP TABLE IF EXISTS `wp_termmeta`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_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, PRIMARY KEY (`meta_id`), KEY `term_id` (`term_id`), KEY `meta_key` (`meta_key`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_termmeta` -- LOCK TABLES `wp_termmeta` WRITE; /*!40000 ALTER TABLE `wp_termmeta` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_termmeta` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_terms` -- DROP TABLE IF EXISTS `wp_terms`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_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=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_terms` -- LOCK TABLES `wp_terms` WRITE; /*!40000 ALTER TABLE `wp_terms` DISABLE KEYS */; INSERT INTO `wp_terms` VALUES (1,'Uncategorized','uncategorized',0); /*!40000 ALTER TABLE `wp_terms` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_usermeta` -- DROP TABLE IF EXISTS `wp_usermeta`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_usermeta` ( `umeta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `user_id` bigint(20) unsigned NOT NULL DEFAULT '0', `meta_key` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL, `meta_value` longtext COLLATE utf8mb4_unicode_520_ci, PRIMARY KEY (`umeta_id`), KEY `user_id` (`user_id`), KEY `meta_key` (`meta_key`(191)) ) ENGINE=InnoDB AUTO_INCREMENT=20 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_usermeta` -- LOCK TABLES `wp_usermeta` WRITE; /*!40000 ALTER TABLE `wp_usermeta` DISABLE KEYS */; INSERT INTO `wp_usermeta` VALUES (1,1,'nickname','jcdc'),(2,1,'first_name',''),(3,1,'last_name',''),(4,1,'description',''),(5,1,'rich_editing','true'),(6,1,'syntax_highlighting','true'),(7,1,'comment_shortcuts','false'),(8,1,'admin_color','fresh'),(9,1,'use_ssl','0'),(10,1,'show_admin_bar_front','true'),(11,1,'locale',''),(12,1,'wp_capabilities','a:1:{s:13:\"administrator\";b:1;}'),(13,1,'wp_user_level','10'),(14,1,'dismissed_wp_pointers','wp496_privacy'),(15,1,'default_password_nag','1'),(16,1,'show_welcome_panel','1'),(17,1,'session_tokens','a:1:{s:64:\"1b0907ed5d771a43f99c812377d29696c30240b56ad56616de03df34dbc76690\";a:4:{s:10:\"expiration\";i:1554082960;s:2:\"ip\";s:13:\"24.43.215.226\";s:2:\"ua\";s:114:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/73.0.3683.86 Safari/537.36\";s:5:\"login\";i:1553910160;}}'),(18,1,'wp_dashboard_quick_press_last_post_id','3'),(19,1,'community-events-location','a:1:{s:2:\"ip\";s:11:\"24.43.215.0\";}'); /*!40000 ALTER TABLE `wp_usermeta` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_users` -- DROP TABLE IF EXISTS `wp_users`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_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=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_users` -- LOCK TABLES `wp_users` WRITE; /*!40000 ALTER TABLE `wp_users` DISABLE KEYS */; INSERT INTO `wp_users` VALUES (1,'jcdc','$P$B4yjJZzhomXpM1CzRyJ0dxOzr/65Lo/','jcdc','jeff.calley.hi@gmail.com','','2018-02-06 17:51:13','',0,'jcdc'); /*!40000 ALTER TABLE `wp_users` ENABLE KEYS */; UNLOCK TABLES; -- -- Dumping routines for database '1_02be3e2_2' -- /*!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 2019-03-29 22:48:37