Skip to content

Instantly share code, notes, and snippets.

@Steven24K
Created April 19, 2021 12:08
Show Gist options
  • Save Steven24K/8bcc94f8e68d5cea25bcc8df4b31aa80 to your computer and use it in GitHub Desktop.
Save Steven24K/8bcc94f8e68d5cea25bcc8df4b31aa80 to your computer and use it in GitHub Desktop.
A database dump to setup wordpress, site url localhost:5100, admin credentials: username: vidda, password: root
This file has been truncated, but you can view the full file.
-- MySQL dump 10.13 Distrib 8.0.23, for Win64 (x86_64)
--
-- Host: 127.0.0.1 Database: My Website
-- ------------------------------------------------------
-- Server version 5.7.33
/*!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 */;
/*!50503 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_blog_versions`
--
DROP TABLE IF EXISTS `wp_blog_versions`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_blog_versions` (
`blog_id` bigint(20) NOT NULL DEFAULT '0',
`db_version` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`last_updated` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
PRIMARY KEY (`blog_id`),
KEY `db_version` (`db_version`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_blog_versions`
--
LOCK TABLES `wp_blog_versions` WRITE;
/*!40000 ALTER TABLE `wp_blog_versions` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_blog_versions` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_blogmeta`
--
DROP TABLE IF EXISTS `wp_blogmeta`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_blogmeta` (
`meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`blog_id` bigint(20) 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 `meta_key` (`meta_key`(191)),
KEY `blog_id` (`blog_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_blogmeta`
--
LOCK TABLES `wp_blogmeta` WRITE;
/*!40000 ALTER TABLE `wp_blogmeta` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_blogmeta` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_blogs`
--
DROP TABLE IF EXISTS `wp_blogs`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_blogs` (
`blog_id` bigint(20) NOT NULL AUTO_INCREMENT,
`site_id` bigint(20) NOT NULL DEFAULT '0',
`domain` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`path` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`registered` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`last_updated` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`public` tinyint(2) NOT NULL DEFAULT '1',
`archived` tinyint(2) NOT NULL DEFAULT '0',
`mature` tinyint(2) NOT NULL DEFAULT '0',
`spam` tinyint(2) NOT NULL DEFAULT '0',
`deleted` tinyint(2) NOT NULL DEFAULT '0',
`lang_id` int(11) NOT NULL DEFAULT '0',
PRIMARY KEY (`blog_id`),
KEY `domain` (`domain`(50),`path`(5)),
KEY `lang_id` (`lang_id`)
) 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_blogs`
--
LOCK TABLES `wp_blogs` WRITE;
/*!40000 ALTER TABLE `wp_blogs` DISABLE KEYS */;
INSERT INTO `wp_blogs` VALUES (1,1,'localhost:5100','/','2020-04-16 12:34:30','2020-04-16 12:43:28',1,0,0,0,0,0);
/*!40000 ALTER TABLE `wp_blogs` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_commentmeta`
--
DROP TABLE IF EXISTS `wp_commentmeta`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
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 */;
/*!50503 SET character_set_client = utf8mb4 */;
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/','','2020-04-16 12:30:48','2020-04-16 12:30:48','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_ewwwio_images`
--
DROP TABLE IF EXISTS `wp_ewwwio_images`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_ewwwio_images` (
`id` int(14) unsigned NOT NULL AUTO_INCREMENT,
`attachment_id` bigint(20) unsigned DEFAULT NULL,
`gallery` varchar(10) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
`resize` varchar(75) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
`path` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
`converted` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
`results` varchar(75) COLLATE utf8mb4_unicode_520_ci NOT NULL,
`image_size` int(10) unsigned DEFAULT NULL,
`orig_size` int(10) unsigned DEFAULT NULL,
`backup` varchar(100) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
`level` int(5) unsigned DEFAULT NULL,
`pending` tinyint(1) NOT NULL DEFAULT '0',
`updates` int(5) unsigned DEFAULT NULL,
`updated` timestamp NOT NULL DEFAULT '1971-01-01 00:00:00' ON UPDATE CURRENT_TIMESTAMP,
`trace` blob,
UNIQUE KEY `id` (`id`),
KEY `path` (`path`(191)),
KEY `attachment_info` (`gallery`(3),`attachment_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_ewwwio_images`
--
LOCK TABLES `wp_ewwwio_images` WRITE;
/*!40000 ALTER TABLE `wp_ewwwio_images` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_ewwwio_images` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_ewwwio_queue`
--
DROP TABLE IF EXISTS `wp_ewwwio_queue`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_ewwwio_queue` (
`attachment_id` bigint(20) unsigned DEFAULT NULL,
`gallery` varchar(10) DEFAULT NULL,
`scanned` tinyint(1) NOT NULL DEFAULT '0',
KEY `attachment_info` (`gallery`(3),`attachment_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_ewwwio_queue`
--
LOCK TABLES `wp_ewwwio_queue` WRITE;
/*!40000 ALTER TABLE `wp_ewwwio_queue` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_ewwwio_queue` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_links`
--
DROP TABLE IF EXISTS `wp_links`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
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 */;
/*!50503 SET character_set_client = utf8mb4 */;
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=308 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://localhost:5100/','yes'),(2,'home','http://localhost:5100/','yes'),(3,'blogname','My Website','yes'),(4,'blogdescription','','yes'),(5,'users_can_register','0','yes'),(6,'admin_email','info@example.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','0','yes'),(22,'posts_per_page','10','yes'),(23,'date_format','F j, Y','yes'),(24,'time_format','H:i','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','/%postname%/','yes'),(30,'hack_file','0','yes'),(31,'blog_charset','UTF-8','yes'),(32,'moderation_keys','','no'),(33,'active_plugins','a:26:{i:0;s:25:\"Basic-Auth/basic-auth.php\";i:1;s:57:\"acf-content-analysis-for-yoast-seo/yoast-acf-analysis.php\";i:2;s:41:\"acf-to-rest-api/class-acf-to-rest-api.php\";i:3;s:34:\"advanced-custom-fields-pro/acf.php\";i:4;s:61:\"advanced-custom-fields-wpcli/advanced-custom-fields-wpcli.php\";i:5;s:37:\"breadcrumb-navxt/breadcrumb-navxt.php\";i:6;s:33:\"disable-embeds/disable-embeds.php\";i:7;s:33:\"disable-emojis/disable-emojis.php\";i:8;s:27:\"My Website-acf/My Website.php\";i:9;s:45:\"ewww-image-optimizer/ewww-image-optimizer.php\";i:10;s:23:\"gutenberg/gutenberg.php\";i:11;s:27:\"image-sizes/image-sizes.php\";i:12;s:63:\"limit-login-attempts-reloaded/limit-login-attempts-reloaded.php\";i:13;s:25:\"no_comment/no-comment.php\";i:14;s:21:\"no_posts/no-posts.php\";i:15;s:41:\"post-type-location/post-type-location.php\";i:16;s:33:\"post-type-news/post-type-news.php\";i:17;s:35:\"post-type-story/post-type-story.php\";i:18;s:27:\"redirection/redirection.php\";i:19;s:25:\"relevanssi/relevanssi.php\";i:20;s:43:\"remove-author-pages/remove-author-pages.php\";i:21;s:49:\"sendgrid-email-delivery-simplified/wpsendgrid.php\";i:22;s:53:\"simple-custom-post-order/simple-custom-post-order.php\";i:23;s:29:\"vidda-blocks/vidda-blocks.php\";i:24;s:24:\"wordpress-seo/wp-seo.php\";i:25;s:29:\"wp-api-menus/wp-api-menus.php\";}','yes'),(34,'category_base','','yes'),(35,'ping_sites','http://rpc.pingomatic.com/','yes'),(36,'comment_max_links','2','yes'),(37,'gmt_offset','','yes'),(38,'default_email_category','1','yes'),(39,'recently_edited','','no'),(40,'template','My Website','yes'),(41,'stylesheet','My Website','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','44719','yes'),(49,'uploads_use_yearmonth_folders','1','yes'),(50,'upload_path','','yes'),(51,'blog_public','0','yes'),(52,'default_link_category','2','yes'),(53,'show_on_front','page','yes'),(54,'tag_base','','yes'),(55,'show_avatars','1','yes'),(56,'avatar_rating','G','yes'),(57,'upload_url_path','','yes'),(58,'thumbnail_size_w','150','yes'),(59,'thumbnail_size_h','150','yes'),(60,'thumbnail_crop','1','yes'),(61,'medium_size_w','300','yes'),(62,'medium_size_h','300','yes'),(63,'avatar_default','mystery','yes'),(64,'large_size_w','1024','yes'),(65,'large_size_h','1024','yes'),(66,'image_default_link_type','none','yes'),(67,'image_default_size','','yes'),(68,'image_default_align','','yes'),(69,'close_comments_for_old_posts','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:0:{}','yes'),(80,'widget_rss','a:0:{}','yes'),(81,'uninstall_plugins','a:2:{s:53:\"simple-custom-post-order/simple-custom-post-order.php\";s:18:\"scporder_uninstall\";s:27:\"redirection/redirection.php\";a:2:{i:0;s:17:\"Redirection_Admin\";i:1;s:16:\"plugin_uninstall\";}}','no'),(82,'timezone_string','Europe/Amsterdam','yes'),(83,'page_for_posts','0','yes'),(84,'page_on_front','8','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,'wp_page_for_privacy_policy','3','yes'),(92,'show_comments_cookies_opt_in','1','yes'),(93,'initial_db_version','44719','yes'),(94,'wp_user_roles','a:7:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:62:{s:13:\"switch_themes\";b:1;s:11:\"edit_themes\";b:1;s:16:\"activate_plugins\";b:1;s:12:\"edit_plugins\";b:1;s:10:\"edit_users\";b:1;s:10:\"edit_files\";b:1;s:14:\"manage_options\";b:1;s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:6:\"import\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:8:\"level_10\";b:1;s:7:\"level_9\";b:1;s:7:\"level_8\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;s:12:\"delete_users\";b:1;s:12:\"create_users\";b:1;s:17:\"unfiltered_upload\";b:1;s:14:\"edit_dashboard\";b:1;s:14:\"update_plugins\";b:1;s:14:\"delete_plugins\";b:1;s:15:\"install_plugins\";b:1;s:13:\"update_themes\";b:1;s:14:\"install_themes\";b:1;s:11:\"update_core\";b:1;s:10:\"list_users\";b:1;s:12:\"remove_users\";b:1;s:13:\"promote_users\";b:1;s:18:\"edit_theme_options\";b:1;s:13:\"delete_themes\";b:1;s:6:\"export\";b:1;s:20:\"wpseo_manage_options\";b:1;}}s:6:\"editor\";a:2:{s:4:\"name\";s:6:\"Editor\";s:12:\"capabilities\";a:41:{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:12:\"change_menus\";b:1;s:12:\"manage_terms\";b:1;s:10:\"edit_terms\";b:1;s:12:\"delete_terms\";b:1;s:12:\"assign_terms\";b:1;s:15:\"wpseo_bulk_edit\";b:1;s:18:\"edit_theme_options\";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;}}s:13:\"wpseo_manager\";a:2:{s:4:\"name\";s:11:\"SEO Manager\";s:12:\"capabilities\";a:42:{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:12:\"change_menus\";b:1;s:12:\"manage_terms\";b:1;s:10:\"edit_terms\";b:1;s:12:\"delete_terms\";b:1;s:12:\"assign_terms\";b:1;s:15:\"wpseo_bulk_edit\";b:1;s:28:\"wpseo_edit_advanced_metadata\";b:1;s:20:\"wpseo_manage_options\";b:1;}}s:12:\"wpseo_editor\";a:2:{s:4:\"name\";s:10:\"SEO Editor\";s:12:\"capabilities\";a:41:{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:12:\"change_menus\";b:1;s:12:\"manage_terms\";b:1;s:10:\"edit_terms\";b:1;s:12:\"delete_terms\";b:1;s:12:\"assign_terms\";b:1;s:15:\"wpseo_bulk_edit\";b:1;s:28:\"wpseo_edit_advanced_metadata\";b:1;}}}','yes'),(95,'fresh_site','0','yes'),(96,'widget_search','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),(97,'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'),(98,'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'),(99,'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'),(100,'widget_meta','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),(101,'sidebars_widgets','a:2:{s:19:\"wp_inactive_widgets\";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:13:\"array_version\";i:3;}','yes'),(102,'cron','a:9:{i:1587040253;a:5:{s:32:\"recovery_mode_clean_expired_keys\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}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;}}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:1587040259;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;}}}i:1587040262;a:1:{s:30:\"wp_scheduled_auto_draft_delete\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1587040568;a:1:{s:21:\"update_network_counts\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1587040963;a:1:{s:39:\"ewww_image_optimizer_relative_migration\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:34:\"ewwwio_relative_migration_interval\";s:4:\"args\";a:0:{}s:8:\"interval\";i:300;}}}i:1587040968;a:1:{s:19:\"wpseo-reindex-links\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1587041308;a:1:{s:25:\"wpseo_ping_search_engines\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:0:{}}}}i:1618833505;a:1:{s:24:\"relevanssi_update_counts\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}s:7:\"version\";i:2;}','yes'),(103,'widget_pages','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(104,'widget_calendar','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(105,'widget_media_audio','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(106,'widget_media_image','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(107,'widget_media_gallery','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(108,'widget_media_video','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(109,'nonce_key','y(H<b]lPo:lOk*MK7PV(12z]06Qvty+zRzN<*^LfMk.?*lxs^g~rDIPzO!K%|jOF','no'),(110,'nonce_salt','3S7.xMdmF!V#TP1.7ii]DV#cE}bbvEGH;n58Pth9@[fNT?/#cO2X^@ow@B{d)|bi','no'),(111,'widget_tag_cloud','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(112,'widget_nav_menu','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(113,'widget_custom_html','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(114,'auth_key','_3,su!Atp%;K gZkdJgzki7,GgG`YLw_2aPG#xUKV N+SG<09f|:IC.P$.a9h0c=','no'),(115,'auth_salt','dzxG$IV)1y/I>KkXaR|~>-~,(o%~h`s6`!pan_07#:Wi+}KS|p3oh70~0>V#29Ja','no'),(116,'logged_in_key','OB-sERnFWGfYiSt@q7wt]YB71E2V)4xib,As5q8c_Zcg!2c(*O?.[>FxHEy`^e1/','no'),(117,'logged_in_salt','#:U7&(8=5$ac{#LHb$nkg$vCB@8o5%&v1>Vmkgy0_;.WDAPx.UhHo7gOsv^Cg+=:','no'),(118,'_site_transient_update_core','O:8:\"stdClass\":4:{s:7:\"updates\";a:4:{i:0;O:8:\"stdClass\":10:{s:8:\"response\";s:7:\"upgrade\";s:8:\"download\";s:57:\"https://downloads.wordpress.org/release/wordpress-5.4.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:57:\"https://downloads.wordpress.org/release/wordpress-5.4.zip\";s:10:\"no_content\";s:68:\"https://downloads.wordpress.org/release/wordpress-5.4-no-content.zip\";s:11:\"new_bundled\";s:69:\"https://downloads.wordpress.org/release/wordpress-5.4-new-bundled.zip\";s:7:\"partial\";b:0;s:8:\"rollback\";b:0;}s:7:\"current\";s:3:\"5.4\";s:7:\"version\";s:3:\"5.4\";s:11:\"php_version\";s:6:\"5.6.20\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"5.3\";s:15:\"partial_version\";s:0:\"\";}i:1;O:8:\"stdClass\":11:{s:8:\"response\";s:10:\"autoupdate\";s:8:\"download\";s:57:\"https://downloads.wordpress.org/release/wordpress-5.4.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:57:\"https://downloads.wordpress.org/release/wordpress-5.4.zip\";s:10:\"no_content\";s:68:\"https://downloads.wordpress.org/release/wordpress-5.4-no-content.zip\";s:11:\"new_bundled\";s:69:\"https://downloads.wordpress.org/release/wordpress-5.4-new-bundled.zip\";s:7:\"partial\";b:0;s:8:\"rollback\";b:0;}s:7:\"current\";s:3:\"5.4\";s:7:\"version\";s:3:\"5.4\";s:11:\"php_version\";s:6:\"5.6.20\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"5.3\";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.3.2.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.3.2.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-5.3.2-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-5.3.2-new-bundled.zip\";s:7:\"partial\";b:0;s:8:\"rollback\";b:0;}s:7:\"current\";s:5:\"5.3.2\";s:7:\"version\";s:5:\"5.3.2\";s:11:\"php_version\";s:6:\"5.6.20\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"5.3\";s:15:\"partial_version\";s:0:\"\";s:9:\"new_files\";s:1:\"1\";}i:3;O:8:\"stdClass\":11:{s:8:\"response\";s:10:\"autoupdate\";s:8:\"download\";s:59:\"https://downloads.wordpress.org/release/wordpress-5.2.5.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.2.5.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-5.2.5-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-5.2.5-new-bundled.zip\";s:7:\"partial\";s:69:\"https://downloads.wordpress.org/release/wordpress-5.2.5-partial-4.zip\";s:8:\"rollback\";s:70:\"https://downloads.wordpress.org/release/wordpress-5.2.5-rollback-4.zip\";}s:7:\"current\";s:5:\"5.2.5\";s:7:\"version\";s:5:\"5.2.5\";s:11:\"php_version\";s:6:\"5.6.20\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"5.3\";s:15:\"partial_version\";s:5:\"5.2.4\";s:9:\"new_files\";s:0:\"\";}}s:12:\"last_checked\";i:1587040259;s:15:\"version_checked\";s:5:\"5.2.4\";s:12:\"translations\";a:0:{}}','no'),(119,'_site_transient_update_plugins','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1587040268;s:7:\"checked\";a:26:{s:57:\"acf-content-analysis-for-yoast-seo/yoast-acf-analysis.php\";s:5:\"2.2.0\";s:41:\"acf-to-rest-api/class-acf-to-rest-api.php\";s:5:\"3.1.0\";s:34:\"advanced-custom-fields-pro/acf.php\";s:5:\"5.8.8\";s:61:\"advanced-custom-fields-wpcli/advanced-custom-fields-wpcli.php\";s:5:\"3.0.0\";s:37:\"breadcrumb-navxt/breadcrumb-navxt.php\";s:5:\"6.1.0\";s:27:\"image-sizes/image-sizes.php\";s:0:\"\";s:41:\"post-type-location/post-type-location.php\";s:0:\"\";s:33:\"post-type-news/post-type-news.php\";s:0:\"\";s:35:\"post-type-story/post-type-story.php\";s:0:\"\";s:33:\"disable-embeds/disable-embeds.php\";s:5:\"1.4.0\";s:33:\"disable-emojis/disable-emojis.php\";s:5:\"1.7.2\";s:27:\"My Website-acf/My Website.php\";s:0:\"\";s:45:\"ewww-image-optimizer/ewww-image-optimizer.php\";s:5:\"5.2.2\";s:23:\"gutenberg/gutenberg.php\";s:5:\"6.8.0\";s:25:\"Basic-Auth/basic-auth.php\";s:3:\"0.1\";s:63:\"limit-login-attempts-reloaded/limit-login-attempts-reloaded.php\";s:5:\"2.9.0\";s:25:\"no_comment/no-comment.php\";s:5:\"0.1.0\";s:21:\"no_posts/no-posts.php\";s:5:\"0.2.0\";s:27:\"redirection/redirection.php\";s:5:\"4.1.1\";s:25:\"relevanssi/relevanssi.php\";s:5:\"4.7.1\";s:43:\"remove-author-pages/remove-author-pages.php\";s:3:\"0.2\";s:49:\"sendgrid-email-delivery-simplified/wpsendgrid.php\";s:6:\"1.11.8\";s:53:\"simple-custom-post-order/simple-custom-post-order.php\";s:5:\"2.4.2\";s:29:\"vidda-blocks/vidda-blocks.php\";s:5:\"1.0.0\";s:29:\"wp-api-menus/wp-api-menus.php\";s:5:\"1.3.1\";s:24:\"wordpress-seo/wp-seo.php\";s:6:\"10.1.2\";}s:8:\"response\";a:8:{s:41:\"acf-to-rest-api/class-acf-to-rest-api.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:29:\"w.org/plugins/acf-to-rest-api\";s:4:\"slug\";s:15:\"acf-to-rest-api\";s:6:\"plugin\";s:41:\"acf-to-rest-api/class-acf-to-rest-api.php\";s:11:\"new_version\";s:5:\"3.2.0\";s:3:\"url\";s:46:\"https://wordpress.org/plugins/acf-to-rest-api/\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/plugin/acf-to-rest-api.3.2.0.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:68:\"https://ps.w.org/acf-to-rest-api/assets/icon-256x256.jpg?rev=1752896\";s:2:\"1x\";s:68:\"https://ps.w.org/acf-to-rest-api/assets/icon-128x128.jpg?rev=1752896\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:71:\"https://ps.w.org/acf-to-rest-api/assets/banner-1544x500.jpg?rev=1752896\";s:2:\"1x\";s:70:\"https://ps.w.org/acf-to-rest-api/assets/banner-772x250.jpg?rev=1752896\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"5.3.2\";s:12:\"requires_php\";b:0;s:13:\"compatibility\";O:8:\"stdClass\":0:{}}s:37:\"breadcrumb-navxt/breadcrumb-navxt.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:30:\"w.org/plugins/breadcrumb-navxt\";s:4:\"slug\";s:16:\"breadcrumb-navxt\";s:6:\"plugin\";s:37:\"breadcrumb-navxt/breadcrumb-navxt.php\";s:11:\"new_version\";s:5:\"6.4.0\";s:3:\"url\";s:47:\"https://wordpress.org/plugins/breadcrumb-navxt/\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/plugin/breadcrumb-navxt.6.4.0.zip\";s:5:\"icons\";a:3:{s:2:\"2x\";s:68:\"https://ps.w.org/breadcrumb-navxt/assets/icon-256x256.png?rev=971477\";s:2:\"1x\";s:61:\"https://ps.w.org/breadcrumb-navxt/assets/icon.svg?rev=1927103\";s:3:\"svg\";s:61:\"https://ps.w.org/breadcrumb-navxt/assets/icon.svg?rev=1927103\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:72:\"https://ps.w.org/breadcrumb-navxt/assets/banner-1544x500.png?rev=1927103\";s:2:\"1x\";s:71:\"https://ps.w.org/breadcrumb-navxt/assets/banner-772x250.png?rev=1927103\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"5.4.0\";s:12:\"requires_php\";s:3:\"5.5\";s:13:\"compatibility\";O:8:\"stdClass\":0:{}}s:27:\"image-sizes/image-sizes.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:25:\"w.org/plugins/image-sizes\";s:4:\"slug\";s:11:\"image-sizes\";s:6:\"plugin\";s:27:\"image-sizes/image-sizes.php\";s:11:\"new_version\";s:5:\"3.0.3\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/image-sizes/\";s:7:\"package\";s:54:\"https://downloads.wordpress.org/plugin/image-sizes.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:64:\"https://ps.w.org/image-sizes/assets/icon-256x256.png?rev=1909172\";s:2:\"1x\";s:64:\"https://ps.w.org/image-sizes/assets/icon-128x128.png?rev=1909172\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:66:\"https://ps.w.org/image-sizes/assets/banner-772x250.png?rev=2257080\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:3:\"5.4\";s:12:\"requires_php\";s:3:\"5.4\";s:13:\"compatibility\";O:8:\"stdClass\":0:{}}s:45:\"ewww-image-optimizer/ewww-image-optimizer.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:34:\"w.org/plugins/ewww-image-optimizer\";s:4:\"slug\";s:20:\"ewww-image-optimizer\";s:6:\"plugin\";s:45:\"ewww-image-optimizer/ewww-image-optimizer.php\";s:11:\"new_version\";s:5:\"5.2.5\";s:3:\"url\";s:51:\"https://wordpress.org/plugins/ewww-image-optimizer/\";s:7:\"package\";s:69:\"https://downloads.wordpress.org/plugin/ewww-image-optimizer.5.2.5.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:73:\"https://ps.w.org/ewww-image-optimizer/assets/icon-256x256.png?rev=1582276\";s:2:\"1x\";s:73:\"https://ps.w.org/ewww-image-optimizer/assets/icon-128x128.png?rev=1582276\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:76:\"https://ps.w.org/ewww-image-optimizer/assets/banner-1544x500.jpg?rev=1582276\";s:2:\"1x\";s:75:\"https://ps.w.org/ewww-image-optimizer/assets/banner-772x250.jpg?rev=1582276\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:3:\"5.4\";s:12:\"requires_php\";s:3:\"5.6\";s:13:\"compatibility\";O:8:\"stdClass\":0:{}}s:63:\"limit-login-attempts-reloaded/limit-login-attempts-reloaded.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:43:\"w.org/plugins/limit-login-attempts-reloaded\";s:4:\"slug\";s:29:\"limit-login-attempts-reloaded\";s:6:\"plugin\";s:63:\"limit-login-attempts-reloaded/limit-login-attempts-reloaded.php\";s:11:\"new_version\";s:6:\"2.11.0\";s:3:\"url\";s:60:\"https://wordpress.org/plugins/limit-login-attempts-reloaded/\";s:7:\"package\";s:79:\"https://downloads.wordpress.org/plugin/limit-login-attempts-reloaded.2.11.0.zip\";s:5:\"icons\";a:2:{s:2:\"1x\";s:74:\"https://ps.w.org/limit-login-attempts-reloaded/assets/icon.svg?rev=1472250\";s:3:\"svg\";s:74:\"https://ps.w.org/limit-login-attempts-reloaded/assets/icon.svg?rev=1472250\";}s:7:\"banners\";a:0:{}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:3:\"5.4\";s:12:\"requires_php\";b:0;s:13:\"compatibility\";O:8:\"stdClass\":0:{}}s:27:\"redirection/redirection.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:25:\"w.org/plugins/redirection\";s:4:\"slug\";s:11:\"redirection\";s:6:\"plugin\";s:27:\"redirection/redirection.php\";s:11:\"new_version\";s:5:\"4.7.1\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/redirection/\";s:7:\"package\";s:54:\"https://downloads.wordpress.org/plugin/redirection.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:63:\"https://ps.w.org/redirection/assets/icon-256x256.jpg?rev=983639\";s:2:\"1x\";s:63:\"https://ps.w.org/redirection/assets/icon-128x128.jpg?rev=983640\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:66:\"https://ps.w.org/redirection/assets/banner-1544x500.jpg?rev=983641\";s:2:\"1x\";s:65:\"https://ps.w.org/redirection/assets/banner-772x250.jpg?rev=983642\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:3:\"5.4\";s:12:\"requires_php\";s:3:\"5.6\";s:13:\"compatibility\";O:8:\"stdClass\":0:{}}s:25:\"relevanssi/relevanssi.php\";O:8:\"stdClass\":13:{s:2:\"id\";s:24:\"w.org/plugins/relevanssi\";s:4:\"slug\";s:10:\"relevanssi\";s:6:\"plugin\";s:25:\"relevanssi/relevanssi.php\";s:11:\"new_version\";s:7:\"4.7.2.1\";s:3:\"url\";s:41:\"https://wordpress.org/plugins/relevanssi/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/plugin/relevanssi.4.7.2.1.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:63:\"https://ps.w.org/relevanssi/assets/icon-256x256.png?rev=2025044\";s:2:\"1x\";s:63:\"https://ps.w.org/relevanssi/assets/icon-128x128.png?rev=2025044\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:66:\"https://ps.w.org/relevanssi/assets/banner-1544x500.jpg?rev=1647178\";s:2:\"1x\";s:65:\"https://ps.w.org/relevanssi/assets/banner-772x250.jpg?rev=1647180\";}s:11:\"banners_rtl\";a:0:{}s:14:\"upgrade_notice\";s:45:\"<ul>\n<li>The actual 4.7.2 upgrade.</li>\n</ul>\";s:6:\"tested\";s:3:\"5.4\";s:12:\"requires_php\";s:3:\"5.6\";s:13:\"compatibility\";O:8:\"stdClass\":0:{}}s:53:\"simple-custom-post-order/simple-custom-post-order.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:38:\"w.org/plugins/simple-custom-post-order\";s:4:\"slug\";s:24:\"simple-custom-post-order\";s:6:\"plugin\";s:53:\"simple-custom-post-order/simple-custom-post-order.php\";s:11:\"new_version\";s:5:\"2.4.9\";s:3:\"url\";s:55:\"https://wordpress.org/plugins/simple-custom-post-order/\";s:7:\"package\";s:73:\"https://downloads.wordpress.org/plugin/simple-custom-post-order.2.4.9.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:77:\"https://ps.w.org/simple-custom-post-order/assets/icon-256x256.jpg?rev=1859717\";s:2:\"1x\";s:77:\"https://ps.w.org/simple-custom-post-order/assets/icon-256x256.jpg?rev=1859717\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:79:\"https://ps.w.org/simple-custom-post-order/assets/banner-772x250.jpg?rev=1859717\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"5.3.2\";s:12:\"requires_php\";s:3:\"5.6\";s:13:\"compatibility\";O:8:\"stdClass\":0:{}}}s:12:\"translations\";a:0:{}s:9:\"no_update\";a:8:{s:57:\"acf-content-analysis-for-yoast-seo/yoast-acf-analysis.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:48:\"w.org/plugins/acf-content-analysis-for-yoast-seo\";s:4:\"slug\";s:34:\"acf-content-analysis-for-yoast-seo\";s:6:\"plugin\";s:57:\"acf-content-analysis-for-yoast-seo/yoast-acf-analysis.php\";s:11:\"new_version\";s:5:\"2.3.0\";s:3:\"url\";s:65:\"https://wordpress.org/plugins/acf-content-analysis-for-yoast-seo/\";s:7:\"package\";s:83:\"https://downloads.wordpress.org/plugin/acf-content-analysis-for-yoast-seo.2.3.0.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:87:\"https://ps.w.org/acf-content-analysis-for-yoast-seo/assets/icon-256x256.png?rev=1717503\";s:2:\"1x\";s:87:\"https://ps.w.org/acf-content-analysis-for-yoast-seo/assets/icon-128x128.png?rev=1717503\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:90:\"https://ps.w.org/acf-content-analysis-for-yoast-seo/assets/banner-1544x500.png?rev=1717503\";s:2:\"1x\";s:89:\"https://ps.w.org/acf-content-analysis-for-yoast-seo/assets/banner-772x250.png?rev=1717503\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:3:\"5.4\";s:12:\"requires_php\";s:5:\"5.2.4\";s:13:\"compatibility\";a:0:{}}s:33:\"disable-embeds/disable-embeds.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:28:\"w.org/plugins/disable-embeds\";s:4:\"slug\";s:14:\"disable-embeds\";s:6:\"plugin\";s:33:\"disable-embeds/disable-embeds.php\";s:11:\"new_version\";s:5:\"1.4.0\";s:3:\"url\";s:45:\"https://wordpress.org/plugins/disable-embeds/\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/plugin/disable-embeds.1.4.0.zip\";s:5:\"icons\";a:2:{s:2:\"1x\";s:59:\"https://ps.w.org/disable-embeds/assets/icon.svg?rev=1271646\";s:3:\"svg\";s:59:\"https://ps.w.org/disable-embeds/assets/icon.svg?rev=1271646\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:70:\"https://ps.w.org/disable-embeds/assets/banner-1544x500.png?rev=1271646\";s:2:\"1x\";s:69:\"https://ps.w.org/disable-embeds/assets/banner-772x250.png?rev=1271646\";}s:11:\"banners_rtl\";a:0:{}}s:33:\"disable-emojis/disable-emojis.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:28:\"w.org/plugins/disable-emojis\";s:4:\"slug\";s:14:\"disable-emojis\";s:6:\"plugin\";s:33:\"disable-emojis/disable-emojis.php\";s:11:\"new_version\";s:5:\"1.7.2\";s:3:\"url\";s:45:\"https://wordpress.org/plugins/disable-emojis/\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/plugin/disable-emojis.1.7.2.zip\";s:5:\"icons\";a:1:{s:7:\"default\";s:65:\"https://s.w.org/plugins/geopattern-icon/disable-emojis_d3c7d6.svg\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:70:\"https://ps.w.org/disable-emojis/assets/banner-1544x500.png?rev=1145188\";s:2:\"1x\";s:69:\"https://ps.w.org/disable-emojis/assets/banner-772x250.png?rev=1145188\";}s:11:\"banners_rtl\";a:0:{}}s:23:\"gutenberg/gutenberg.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:23:\"w.org/plugins/gutenberg\";s:4:\"slug\";s:9:\"gutenberg\";s:6:\"plugin\";s:23:\"gutenberg/gutenberg.php\";s:11:\"new_version\";s:5:\"7.9.0\";s:3:\"url\";s:40:\"https://wordpress.org/plugins/gutenberg/\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/plugin/gutenberg.7.9.0.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:62:\"https://ps.w.org/gutenberg/assets/icon-256x256.jpg?rev=1776042\";s:2:\"1x\";s:62:\"https://ps.w.org/gutenberg/assets/icon-128x128.jpg?rev=1776042\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:65:\"https://ps.w.org/gutenberg/assets/banner-1544x500.jpg?rev=1718710\";s:2:\"1x\";s:64:\"https://ps.w.org/gutenberg/assets/banner-772x250.jpg?rev=1718710\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:3:\"5.4\";s:12:\"requires_php\";b:0;s:13:\"compatibility\";a:0:{}}s:43:\"remove-author-pages/remove-author-pages.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:33:\"w.org/plugins/remove-author-pages\";s:4:\"slug\";s:19:\"remove-author-pages\";s:6:\"plugin\";s:43:\"remove-author-pages/remove-author-pages.php\";s:11:\"new_version\";s:3:\"0.2\";s:3:\"url\";s:50:\"https://wordpress.org/plugins/remove-author-pages/\";s:7:\"package\";s:66:\"https://downloads.wordpress.org/plugin/remove-author-pages.0.2.zip\";s:5:\"icons\";a:1:{s:7:\"default\";s:63:\"https://s.w.org/plugins/geopattern-icon/remove-author-pages.svg\";}s:7:\"banners\";a:0:{}s:11:\"banners_rtl\";a:0:{}}s:49:\"sendgrid-email-delivery-simplified/wpsendgrid.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:48:\"w.org/plugins/sendgrid-email-delivery-simplified\";s:4:\"slug\";s:34:\"sendgrid-email-delivery-simplified\";s:6:\"plugin\";s:49:\"sendgrid-email-delivery-simplified/wpsendgrid.php\";s:11:\"new_version\";s:6:\"1.11.8\";s:3:\"url\";s:65:\"https://wordpress.org/plugins/sendgrid-email-delivery-simplified/\";s:7:\"package\";s:84:\"https://downloads.wordpress.org/plugin/sendgrid-email-delivery-simplified.1.11.8.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:87:\"https://ps.w.org/sendgrid-email-delivery-simplified/assets/icon-256x256.png?rev=1445523\";s:2:\"1x\";s:87:\"https://ps.w.org/sendgrid-email-delivery-simplified/assets/icon-128x128.png?rev=1445523\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:89:\"https://ps.w.org/sendgrid-email-delivery-simplified/assets/banner-772x250.jpg?rev=1445523\";}s:11:\"banners_rtl\";a:0:{}}s:29:\"wp-api-menus/wp-api-menus.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:26:\"w.org/plugins/wp-api-menus\";s:4:\"slug\";s:12:\"wp-api-menus\";s:6:\"plugin\";s:29:\"wp-api-menus/wp-api-menus.php\";s:11:\"new_version\";s:5:\"1.3.1\";s:3:\"url\";s:43:\"https://wordpress.org/plugins/wp-api-menus/\";s:7:\"package\";s:55:\"https://downloads.wordpress.org/plugin/wp-api-menus.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:65:\"https://ps.w.org/wp-api-menus/assets/icon-256x256.png?rev=1070279\";s:2:\"1x\";s:65:\"https://ps.w.org/wp-api-menus/assets/icon-128x128.png?rev=1070279\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:68:\"https://ps.w.org/wp-api-menus/assets/banner-1544x500.png?rev=1070279\";s:2:\"1x\";s:67:\"https://ps.w.org/wp-api-menus/assets/banner-772x250.png?rev=1070279\";}s:11:\"banners_rtl\";a:0:{}}s:24:\"wordpress-seo/wp-seo.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:27:\"w.org/plugins/wordpress-seo\";s:4:\"slug\";s:13:\"wordpress-seo\";s:6:\"plugin\";s:24:\"wordpress-seo/wp-seo.php\";s:11:\"new_version\";s:4:\"13.5\";s:3:\"url\";s:44:\"https://wordpress.org/plugins/wordpress-seo/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/plugin/wordpress-seo.13.5.zip\";s:5:\"icons\";a:3:{s:2:\"2x\";s:66:\"https://ps.w.org/wordpress-seo/assets/icon-256x256.png?rev=1834347\";s:2:\"1x\";s:58:\"https://ps.w.org/wordpress-seo/assets/icon.svg?rev=1946641\";s:3:\"svg\";s:58:\"https://ps.w.org/wordpress-seo/assets/icon.svg?rev=1946641\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:69:\"https://ps.w.org/wordpress-seo/assets/banner-1544x500.png?rev=1843435\";s:2:\"1x\";s:68:\"https://ps.w.org/wordpress-seo/assets/banner-772x250.png?rev=1843435\";}s:11:\"banners_rtl\";a:2:{s:2:\"2x\";s:73:\"https://ps.w.org/wordpress-seo/assets/banner-1544x500-rtl.png?rev=1843435\";s:2:\"1x\";s:72:\"https://ps.w.org/wordpress-seo/assets/banner-772x250-rtl.png?rev=1843435\";}s:6:\"tested\";s:3:\"5.4\";s:12:\"requires_php\";s:6:\"5.6.20\";s:13:\"compatibility\";a:0:{}}}}','no'),(120,'_site_transient_timeout_theme_roots','1587042060','no'),(121,'_site_transient_theme_roots','a:1:{s:9:\"My Website\";s:7:\"/themes\";}','no'),(122,'_site_transient_update_themes','O:8:\"stdClass\":4:{s:12:\"last_checked\";i:1587040261;s:7:\"checked\";a:1:{s:9:\"My Website\";s:5:\"0.1.0\";}s:8:\"response\";a:0:{}s:12:\"translations\";a:0:{}}','no'),(123,'_site_transient_timeout_browser_7882d5a5641293bd72253bfbda0286f6','1587645061','no'),(124,'_site_transient_browser_7882d5a5641293bd72253bfbda0286f6','a:10:{s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:13:\"80.0.3987.163\";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'),(125,'_site_transient_timeout_php_check_a0c594a1902efeb727acf2a7ff080644','1587645062','no'),(126,'_site_transient_php_check_a0c594a1902efeb727acf2a7ff080644','a:5:{s:19:\"recommended_version\";s:3:\"7.3\";s:15:\"minimum_version\";s:6:\"5.6.20\";s:12:\"is_supported\";b:1;s:9:\"is_secure\";b:1;s:13:\"is_acceptable\";b:1;}','no'),(127,'_site_transient_timeout_community-events-bf177db4cdd8a3d4c99b4463854de2bd','1587083463','no'),(128,'_site_transient_community-events-bf177db4cdd8a3d4c99b4463854de2bd','a:3:{s:9:\"sandboxed\";b:0;s:8:\"location\";a:1:{s:2:\"ip\";s:10:\"172.19.0.0\";}s:6:\"events\";a:5:{i:0;a:8:{s:4:\"type\";s:6:\"meetup\";s:5:\"title\";s:25:\"WordPress Meetup Fryslân\";s:3:\"url\";s:65:\"https://www.meetup.com/WordPress-Meetup-Fryslan/events/269057668/\";s:6:\"meetup\";s:25:\"WordPress Meetup Fryslân\";s:10:\"meetup_url\";s:48:\"https://www.meetup.com/WordPress-Meetup-Fryslan/\";s:4:\"date\";s:19:\"2020-04-23 19:00:00\";s:8:\"end_date\";s:19:\"2020-04-23 21:00:00\";s:8:\"location\";a:4:{s:8:\"location\";s:23:\"Leeuwarden, Netherlands\";s:7:\"country\";s:2:\"nl\";s:8:\"latitude\";d:53.199237823486001;s:9:\"longitude\";d:5.7741169929504004;}}i:1;a:8:{s:4:\"type\";s:6:\"meetup\";s:5:\"title\";s:45:\"Wordpress Gouda - ONLINE Fly-in Meetup April!\";s:3:\"url\";s:55:\"https://www.meetup.com/wordpressgouda/events/269947732/\";s:6:\"meetup\";s:15:\"WordPress Gouda\";s:10:\"meetup_url\";s:38:\"https://www.meetup.com/wordpressgouda/\";s:4:\"date\";s:19:\"2020-04-25 14:00:00\";s:8:\"end_date\";s:19:\"2020-04-25 16:00:00\";s:8:\"location\";a:4:{s:8:\"location\";s:6:\"online\";s:7:\"country\";s:0:\"\";s:8:\"latitude\";d:52.020000457763999;s:9:\"longitude\";d:4.6999998092651003;}}i:2;a:8:{s:4:\"type\";s:6:\"meetup\";s:5:\"title\";s:37:\"WordPress Meetup Nijmegen 13 mei 2020\";s:3:\"url\";s:66:\"https://www.meetup.com/WordPress-Meetup-Nijmegen/events/267754330/\";s:6:\"meetup\";s:25:\"WordPress Meetup Nijmegen\";s:10:\"meetup_url\";s:49:\"https://www.meetup.com/WordPress-Meetup-Nijmegen/\";s:4:\"date\";s:19:\"2020-05-13 19:30:00\";s:8:\"end_date\";s:19:\"2020-05-13 22:30:00\";s:8:\"location\";a:4:{s:8:\"location\";s:21:\"Nijmegen, Netherlands\";s:7:\"country\";s:2:\"nl\";s:8:\"latitude\";d:51.847888946532997;s:9:\"longitude\";d:5.8683800697326998;}}i:3;a:8:{s:4:\"type\";s:6:\"meetup\";s:5:\"title\";s:23:\"WordPress Meetup Zwolle\";s:3:\"url\";s:68:\"https://www.meetup.com/Zwolle-WordPress-Meetup/events/nsmmmrybchbsb/\";s:6:\"meetup\";s:23:\"WordPress Meetup Zwolle\";s:10:\"meetup_url\";s:47:\"https://www.meetup.com/Zwolle-WordPress-Meetup/\";s:4:\"date\";s:19:\"2020-05-14 18:45:00\";s:8:\"end_date\";s:19:\"2020-05-14 20:55:00\";s:8:\"location\";a:4:{s:8:\"location\";s:19:\"Zwolle, Netherlands\";s:7:\"country\";s:2:\"nl\";s:8:\"latitude\";d:52.508583068847997;s:9:\"longitude\";d:6.0933017730712997;}}i:4;a:8:{s:4:\"type\";s:8:\"wordcamp\";s:5:\"title\";s:23:\"WordCamp Retreat Soltau\";s:3:\"url\";s:40:\"https://2020-soltau.retreat.wordcamp.org\";s:6:\"meetup\";N;s:10:\"meetup_url\";N;s:4:\"date\";s:19:\"2020-04-30 00:00:00\";s:8:\"end_date\";s:19:\"2020-05-03 00:00:00\";s:8:\"location\";a:4:{s:8:\"location\";s:6:\"Soltau\";s:7:\"country\";s:2:\"DE\";s:8:\"latitude\";d:53.001624700000001;s:9:\"longitude\";d:9.8596895999999994;}}}}','no'),(129,'can_compress_scripts','1','no'),(140,'_transient_timeout_plugin_slugs','1587127370','no'),(141,'_transient_plugin_slugs','a:26:{i:0;s:57:\"acf-content-analysis-for-yoast-seo/yoast-acf-analysis.php\";i:1;s:41:\"acf-to-rest-api/class-acf-to-rest-api.php\";i:2;s:34:\"advanced-custom-fields-pro/acf.php\";i:3;s:61:\"advanced-custom-fields-wpcli/advanced-custom-fields-wpcli.php\";i:4;s:37:\"breadcrumb-navxt/breadcrumb-navxt.php\";i:5;s:27:\"image-sizes/image-sizes.php\";i:6;s:41:\"post-type-location/post-type-location.php\";i:7;s:33:\"post-type-news/post-type-news.php\";i:8;s:35:\"post-type-story/post-type-story.php\";i:9;s:33:\"disable-embeds/disable-embeds.php\";i:10;s:33:\"disable-emojis/disable-emojis.php\";i:11;s:27:\"My Website-acf/My Website.php\";i:12;s:45:\"ewww-image-optimizer/ewww-image-optimizer.php\";i:13;s:23:\"gutenberg/gutenberg.php\";i:14;s:25:\"Basic-Auth/basic-auth.php\";i:15;s:63:\"limit-login-attempts-reloaded/limit-login-attempts-reloaded.php\";i:16;s:25:\"no_comment/no-comment.php\";i:17;s:21:\"no_posts/no-posts.php\";i:18;s:27:\"redirection/redirection.php\";i:19;s:25:\"relevanssi/relevanssi.php\";i:20;s:43:\"remove-author-pages/remove-author-pages.php\";i:21;s:49:\"sendgrid-email-delivery-simplified/wpsendgrid.php\";i:22;s:53:\"simple-custom-post-order/simple-custom-post-order.php\";i:23;s:29:\"vidda-blocks/vidda-blocks.php\";i:24;s:29:\"wp-api-menus/wp-api-menus.php\";i:25;s:24:\"wordpress-seo/wp-seo.php\";}','no'),(142,'recently_activated','a:0:{}','yes'),(143,'upload_space_check_disabled','1','no'),(145,'blog_upload_space','','yes'),(146,'header_size_w','1920','yes'),(147,'header_size_h','1280','yes'),(148,'header_crop','1','yes'),(149,'media_size_w','1600','yes'),(150,'media_size_h','0','yes'),(151,'media_crop','0','yes'),(152,'teaser_size_w','500','yes'),(153,'teaser_size_h','400','yes'),(154,'teaser_crop','1','yes'),(155,'grid_size_w','440','yes'),(156,'grid_size_h','250','yes'),(157,'grid_crop','1','yes'),(158,'quote_size_w','560','yes'),(159,'quote_size_h','660','yes'),(160,'quote_crop','1','yes'),(161,'attention_size_w','1920','yes'),(162,'attention_size_h','800','yes'),(163,'attention_crop','1','yes'),(164,'stack_size_w','560','yes'),(165,'stack_size_h','600','yes'),(166,'stack_crop','1','yes'),(167,'square_size_w','800','yes'),(168,'square_size_h','800','yes'),(169,'square_crop','1','yes'),(170,'featured_size_w','930','yes'),(171,'featured_size_h','710','yes'),(172,'featured_crop','0','yes'),(173,'step_image_size_w','1200','yes'),(174,'step_image_size_h','2200','yes'),(175,'step_image_crop','1','yes'),(176,'ewww_image_optimizer_relative_migration_status','started','yes'),(177,'redirection_options','a:20:{s:7:\"support\";b:0;s:5:\"token\";s:32:\"4b4263c50a3099f5f814b5806bca5fb1\";s:12:\"monitor_post\";i:0;s:13:\"monitor_types\";a:0:{}s:19:\"associated_redirect\";s:0:\"\";s:11:\"auto_target\";s:0:\"\";s:15:\"expire_redirect\";i:7;s:10:\"expire_404\";i:7;s:7:\"modules\";a:0:{}s:10:\"newsletter\";b:0;s:14:\"redirect_cache\";i:1;s:10:\"ip_logging\";i:1;s:13:\"last_group_id\";i:0;s:8:\"rest_api\";b:0;s:5:\"https\";b:0;s:8:\"database\";s:0:\"\";s:10:\"flag_query\";s:5:\"exact\";s:9:\"flag_case\";b:0;s:13:\"flag_trailing\";b:0;s:10:\"flag_regex\";b:0;}','yes'),(178,'relevanssi_admin_search','off','yes'),(179,'relevanssi_bg_col','#ffaf75','yes'),(180,'relevanssi_cat','0','yes'),(181,'relevanssi_class','relevanssi-query-term','yes'),(182,'relevanssi_comment_boost','0.75','yes'),(183,'relevanssi_content_boost','1','yes'),(184,'relevanssi_css','text-decoration: underline; text-color: #ff0000','yes'),(185,'relevanssi_db_version','5','yes'),(186,'relevanssi_default_orderby','relevance','yes'),(187,'relevanssi_disable_or_fallback','off','yes'),(188,'relevanssi_exact_match_bonus','on','yes'),(189,'relevanssi_excat','0','yes'),(190,'relevanssi_excerpt_allowable_tags','','yes'),(191,'relevanssi_excerpt_custom_fields','off','yes'),(192,'relevanssi_excerpt_length','30','yes'),(193,'relevanssi_excerpt_type','words','yes'),(194,'relevanssi_excerpts','on','yes'),(195,'relevanssi_exclude_posts','','yes'),(196,'relevanssi_expand_shortcodes','on','yes'),(197,'relevanssi_extag','0','yes'),(198,'relevanssi_fuzzy','sometimes','yes'),(199,'relevanssi_highlight','strong','yes'),(200,'relevanssi_highlight_comments','off','yes'),(201,'relevanssi_highlight_docs','off','yes'),(202,'relevanssi_hilite_title','','yes'),(203,'relevanssi_implicit_operator','OR','yes'),(204,'relevanssi_index_author','','yes'),(205,'relevanssi_index_comments','none','yes'),(206,'relevanssi_index_excerpt','off','yes'),(207,'relevanssi_index_fields','','yes'),(208,'relevanssi_index_image_files','on','yes'),(209,'relevanssi_index_post_types','a:2:{i:0;s:4:\"post\";i:1;s:4:\"page\";}','yes'),(210,'relevanssi_index_taxonomies_list','a:0:{}','yes'),(211,'relevanssi_indexed','','yes'),(212,'relevanssi_log_queries','off','yes'),(213,'relevanssi_log_queries_with_ip','off','yes'),(214,'relevanssi_min_word_length','3','yes'),(215,'relevanssi_omit_from_logs','','yes'),(216,'relevanssi_polylang_all_languages','off','yes'),(217,'relevanssi_punctuation','a:3:{s:6:\"quotes\";s:7:\"replace\";s:7:\"hyphens\";s:7:\"replace\";s:10:\"ampersands\";s:7:\"replace\";}','yes'),(218,'relevanssi_respect_exclude','on','yes'),(219,'relevanssi_show_matches','','yes'),(220,'relevanssi_show_matches_text','(Search hits: %body% in body, %title% in title, %categories% in categories, %tags% in tags, %taxonomies% in other taxonomies, %comments% in comments. Score: %score%)','yes'),(221,'relevanssi_stopwords','a:1:{s:5:\"en_US\";s:1908:\"a,about,above,across,after,afterwards,again,against,all,almost,alone,along,already,also,although,always,am,among,amongst,amoungst,amount,an,and,another,any,anyhow,anyone,anything,anyway,anywhere,are,around,as,at,back,be,became,because,become,becomes,becoming,been,before,beforehand,behind,being,below,beside,besides,between,beyond,bill,both,bottom,but,by,call,can,cannot,cant,co,con,could,couldnt,cry,de,describe,detail,do,done,down,due,during,each,eg,eight,either,eleven,else,elsewhere,empty,enough,etc,even,ever,every,everyone,everything,everywhere,except,few,fifteen,fifty,fill,find,fire,first,five,for,former,formerly,forty,found,four,from,front,full,further,get,give,go,had,has,hasnt,have,he,hence,her,here,hereafter,hereby,herein,hereupon,hers,herself,him,himself,his,how,however,hundred,ie,if,in,inc,indeed,interest,into,is,it,its,itself,keep,last,latter,latterly,least,less,ltd,made,many,may,me,meanwhile,might,mill,mine,more,moreover,most,mostly,move,much,must,my,myself,name,namely,neither,never,nevertheless,next,nine,no,nobody,none,noone,nor,not,nothing,now,nowhere,of,off,often,on,once,one,only,onto,or,other,others,otherwise,our,ours,ourselves,out,over,own,part,per,perhaps,please,put,rather,re,same,see,seem,seemed,seeming,seems,serious,several,she,should,show,side,since,sincere,six,sixty,so,some,somehow,someone,something,sometime,sometimes,somewhere,still,such,system,take,ten,than,that,the,their,them,themselves,then,thence,there,thereafter,thereby,therefore,therein,thereupon,these,they,thickv,thin,third,this,those,though,three,through,throughout,thru,thus,to,together,too,top,toward,towards,twelve,twenty,two,un,under,until,up,upon,us,very,via,was,we,well,were,what,whatever,when,whence,whenever,where,whereafter,whereas,whereby,wherein,whereupon,wherever,whether,which,while,whither,who,whoever,whole,whom,whose,why,will,with,within,without,would,yet,you,your,yours,yourself,yourselves\";}','yes'),(222,'relevanssi_synonyms','a:1:{s:5:\"en_US\";s:0:\"\";}','yes'),(223,'relevanssi_throttle','on','yes'),(224,'relevanssi_throttle_limit','500','yes'),(225,'relevanssi_title_boost','5','yes'),(226,'relevanssi_txt_col','#ff0000','yes'),(227,'relevanssi_word_boundaries','on','yes'),(228,'relevanssi_wpml_only_current','on','yes'),(229,'scporder_install','1','yes'),(230,'wpseo','a:20:{s:15:\"ms_defaults_set\";b:1;s:7:\"version\";s:6:\"10.1.2\";s:20:\"disableadvanced_meta\";b:1;s:19:\"onpage_indexability\";b:1;s:11:\"baiduverify\";s:0:\"\";s:12:\"googleverify\";s:0:\"\";s:8:\"msverify\";s:0:\"\";s:12:\"yandexverify\";s:0:\"\";s:9:\"site_type\";s:0:\"\";s:20:\"has_multiple_authors\";s:0:\"\";s:16:\"environment_type\";s:0:\"\";s:23:\"content_analysis_active\";b:1;s:23:\"keyword_analysis_active\";b:1;s:21:\"enable_admin_bar_menu\";b:1;s:26:\"enable_cornerstone_content\";b:1;s:18:\"enable_xml_sitemap\";b:1;s:24:\"enable_text_link_counter\";b:1;s:22:\"show_onboarding_notice\";b:1;s:18:\"first_activated_on\";i:1587040966;s:13:\"myyoast-oauth\";b:0;}','yes'),(231,'wpseo_titles','a:67:{s:10:\"title_test\";i:0;s:17:\"forcerewritetitle\";b:0;s:9:\"separator\";s:7:\"sc-dash\";s:16:\"title-home-wpseo\";s:42:\"%%sitename%% %%page%% %%sep%% %%sitedesc%%\";s:18:\"title-author-wpseo\";s:41:\"%%name%%, Author at %%sitename%% %%page%%\";s:19:\"title-archive-wpseo\";s:38:\"%%date%% %%page%% %%sep%% %%sitename%%\";s:18:\"title-search-wpseo\";s:63:\"You searched for %%searchphrase%% %%page%% %%sep%% %%sitename%%\";s:15:\"title-404-wpseo\";s:35:\"Page not found %%sep%% %%sitename%%\";s:19:\"metadesc-home-wpseo\";s:0:\"\";s:21:\"metadesc-author-wpseo\";s:0:\"\";s:22:\"metadesc-archive-wpseo\";s:0:\"\";s:9:\"rssbefore\";s:0:\"\";s:8:\"rssafter\";s:53:\"The post %%POSTLINK%% appeared first on %%BLOGLINK%%.\";s:20:\"noindex-author-wpseo\";b:0;s:28:\"noindex-author-noposts-wpseo\";b:1;s:21:\"noindex-archive-wpseo\";b:1;s:14:\"disable-author\";b:0;s:12:\"disable-date\";b:0;s:19:\"disable-post_format\";b:0;s:18:\"disable-attachment\";b:1;s:23:\"is-media-purge-relevant\";b:0;s:20:\"breadcrumbs-404crumb\";s:25:\"Error 404: Page not found\";s:29:\"breadcrumbs-display-blog-page\";b:1;s:20:\"breadcrumbs-boldlast\";b:0;s:25:\"breadcrumbs-archiveprefix\";s:12:\"Archives for\";s:18:\"breadcrumbs-enable\";b:0;s:16:\"breadcrumbs-home\";s:4:\"Home\";s:18:\"breadcrumbs-prefix\";s:0:\"\";s:24:\"breadcrumbs-searchprefix\";s:16:\"You searched for\";s:15:\"breadcrumbs-sep\";s:7:\"&raquo;\";s:12:\"website_name\";s:0:\"\";s:11:\"person_name\";s:0:\"\";s:22:\"alternate_website_name\";s:0:\"\";s:12:\"company_logo\";s:0:\"\";s:12:\"company_name\";s:0:\"\";s:17:\"company_or_person\";s:0:\"\";s:17:\"stripcategorybase\";b:0;s:10:\"title-post\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:13:\"metadesc-post\";s:0:\"\";s:12:\"noindex-post\";b:0;s:13:\"showdate-post\";b:0;s:23:\"display-metabox-pt-post\";b:1;s:23:\"post_types-post-maintax\";i:0;s:10:\"title-page\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:13:\"metadesc-page\";s:0:\"\";s:12:\"noindex-page\";b:0;s:13:\"showdate-page\";b:0;s:23:\"display-metabox-pt-page\";b:1;s:23:\"post_types-page-maintax\";i:0;s:16:\"title-attachment\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:19:\"metadesc-attachment\";s:0:\"\";s:18:\"noindex-attachment\";b:0;s:19:\"showdate-attachment\";b:0;s:29:\"display-metabox-pt-attachment\";b:1;s:29:\"post_types-attachment-maintax\";i:0;s:18:\"title-tax-category\";s:53:\"%%term_title%% Archives %%page%% %%sep%% %%sitename%%\";s:21:\"metadesc-tax-category\";s:0:\"\";s:28:\"display-metabox-tax-category\";b:1;s:20:\"noindex-tax-category\";b:0;s:18:\"title-tax-post_tag\";s:53:\"%%term_title%% Archives %%page%% %%sep%% %%sitename%%\";s:21:\"metadesc-tax-post_tag\";s:0:\"\";s:28:\"display-metabox-tax-post_tag\";b:1;s:20:\"noindex-tax-post_tag\";b:0;s:21:\"title-tax-post_format\";s:53:\"%%term_title%% Archives %%page%% %%sep%% %%sitename%%\";s:24:\"metadesc-tax-post_format\";s:0:\"\";s:31:\"display-metabox-tax-post_format\";b:1;s:23:\"noindex-tax-post_format\";b:1;}','yes'),(232,'wpseo_social','a:20:{s:13:\"facebook_site\";s:0:\"\";s:13:\"instagram_url\";s:0:\"\";s:12:\"linkedin_url\";s:0:\"\";s:11:\"myspace_url\";s:0:\"\";s:16:\"og_default_image\";s:0:\"\";s:19:\"og_default_image_id\";s:0:\"\";s:18:\"og_frontpage_title\";s:0:\"\";s:17:\"og_frontpage_desc\";s:0:\"\";s:18:\"og_frontpage_image\";s:0:\"\";s:21:\"og_frontpage_image_id\";s:0:\"\";s:9:\"opengraph\";b:1;s:13:\"pinterest_url\";s:0:\"\";s:15:\"pinterestverify\";s:0:\"\";s:14:\"plus-publisher\";s:0:\"\";s:7:\"twitter\";b:1;s:12:\"twitter_site\";s:0:\"\";s:17:\"twitter_card_type\";s:19:\"summary_large_image\";s:11:\"youtube_url\";s:0:\"\";s:13:\"wikipedia_url\";s:0:\"\";s:10:\"fbadminapp\";s:0:\"\";}','yes'),(233,'wpseo_flush_rewrite','1','yes'),(238,'widget_bcn_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(239,'acf_version','5.8.8','yes'),(240,'ewww_image_optimizer_flag_attachments','','no'),(241,'ewww_image_optimizer_ngg_attachments','','no'),(242,'ewww_image_optimizer_noauto','','yes'),(243,'ewww_image_optimizer_disable_editor','','yes'),(244,'ewww_image_optimizer_debug','','yes'),(245,'ewww_image_optimizer_metadata_remove','1','yes'),(246,'ewww_image_optimizer_jpg_level','10','yes'),(247,'ewww_image_optimizer_png_level','10','yes'),(248,'ewww_image_optimizer_gif_level','10','yes'),(249,'ewww_image_optimizer_pdf_level','0','yes'),(250,'ewww_image_optimizer_exactdn','','yes'),(251,'ewww_image_optimizer_exactdn_plan_id','0','yes'),(252,'exactdn_all_the_things','1','yes'),(253,'exactdn_lossy','1','yes'),(254,'exactdn_exclude','','yes'),(255,'ewww_image_optimizer_lazy_load','','yes'),(256,'ewww_image_optimizer_ll_exclude','','yes'),(257,'ewww_image_optimizer_disable_pngout','1','yes'),(258,'ewww_image_optimizer_optipng_level','2','yes'),(259,'ewww_image_optimizer_pngout_level','2','yes'),(260,'ewww_image_optimizer_webp_for_cdn','','yes'),(261,'exactdn_never_been_active','1','no'),(262,'ewww_image_optimizer_bulk_resume','','yes'),(263,'ewww_image_optimizer_aux_resume','','yes'),(264,'ewww_image_optimizer_review_time','1587645770','no'),(265,'ewww_image_optimizer_version','522.0','yes'),(266,'ewww_image_optimizer_tracking_notice','1','yes'),(269,'rewrite_rules','a:134:{s:19:\"sitemap_index\\.xml$\";s:19:\"index.php?sitemap=1\";s:31:\"([^/]+?)-sitemap([0-9]+)?\\.xml$\";s:51:\"index.php?sitemap=$matches[1]&sitemap_n=$matches[2]\";s:24:\"([a-z]+)?-?sitemap\\.xsl$\";s:25:\"index.php?xsl=$matches[1]\";s:11:\"^wp-json/?$\";s:22:\"index.php?rest_route=/\";s:14:\"^wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s:21:\"^index.php/wp-json/?$\";s:22:\"index.php?rest_route=/\";s:24:\"^index.php/wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s:47:\"category/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:42:\"category/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:35:\"category/(.+?)/page/?([0-9]{1,})/?$\";s:53:\"index.php?category_name=$matches[1]&paged=$matches[2]\";s:17:\"category/(.+?)/?$\";s:35:\"index.php?category_name=$matches[1]\";s:44:\"tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:39:\"tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:32:\"tag/([^/]+)/page/?([0-9]{1,})/?$\";s:43:\"index.php?tag=$matches[1]&paged=$matches[2]\";s:14:\"tag/([^/]+)/?$\";s:25:\"index.php?tag=$matches[1]\";s:45:\"type/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:40:\"type/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:33:\"type/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?post_format=$matches[1]&paged=$matches[2]\";s:15:\"type/([^/]+)/?$\";s:33:\"index.php?post_format=$matches[1]\";s:35:\"wp_area/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:45:\"wp_area/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:65:\"wp_area/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:60:\"wp_area/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:60:\"wp_area/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:28:\"wp_area/([^/]+)/trackback/?$\";s:34:\"index.php?wp_area=$matches[1]&tb=1\";s:36:\"wp_area/([^/]+)/page/?([0-9]{1,})/?$\";s:47:\"index.php?wp_area=$matches[1]&paged=$matches[2]\";s:43:\"wp_area/([^/]+)/comment-page-([0-9]{1,})/?$\";s:47:\"index.php?wp_area=$matches[1]&cpage=$matches[2]\";s:32:\"wp_area/([^/]+)(?:/([0-9]+))?/?$\";s:46:\"index.php?wp_area=$matches[1]&page=$matches[2]\";s:24:\"wp_area/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:34:\"wp_area/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:54:\"wp_area/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:49:\"wp_area/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:49:\"wp_area/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:37:\"locations/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:47:\"locations/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:67:\"locations/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:62:\"locations/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:62:\"locations/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:30:\"locations/([^/]+)/trackback/?$\";s:35:\"index.php?location=$matches[1]&tb=1\";s:38:\"locations/([^/]+)/page/?([0-9]{1,})/?$\";s:48:\"index.php?location=$matches[1]&paged=$matches[2]\";s:45:\"locations/([^/]+)/comment-page-([0-9]{1,})/?$\";s:48:\"index.php?location=$matches[1]&cpage=$matches[2]\";s:34:\"locations/([^/]+)(?:/([0-9]+))?/?$\";s:47:\"index.php?location=$matches[1]&page=$matches[2]\";s:26:\"locations/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:36:\"locations/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:56:\"locations/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:51:\"locations/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:51:\"locations/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:32:\"news/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:42:\"news/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:62:\"news/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:57:\"news/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:57:\"news/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:25:\"news/([^/]+)/trackback/?$\";s:31:\"index.php?news=$matches[1]&tb=1\";s:33:\"news/([^/]+)/page/?([0-9]{1,})/?$\";s:44:\"index.php?news=$matches[1]&paged=$matches[2]\";s:40:\"news/([^/]+)/comment-page-([0-9]{1,})/?$\";s:44:\"index.php?news=$matches[1]&cpage=$matches[2]\";s:29:\"news/([^/]+)(?:/([0-9]+))?/?$\";s:43:\"index.php?news=$matches[1]&page=$matches[2]\";s:21:\"news/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:31:\"news/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:51:\"news/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:46:\"news/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:46:\"news/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:35:\"stories/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:45:\"stories/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:65:\"stories/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:60:\"stories/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:60:\"stories/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:28:\"stories/([^/]+)/trackback/?$\";s:32:\"index.php?story=$matches[1]&tb=1\";s:36:\"stories/([^/]+)/page/?([0-9]{1,})/?$\";s:45:\"index.php?story=$matches[1]&paged=$matches[2]\";s:43:\"stories/([^/]+)/comment-page-([0-9]{1,})/?$\";s:45:\"index.php?story=$matches[1]&cpage=$matches[2]\";s:32:\"stories/([^/]+)(?:/([0-9]+))?/?$\";s:44:\"index.php?story=$matches[1]&page=$matches[2]\";s:24:\"stories/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:34:\"stories/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:54:\"stories/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:49:\"stories/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:49:\"stories/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:12:\"robots\\.txt$\";s:18:\"index.php?robots=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:16:\".*wp-signup.php$\";s:21:\"index.php?signup=true\";s:18:\".*wp-activate.php$\";s:23:\"index.php?activate=true\";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:20:\"page/?([0-9]{1,})/?$\";s:28:\"index.php?&paged=$matches[1]\";s:27:\"comment-page-([0-9]{1,})/?$\";s:38:\"index.php?&page_id=8&cpage=$matches[1]\";s:41:\"comments/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:36:\"comments/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s: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: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: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: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: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: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: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: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]\";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:20:\"([^/]+)/trackback/?$\";s:31:\"index.php?name=$matches[1]&tb=1\";s:40:\"([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?name=$matches[1]&feed=$matches[2]\";s:35:\"([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?name=$matches[1]&feed=$matches[2]\";s:28:\"([^/]+)/page/?([0-9]{1,})/?$\";s:44:\"index.php?name=$matches[1]&paged=$matches[2]\";s:35:\"([^/]+)/comment-page-([0-9]{1,})/?$\";s:44:\"index.php?name=$matches[1]&cpage=$matches[2]\";s:24:\"([^/]+)(?:/([0-9]+))?/?$\";s:43:\"index.php?name=$matches[1]&page=$matches[2]\";s:16:\"[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:26:\"[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:46:\"[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:41:\"[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:41:\"[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";}','yes'),(270,'relevanssi_doc_count','1','yes'),(271,'WPLANG','','yes'),(272,'new_admin_email','info@example.com','yes'),(277,'acf_to_rest_api_request_version','3','yes'),(280,'theme_mods_twentynineteen','a:2:{s:18:\"nav_menu_locations\";a:3:{s:4:\"main\";i:2;s:6:\"footer\";i:3;s:9:\"copyright\";i:4;}s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1587041381;s:4:\"data\";a:2:{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\";}}}}','yes'),(281,'nav_menu_options','a:2:{i:0;b:0;s:8:\"auto_add\";a:0:{}}','yes'),(285,'current_theme','My Website','yes'),(286,'theme_mods_My Website','a:2:{i:0;b:0;s:18:\"nav_menu_locations\";a:3:{s:4:\"main\";i:2;s:6:\"footer\";i:3;s:9:\"copyright\";i:4;}}','yes'),(287,'theme_switched','','yes'),(288,'_transient_timeout_wpseo_link_table_inaccessible','1650369505','no'),(289,'_transient_wpseo_link_table_inaccessible','0','no'),(290,'_transient_timeout_wpseo_meta_table_inaccessible','1650369505','no'),(291,'_transient_wpseo_meta_table_inaccessible','0','no'),(292,'_transient_timeout_acf_plugin_updates','1619006367','no'),(293,'_transient_acf_plugin_updates','a:4:{s:7:\"plugins\";a:1:{s:34:\"advanced-custom-fields-pro/acf.php\";a:8:{s:4:\"slug\";s:26:\"advanced-custom-fields-pro\";s:6:\"plugin\";s:34:\"advanced-custom-fields-pro/acf.php\";s:11:\"new_version\";s:5:\"5.9.5\";s:3:\"url\";s:36:\"https://www.advancedcustomfields.com\";s:6:\"tested\";s:3:\"5.7\";s:7:\"package\";s:0:\"\";s:5:\"icons\";a:1:{s:7:\"default\";s:63:\"https://ps.w.org/advanced-custom-fields/assets/icon-256x256.png\";}s:7:\"banners\";a:2:{s:3:\"low\";s:77:\"https://ps.w.org/advanced-custom-fields/assets/banner-772x250.jpg?rev=1729102\";s:4:\"high\";s:78:\"https://ps.w.org/advanced-custom-fields/assets/banner-1544x500.jpg?rev=1729099\";}}}s:10:\"expiration\";i:172800;s:6:\"status\";i:1;s:7:\"checked\";a:1:{s:34:\"advanced-custom-fields-pro/acf.php\";s:5:\"5.8.8\";}}','no'),(294,'_transient_timeout_ewww_image_optimizer_images_reoptimized','1618837169','no'),(295,'_transient_ewww_image_optimizer_images_reoptimized','zero','no'),(296,'_transient_timeout_wpseo-statistics-totals','1618919975','no'),(297,'_transient_wpseo-statistics-totals','a:1:{i:1;a:2:{s:6:\"scores\";a:1:{i:0;a:4:{s:8:\"seo_rank\";s:2:\"na\";s:5:\"label\";s:48:\"Posts <strong>without</strong> a focus keyphrase\";s:5:\"count\";s:1:\"1\";s:4:\"link\";s:98:\"http://localhost:5100/wp-admin/edit.php?post_status=publish&#038;post_type=post&#038;seo_filter=na\";}}s:8:\"division\";a:5:{s:3:\"bad\";i:0;s:2:\"ok\";i:0;s:4:\"good\";i:0;s:2:\"na\";i:1;s:7:\"noindex\";i:0;}}}','no'),(298,'_transient_timeout_feed_9bbd59226dc36b9b26cd43f15694c5c3','1618876777','no'),(299,'_transient_feed_9bbd59226dc36b9b26cd43f15694c5c3','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:27:\"News – – 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:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:26:\"https://wordpress.org/news\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"WordPress News\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:13:\"lastBuildDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 15 Apr 2021 03:05:07 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"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.8-alpha-50769\";s:7:\"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:60:\"\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:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"WordPress 5.7.1 Security and Maintenance Release\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:84:\"https://wordpress.org/news/2021/04/wordpress-5-7-1-security-and-maintenance-release/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 15 Apr 2021 03:05:01 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Security\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=10144\";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:\"WordPress 5.7.1 is now available! This security and maintenance release features 26 bug fixes in addition to two security fixes. Because this is a security release, it is recommended that you update your sites immediately. All versions since WordPress 4.7 have also been updated. WordPress 5.7.1 is a short-cycle security and maintenance release. The next [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}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:\"Peter Wilson\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:8461:\"\n<p>WordPress 5.7.1 is now available!</p>\n\n\n\n<p>This security and maintenance release features <a href=\"https://core.trac.wordpress.org/query?milestone=5.7.1&amp;group=component&amp;col=id&amp;col=summary&amp;col=milestone&amp;col=owner&amp;col=type&amp;col=status&amp;col=priority&amp;order=priority\">26 bug fixes</a> in addition to two security fixes. Because this is a <strong>security release</strong>, it is recommended that you update your sites immediately. All versions since WordPress 4.7 have also been updated.</p>\n\n\n\n<p>WordPress 5.7.1 is a short-cycle security and maintenance release. The next major release will be version 5.8.</p>\n\n\n\n<p>You can download WordPress 5.7.1 by downloading from WordPress.org, or visit your Dashboard → Updates and click Update Now.</p>\n\n\n\n<p>If you have sites that support automatic background updates, they’ve already started the update process.</p>\n\n\n\n<h3>Security Updates</h3>\n\n\n\n<p>Two security issues affect WordPress versions between 4.7 and 5.7. If you haven’t yet updated to 5.7, all WordPress versions since 4.7 have also been updated to fix the following security issues:</p>\n\n\n\n<ul><li>Thank you <a href=\"https://www.sonarsource.com/\">SonarSource</a> for reporting an XXE vulnerability within the media library affecting PHP 8.</li><li>Thanks <a href=\"https://mikaelkorpela.fi/\">Mikael Korpela</a> for reporting a data exposure vulnerability within the REST API.</li></ul>\n\n\n\n<p>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>. This gave the security team time to fix the vulnerabilities before WordPress sites could be attacked.</p>\n\n\n\n<p>Props to <a href=\"https://profiles.wordpress.org/zieladam/\">Adam Zielinski</a>, <a href=\"https://profiles.wordpress.org/swissspidy/\">Pascal Birchler</a>, <a href=\"https://profiles.wordpress.org/peterwilsoncc/\">Peter Wilson</a>, <a href=\"https://profiles.wordpress.org/jrf/\">Juliette Reinders Folmer</a>, <a href=\"https://profiles.wordpress.org/xknown/\">Alex Concha</a>, <a href=\"https://profiles.wordpress.org/ehtis/\">Ehtisham Siddiqui</a>, <a href=\"https://profiles.wordpress.org/timothyblynjacobs/\">Timothy Jacobs</a> and the WordPress security team for their work on these issues.</p>\n\n\n\n<p>For more information, browse the <a href=\"https://core.trac.wordpress.org/query?milestone=5.7.1&amp;group=component&amp;col=id&amp;col=summary&amp;col=milestone&amp;col=owner&amp;col=type&amp;col=status&amp;col=priority&amp;order=priority\">full list of changes</a> on Trac, or check out the <a href=\"https://wordpress.org/support/wordpress-version/version-5-7-1/\">version 5.7.1 HelpHub documentation page</a>.</p>\n\n\n\n<h2>Thanks and props!</h2>\n\n\n\n<p>The 5.7.1 release was led by <a href=\"https://profiles.wordpress.org/peterwilsoncc/\">@peterwilsoncc</a> and <a href=\"https://profiles.wordpress.org/audrasjb/\">@audrasjb</a>.</p>\n\n\n\n<p>In addition to the security researchers and release squad members mentioned above, thank you to everyone who helped make WordPress 5.7.1 happen:</p>\n\n\n\n<p><a href=\"https://profiles.wordpress.org/ninetyninew/\">99w</a>, <a href=\"https://profiles.wordpress.org/adamsilverstein/\">Adam Silverstein</a>, <a href=\"https://profiles.wordpress.org/azaozz/\">Andrew Ozz</a>, <a href=\"https://profiles.wordpress.org/annalamprou/\">annalamprou</a>, <a href=\"https://profiles.wordpress.org/anotherdave/\">anotherdave</a>, <a href=\"https://profiles.wordpress.org/aristath/\">Ari Stathopoulos</a>, <a href=\"https://profiles.wordpress.org/ayeshrajans/\">Ayesh Karunaratne</a>, <a href=\"https://profiles.wordpress.org/bobbingwide/\">bobbingwide</a>, <a href=\"https://profiles.wordpress.org/brechtvds/\">Brecht</a>, <a href=\"https://profiles.wordpress.org/talldanwp/\">Daniel Richards</a>, <a href=\"https://profiles.wordpress.org/davidbaumwald/\">David Baumwald</a>, <a href=\"https://profiles.wordpress.org/dkoo/\">dkoo</a>, <a href=\"https://profiles.wordpress.org/ocean90/\">Dominik Schilling</a>, <a href=\"https://profiles.wordpress.org/dragongate/\">dragongate</a>, <a href=\"https://profiles.wordpress.org/eatsleepcode/\">eatsleepcode</a>, <a href=\"https://profiles.wordpress.org/ellatrix/\">Ella van Durpe</a>, <a href=\"https://profiles.wordpress.org/kebbet/\">Erik</a>, <a href=\"https://profiles.wordpress.org/fabianpimminger/\">Fabian Pimminger</a>, <a href=\"https://profiles.wordpress.org/flixos90/\">Felix Arntz</a>, <a href=\"https://profiles.wordpress.org/mista-flo/\">Florian TIAR</a>, <a href=\"https://profiles.wordpress.org/gab81/\">gab81</a>, <a href=\"https://profiles.wordpress.org/galbaras/\">Gal Baras</a>, <a href=\"https://profiles.wordpress.org/geoffrey1963/\">Geoffrey</a>, <a href=\"https://profiles.wordpress.org/mamaduka/\">George Mamadashvili</a>, <a href=\"https://profiles.wordpress.org/glendaviesnz/\">Glen Davies</a>, <a href=\"https://profiles.wordpress.org/gziolo/\">Greg Ziółkowski</a>, <a href=\"https://profiles.wordpress.org/grzim/\">grzim</a>, <a href=\"https://profiles.wordpress.org/ipstenu/\">Ipstenu (Mika Epstein)</a>, <a href=\"https://profiles.wordpress.org/whyisjake/\">Jake Spurlock</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/joen/\">Joen A.</a>, <a href=\"https://profiles.wordpress.org/jonkastonka/\">Johan Jonk Stenström</a>, <a href=\"https://profiles.wordpress.org/goaroundagain/\">Johannes Kinast</a>, <a href=\"https://profiles.wordpress.org/johnbillion/\">John Blackbourn</a>, <a href=\"https://profiles.wordpress.org/johnjamesjacoby/\">John James Jacoby</a>, <a href=\"https://profiles.wordpress.org/desrosj/\">Jonathan Desrosiers</a>, <a href=\"https://profiles.wordpress.org/joseeyoast/\">Josee Wouters</a>, <a href=\"https://profiles.wordpress.org/joyously/\">Joy</a>, <a href=\"https://profiles.wordpress.org/k3nsai/\">k3nsai</a>, <a href=\"https://profiles.wordpress.org/ryelle/\">Kelly Choyce-Dwan</a>, <a href=\"https://profiles.wordpress.org/gwwar/\">Kerry Liu</a>, <a href=\"https://profiles.wordpress.org/clorith/\">Marius L. J.</a>, <a href=\"https://profiles.wordpress.org/melchoyce/\">Mel Choyce-Dwan</a>, <a href=\"https://profiles.wordpress.org/mihdan/\">Mikhail Kobzarev</a>, <a href=\"https://profiles.wordpress.org/mmuyskens/\">mmuyskens</a>, <a href=\"https://profiles.wordpress.org/mukesh27/\">Mukesh Panchal</a>, <a href=\"https://profiles.wordpress.org/nicegamer7/\">nicegamer7</a>, <a href=\"https://profiles.wordpress.org/otshelnik-fm/\">Otshelnik-Fm</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/swissspidy/\">Pascal Birchler</a>, <a href=\"https://profiles.wordpress.org/peterwilsoncc/\">Peter Wilson</a>, <a href=\"https://profiles.wordpress.org/pwallner/\">pwallner</a>, <a href=\"https://profiles.wordpress.org/rachelbaker/\">Rachel Baker</a>, <a href=\"https://profiles.wordpress.org/youknowriad/\">Riad Benguella</a>, <a href=\"https://profiles.wordpress.org/rinatkhaziev/\">Rinat Khaziev</a>, <a href=\"https://profiles.wordpress.org/noisysocks/\">Robert Anderson</a>, <a href=\"https://profiles.wordpress.org/rogertheriault/\">Roger Theriault</a>, <a href=\"https://profiles.wordpress.org/sergeybiryukov/\">Sergey Biryukov</a>, <a href=\"https://profiles.wordpress.org/yakimun/\">Sergey Yakimov</a>, <a href=\"https://profiles.wordpress.org/sirstuey/\">SirStuey</a>, <a href=\"https://profiles.wordpress.org/stefanjoebstl/\">stefanjoebstl</a>, <a href=\"https://profiles.wordpress.org/sabernhardt/\">Stephen Bernhardt</a>, <a href=\"https://profiles.wordpress.org/sumitsingh/\">Sumit Singh</a>, <a href=\"https://profiles.wordpress.org/cybr/\">Sybre Waaijer</a>, <a href=\"https://profiles.wordpress.org/synchro/\">Synchro</a>, <a href=\"https://profiles.wordpress.org/terriann/\">Terri Ann</a>, <a href=\"https://profiles.wordpress.org/tigertech/\">tigertech</a>, <a href=\"https://profiles.wordpress.org/timothyblynjacobs/\">Timothy Jacobs</a>, <a href=\"https://profiles.wordpress.org/tmatsuur/\">tmatsuur</a>, <a href=\"https://profiles.wordpress.org/tobiasbg/\">TobiasBg</a>, <a href=\"https://profiles.wordpress.org/hellofromtonya/\">Tonya Mork</a>, <a href=\"https://profiles.wordpress.org/toru/\">Toru Miki</a>, <a href=\"https://profiles.wordpress.org/grapplerulrich/\">Ulrich</a>, and <a href=\"https://profiles.wordpress.org/vladytimy/\">Vlad T</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:5:\"10144\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:1;a:6:{s:4:\"data\";s:63:\"\n \n \n \n \n \n \n \n \n \n\n \n \n \n \n \n \";s:7:\"attribs\";a: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:30:\"People of WordPress: Tyler Lau\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:65:\"https://wordpress.org/news/2021/04/people-of-wordpress-tyler-lau/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_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, 13 Apr 2021 13:47:30 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:3:{i:0;a:5:{s:4:\"data\";s:9:\"heropress\";s: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:16:\"ContributorStory\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:17:\"WordPress journey\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=10102\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:117:\"In this People of WordPress contributor story, we chat with Tyler Lau from Kansas, US, on his journey 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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"webcommsat AbhaNonStopNewsUK\";s: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:10363:\"\n<p><em>WordPress is open source software, maintained by a global network of contributors. There are many examples of how WordPress has changed people’s lives for the better. In this monthly series, we share some of the amazing stories that are lesser-known.</em></p>\n\n\n\n<h2><strong>Embrace Who You Are and Your Journey</strong></h2>\n\n\n\n<p>In this People of WordPress contributor story, we chat to Tyler Lau from the US on his relationship building work in marketing and his WordPress journey.</p>\n\n\n\n<p>Read on to discover his story which shows it is often what you have learned from negative experiences in your life that can make you a major asset to a product team.</p>\n\n\n\n<figure class=\"wp-block-image size-large is-resized\"><img loading=\"lazy\" src=\"https://i1.wp.com/wordpress.org/news/files/2021/04/people-of-wp-tyler-thumb.jpg?resize=632%2C464&#038;ssl=1\" alt=\"Tyler Lau stood in front of a colorful mural\" class=\"wp-image-10116\" width=\"632\" height=\"464\" srcset=\"https://i1.wp.com/wordpress.org/news/files/2021/04/people-of-wp-tyler-thumb.jpg?zoom=2&amp;resize=640%2C470&amp;ssl=1 1280w, https://i1.wp.com/wordpress.org/news/files/2021/04/people-of-wp-tyler-thumb.jpg?zoom=3&amp;resize=640%2C470&amp;ssl=1 1920w\" sizes=\"(max-width: 632px) 100vw, 632px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<h2><strong>An Entrepreneurial Mindset</strong></h2>\n\n\n\n<p>Tyler recalls he always had a knack for spotting a enterprise ideas. As an industrious seven-year-old, he was already finding ways to make sales during the school breaks.&nbsp;</p>\n\n\n\n<p>While many entrepreneurs have similar stories, Tyler’s path took many turns before he discovered and thrived in the WordPress community.</p>\n\n\n\n<p>He was drawn to both the software and the community that surrounds it from his search for personal and professional freedom. He ultimately was able to combine his various business interests and people skills into professional marketing work.</p>\n\n\n\n<h2><strong>Using your skills to uncover your journey</strong></h2>\n\n\n\n<figure class=\"wp-block-image size-large is-resized\"><img loading=\"lazy\" src=\"https://i0.wp.com/wordpress.org/news/files/2021/04/people-of-wp-tyler-2.jpg?resize=632%2C758&#038;ssl=1\" alt=\"Tyler Lau pictured sat on a chair using his mobile phone in his social media work\" class=\"wp-image-10118\" width=\"632\" height=\"758\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2021/04/people-of-wp-tyler-2.jpg?zoom=2&amp;resize=640%2C768&amp;ssl=1 1280w, https://i0.wp.com/wordpress.org/news/files/2021/04/people-of-wp-tyler-2.jpg?zoom=3&amp;resize=640%2C768&amp;ssl=1 1920w\" sizes=\"(max-width: 632px) 100vw, 632px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<p>Tyler’s current role is as a Marketing Relationship Builder, based in Kansas, USA. His responsibilities span across all digital properties and products, leveraging his broad set of business and people skills.</p>\n\n\n\n<p>These skills are amplified by his creativity and adaptability. Tyler says that one reason he is always looking for new projects is his Attention Deficit Hyperactivity Disorder (ADHD), a diagnosis he received in 2005.</p>\n\n\n\n<p>In an industry built by programmers and developers who often have a strong sense of focus, Tyler felt that someone with ADHD wouldn’t be seen as a natural fit. He found the WordPress community to be a place where everyone can find the right spot for their unique skills. Tyler’s skill is people, and this has translated into many opportunities and responsibilities in his work life. His skills have also helped him give back to the WordPress community as a speaker and volunteer, and through multiple contributor days.</p>\n\n\n\n<h2><strong>Relationship-building as a career</strong></h2>\n\n\n\n<p>Most of Tyler’s experience was in the restaurant industry, and his resume did not exactly point to a career in tech. But the service industry actually prepared him well for everything he has taken on since.</p>\n\n\n\n<p>When he is at work events, he meets people from across the world and builds connections with them. As an extrovert, he enjoys this and couldn’t imagine a job where he was isolated from getting to know others and relationship-building.</p>\n\n\n\n<p>Understanding people and being able to operate in any setting are key competencies. Social skills and tact are useful for community building in the WordPress space too, and in Tyler’s life at different times it has been necessary for survival. </p>\n\n\n\n<h2><strong>The true meaning of freedom</strong></h2>\n\n\n\n<p>In the WordPress community, the concept of freedom comes up often. WordPress is built on GPL, free software, and open-source values. Practically speaking, anyone can work remotely or be their own boss to gain more freedom in work and life.&nbsp;Tyler feels that he never fitted into a traditional work mould. With his strong focus on freedom, he found this resonated with the freedom and opportunities he believes WordPress provides him and thousands of others.</p>\n\n\n\n<p>Tyler describes how in 2013 his ‘inner opportunist’ got him into trouble. After dropping out of college following a brain aneurysm, he needed capital to fund his first startup.&nbsp;He shares that he found a quick but unlawful way to make money. Alongside this between shifts as a waiter, he worked on prototypes for his first product. The company was growing fast, and to protect his patents and take research and development to the next level, he had to work hard. Everything came to a halt when some of the actions he took resulted in being sent to prison. </p>\n\n\n\n<p>He says that meeting other inmates reminded him that he was in a much better situation than most. He was educated, well-off, loved, and knew he had a future once he was released. He found that many inmates never graduated from high school and were computer illiterate. While inside, Tyler taught subjects like science, math, writing, reading, and social studies. He found that due to the lack of skills and support, many inmates would struggle upon release. He believes getting the mental health support and job training needed to thrive after prison is not easy for many.</p>\n\n\n\n<p>“<em>There’s more to freedom than just being on the outside. You also need a sense of agency and enfranchisement,</em>” says Tyler. He considered his sense of purpose and support network were plenty to keep him going and was ready to take on his next (legal) business challenge as soon as he could.</p>\n\n\n\n<h2>Going forward positively&nbsp;</h2>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" width=\"632\" height=\"632\" src=\"https://i0.wp.com/wordpress.org/news/files/2021/04/FF50DF21-38AA-4778-B465-C2DF0B441AD7.jpeg?resize=632%2C632&#038;ssl=1\" alt=\"Tyler Lau portrait picture\" class=\"wp-image-10139\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2021/04/FF50DF21-38AA-4778-B465-C2DF0B441AD7.jpeg?w=640&amp;ssl=1 640w, https://i0.wp.com/wordpress.org/news/files/2021/04/FF50DF21-38AA-4778-B465-C2DF0B441AD7.jpeg?resize=300%2C300&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2021/04/FF50DF21-38AA-4778-B465-C2DF0B441AD7.jpeg?resize=150%2C150&amp;ssl=1 150w\" sizes=\"(max-width: 632px) 100vw, 632px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<p>The idea that your past doesn’t define you and you can choose to embrace it, is a key driver for Tyler.</p>\n\n\n\n<p>He describes himself as an outlier in many ways. He recalls how politics influenced his life from the day he was born. Tyler’s father is a semi-dissident Chinese visual anthropologist, his mother is an art professor who left her home country of Japan to break free from traditional Japanese gender roles. Tyler feels he inherited a lot of this fearlessness.</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>“<em>I’ve never fitted in, and yet this is what makes me able to adapt to most situations and relate to just about anyone. I embrace my eclectic, dissonant past and see beauty in the person those experiences shaped me to be</em>,” says Tyler.&nbsp;</p></blockquote>\n\n\n\n<p>Now, he’s able to put those skills to good use in the WordPress community and beyond.&nbsp;</p>\n\n\n\n<p>He says: “<em>Regardless of your physical abilities, mental health struggles, upbringing, and even your run-ins with the law, no one is excluded from carving their place in the WordPress industry</em>”.<br></p>\n\n\n\n<h2><strong>Contributors</strong></h2>\n\n\n\n<p>Thank you to Tyler Lau (<a href=\'https://profiles.wordpress.org/tylermaximus/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>tylermaximus</a>) for sharing his #ContributorStory.</p>\n\n\n\n<p>Thanks to Larissa Murillo (<a href=\"https://profiles.wordpress.org/lmurillom/\">@lmurillom</a>), Surendra Thakor (<a href=\'https://profiles.wordpress.org/sthakor/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>sthakor</a>), Olga Gleckler (<a href=\'https://profiles.wordpress.org/oglekler/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>oglekler</a>), Meher Bala (<a href=\"https://profiles.wordpress.org/meher/\">@meher</a>), Yvette Sonneveld (<a href=\'https://profiles.wordpress.org/yvettesonneveld/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>yvettesonneveld</a>), Abha Thakor (<a href=\"https://profiles.wordpress.org/webcommsat/\">@webcommsat</a>), Josepha Haden (<a href=\"https://profiles.wordpress.org/chanthaboune/\">@chanthaboune</a>), Chloé Bringmann (<a href=\"https://profiles.wordpress.org/cbringmann/\">@cbringmann</a>) and Topher DeRosia (<a href=\"https://profiles.wordpress.org/topher1kenobe/\">@topher1kenobe</a>) for working on the People of WordPress series.</p>\n\n\n\n<figure class=\"wp-block-image\"><img src=\"https://lh3.googleusercontent.com/Y3odYTyvSfJbVxUxUWEgKxOprox2zxVwhk7_vdW-AIs4IlE-jK0Zt1itCj867x0dIAbIiK-VeuTLMZr6BjNEY0fkTf--4dT1hkLbnGtsPFNfyrVBYIN59IirTkNnqiQgqxk6E1MI\" alt=\"HeroPress logo\" /></figure>\n\n\n\n<p><em>This post is based on an article originally published on HeroPress.com, a community initiative created by&nbsp;</em><a href=\"https://profiles.wordpress.org/topher1kenobe/\"><em>Topher DeRosia</em></a><em>. It highlights people in the WordPress community who have overcome barriers and whose stories would otherwise go unheard.</em></p>\n\n\n\n<p><em>Meet more WordPress community members in our&nbsp;<a href=\"https://wordpress.org/news/category/heropress/\">People of WordPress</a>&nbsp;series.</em></p>\n\n\n\n<p><em>#ContributorStory #HeroPress</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:5:\"10102\";s: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:61:\"\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:30:\"WP Briefing: Who Is WordPress?\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:52:\"https://wordpress.org/news/2021/04/who-is-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:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 12 Apr 2021 14:36:23 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:9:\"Gutenberg\";s: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:11:\"wp-briefing\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"https://wordpress.org/news/?post_type=podcast&p=10099\";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:246:\"In this episode, Josepha explores the five groups within the WordPress ecosystem and provides a high-level example of how they interact and support one another. As always, stay tuned for the small list of big things and a contributor highlight. \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"enclosure\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:3:\"url\";s:60:\"https://wordpress.org/news/files/2021/04/WP-Briefing-006.mp3\";s:6:\"length\";s:1:\"0\";s:4:\"type\";s:0:\"\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}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:\"Chloe Bringmann\";s: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:9292:\"\n<p>In this episode, Josepha explores the five groups within the WordPress ecosystem and provides a high-level example of how they interact and support one another. As always, stay tuned for the small list of big things and a contributor highlight.&nbsp;&nbsp;</p>\n\n\n\n<p><em><strong>Have a question you&#8217;d like answered? You can submit them to <a href=\"mailto:wpbriefing@wordpress.org\">wpbriefing@wordpress.org</a>, either written or as a voice recording.</strong></em></p>\n\n\n\n<h2><strong>Credits</strong></h2>\n\n\n\n<ul><li>Editor:<a href=\"https://profiles.wordpress.org/dustinhartzler/\"> Dustin Hartzler</a></li><li>Logo:<a href=\"https://profiles.wordpress.org/beafialho/\"> Beatriz Fialho</a></li><li>Production:<a href=\"https://profiles.wordpress.org/mkaz/\"> </a><a href=\"https://profiles.wordpress.org/cbringmann/\">Chloé Bringmann</a></li><li>Song: Fearless First by Kevin MacLeod</li></ul>\n\n\n\n<h2>References</h2>\n\n\n\n<ul><li>Get to know<a href=\"https://make.wordpress.org/\"> WordPress Teams</a></li><li><a href=\"https://wordpress.tv/2017/12/10/josepha-haden-beginners-guide-to-contributions/\">Five Steps of Volunteer Engagement </a></li><li><a href=\"https://twitter.com/CoachBirgit/status/1339516878495117313\">Community Highlight </a></li><li><a href=\"https://centroamerica.wordcamp.org/2021/\">WordCamp Centroamérica 2021 Online</a> (<a href=\"https://centroamerica.wordcamp.org/2021/sesiones/\">Schedule</a>)</li><li><a href=\"https://wordpress.org/news/2021/03/so-you-want-to-make-block-patterns/\">So you want to make block patterns?</a></li><li><a href=\"https://docs.google.com/spreadsheets/d/1h73xMwjSRkJJsn7ooiwXFeZpd0hxXh26pJ7qXzI5iUg/edit#gid=0\">Gutenberg Tutorial sign-up</a></li></ul>\n\n\n\n<h2>Transcript</h2>\n\n\n\n<span id=\"more-10099\"></span>\n\n\n\n<p>Hello, everyone, and welcome to the WordPress briefing, the podcast where you can catch quick explanations of some of the ideas behind the WordPress open source project and the community around it, as well as get a small list of big things coming up in the next two weeks. I&#8217;m your host, Josepha Haden Chomphosy. Here we go!</p>\n\n\n\n<p>In the first episode of this podcast, I said that there&#8217;s a lot that goes into WordPress, that&#8217;s really hard to see. One of the hardest things to see about the WordPress project as you get started is the overall structure. There is quite a bit of documentation that can clarify the basics: the names of teams, what they work on, and where, and when they meet. The way that they influence and support each other can really feel like a bit of a mystery. So today, I&#8217;m going to break down the WordPress community into five big groups; I want you to keep a couple of things in mind.&nbsp;</p>\n\n\n\n<p>Firstly, these are high-level and based on my observations. Each of these groups can be further broken down into subgroups. So while you may not feel represented in this exact five, you are included if you were to dig a little bit deeper. The second thing to keep in mind is that the makeup of these groups is pretty fluid. Many community members find themselves in more than one group, but generally not far off. Some group two folks end up in group three, depending on the situation, people in group four can also end up in group five, and so on. As with so many things that I share, I&#8217;m not trying to insist that one size fits all. I&#8217;m not trying to put the WordPress community into a box. This is just a basic framework to understand how it all fits together. Alright, are you ready? I&#8217;m ready. Let&#8217;s do it!</p>\n\n\n\n<p>Okay, I have a broad definition of the community, which I have mentioned before. I believe that the community is anyone who has interacted with WordPress, whether they know it or not. So, I&#8217;ll start from way out there and work my way in that first group; we’re going to call our <strong>Visitors</strong>.&nbsp;</p>\n\n\n\n<p><strong>Visitors</strong> are people who arrive at a WordPress site to gain information or engage in an activity. Sometimes they know it&#8217;s a WordPress site, but most of the time, they don&#8217;t. The second group are <strong>Users</strong>, people who use WordPress as their CMS. So, that&#8217;s website builders, website designers, small businesses, content creators, and the list goes on and on. The third group I like to refer to is the <strong>Extenders</strong>. Those are people who extend WordPress through the creation of blocks, themes, plugins, and more. There are also people who teach WordPress to others through WordPress podcasts, and newsletters and tutorials. The fourth group I refer to as our <strong>Contributors</strong> is the people who contribute to the open source software and the infrastructure supporting it, but not necessarily the same people who contribute directly to their own product. And then there&#8217;s group five, <strong>Leaders</strong>. Those are people who help drive the vision and strategy for WordPress; the most notable member of that group is of course, Matt Mullenweg. And I&#8217;m also in that group.&nbsp;</p>\n\n\n\n<p>Each of these groups directly influenced the groups on either side. For example, a WordPress user is affected by both visitors and extenders. Imagine a content creator who shares their passion for photography through a WordPress site; this photographer may have visitors that need to purchase photos. In response, the user now has a need to make it possible for visitors to purchase photos on a site. So they go to what we consider the extenders, people who have built a plugin that supports that need. And as a result, that user can install that on their site. And they have have satisfied the need of the visitors to their site, the people who now can purchase photos.&nbsp;</p>\n\n\n\n<p>There are a lot of examples like this in the WordPress project. Every small pattern that you see is mirrored in the larger patterns across our ecosystem. And every large pattern you see in the ecosystem can be seen among our teams. It&#8217;s pretty cool to look at really. So, why should this matter to you? From a very practical standpoint, this matters for anyone who&#8217;s trying to learn more about contributing to the WordPress project. These five groups mirror very closely the five steps of volunteer engagement that we see across the ecosystem and from a more philosophical standpoint, it&#8217;s just kind of nice to know who your neighbors are. Without the influence and support of the groups around us, it can be hard to know whether we&#8217;re on the right track or not. So take a look to your left and look to your right, and get to know your partners in this project.</p>\n\n\n\n<p>That brings us now to our community highlight, the segment where I share a note about contributors who have helped others along the way, or WordPress success story. This week&#8217;s highlight is from @CoachBirgit, <a href=\"https://profiles.wordpress.org/coachbirgit/\">Birgit Olzem</a>, a longtime contributor and a friend of mine. Her success story goes like this.&nbsp;</p>\n\n\n\n<p>WordPress has allowed me as a mother of five to leave a toxic marriage for good.&nbsp;</p>\n\n\n\n<p>Later, the community picked me up when I became seriously ill.&nbsp;</p>\n\n\n\n<p>So I can say from the bottom of my heart, that working with WordPress has saved my life.</p>\n\n\n\n<p>And now our small list of big things. I&#8217;ve got three things for you this week. I think that they&#8217;re all very important. And I hope you check them all out. The first one is a reminder that word camp Central America is coming up on April 15 and 16th. If you have not registered for tickets, you still have time, I will share a link to the registration page and the schedule in the show notes below.&nbsp;</p>\n\n\n\n<p>The second thing on our small list of big things is that the Gutenberg 10.4 release is coming out later this week on April 14th. It&#8217;s an important release because it&#8217;s when we take a look at the current iteration of full site editing tools that we have, and decide if it&#8217;s ready to get into the WordPress 5.8 release. There&#8217;s a post that has a little more information about that which I will share in the show notes below as well. If you haven&#8217;t checked out the Gutenberg plugin lately, obviously I think it&#8217;s a good idea to do that in general, but definitely a good idea to check it out now.&nbsp;</p>\n\n\n\n<p>The third thing on our list today is a reminder to check out our most recent block pattern tutorial, I&#8217;ll share a link to that in the show notes. It&#8217;s this kind of tips and tricks, tutorial, the “show me how to do it,” kind of thing in the style of <a href=\"https://css-tricks.com/css-style-guides/\">CSS-Tricks</a>. If you or anyone that you know might be interested in sharing a similar style of tutorial, there&#8217;s a link to a form in that show notes as well so that you can share with us your name and the topic that you&#8217;re interested in. We&#8217;ll take a look and see if it&#8217;s something that we definitely need to make sure our users know how to do. So, that my friends is your small list of big things.&nbsp;</p>\n\n\n\n<p>Thank you for joining in today for the WordPress briefing. I&#8217;m your host, Josepha Haden Chomphosy. I&#8217;ll see you again in a couple of weeks!</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:5:\"10099\";s: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:57:\"\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:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"The Month in WordPress: March 2021\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"https://wordpress.org/news/2021/04/the-month-in-wordpress-march-2021/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_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, 03 Apr 2021 16:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a: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:35:\"https://wordpress.org/news/?p=10084\";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:319:\"This way of iterating improves WordPress and ties back to one of my favorite open-source principles. The idea that with many eyes, all bugs are shallow. To me, that means that with enough people looking at a problem, someone is bound to be able to see the solution. These words from Josepha Haden Chomphosy on [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}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:\"Hari Shanker R\";s: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:9821:\"\n<blockquote class=\"wp-block-quote\"><p>This way of iterating improves WordPress and ties back to one of my favorite open-source principles. The idea that with many eyes, all bugs are shallow. To me, that means that with enough people looking at a problem, someone is bound to be able to see the solution.</p></blockquote>\n\n\n\n<p class=\"has-drop-cap\">These words from <a href=\"https://profiles.wordpress.org/chanthaboune/\">Josepha Haden Chomphosy</a> on the <a href=\"https://wordpress.org/news/2021/03/how-wordpress-improves/\">How WordPress Improves</a> episode of the <a href=\"https://wordpress.org/news/podcast/\">WP Briefing Podcast</a> point to the factors that differentiate building software in an open-source environment. Our updates this month are closely tied to the philosophy behind those core principles of open source software.&nbsp;</p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h2>WordPress 5.7 released</h2>\n\n\n\n<p>WordPress <a href=\"https://wordpress.org/news/2021/03/esperanza/\">version 5.7</a> “Esperanza,” came out on March 9. The release offers fresher admin colors, several improvements to the block editor, single-click HTTP to HTTPS migration, and a new Robots API. Read more about it in the <a href=\"https://wordpress.org/news/2021/03/esperanza/\">release post</a>, the <a href=\"https://make.wordpress.org/core/2021/02/23/wordpress-5-7-field-guide/\">field guide</a>, and the <a href=\"https://make.wordpress.org/community/2021/03/12/meetup-group-resources-talking-points-for-wordpress-5-7/\">talking points post for meetup groups</a>. The Core Team has also <a href=\"https://make.wordpress.org/core/2021/03/30/5-8-pre-planning/\">started work on WordPress 5.8 pre-planning</a>.</p>\n\n\n\n<p>Want to contribute to WordPress 5.8? Join the WordPress <a href=\"https://wordpress.slack.com/archives/C02RQBWTW\">#core</a> channel in the <a href=\"https://make.wordpress.org/chat/\">Make WordPress Slack</a> and follow the <a href=\"https://make.wordpress.org/core/\">Core Team blog</a>. The Core Team hosts weekly chats on Wednesdays at <a href=\"https://www.timeanddate.com/worldclock/fixedtime.html?hour=5&amp;min=00&amp;sec=0\">5 AM</a> and <a href=\"https://www.timeanddate.com/worldclock/fixedtime.html?hour=20&amp;min=00&amp;sec=0\">8 PM</a> UTC.&nbsp;</p>\n\n\n\n<h2>Gutenberg Version 10.1 and 10.2 are out</h2>\n\n\n\n<p>Contributor teams released Gutenberg <a href=\"https://make.wordpress.org/core/2021/03/02/whats-new-in-gutenberg-10-1-3-march/\">Version 10.1</a> on March 3 and <a href=\"https://make.wordpress.org/core/2021/03/17/whats-new-in-gutenberg-10-2-17-march/\">Version 10.2</a> on March 17.</p>\n\n\n\n<p><a href=\"https://make.wordpress.org/core/2021/03/02/whats-new-in-gutenberg-10-1-3-march/\">Version 10.1</a> showcases significant improvements to reusable blocks, a clearer image toolbar, and spatial options for the social media block. <a href=\"https://make.wordpress.org/core/2021/03/17/whats-new-in-gutenberg-10-2-17-march/\">Version 10.2</a> offers block pattern options to display contents from the query block and removes writing prompts from empty paragraphs in the editor. It also adds width adjustment for spacer blocks in horizontal parent blocks and the ability to transform media and text blocks into columns.</p>\n\n\n\n<p>Want to get involved in building Gutenberg? Follow <a href=\"https://make.wordpress.org/core/\">the Core Team blog</a>, contribute to <a href=\"https://github.com/WordPress/gutenberg/\">Gutenberg on GitHub</a>, and join the <a href=\"https://wordpress.slack.com/archives/C02QB2JS7\">#core-editor</a> channel in <a href=\"https://make.wordpress.org/chat/\">the Make WordPress Slack</a>. The “<a href=\"https://make.wordpress.org/core/2021/03/08/whats-next-in-gutenberg-march-2021/\">What’s next in Gutenberg</a>” post offers more details on the latest updates. Don’t miss the monthly Gutenberg tutorial on <a href=\"https://wordpress.org/news/2021/03/so-you-want-to-make-block-patterns/\">How to make block patterns</a>!</p>\n\n\n\n<h2>Full Site Editing updates</h2>\n\n\n\n<p>March saw a plethora of updates to the <a href=\"https://make.wordpress.org/core/tag/full-site-editing/\">Full Site Editing</a> project!</p>\n\n\n\n<ul><li><a href=\'https://profiles.wordpress.org/chanthaboune/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>chanthaboune</a> published a <a href=\"https://make.wordpress.org/updates/2021/03/12/full-site-editing-pre-merge-overview/\">Full Site Editing pre-merge overview</a>. She shares the project’s current status, go/no-go dates for core merge, communication plans, and challenges.&nbsp;</li><li>March saw two calls for testing as part of the <a href=\"https://make.wordpress.org/test/handbook/full-site-editing-outreach-experiment/\">Full Site Editing outreach program</a>. The first test of the month — <a href=\"https://make.wordpress.org/test/2021/03/09/fse-program-testing-call-3-create-a-fun-custom-404-%20page/\">creating a custom 404 page</a>,&nbsp; wrapped up successfully.&nbsp; Participate in the latest testing initiative — <a href=\"https://make.wordpress.org/test/2021/03/25/fse-program-testing-call-4-building-a-restaurant-themed-header/\">&nbsp;build a restaurant-themed website header</a> to help improve the future of WordPress! Deadline: April 8.&nbsp;</li><li>You can also find <a href=\"https://make.wordpress.org/core/2021/03/16/high-level-feedback-from-the-fse-program-march/\">high-level feedback on the FSE Program</a> in this March 2021 post.</li></ul>\n\n\n\n<h2>Proposal launched for a WordPress contributor handbook</h2>\n\n\n\n<p>A proposal has been kicked off on <a href=\"https://make.wordpress.org/updates/2021/03/16/proposal-a-wordpress-project-contributor-handbook/\">building a project-wide WordPress contributor handbook</a>. The handbook will have content around the WordPress project’s underlying philosophies and commitments, along with shared expectations on working together and building products. It will also contain modern open source best practices for WordPress.&nbsp;</p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h2>Further Reading</h2>\n\n\n\n<ul><li>You can now schedule office hours with Matt Mullenweg and Josepha Haden as part of their <a href=\"https://make.wordpress.org/core/2021/03/12/q2-listening-hours-april-7th-2021/\">Q2 Quarterly listening hours initiative</a>. This quarter’s listening session is scheduled for April 7th, 2021, from <a href=\"https://www.timeanddate.com/worldclock/fixedtime.html?iso=20210407T2200\">22:00</a>&#8211;<a href=\"https://www.timeanddate.com/worldclock/fixedtime.html?iso=20210408T0000\">24:00</a> UTC. Slots are still available — <a href=\"https://calendly.com/mmullenweg/team-lead-office-hours?month=2021-04&amp;date=2021-04-08\">sign up now</a>!&nbsp;</li><li>The Themes Team is working on <a href=\"https://make.wordpress.org/themes/2021/03/17/next-steps-on-themes-and-reviews/\">automating the theme review process</a>. The team has shared a detailed post on these changes and is requesting feedback.</li><li>The Core Team has <a href=\"https://make.wordpress.org/core/2021/03/05/dual-licensing-gutenberg-next-steps/\">kicked-off plans</a> on dual licensing Gutenberg under GPL and MPL.</li><li><a href=\"https://buddypress.org/2021/03/buddypress-7-2-1-security-release/\">Version 7.2.1</a> of BuddyPress (security release) is out! Update all your BuddyPresses!</li><li>The Docs Team shipped the <a href=\"https://make.wordpress.org/docs/2021/03/07/wordpress-documentation-style-guide-google-season-of-docs-2020-project-report-tacitonic/\">WordPress documentation style guide</a> as part of its Google Season of Docs 2020 effort. The team has also kicked off work on applying for <a href=\"https://href.li/?https://make.wordpress.org/docs/tag/season-of-docs-2021/\">Google Season of Docs 2021</a>!</li><li>The Polyglots Team is making <a href=\"https://make.wordpress.org/polyglots/2021/03/26/polyglots-training-working-group-update-2/\">significant progress on building their contributor training program</a>. The team is also requesting feedback on <a href=\"https://make.wordpress.org/polyglots/2021/03/30/request-for-feedback-polyglots-team-stats-dashboard/\">building their dashboard</a>.</li><li><a href=\'https://profiles.wordpress.org/chanthaboune/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>chanthaboune</a> shared an <a href=\"https://make.wordpress.org/updates/2021/03/19/experiment-coordinating-sponsored-contributor-teams/\">experiment to coordinate sponsored contributors</a> by adding them to a private Slack channel to offer them better support.</li><li>The Community Team announced its revamped <a href=\"https://make.wordpress.org/community/2021-wordpress-global-community-sponsorship-program/\">2021 Global Sponsorship Program</a>. The team also published a <a href=\"https://make.wordpress.org/community/2021/03/12/2021-financial-update-for-the-wordpress-community/\">financial update for WP Communities in 2021</a>.</li><li>The Core Team is moving ahead to <a href=\"https://make.wordpress.org/core/2021/03/04/discussion-dropping-support-for-ie11/\">drop support for Internet Explorer 11</a> for upcoming versions of WordPress.</li><li>The Design Team shared <a href=\"https://make.wordpress.org/design/2021/03/30/wordpress-org-patterns-directory/\">initial designs for the Block pattern directory</a>.</li><li>The <a href=\"https://make.wordpress.org/chat/\">Make WordPress Slack</a> workspace briefly went down on March 30 due to a Slack ToS issue, which was subsequently resolved. More details on <a href=\"https://make.wordpress.org/updates/2021/03/30/journal-entry-wordpress-slack-workspace-unavailability/\">this explainer post</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 using this form</em></a><em>.</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:5:\"10084\";s: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:68:\"\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:35:\"So you want to make block patterns?\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:70:\"https://wordpress.org/news/2021/03/so-you-want-to-make-block-patterns/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_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, 30 Mar 2021 17:01: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:4:{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:\"Features\";s: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:9:\"Gutenberg\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:9:\"tutorials\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=9995\";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:33:\"Learn how to make block patterns!\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"enclosure\";a:2:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:3:\"url\";s:59:\"https://wordpress.org/news/files/2021/03/reusable-block.mp4\";s:6:\"length\";s:6:\"273436\";s:4:\"type\";s:9:\"video/mp4\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:3:\"url\";s:58:\"https://wordpress.org/news/files/2021/03/waves-pattern.mp4\";s:6:\"length\";s:6:\"493389\";s:4:\"type\";s:9:\"video/mp4\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Beatriz Fialho\";s: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:22433:\"\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" width=\"632\" height=\"356\" src=\"https://i2.wp.com/wordpress.org/news/files/2021/03/Block-Patterns.jpg?resize=632%2C356&#038;ssl=1\" alt=\"\" class=\"wp-image-9998\" srcset=\"https://i2.wp.com/wordpress.org/news/files/2021/03/Block-Patterns.jpg?resize=1024%2C576&amp;ssl=1 1024w, https://i2.wp.com/wordpress.org/news/files/2021/03/Block-Patterns.jpg?resize=300%2C169&amp;ssl=1 300w, https://i2.wp.com/wordpress.org/news/files/2021/03/Block-Patterns.jpg?resize=768%2C432&amp;ssl=1 768w, https://i2.wp.com/wordpress.org/news/files/2021/03/Block-Patterns.jpg?w=1441&amp;ssl=1 1441w, https://i2.wp.com/wordpress.org/news/files/2021/03/Block-Patterns.jpg?w=1264&amp;ssl=1 1264w\" sizes=\"(max-width: 632px) 100vw, 632px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<p>If you&#8217;ve ever built something for the WordPress block editor — a theme or a plugin — you may have also heard about <strong>block patterns</strong>. </p>\n\n\n\n<p>Looking at the patterns that come bundled with WordPress, I thought it would be nice to dedicate to them a short post. They&#8217;re pretty nice, useful shortcuts when you know them, but there&#8217;s a good chance you may not know what they are or why you might want to use them.</p>\n\n\n\n<h2>What&#8217;s a block pattern?</h2>\n\n\n\n<p>Patterns are&nbsp;<strong>collections of pre-arranged blocks</strong>&nbsp;that can be combined and arranged in many ways making it easier to create beautiful content. They act as a head-start, leaving you to plug and play with your content as you see fit and be as simple as single blocks or as complex as a full-page layout.</p>\n\n\n\n<div class=\"wp-block-image\"><figure class=\"aligncenter size-large\"><img loading=\"lazy\" width=\"632\" height=\"414\" src=\"https://i0.wp.com/wordpress.org/news/files/2021/03/block-library.png?resize=632%2C414&#038;ssl=1\" alt=\"\" class=\"wp-image-10021\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2021/03/block-library.png?resize=1024%2C670&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2021/03/block-library.png?resize=300%2C196&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2021/03/block-library.png?resize=768%2C503&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2021/03/block-library.png?resize=1536%2C1005&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2021/03/block-library.png?resize=2048%2C1340&amp;ssl=1 2048w, https://i0.wp.com/wordpress.org/news/files/2021/03/block-library.png?w=1264&amp;ssl=1 1264w, https://i0.wp.com/wordpress.org/news/files/2021/03/block-library.png?w=1896&amp;ssl=1 1896w\" sizes=\"(max-width: 632px) 100vw, 632px\" data-recalc-dims=\"1\" /></figure></div>\n\n\n\n<p>They live in a tab in the block library. You can click or drag and you&#8217;re able to preview them with your site&#8217;s styles.</p>\n\n\n\n<div class=\"wp-block-image\"><figure class=\"aligncenter size-large\"><img loading=\"lazy\" width=\"632\" height=\"413\" src=\"https://i2.wp.com/wordpress.org/news/files/2021/03/block-pattern.png?resize=632%2C413&#038;ssl=1\" alt=\"\" class=\"wp-image-10022\" srcset=\"https://i2.wp.com/wordpress.org/news/files/2021/03/block-pattern.png?resize=1024%2C669&amp;ssl=1 1024w, https://i2.wp.com/wordpress.org/news/files/2021/03/block-pattern.png?resize=300%2C196&amp;ssl=1 300w, https://i2.wp.com/wordpress.org/news/files/2021/03/block-pattern.png?resize=768%2C502&amp;ssl=1 768w, https://i2.wp.com/wordpress.org/news/files/2021/03/block-pattern.png?resize=1536%2C1003&amp;ssl=1 1536w, https://i2.wp.com/wordpress.org/news/files/2021/03/block-pattern.png?resize=2048%2C1338&amp;ssl=1 2048w, https://i2.wp.com/wordpress.org/news/files/2021/03/block-pattern.png?w=1264&amp;ssl=1 1264w, https://i2.wp.com/wordpress.org/news/files/2021/03/block-pattern.png?w=1896&amp;ssl=1 1896w\" sizes=\"(max-width: 632px) 100vw, 632px\" data-recalc-dims=\"1\" /></figure></div>\n\n\n\n<p>Basically, a block pattern is just a bunch of blocks put together in advance:</p>\n\n\n\n<pre class=\"wp-block-code\"><code> &lt;!-- wp:group --&gt;\n&lt;div class=\"wp-block-group\"&gt;&lt;div class=\"wp-block-group__inner-container\"&gt;&lt;!-- wp:separator {\"className\":\"is-style-default\"} --&gt;\n&lt;hr class=\"wp-block-separator is-style-default\"/&gt;\n&lt;!-- /wp:separator --&gt;\n&lt;!-- wp:image {\"align\":\"center\",\"id\":553,\"width\":150,\"height\":150,\"sizeSlug\":\"large\",\"linkDestination\":\"none\",\"className\":\"is-style-rounded\"} --&gt;\n&lt;div class=\"wp-block-image is-style-rounded\"&gt;&lt;figure class=\"aligncenter size-large is-resized\"&gt;&lt;img src=\"https://blockpatterndesigns.mystagingwebsite.com/wp-content/uploads/2021/02/StockSnap_HQR8BJFZID-1.jpg\" alt=\"\" class=\"wp-image-553\" width=\"150\" height=\"150\"/&gt;&lt;/figure&gt;&lt;/div&gt;\n&lt;!-- /wp:image --&gt;\n&lt;!-- wp:quote {\"align\":\"center\",\"className\":\"is-style-large\"} --&gt;\n&lt;blockquote class=\"wp-block-quote has-text-align-center is-style-large\"&gt;&lt;p&gt;\"Contributing makes me feel like I\'m being useful to the planet.\"&lt;/p&gt;&lt;cite&gt;— Anna Wong, &lt;em&gt;Volunteer&lt;/em&gt;&lt;/cite&gt;&lt;/blockquote&gt;\n&lt;!-- /wp:quote --&gt;\n&lt;!-- wp:separator {\"className\":\"is-style-default\"} --&gt;\n&lt;hr class=\"wp-block-separator is-style-default\"/&gt;\n&lt;!-- /wp:separator --&gt;&lt;/div&gt;&lt;/div&gt;\n&lt;!-- /wp:group --&gt;</code></pre>\n\n\n\n<p>That&#8217;s also how you create them: just use the block editor to configure a smattering of blocks to your liking, and the hard part&#8217;s over.</p>\n\n\n\n<h2>How do I get them in the block library?</h2>\n\n\n\n<p>There&#8217;s <a href=\"https://developer.wordpress.org/block-editor/developers/block-api/block-patterns/\">more documentation in the handbook</a>, but what it boils down to is this:</p>\n\n\n\n<pre class=\"wp-block-code\"><code>&lt;?php \n/*\nPlugin Name: Quote Pattern Example Plugin\n*/\n\nregister_block_pattern(\n \'my-plugin/my-quote-pattern\',\n array(\n \'title\' =&gt; __( \'Quote with Avatar\', \'my-plugin\' ),\n \'categories\' =&gt; array( \'text\' ),\n \'description\' =&gt; _x( \'A big quote with an avatar\".\', \'Block pattern description\', \'my-plugin\' ),\n \'content\' =&gt; \'&lt;!-- wp:group --&gt;&lt;div class=\"wp-block-group\"&gt;&lt;div class=\"wp-block-group__inner-container\"&gt;&lt;!-- wp:separator {\"className\":\"is-style-default\"} --&gt;&lt;hr class=\"wp-block-separator is-style-default\"/&gt;&lt;!-- /wp:separator --&gt;&lt;!-- wp:image {\"align\":\"center\",\"id\":553,\"width\":150,\"height\":150,\"sizeSlug\":\"large\",\"linkDestination\":\"none\",\"className\":\"is-style-rounded\"} --&gt;&lt;div class=\"wp-block-image is-style-rounded\"&gt;&lt;figure class=\"aligncenter size-large is-resized\"&gt;&lt;img src=\"https://blockpatterndesigns.mystagingwebsite.com/wp-content/uploads/2021/02/StockSnap_HQR8BJFZID-1.jpg\" alt=\"\" class=\"wp-image-553\" width=\"150\" height=\"150\"/&gt;&lt;/figure&gt;&lt;/div&gt;&lt;!-- /wp:image --&gt;&lt;!-- wp:quote {\"align\":\"center\",\"className\":\"is-style-large\"} --&gt;&lt;blockquote class=\"wp-block-quote has-text-align-center is-style-large\"&gt;&lt;p&gt;\"Contributing makes me feel like I\\\'m being useful to the planet.\"&lt;/p&gt;&lt;cite&gt;— Anna Wong, &lt;em&gt;Volunteer&lt;/em&gt;&lt;/cite&gt;&lt;/blockquote&gt;&lt;!-- /wp:quote --&gt;&lt;!-- wp:separator {\"className\":\"is-style-default\"} --&gt;&lt;hr class=\"wp-block-separator is-style-default\"/&gt;&lt;!-- /wp:separator --&gt;&lt;/div&gt;&lt;/div&gt;&lt;!-- /wp:group --&gt;\',\n )\n);\n\n?&gt;</code></pre>\n\n\n\n<p><img src=\"https://s.w.org/images/core/emoji/13.0.1/72x72/1f446.png\" alt=\"?\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> That&#8217;s a snippet of PHP, which means you can drop it in a WordPress plugin, or perhaps more simply, paste it into the <strong>functions.php</strong> file from your theme. Done:</p>\n\n\n\n<div class=\"wp-block-image\"><figure class=\"aligncenter size-large\"><img loading=\"lazy\" width=\"632\" height=\"430\" src=\"https://i2.wp.com/wordpress.org/news/files/2021/03/Quote.jpg?resize=632%2C430&#038;ssl=1\" alt=\"\" class=\"wp-image-10047\" srcset=\"https://i2.wp.com/wordpress.org/news/files/2021/03/Quote.jpg?resize=1024%2C696&amp;ssl=1 1024w, https://i2.wp.com/wordpress.org/news/files/2021/03/Quote.jpg?resize=300%2C204&amp;ssl=1 300w, https://i2.wp.com/wordpress.org/news/files/2021/03/Quote.jpg?resize=768%2C522&amp;ssl=1 768w, https://i2.wp.com/wordpress.org/news/files/2021/03/Quote.jpg?resize=1536%2C1043&amp;ssl=1 1536w, https://i2.wp.com/wordpress.org/news/files/2021/03/Quote.jpg?w=1908&amp;ssl=1 1908w, https://i2.wp.com/wordpress.org/news/files/2021/03/Quote.jpg?w=1264&amp;ssl=1 1264w\" sizes=\"(max-width: 632px) 100vw, 632px\" data-recalc-dims=\"1\" /></figure></div>\n\n\n\n<p>For patterns that include images, it&#8217;s worth thinking about where those are stored. The <a href=\"https://wordpress.org/themes/tt1-blocks/\">TT1 Blocks theme</a> (which is a fancy name for &#8220;TwentyTwentyOne Blocks&#8221;) stores images in the theme library.</p>\n\n\n\n<h2>Now what?</h2>\n\n\n\n<p>The thing about a block pattern is, as soon as you insert it from the block library, it stops being <em>a cohesive unit</em> — now it&#8217;s just a smattering of blocks, detached from the pattern you created and meant to be customized to your liking. It&#8217;s a <em>shortcut</em>, not a <em>template</em>. That also means you don&#8217;t have to worry about switching themes or deactivating pattern plugins: the blocks you already inserted won&#8217;t go anywhere.</p>\n\n\n\n<p>That being said, if you like this one pattern so much you want to use it again and again, with no customization at all, you can make it into a <a href=\"https://wordpress.org/news/2021/02/gutenberg-tutorial-reusable-blocks/\">reusable block</a>:</p>\n\n\n\n<figure class=\"wp-block-video\"><video controls loop src=\"https://wordpress.org/news/files/2021/03/reusable-block.mp4\"></video></figure>\n\n\n\n<p>Reusable blocks are created, as the name implies, to be reused. The feature is a great way to store small bits of commonly used snippets that you can edit in one place to update in all. &#8220;<strong>Follow me on Twitter</strong>,&#8221; &#8220;<strong>Article series</strong>,<strong>&#8220;</strong> or <strong>&#8220;Subscribe to my podcast&#8221;</strong> are great examples of that.</p>\n\n\n\n<h2>What makes a good block pattern?</h2>\n\n\n\n<p>Patterns, as they ship today, are limited by the features available. If the block editor doesn&#8217;t allow you to customize letter-spacing, your block pattern can&#8217;t either. While the Global Styles project will expand what&#8217;s to blocks, in the meantime, we have to work with the available tools.</p>\n\n\n\n<p>Even then, with the most basic ingredients — color, photography, typography — it is possible to do a lot:</p>\n\n\n\n<div class=\"wp-block-image\"><figure class=\"aligncenter\"><img src=\"https://lh5.googleusercontent.com/W3RKCu5c7ONKnmuLdChmOhD40iZAFseq30i-qGwqFaq0dPTj_U5b1JXhhRR96-jRvJvKgC8BBZA4p_-EBYF-WoMRPoDLgCX8FG3RIWQhv6zX6-H7xBj4FZGGRm7cl_qdVgRy9G8q\" alt=\"\" /><figcaption>Three columns with images and text<br></figcaption></figure></div>\n\n\n\n<div class=\"wp-block-image\"><figure class=\"aligncenter size-large\"><img loading=\"lazy\" width=\"632\" height=\"397\" src=\"https://i0.wp.com/wordpress.org/news/files/2021/03/Media-and-text-with-image-on-the-right-1.png?resize=632%2C397&#038;ssl=1\" alt=\"\" class=\"wp-image-10036\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2021/03/Media-and-text-with-image-on-the-right-1.png?resize=1024%2C644&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2021/03/Media-and-text-with-image-on-the-right-1.png?resize=300%2C189&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2021/03/Media-and-text-with-image-on-the-right-1.png?resize=768%2C483&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2021/03/Media-and-text-with-image-on-the-right-1.png?resize=1536%2C965&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2021/03/Media-and-text-with-image-on-the-right-1.png?resize=2048%2C1287&amp;ssl=1 2048w, https://i0.wp.com/wordpress.org/news/files/2021/03/Media-and-text-with-image-on-the-right-1.png?w=1264&amp;ssl=1 1264w, https://i0.wp.com/wordpress.org/news/files/2021/03/Media-and-text-with-image-on-the-right-1.png?w=1896&amp;ssl=1 1896w\" sizes=\"(max-width: 632px) 100vw, 632px\" data-recalc-dims=\"1\" /><figcaption>Media and text with image on the right</figcaption></figure></div>\n\n\n\n<p>I designed these patterns to potentially land in WordPress core, which all have a few properties in common:</p>\n\n\n\n<h3><strong>They share a theme.</strong></h3>\n\n\n\n<p>You can think of a pattern as a section of a website: it is meant to be part of a whole, and so it works best when it can exist in the context of other patterns that share the same theme. There are a few sharing a Nature theme in the patterns above, a few sharing an Art theme, and others sharing an Architecture theme. When seen together, it becomes easier to see how you might be able to piece together multiple pages of your site, one page at a time.</p>\n\n\n\n<figure class=\"wp-block-gallery columns-2\"><ul class=\"blocks-gallery-grid\"><li class=\"blocks-gallery-item\"><figure><img loading=\"lazy\" width=\"632\" height=\"406\" src=\"https://i0.wp.com/wordpress.org/news/files/2021/03/Large-header-with-text-and-a-button.png?resize=632%2C406&#038;ssl=1\" alt=\"\" data-id=\"10033\" data-full-url=\"https://wordpress.org/news/files/2021/03/Large-header-with-text-and-a-button.png\" data-link=\"https://wordpress.org/news/?attachment_id=10033\" class=\"wp-image-10033\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2021/03/Large-header-with-text-and-a-button.png?resize=1024%2C658&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2021/03/Large-header-with-text-and-a-button.png?resize=300%2C193&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2021/03/Large-header-with-text-and-a-button.png?resize=768%2C493&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2021/03/Large-header-with-text-and-a-button.png?resize=1536%2C987&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2021/03/Large-header-with-text-and-a-button.png?resize=2048%2C1315&amp;ssl=1 2048w, https://i0.wp.com/wordpress.org/news/files/2021/03/Large-header-with-text-and-a-button.png?w=1264&amp;ssl=1 1264w, https://i0.wp.com/wordpress.org/news/files/2021/03/Large-header-with-text-and-a-button.png?w=1896&amp;ssl=1 1896w\" sizes=\"(max-width: 632px) 100vw, 632px\" data-recalc-dims=\"1\" /></figure></li><li class=\"blocks-gallery-item\"><figure><img loading=\"lazy\" width=\"632\" height=\"405\" src=\"https://i2.wp.com/wordpress.org/news/files/2021/03/Media-text-with-image-on-the-right.png?resize=632%2C405&#038;ssl=1\" alt=\"\" data-id=\"10034\" data-full-url=\"https://wordpress.org/news/files/2021/03/Media-text-with-image-on-the-right.png\" data-link=\"https://wordpress.org/news/?attachment_id=10034\" class=\"wp-image-10034\" srcset=\"https://i2.wp.com/wordpress.org/news/files/2021/03/Media-text-with-image-on-the-right.png?resize=1024%2C657&amp;ssl=1 1024w, https://i2.wp.com/wordpress.org/news/files/2021/03/Media-text-with-image-on-the-right.png?resize=300%2C193&amp;ssl=1 300w, https://i2.wp.com/wordpress.org/news/files/2021/03/Media-text-with-image-on-the-right.png?resize=768%2C493&amp;ssl=1 768w, https://i2.wp.com/wordpress.org/news/files/2021/03/Media-text-with-image-on-the-right.png?resize=1536%2C986&amp;ssl=1 1536w, https://i2.wp.com/wordpress.org/news/files/2021/03/Media-text-with-image-on-the-right.png?resize=2048%2C1314&amp;ssl=1 2048w, https://i2.wp.com/wordpress.org/news/files/2021/03/Media-text-with-image-on-the-right.png?w=1264&amp;ssl=1 1264w, https://i2.wp.com/wordpress.org/news/files/2021/03/Media-text-with-image-on-the-right.png?w=1896&amp;ssl=1 1896w\" sizes=\"(max-width: 632px) 100vw, 632px\" data-recalc-dims=\"1\" /></figure></li></ul></figure>\n\n\n\n<h3><strong>They share a minimalist color palette.</strong></h3>\n\n\n\n<p>By being parts of a whole, patterns will inevitably land in a context that uses different colors. With a reduced color palette, there&#8217;s both a better chance of fitting in and less to customize to make it just right.</p>\n\n\n\n<figure class=\"wp-block-gallery columns-2\"><ul class=\"blocks-gallery-grid\"><li class=\"blocks-gallery-item\"><figure><img loading=\"lazy\" width=\"632\" height=\"535\" src=\"https://i2.wp.com/wordpress.org/news/files/2021/03/Heading-and-a-paragraph.jpg?resize=632%2C535&#038;ssl=1\" alt=\"\" data-id=\"10042\" data-full-url=\"https://wordpress.org/news/files/2021/03/Heading-and-a-paragraph.jpg\" data-link=\"https://wordpress.org/news/?attachment_id=10042\" class=\"wp-image-10042\" srcset=\"https://i2.wp.com/wordpress.org/news/files/2021/03/Heading-and-a-paragraph.jpg?resize=1024%2C867&amp;ssl=1 1024w, https://i2.wp.com/wordpress.org/news/files/2021/03/Heading-and-a-paragraph.jpg?resize=300%2C254&amp;ssl=1 300w, https://i2.wp.com/wordpress.org/news/files/2021/03/Heading-and-a-paragraph.jpg?resize=768%2C651&amp;ssl=1 768w, https://i2.wp.com/wordpress.org/news/files/2021/03/Heading-and-a-paragraph.jpg?resize=1536%2C1301&amp;ssl=1 1536w, https://i2.wp.com/wordpress.org/news/files/2021/03/Heading-and-a-paragraph.jpg?w=1903&amp;ssl=1 1903w, https://i2.wp.com/wordpress.org/news/files/2021/03/Heading-and-a-paragraph.jpg?w=1264&amp;ssl=1 1264w\" sizes=\"(max-width: 632px) 100vw, 632px\" data-recalc-dims=\"1\" /></figure></li><li class=\"blocks-gallery-item\"><figure><img loading=\"lazy\" width=\"632\" height=\"271\" src=\"https://i0.wp.com/wordpress.org/news/files/2021/03/Media-text-in-a-full-height-container.jpg?resize=632%2C271&#038;ssl=1\" alt=\"\" data-id=\"10043\" data-full-url=\"https://wordpress.org/news/files/2021/03/Media-text-in-a-full-height-container-scaled.jpg\" data-link=\"https://wordpress.org/news/?attachment_id=10043\" class=\"wp-image-10043\" srcset=\"https://i2.wp.com/wordpress.org/news/files/2021/03/Media-text-in-a-full-height-container-scaled.jpg?resize=1024%2C439&amp;ssl=1 1024w, https://i2.wp.com/wordpress.org/news/files/2021/03/Media-text-in-a-full-height-container-scaled.jpg?resize=300%2C129&amp;ssl=1 300w, https://i2.wp.com/wordpress.org/news/files/2021/03/Media-text-in-a-full-height-container-scaled.jpg?resize=768%2C330&amp;ssl=1 768w, https://i2.wp.com/wordpress.org/news/files/2021/03/Media-text-in-a-full-height-container-scaled.jpg?resize=1536%2C659&amp;ssl=1 1536w, https://i2.wp.com/wordpress.org/news/files/2021/03/Media-text-in-a-full-height-container-scaled.jpg?resize=2048%2C879&amp;ssl=1 2048w, https://i2.wp.com/wordpress.org/news/files/2021/03/Media-text-in-a-full-height-container-scaled.jpg?w=1264&amp;ssl=1 1264w, https://i2.wp.com/wordpress.org/news/files/2021/03/Media-text-in-a-full-height-container-scaled.jpg?w=1896&amp;ssl=1 1896w\" sizes=\"(max-width: 632px) 100vw, 632px\" data-recalc-dims=\"1\" /></figure></li></ul></figure>\n\n\n\n<h3><strong>The best patterns <strong>do things you might have not done otherwise</strong>.</strong></h3>\n\n\n\n<p>Whether that&#8217;s images offset to create a unique silhouette, or just using less visible features (like fixed positioning in the Cover block), it&#8217;s a way to surface creativity.</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p><em>Tip: You can use any block in your patterns, including blocks that came from a plugin. And if that block is in the block directory, it will prompt you to install it with one click if it&#8217;s missing from your self-hosted WordPress:</em></p></blockquote>\n\n\n\n<figure class=\"wp-block-video\"><video controls loop src=\"https://wordpress.org/news/files/2021/03/waves-pattern.mp4\"></video></figure>\n\n\n\n<h2>Here’s a plugin for you</h2>\n\n\n\n<pre class=\"wp-block-code\"><code>&lt;?php \n/*\nPlugin Name: Quote Pattern Example Plugin\n*/\n\nregister_block_pattern(\n \'my-plugin/my-quote-pattern\',\n array(\n \'title\' =&gt; __( \'Quote with Avatar\', \'my-plugin\' ),\n \'categories\' =&gt; array( \'text\' ),\n \'description\' =&gt; _x( \'A big quote with an avatar\".\', \'Block pattern description\', \'my-plugin\' ),\n \'content\' =&gt; \'&lt;!-- wp:group --&gt;&lt;div class=\"wp-block-group\"&gt;&lt;div class=\"wp-block-group__inner-container\"&gt;&lt;!-- wp:separator {\"className\":\"is-style-default\"} --&gt;&lt;hr class=\"wp-block-separator is-style-default\"/&gt;&lt;!-- /wp:separator --&gt;&lt;!-- wp:image {\"align\":\"center\",\"id\":553,\"width\":150,\"height\":150,\"sizeSlug\":\"large\",\"linkDestination\":\"none\",\"className\":\"is-style-rounded\"} --&gt;&lt;div class=\"wp-block-image is-style-rounded\"&gt;&lt;figure class=\"aligncenter size-large is-resized\"&gt;&lt;img src=\"https://blockpatterndesigns.mystagingwebsite.com/wp-content/uploads/2021/02/StockSnap_HQR8BJFZID-1.jpg\" alt=\"\" class=\"wp-image-553\" width=\"150\" height=\"150\"/&gt;&lt;/figure&gt;&lt;/div&gt;&lt;!-- /wp:image --&gt;&lt;!-- wp:quote {\"align\":\"center\",\"className\":\"is-style-large\"} --&gt;&lt;blockquote class=\"wp-block-quote has-text-align-center is-style-large\"&gt;&lt;p&gt;\"Contributing makes me feel like I\\\'m being useful to the planet.\"&lt;/p&gt;&lt;cite&gt;— Anna Wong, &lt;em&gt;Volunteer&lt;/em&gt;&lt;/cite&gt;&lt;/blockquote&gt;&lt;!-- /wp:quote --&gt;&lt;!-- wp:separator {\"className\":\"is-style-default\"} --&gt;&lt;hr class=\"wp-block-separator is-style-default\"/&gt;&lt;!-- /wp:separator --&gt;&lt;/div&gt;&lt;/div&gt;&lt;!-- /wp:group --&gt;\',\n )\n);\n\n?&gt;</code></pre>\n\n\n\n<p>In case you want to make patterns, this example plugin features two of the patterns you saw above. Drop it in your plugins folder and they should show up in your block library.</p>\n\n\n\n<div class=\"wp-block-image\"><figure class=\"aligncenter size-large\"><img loading=\"lazy\" width=\"632\" height=\"966\" src=\"https://i1.wp.com/wordpress.org/news/files/2021/03/Captura-de-ecra-2021-03-30-as-11.00.39.png?resize=632%2C966&#038;ssl=1\" alt=\"\" class=\"wp-image-10062\" srcset=\"https://i1.wp.com/wordpress.org/news/files/2021/03/Captura-de-ecra-2021-03-30-as-11.00.39.png?resize=670%2C1024&amp;ssl=1 670w, https://i1.wp.com/wordpress.org/news/files/2021/03/Captura-de-ecra-2021-03-30-as-11.00.39.png?resize=196%2C300&amp;ssl=1 196w, https://i1.wp.com/wordpress.org/news/files/2021/03/Captura-de-ecra-2021-03-30-as-11.00.39.png?w=692&amp;ssl=1 692w\" sizes=\"(max-width: 632px) 100vw, 632px\" data-recalc-dims=\"1\" /><figcaption>Installed pattern under &#8220;Text&#8221; Category</figcaption></figure></div>\n\n\n\n<p>Feel free to tweak it, customize it, and make it yours. It’s GPL, after all!</p>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p><em>Thank you <a href=\'https://profiles.wordpress.org/joen/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>joen</a> for the help writing this post.</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:\"9995\";s: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:61:\"\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:59:\"WP Briefing: Talking Full Site Editing with Matías Ventura\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:81:\"https://wordpress.org/news/2021/03/talking-full-site-editing-with-matias-ventura/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_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, 29 Mar 2021 15:05:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:9:\"Gutenberg\";s: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:11:\"wp-briefing\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"https://wordpress.org/news/?post_type=podcast&p=10013\";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:296:\"In this episode, Josepha is joined by Matías Ventura, also known as “the spark behind the vision of Gutenberg.\" Josepha and Matías discuss full site editing and answer your questions, from “is full site editing a standalone plugin?” to “will full site editing break my current site?”\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"enclosure\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:3:\"url\";s:60:\"https://wordpress.org/news/files/2021/03/WP-Briefing-005.mp3\";s:6:\"length\";s:1:\"0\";s:4:\"type\";s:0:\"\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}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:\"Chloe Bringmann\";s: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:31294:\"\n<p>In this episode, Josepha is joined by Matías Ventura, also known as “the spark behind the vision of Gutenberg.” Josepha and Matías discuss full site editing and answer your questions, from “is full site editing a standalone plugin?” to “will full site editing break my current site?”</p>\n\n\n\n<p><em><strong>Have a question you&#8217;d like answered? You can submit them to <a href=\"mailto:wpbriefing@wordpress.org\">wpbriefing@wordpress.org</a>, either written or as a voice recording.</strong></em></p>\n\n\n\n<h2><strong>Credits</strong></h2>\n\n\n\n<ul><li>Editor:<a href=\"https://profiles.wordpress.org/dustinhartzler/\"> Dustin Hartzler</a></li><li>Logo:<a href=\"https://profiles.wordpress.org/beafialho/\"> Beatriz Fialho</a></li><li>Production:<a href=\"https://profiles.wordpress.org/mkaz/\"> </a><a href=\"https://profiles.wordpress.org/cbringmann/\">Chloé Bringmann</a></li><li>Song: Fearless First by Kevin MacLeod</li></ul>\n\n\n\n<h2>References</h2>\n\n\n\n<ul><li><a href=\"https://wordpress.org/themes/tt1-blocks/\">Twenty Twenty One theme</a></li><li><a href=\"https://centroamerica.wordcamp.org/2021/\">Word Camp Central America </a></li><li><a href=\"https://make.wordpress.org/core/2021/03/12/q2-listening-hours-april-7th-2021/\">2021 Second Quarter Listening Hours with Matt Mullenweg and Josepha Haden Chomphosy</a></li></ul>\n\n\n\n<h2>Transcript</h2>\n\n\n\n<span id=\"more-10013\"></span>\n\n\n\n<p>Hello, everyone, and welcome to the WordPress briefing, the podcast where you can catch quick explanations of some of the ideas behind the WordPress open source project and the community around it, as well as get a small list of big things coming up in the next two weeks. I&#8217;m your host, Josepha Haden Chomphosy. Here we go!</p>\n\n\n\n<p>Josepha [0:41]: This month, we have a bonus briefing, so I&#8217;ve asked my dear friend and colleague <a href=\"https://profiles.wordpress.org/matveb/\">Matías Ventura</a> to join me. Matías was recently called “the spark behind the vision of Gutenberg.” With full site editing coming our way in 202, I asked if he would join me for a quick Q&amp;A. Welcome, Matías.&nbsp;</p>\n\n\n\n<p>Matías [0:56]: Hello, hello! Thanks for inviting me. It&#8217;s a pleasure to be here.</p>\n\n\n\n<p>Josepha [1:00]: Well, I&#8217;m delighted to have you. And I think that we have a lot of excellent questions. All right, so Matías, we actually ended up with questions in about three different groupings. And so I&#8217;m going to start with the “what is it about full site editing,” sorts of questions that people had. We&#8217;re gonna work our way into “what are we doing with it?” and then “how are we planning on getting this out the door?” Then, a couple of big picture questions that people asked. We&#8217;re just gonna leap right in this full site editing part of the Gutenberg plugin, or is it a standalone plugin?</p>\n\n\n\n<p>Matías [1:39]: Okay, we&#8217;ll start with the basics. Full site editing is part of the Gutenberg plugin right now. I think it&#8217;s important to mention that full site editing is like an umbrella for several projects that we&#8217;re working on. They are all aiming to bring blocks into more parts of your site so that editing becomes easier and more expressive, and so on. So full site editing right now encompasses adding a ton of new blocks. I think we have around 20 new blocks coming in, including navigation query, site, title, logo, etc. There&#8217;s also the interface to interact with templates outside of the content; that&#8217;s another big part of the full site editing project. We also have a lot of new design tools included, many of these have been released in previous major releases, but they still comprise a strong part of what full site editing is. We also have something called Global Styles, which aims to allow people to configure the visual aspects of blogs across the entire site, not just on any individual blog. And of course, then there&#8217;s a whole layer of how we utilize these tools. It can get complex because there are many layers and projects that need to come together. So yeah, all of these are accessible through the Gutenberg plugin right now.</p>\n\n\n\n<p>Josepha [3:07]: Yeah. So it&#8217;s not a standalone plugin. If you wanted to check out full site editing the site editor experience as it is now, you would just have to make sure you had the Gutenberg plugin on your site. Right?</p>\n\n\n\n<p>Matías: Yes, correct.</p>\n\n\n\n<p>Josepha:&nbsp; So a couple of the questions related to this are how exactly do I enable it on my site? And what is the easiest and safest way to try this on my site? And I think the answer is, is right in there. It&#8217;s in the Gutenberg plugin. And so if you have that plugin, you don&#8217;t need the testing plugin or anything else to make that work, right?</p>\n\n\n\n<p>Matías [3:51]:&nbsp; No, you like, you might need to install a theme like Twenty Twenty One blocks that unlock some of these new interfaces that we just talked about. Like other of these pieces are available for anything. But some of these, like the interface to edit templates, right now only talk with things that know how to express their desire.&nbsp;</p>\n\n\n\n<p>Josepha [4:14]: And I think we have less than 10 themes right now that do that, but I&#8217;ll leave some links to at least 2021 blocks in the show notes. And then, if there are another one or two themes that I can find, I can add those in there as well.&nbsp;</p>\n\n\n\n<p>So you have to have the Gutenberg plugin; you have to have a theme that works with that site editor kind of experience. And then you&#8217;re safe to try everything out. It shows up in your left toolbar just like any other thing, like if you were working with plugins, or if you were adding a post or anything else, right?</p>\n\n\n\n<p>Matías [4:51]: Yes, correct. And so, some of these details are being worked on right now. Like how and where you access things, and so on. These things are subject to change, but right now, you have this site editor beta in the sidebar when both you have the plugin running and a theme that&#8217;s capable.</p>\n\n\n\n<p>Josepha [5:10]: Yeah. Excellent note. If you are running this on a production website, I would recommend you not do that unless you are very, very good with WordPress. It&#8217;s a really safe and easy thing to test and try out. But because it is still in beta, I recommend always putting it on a test site. I have a couple of different test sites that I run on myself. Another question that I had was, “will full site editing slow down my site?” And I think we have some refreshed performance tests coming out about that. And maybe they&#8217;ll be out by the time we publish this podcast.</p>\n\n\n\n<p>Matías [5:49]: Yeah, I mean, like the performance has been one of the major focuses for the whole project. In many cases, it should speed up things because we&#8217;re like, I think one of the big pieces that these projects bring into the picture, especially for themes, is that it allows only the necessary assets to be loaded on the front end. For example, if for a given page, there are, I don&#8217;t know, 10-15 blocks being used, you would only get the CSS and scrapes and so on related to those blocks. This can cut down on a lot a ton of CSS that themes used to end queue on a side, particularly if you were trying to customize many widgets and so on, like a lot of themes have the full styles or multiple widgets, even third party plugins, and so on. So one of the advantages of having this blog system is that we can know at the time of rendering what blogs are being used and only load those assets.&nbsp;</p>\n\n\n\n<p>Josepha [6:50]: Excellent. Another big question that we have is, “does full site editing work with the classic editor? And does it work with other builders?” I think that&#8217;s a really big answer if you&#8217;re going to get super deep into it. But I think that the short answer is yes, it does. Is that fair?</p>\n\n\n\n<p>Matías [7:08]: Yeah, I don&#8217;t think it touches a bit on that full site editing is not like a single thing. There are multiple projects around it. So again, like the template editor that only deals with blogs, it doesn&#8217;t have a lot to do with a classic editor. But the classic editor use for both doesn&#8217;t change anything at all; like the same way that when the block editor was introduced, it didn&#8217;t change how you could still write posts in the classic editor. You will still be able to do that.</p>\n\n\n\n<p>Josepha [7:41]: And if you are brand new to WordPress person, or, I mean, I guess at this point, you don&#8217;t have to be super brand new. If you&#8217;re fairly new to WordPress person and have no idea what we&#8217;re talking about when we say the classic editor, you don&#8217;t really have to worry about it either. You don&#8217;t have to go and find out what that is; the block editor that you have right now works perfectly for what you&#8217;re trying to do. So if you don&#8217;t know what I mean when I say classic editor, don&#8217;t worry about chasing it down either.&nbsp;</p>\n\n\n\n<p>I think that this last question we accidentally answered earlier, but I&#8217;m going to go ahead and ask it anyway since I received it. “I keep hearing that you can use the site editor with the 2021 theme. But I don&#8217;t seem to be able to. What am I missing?” I think the answer is that there&#8217;s the Twenty Twenty One theme shipped with the WordPress release 5.6. And then there is the Twenty Twenty One blocks theme; those are two different themes. The link to the Twenty Twenty One block theme is going to be in our show notes this time around. And so, if you have been trying to use the full site editor with Twenty Twenty One and not succeeding, try the link to the one below. And I bet that that will work for you.</p>\n\n\n\n<p>Matías [8:50]: Yes, that&#8217;s correct.&nbsp;</p>\n\n\n\n<p>Josepha [8:51]: All right, excellent. Well, that brings us kind of into our second set of questions, which is about how we are doing it. The first one that folks have is “will full site editing be on by default in the next release. In this context, the next release is WordPress 5.8. But I think it&#8217;s a safe question to ask if full site editing will be on by default in the release that it&#8217;s planned for.</p>\n\n\n\n<p>Matías [9:15]: Yeah, and for this, I need to go back to the same principle of many projects because there are many pieces of full site editing, and we have been merging them in major releases, particularly like the blocks and the design tools. There are more coming in that we want to make accessible as soon as possible. The full experience that requires a theme to opt-in to templates using blogs won’t be by default; it requires a specific theme running. A lot of these details we&#8217;re still like determining exactly what projects are ready to be merged and so on. But yeah, if you have a theme right now that works the way you want, it doesn&#8217;t change anything there. If anything, it adds some more capabilities and more customization tools, and so on. And the theme can also regulate how much they want to incorporate.</p>\n\n\n\n<p>Josepha [10:13]: Matías, you&#8217;ve mentioned a couple of times in this podcast so far like this is a really complex and really complicated part of this work. And just for anyone out there who&#8217;s either encountering Gutenberg or full site editing or this podcast for the first time, I think a tiny bit of context that&#8217;s worth having here is that Matías and I have been working on this together in various capacities for like, five years. And Matías has probably been working on this for practically a decade. So, when we say that this is a really complicated problem, and when we say that this is a complex set of issues that we&#8217;re working with like, it is all that we have been thinking about for I want to say at least the last three or four years, but certainly it&#8217;s all that we have been trying to untangle for quite a bit of time before that as well. So we don&#8217;t take it lightly when we&#8217;re like, “this is complicated;” we mean it. It&#8217;s really complicated. And we&#8217;re trying our hardest over here as WordPress.&nbsp;</p>\n\n\n\n<p>The next big question, since we&#8217;re all stuck in the “it&#8217;s very complicated,” part of things is the question, “will this update break my current site?” Like, if I have a site that is updated and ready, and it&#8217;s exactly as I wanted it to be, and it took me two years to get there will full site editing, whichever release it&#8217;s in. Currently, 5.8 is what we&#8217;re planning for. Will that break anything on my site as I know it right now?</p>\n\n\n\n<p>Matías [11:44]: No, not at all. One of the major things that the WordPress team, the WordPress community, always cares so much about, never to break things. Many of these things are stepping stones that you can adopt, as we&#8217;ve talked about full site editing. But for example, we also have a few concurrent projects around the widget screen and the navigation screen that are meant to bring blocks into existing interfaces. So again, the theme doesn&#8217;t need to change, and a lot of care is being put into making this more like you&#8217;re unlocking new features, and nothing really breaks or falls apart.</p>\n\n\n\n<p>Josepha [12:23]: This update, like all the other updates, should have minimal, minimal impact on what you have to actively fix on your site. Every once in a while, a bug is gonna get by. We can&#8217;t say that we&#8217;re 100% perfect with not breaking things. But also, we always and I and I know that we&#8217;re planning on this for our remaining releases for the rest of the year. At the very least, I can&#8217;t imagine we&#8217;d ever change it. But after every major release, we always make a plan to have a minor release within the next one or two weeks. Because we know that a broken thing on a site is really incredibly impactful, even if you&#8217;re only 1% of the sites that had that happen to it. And so I think that&#8217;s true in this case, too. And getting that feedback back from all of the people who are actually using WordPress is the thing that makes us be able to kind of move quickly when we do see those problems.&nbsp;</p>\n\n\n\n<p>One of the questions that we have been getting is, “can I see a live preview without saving the changes that I made?” When I got this question, I didn&#8217;t actually understand it. And so I went and looked at a site without the Gutenberg plugin on it, and then a site with the Gutenberg plugin on it. And of course, on sites without Gutenberg, without the block editor, without full site editing, when you are looking to preview, you have the option to open up your preview in a new window. And you don&#8217;t have that with Gutenberg because it&#8217;s supposed to be a true WYSIWYG editor. A true what you see is what you get, editor. I think that the answer to this is, yes, you can see a live preview without actually saving the changes on the front end of your site. But you don&#8217;t actually have to reload anything. You don&#8217;t have to open it up in a new window. You don&#8217;t have to, like, actively click “please show me a preview” because what you see in your editing screen should be what you see at the end of your app as an end-user.</p>\n\n\n\n<p>Matías [14:28]: Yeah, that&#8217;s the sort of the main gist to it. Yes, the site editor is built so that it always reflects the front end as truly as possible, so that&#8217;s one layer. Also, the preview tools should allow you to see in different devices like mobile breakpoints, and I don&#8217;t know if they will have breakpoints and stuff like that. There are a lot of things in the current interface that is just not enabled. There are some challenges in the sidebar. Because the site editor is not just focused on a single post, it&#8217;s focused on the entire site. So, there can be many, many changes that need to be shadowed for the site.&nbsp;</p>\n\n\n\n<p>If you&#8217;re changing the site title, some of the global styles, aspects, and so on need to be orchestrated. So, to see in the previewing new window, there are some challenges there to integrate. Again, the interface is not final yet; a lot of these things are still being tweaked and improved. There are many things from the regular post editor that are not enabled yet. But they will be enabled. So yeah, it&#8217;s a, I guess, it&#8217;s not a simple thing to answer. Because, again, the idea of previewing the site that&#8217;s core to the whole project is that you&#8217;re always interacting in the same way that when you&#8217;re in the customizer, you&#8217;re seeing the preview all the time. That&#8217;s the main scope of this project,</p>\n\n\n\n<p>Josepha [15:54]: Excellent. Changes like that changes to your workflow can be really hard to get your mind around, especially if part of that existing workflow was there to create some confidence in what you&#8217;re seeing with your users. And so I understand. Now that I&#8217;ve researched that question a bit, I see where that&#8217;s coming from. Based on existing workflows and existing patterns that we have for ourselves in WordPress, will we need to have a theme to use the full site editor?</p>\n\n\n\n<p>Matías [16:33]: I think we&#8217;ve already covered some of these. And again, they are tools that can work on any existing theme. There is other stuff that needs space-specific themes to opt-in into these tools, like blog templates and so on.</p>\n\n\n\n<p>Josepha [16:50]: Yes, I think the question that we have next, because I see that the literal next question I have is actually something we have covered; just because we&#8217;re being pretty conversational about it, not because anyone already asked the question. So I&#8217;m actually going to skip to the last question of this section that I received. I got this next one via Twitter. The question is, “how do you view the role of themes once full site editing is fully rolled out and all the page elements (content, headers, widgets, footers, etc.) and all the views are managed via blocks and block patterns? Will things become typographic and block styles?”</p>\n\n\n\n<p>Matías [17:28]: I think this is a great question because it goes to the heart of, why are we doing all this. One of the main reasons is to empower users more. WordPress has been democratizing publishing for a while; this is another step into allowing themes to get more customization tools and more control over their site if they want to. I think the recent call for testing has focused on the 404 page, for example. That&#8217;s something that forever has been locked away from users. And it&#8217;s also something that, as a theme developer, and I used to develop themes a long time ago, that was one of the things where you decide what sort of approach you take for the 404 page. Maybe sometimes you want to have something more whimsical. Sometimes you need something more serious. And committing to one when you can have such a diverse and broad user base can be challenging. With these, it becomes as easy as offering a few different patterns for that template. Then the user will always be able to change the copy and modify something. So again, it opens up a lot of these things that used to be locked down. However, from a theme perspective, I think this doesn&#8217;t reduce the theme at all. If anything, it allows the theme to focus less on coding and functions and more on design expression and aesthetics. I don&#8217;t think that would ever be exhausted. That will always remain as diverse as humans are interacting with WordPress. And so it&#8217;s not that I don&#8217;t see it&#8217;s just as like, typographic and block styles. How do you express a template, how do you express the structure, what choices you quote, what choices you make as a theme builder? And of course, there are many degrees of control there. Because a site maintainer may not want the 404 template to be editable, that sort of control will always be present.</p>\n\n\n\n<p>Josepha [19:38]: Yeah. And really fast. I have to add a caveat to a thing that you said in there. For anyone who&#8217;s listening keenly, you may have heard Matías say that the users can update any of the content there &#8211; any of the copy. In this context, we&#8217;re talking about users as in the people who are maintaining the site, not people who are visiting your site. Visitors to your site will not be able to change any copy on your page unless you&#8217;ve done something very interesting with your WordPress site, which is also fine if that&#8217;s what you prefer to do. By default, your visitors can&#8217;t change everything on your website, which is good news, frankly.</p>\n\n\n\n<p>So I&#8217;ve got one logistics question, which I&#8217;m happy to take. And then one is kind of a big picture question that I also got from Twitter. “What about the classic editor block; what is going to happen to that? And when will we know?” So ages and ages ago, before COVID? I think so. Probably maybe a couple of years ago, Matt said that the classic editor plugin would be supported through the end of 2021. And that is still the case; there will be active support on that through the end of 2021. After that, it will not be actively supported anymore. It won&#8217;t be removed from any place that you can get access to right now. In a “this is the end of its lifecycle” sort of way, we just won&#8217;t have anyone who is currently committed to maintaining that plugin anymore. So that&#8217;s what&#8217;s happening at the end of the year. And yeah, at the end of 2021. The big question that we have is, “why is full site editing being so rushed?” I think this is a bit of a loaded question.</p>\n\n\n\n<p>Matías [21:32]: Yeah, I think I think it&#8217;s still a fair question, though. I think we&#8217;re dealing with two things here. And one is ensuring that we release things in the best state possible. And also, some of the urgency is to offer tools that we know that people lack right now and that could really benefit from. Making that determination is very tricky. The full site editing project has been in the works for the last couple of years. If we count the initial phase of Gutenberg, that&#8217;s four to five years. We&#8217;ve been doing many calls for testing, which I think have been super useful to catch issues and reflect as a community on where things are going; how do we integrate with these? How do we use it? What are the shortcomings? What do we need to do? Based on all of these, we&#8217;ll continue to make decisions on when things become ready. We&#8217;re not committed to releasing something that&#8217;s not in a good state. And I think we will always be very careful about that. There are these two competing senses of the urgency &#8211; of getting some of these tools out, and because it also benefits from the feedback loops. I always say that, in many ways, the initial phase of Gutenberg, to me, is not finished. We took the initial two years to do the 5.0 release, the initial block editor, and so on. But, it&#8217;s still being improved at a very fast pace, among all the recent major releases improvements to the editor were included; that will continue to be the case. In many ways, phase one is not finished. And the moment we choose to release some of these tools or editing tools, it won&#8217;t be finished either. They will need to continue to grow, mature, and incorporate a lot of the feedback. Even the things that the ecosystem is building around. I&#8217;ve seen a few themes already that are incorporating a blank canvas template so that you can use them in some pages and take over and do everything with blocks. So even the community and ecosystem as a whole is also sort of paving the way for what needs to come.</p>\n\n\n\n<p>Josepha [24:06]: I think from my perspective, and of course, I&#8217;m on the people side of things, the communication side of things, the logistics side of things; I have a frequently a very different view from what a lot of other folks are seeing. And so from my side of things, I have to say, I&#8217;m communicating about this change in a really broad way, which has not been happening since 2019 when we started the work. We&#8217;ve been communicating broadly with the WordPress community, but not with everybody who uses WordPress. So, I think that for a lot of people, this looks like a project that we started really actively working on in the last six months or so. And now we&#8217;re just racing toward a finish line. I think that there&#8217;s, there&#8217;s not been a lot of awareness of everything that&#8217;s gone into it. And so, on the one hand, it feels a little less rushed to me knowing the full length of the history on this. But also, as you said, I really think that this gets a bunch of tools to people who otherwise have not been able to accomplish these things in WordPress or otherwise. I am so anxious to get something to people who really can benefit from this change the most. And it&#8217;s the nature of the open source, right that like, one, as long as you have users, you&#8217;re going to have stuff you have to fix in your software. So we&#8217;re never really, really going to be done with this; there&#8217;s not going to be like a done point of WordPress. And the second thing is, I think it&#8217;s generally true that you don&#8217;t really start getting full user feedback until after you have launched your major release. I think that we see that a lot in open source software; you can bring in as many people as you think you can in your user tests heading up to it. And in your accessibility tests. And, in general, quality assurance tests. You can bring in a lot of people and still not have gotten the full understanding of the various niche use cases that your users will bring to you. Because at this point, we&#8217;re like 40% of the web. And that means that we&#8217;re serving this majority collection of increasingly minority voices and niche voices in the space. And so, a little bit I feel a sense of urgency; I feel a bit of anxiousness about trying to get this out there for one, to get the tools in the hands of the people who can benefit the most from them, but also so that we can start really getting the full stress test of this software out and get that feedback in so that we can really build something responsive to what our users need our long tail, “anyone who ever uses WordPress ever,” definition of users. And so, that&#8217;s why I feel a sense of urgency around it. Even though you know, as I said, you and I have been working on this for like five years, and you&#8217;ve been working on it for a decade or something. I actually don&#8217;t know how long it&#8217;s been worked on.</p>\n\n\n\n<p>Matías [27:35]: Now that makes me feel a bit old.</p>\n\n\n\n<p>Josepha [27:40]: Nobody makes Matías feel old. He is a lovely, wonderful colleague. Sorry, Matías, If I made you feel old.</p>\n\n\n\n<p>Matías [27:46]: No, that&#8217;s totally fine. I also want to add that full site editing is not like a single toggle that&#8217;s going to drop into a major release. So I think that&#8217;s important to consider, I think this entire year is going to see a lot of these tools being, and sometimes the sort of the end-user is not the, again, the site maintainer. Still, you can also be the theme developer; I think there are many tools that would be empowering for theme developers to use. Again, we mentioned there are like five to ten themes, block themes right now. That needs to grow a lot, and that only grows through these sorts of feedback loops. And the theme community pushing things forward and seeing where things can lead to. I&#8217;m very excited about the pattern directory integration because I think that can also combine with blog themes in very powerful ways. Imagine if, I don&#8217;t know many of these patterns that are very common on the web and very needed, that if we can refine them together with a second community and make them available across themes, you can combine a header from one theme with a content of another; all these sorts of mixtures could happen. All of this needs exploration, the creativity of the entire community, and so on. In that sense, getting all these tools, even if it doesn&#8217;t immediately change anything for like the site itself, starts to unlock a lot of things.&nbsp;</p>\n\n\n\n<p>Josepha [29:27]: I&#8217;m going to take a bit of your answer from there and tie it all the way back to your first answer that we had when you joined me today. And say, I think you&#8217;re absolutely right. We have a set of users in our theme authors and our plugin developers as well that we desperately need to get looking at this set of tools. I hope that what we are shipping in the first iteration of this serves as an opportunity for all of those theme authors and agency owners, plugin authors, WordPress site configurers freelancers. Like, I really hope that this puts it into a really accessible, easy-to-access space for them so that they can do those experiments based on what they know their users need the most. They are the group that has the closest access to site maintainers. And what they need compared to, for instance, me or a potential you like we have a lot of information, you and I, we do a lot of tests, we have a strong sense of what is needed at the moment, but we don&#8217;t have as a close connection that our theme and agency and plugin folks all have. And so that&#8217;s another part of why I&#8217;m so excited to get this out in the current iteration of it.</p>\n\n\n\n<p>Josepha [31:04]: That was a lot of questions in a little bit of time. This is going to be officially my longest WordPress briefing. Matías, I am so glad that you were able to join me today. And I think that everyone&#8217;s going to be really, really excited to hear your answers to these questions.</p>\n\n\n\n<p>Matías [31:23]: Thank you for having me.</p>\n\n\n\n<p>Josepha [31:25]: All right, my friends. That brings us into our small list of big things. I&#8217;m going to skip our community highlight today just because we had a slightly longer word press briefing in our bonus iteration today. But the small list of big things. The first thing is WordCamp Central America is coming up on April 15; there is a registration link in the show notes that you can access your tickets with. I recommend that you go; we&#8217;ve got a lot of excellent speakers coming up there and a lot of good content and good training and learning for y&#8217;all. The second thing is that Matt Mullenweg and I have listening hours coming up with the community in the first week of April. I&#8217;ll add the link to register for those in the show notes as well; it&#8217;s just a few minutes for you all to stop by, check-in, see what&#8217;s going on, and share some celebrations or concerns with us. And I hope that I see you there.&nbsp;</p>\n\n\n\n<p>So that my friends is your small list of big things. Thank you for joining in today for the WordPress briefing. I&#8217;m your host, Josepha Haden Chomphosy. I&#8217;ll see you again in a couple of weeks!</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:5:\"10013\";s: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:58:\"\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:35:\"WP Briefing: How WordPress Improves\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"https://wordpress.org/news/2021/03/how-wordpress-improves/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_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, 15 Mar 2021 15:08: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:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"wp-briefing\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:52:\"https://wordpress.org/news/?post_type=podcast&p=9980\";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:178:\"In this episode, Josepha Haden Chomphosy explores the WordPress release process. Tune in to learn about what goes into a release and catch this week’s small list of big things.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"enclosure\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:3:\"url\";s:60:\"https://wordpress.org/news/files/2021/03/WP-Briefing-004.mp3\";s:6:\"length\";s:1:\"0\";s:4:\"type\";s:0:\"\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}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:10226:\"\n<p>In this episode, <a href=\"https://profiles.wordpress.org/chanthaboune/\">Josepha Haden Chomphosy</a> explores the WordPress release process. Tune in and learn the phases of a release and catch this week’s small list of big things.</p>\n\n\n\n<p><em><strong>Have a question you&#8217;d like answered? You can submit them to <a href=\"mailto:wpbriefing@wordpress.org\">wpbriefing@wordpress.org</a>, either written or as a voice recording.</strong></em></p>\n\n\n\n<h2><strong>Credits</strong></h2>\n\n\n\n<ul><li>Editor:<a href=\"https://profiles.wordpress.org/dustinhartzler/\"> Dustin Hartzler</a></li><li>Logo:<a href=\"https://profiles.wordpress.org/beafialho/\"> Beatriz Fialho</a></li><li>Production:<a href=\"https://profiles.wordpress.org/mkaz/\"> </a><a href=\"https://profiles.wordpress.org/cbringmann/\">Chloé Bringmann</a></li><li>Song: Fearless First by Kevin MacLeod</li></ul>\n\n\n\n<h2>References</h2>\n\n\n\n<ul><li><a href=\"https://wordpress.org/news/2021/03/esperanza/\">WordPress 5.7 “Esperanza” </a></li><li><a href=\"https://en.wikipedia.org/wiki/Esperanza_Spalding\">Esperanza Spalding</a></li><li><a href=\"https://wordpress.org/news/2021/02/gutenberg-tutorial-reusable-blocks/\">Gutenberg Tutorial: Reusable Blocks</a></li><li><a href=\"https://make.wordpress.org/test/\">make.wordpress.org/test</a></li><li><a href=\"https://make.wordpress.org/core/handbook/contribute/git/\">GitHub repository </a></li></ul>\n\n\n\n<h2>Transcript</h2>\n\n\n\n<span id=\"more-9980\"></span>\n\n\n\n<p>Hello, everyone, and welcome to the WordPress briefing, the podcast where you can catch quick explanations of some of the ideas behind the WordPress open source project and the community around it, as well as get a small list of big things coming up in the next two weeks. I&#8217;m your host, Josepha Haden Chomphosy. Here we go!</p>\n\n\n\n<p>All right, so last week, we wrapped up and shipped the WordPress 5.7 release. The release team this time around was smaller than we&#8217;ve had in the last couple of years. By the numbers, it looks really good: 66 enhancements or feature requests went in, 127 bugs were fixed, and seven versions of a Gutenberg plugin were merged and backported. If you use WordPress, you are probably aware that we have new releases throughout the year, but you probably don&#8217;t know much about the release process. There&#8217;s not really a reason to know unless you&#8217;re actively contributing to a release. For those interested in knowing more about how we improve WordPress, this week&#8217;s exploration is for you.</p>\n\n\n\n<p>We&#8217;re gonna take a look at what goes into WordPress releases and just kind of zoom our way in from the highest level. At the highest level, there are three major WordPress releases a year, plus the minor releases, plus Gutenberg releases. So if you&#8217;re following current WordPress work and future WordPress work, that&#8217;s going to get you to probably around <strong>30 releases a year</strong>. If we zoom in one level to the release itself, a single release of WordPress takes four to five months from start to the day that we ship, and an additional four to six weeks on support and translations, and minor releases after that. If you&#8217;re looking from my vantage point, you&#8217;ll see that WordPress releases have essentially five parts, some of which happen kind of simultaneously.&nbsp;</p>\n\n\n\n<p>The first part is planning and includes the project lead, lead developers, design; groups like that. The second phase is the creation phase when we&#8217;re actually building the things that have to go into the CMS that involves the design, core, editor, mobile, and other teams. Then there&#8217;s this phase that I like to refer to as the distribution phase. This is mostly done by the teams that make sure that WordPress is widely distributable; the polyglots team work on translations, accessibility does some work, docs make sure that everything is documented, and training, of course, gets things ready for when we have to be able to tell people how to use the release.&nbsp;</p>\n\n\n\n<p>Then there is the fourth phase; I really don&#8217;t think they go sequentially or in a waterfall format. The fourth-ish phase that I include, and that I tend to see, is this extending and iteration phase. It&#8217;s the phase where we see our theme authors and our plugin authors, folks who are doing support, show up and help us to make sure that WordPress is available not only widely but broadly to ensure that their audiences as theme authors and plugin authors are covered in the features that they need based on what they are using WordPress for. The fifth phase is the part of our communication that involves the community team, especially marketing, WordPressTV, and learn.wordpress.org. Basically, anyone who&#8217;s showing up to make sure that we all share what happened in the release, the features that are coming, and how that affects the users is involved in that particular phase. So five big phases of what happens over those four to five months, and then for the month or month and a half afterward.&nbsp;</p>\n\n\n\n<p>If we zoom in a bit more on the creation phase, each release has people who lead the work and coordinate contributor efforts during the course of the release. For any given release, hundreds of people contribute and receive credit for moving the WordPress project forward. Okay, hold on a second. Let&#8217;s pump the brakes and zoom in a bit on that. Hundreds of people work on every major release for a project that powers over 40% of the web that feels like a small number. But for the people who process the contributions in preparation for release, it&#8217;s actually pretty substantial. For every release, there is a small team of leaders who asked the hard questions. Is this a usable feature? Does this make WordPress better overall? And, of course, is this ready to ship?&nbsp; Some of those leaders, a smaller subset of even the leaders that we have already, are committers who actually prep and merge patches to the CMS; they don&#8217;t do all the work to create a design or write all the code. This tiny group of people processes hundreds and hundreds of bug fixes, improvements, and enhancements that have been submitted over the course of months and sometimes years. As a side note, that whole process is a little smaller, a little faster in the Gutenberg featured plugin, but the basic parts are still there. Alright, so we&#8217;ve zoomed from the big picture way into some of the finer details, and it really looks like any other project cycle. So now, I&#8217;m going to layer in the filter of open source to that process.</p>\n\n\n\n<p>There are a couple of things that make building software in an open source environment so different. The first is that the code is readily available. If you have a basic understanding of the languages, you can see the code, learn from it, and make suggestions about improving it. Second, you consider the user a co-developer in the process, which means that as long as people use your product, they will have opinions on what you shipped. This way of iterating improves WordPress and ties back to one of my favorite open source principles. The idea that with many eyes, all bugs are shallow. To me, that means that with enough people looking at a problem, someone is bound to be able to see the solution.</p>\n\n\n\n<p>This brings us to our community highlight, the segment where I share a note about contributors who have helped others along the way or a WordPress success story. This week&#8217;s highlight is from Nok in our Bangkok community. When asked to help her find her way into the WordPress community, she said, “@shinichiN who started the WordPress community in Bangkok and encouraged me to contribute, and also @mayukojpn has introduced me to the WP community team to join as a deputy. “ Thank you for sharing those two inspiring people with us. And if you, listener, have any stories that you would like to share of your own WordPress success or people that you have been so grateful to help you find your way in the project, you can feel free to email those to me at <a href=\"mailto:wpbriefing@wordpress.org\">wpbriefing@wordpress.org</a>.</p>\n\n\n\n<p>That brings us to our final segment of the WP Briefing, the small list of big things. I only have three things to share with you this week. The first one is that about a week ago, we had our first release of 2021. It was the WordPress 5.7 release, titled Esperanza. If you have not yet seen it, go ahead and update your website or check with your host and make sure that they have updated you if you&#8217;re on a managed host. And then take a listen to the artists that it&#8217;s named after.&nbsp;</p>\n\n\n\n<p>The second thing that I want you to keep an eye out for is wordpress.org/news. We are starting a new series of content that gets at the heart of some of Gutenberg’s basic parts; there’s a lot of change coming up in the next few releases of WordPress. And the most important thing to me is that you understand what we&#8217;re trying to change and where those changes are primarily taking place. There will be a couple of tutorials that go up there over the course of the of the next few weeks. The third item on the small list of big things is to remind you of our call for testing. As I mentioned earlier in the podcast, the users of any open source software are the code developers; the software built is supposed to make your life and work easier. When you test things and find interactions that can use a little bit of refinement or features that are not working exactly as expected, it&#8217;s incredibly helpful for us to have that information to always make sure that we&#8217;re solving problems instead of accidentally creating them. If you want to participate in the Current call for testing, you can head over to make.wordpress.org/test. Or, if you&#8217;ve been doing your own testing, you can also submit any bugs you have found in the GitHub repo, which I will share in the show notes below. So that, my friends, is your small list of big things. Thank you for tuning in today for the WordPress briefing. I’m your host, Josepha Haden Chomphosy. I&#8217;ll see you again in a couple of weeks!</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:\"9980\";s: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:58:\"\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:29:\"WordPress 5.7 “Esperanza”\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:45:\"https://wordpress.org/news/2021/03/esperanza/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_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, 09 Mar 2021 20: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:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=9888\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:355:\"Meet “Esperanza”, the first WordPress release of 2021. “Esperanza” is named in honor of Esperanza Spalding, a modern musical prodigy. Her path as a musician is varied and inspiring—learn more about her&#160;and give her music a listen! With this new version, WordPress brings you fresh colors. The editor helps you work in a few places [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"enclosure\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:3:\"url\";s:60:\"https://s.w.org/images/core/5.7/about-57-drag-drop-image.mp4\";s:6:\"length\";s:6:\"183815\";s:4:\"type\";s:9:\"video/mp4\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s: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:42711:\"\n<div class=\"wp-block-cover\" style=\"background-color:#0a5b89\"><img loading=\"lazy\" width=\"632\" height=\"327\" class=\"wp-block-cover__image-background wp-image-9932\" alt=\"\" src=\"https://i1.wp.com/wordpress.org/news/files/2021/03/about-header-brushes.png?resize=632%2C327&#038;ssl=1\" data-object-fit=\"cover\" data-object-position=\"52% 67%\" srcset=\"https://i1.wp.com/wordpress.org/news/files/2021/03/about-header-brushes.png?w=1000&amp;ssl=1 1000w, https://i1.wp.com/wordpress.org/news/files/2021/03/about-header-brushes.png?resize=300%2C155&amp;ssl=1 300w, https://i1.wp.com/wordpress.org/news/files/2021/03/about-header-brushes.png?resize=768%2C397&amp;ssl=1 768w\" sizes=\"(max-width: 632px) 100vw, 632px\" data-recalc-dims=\"1\" /><div class=\"wp-block-cover__inner-container\">\n<p class=\"has-text-align-center has-large-font-size\"><strong>WordPress 5.7</strong> <strong>&#8220;Esperanza&#8221;</strong></p>\n\n\n\n<p class=\"has-text-align-center\">Bringing you fresh colors in the admin, simpler interactions in the editor, and controls right where you need them, WordPress 5.7 lets you focus on the content you create.</p>\n\n\n\n<div style=\"height:120px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<p></p>\n</div></div>\n\n\n\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<p>Meet “Esperanza”, the first WordPress release of 2021. “Esperanza” is named in honor of Esperanza Spalding, a modern musical prodigy. Her path as a musician is varied and inspiring—<a rel=\"noreferrer noopener\" target=\"_blank\" href=\"https://en.wikipedia.org/wiki/Esperanza_Spalding\">learn more about her</a>&nbsp;and give her music a listen!</p>\n\n\n\n<p>With this new version, WordPress brings you fresh colors. The editor helps you work in a few places you couldn’t before without getting into code or hiring a pro. The controls you use most are right where you need them. Layout changes that should be simple, are even simpler to make.</p>\n\n\n\n<h2>Now the new editor is easier to use</h2>\n\n\n\n<p><strong>Font-size adjustment in more places:</strong>&nbsp;now, font-size controls are right where you need them in the List and Code blocks. No more trekking to another screen to make that single change!</p>\n\n\n\n<p><strong>Reusable blocks:</strong>&nbsp;several enhancements make reusable blocks more stable and easier to use. And now they save automatically with the post when you click the Update button.</p>\n\n\n\n<p><strong>Inserter drag-and-drop:</strong>&nbsp;drag blocks and block patterns from the inserter right into your post.</p>\n\n\n\n<figure class=\"wp-block-video\"><video controls src=\"https://s.w.org/images/core/5.7/about-57-drag-drop-image.mp4\"></video></figure>\n\n\n\n<h2>You can do more without writing custom code</h2>\n\n\n\n<p><strong>Full-height alignment:</strong>&nbsp;have you ever wanted to make a block, like the Cover block, fill the whole window? Now you can.</p>\n\n\n\n<p><strong>Buttons block:</strong>&nbsp;now you can choose a vertical or a horizontal layout. And you can set the width of a button to a preset percentage.</p>\n\n\n\n<p><strong>Social Icons block:</strong>&nbsp;now you can change the size of the icons.</p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img src=\"https://i0.wp.com/s.w.org/images/core/5.7/about-57-cover.jpg?w=632&#038;ssl=1\" alt=\"\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<h2>A simpler default color palette</h2>\n\n\n\n<p>This new streamlined color palette collapses all the colors that used to be in the WordPress source code down to seven core colors and a range of 56 shades that meet the <a href=\"https://www.w3.org/WAI/WCAG2AA-Conformance\">WCAG 2.0 AA recommended contrast ratio</a> against white or black.</p>\n\n\n\n<p>Find the new palette in the default WordPress Dashboard color scheme, and use it when you’re building themes, plugins, or any other components. For all the details,&nbsp;<a href=\"https://make.wordpress.org/core/2021/02/23/standardization-of-wp-admin-colors-in-wordpress-5-7\">check out the Color Palette dev note</a>.</p>\n\n\n\n<h2>From HTTP to HTTPS in a single click</h2>\n\n\n\n<p>Starting now, switching a site from HTTP to HTTPS is a one-click move. WordPress will automatically update database URLs when you make the switch. No more hunting and guessing!</p>\n\n\n\n<h2>New Robots API</h2>\n\n\n\n<p>The new Robots API lets you include the filter directives in the robots meta tag, and the API includes the&nbsp;<code>max-image-preview: large</code>&nbsp;directive by default. That means search engines can show bigger image previews, which can boost your traffic (unless the site is marked&nbsp;<em>not-public</em>).</p>\n\n\n\n<h2>Lazy-load your iFrames</h2>\n\n\n\n<p>Now it’s simple to let iframes lazy-load. By default, WordPress will add a&nbsp;<code>loading=\"lazy\"</code>&nbsp;attribute to iframe tags when both width and height are specified.</p>\n\n\n\n<h2>Ongoing cleanup after update to jQuery 3.5.1</h2>\n\n\n\n<p>For years jQuery helped make things move on the screen in ways the basic tools couldn’t—but that keeps changing, and so does jQuery.</p>\n\n\n\n<p>In 5.7, jQuery gets more focused and less intrusive, with fewer messages in the console.</p>\n\n\n\n<h2>Check the Field Guide for more!</h2>\n\n\n\n<p>Check out the latest version of the WordPress Field Guide. It highlights developer notes for each change you may want to be aware of.&nbsp;<a href=\"https://make.wordpress.org/core/2021/02/23/wordpress-5-7-field-guide\">WordPress 5.7 Field Guide.</a></p>\n\n\n\n<h2>The Squad</h2>\n\n\n\n<p>The WordPress 5.7 release comes to you from a small and experienced release squad:&nbsp;&nbsp;</p>\n\n\n\n<ul><li><strong>Release Lead:</strong>&nbsp;Matt Mullenweg (<a href=\'https://profiles.wordpress.org/matt/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>matt</a>)</li><li><strong>Triage Lead:</strong>&nbsp;Tonya Mork (<a href=\'https://profiles.wordpress.org/hellofromtonya/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>hellofromtonya</a>)</li><li><strong>Release Coordinator:</strong>&nbsp;Ebonie Butler (<a href=\'https://profiles.wordpress.org/metalandcoffee/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>metalandcoffee</a>)</li><li><strong>Core Tech Lead:</strong>&nbsp;Sergey Biryukov (<a href=\'https://profiles.wordpress.org/sergeybiryukov/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>sergeybiryukov</a>)</li><li><strong>Editor Tech Lead:</strong>&nbsp;Robert Anderson (<a href=\'https://profiles.wordpress.org/noisysocks/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>noisysocks</a>)</li><li><strong>Design Lead:</strong>&nbsp;Tim Hengeveld (<a href=\'https://profiles.wordpress.org/hedgefield/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>hedgefield</a>)</li><li><strong>Accessibility Lead:</strong>&nbsp;Sarah Ricker (@sarahricke<strong>r</strong>)</li><li><strong>Documentation Lead:&nbsp;</strong>Jb Audras (<a href=\'https://profiles.wordpress.org/audrasjb/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>audrasjb</a>)</li><li><strong>Test Lead:</strong>&nbsp;Monika Rao (<a href=\'https://profiles.wordpress.org/monikarao/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>monikarao</a>)</li></ul>\n\n\n\n<p>This release is the reflection of the hard work of 481 generous volunteer contributors. Collaboration occurred on nearly 250 tickets on Trac and over 950 pull requests on GitHub.</p>\n\n\n\n<a href=\"https://profiles.wordpress.org/7studio/\">7studio</a>, <a href=\"https://profiles.wordpress.org/ninetyninew/\">99w</a>, <a href=\"https://profiles.wordpress.org/aaribaud/\">aaribaud</a>, <a href=\"https://profiles.wordpress.org/technosailor/\">Aaron Brazell</a>, <a href=\"https://profiles.wordpress.org/aaroncampbell/\">Aaron D. Campbell</a>, <a href=\"https://profiles.wordpress.org/jorbin/\">Aaron Jorbin</a>, <a href=\"https://profiles.wordpress.org/aaronrobertshaw/\">aaronrobertshaw</a>, <a href=\"https://profiles.wordpress.org/abagtcs/\">abagtcs</a>, <a href=\"https://profiles.wordpress.org/acerempel/\">acerempel</a>, <a href=\"https://profiles.wordpress.org/activecoder/\">activecoder</a>, <a href=\"https://profiles.wordpress.org/ad7six/\">ad7six</a>, <a href=\"https://profiles.wordpress.org/bosconiandynamics/\">Adam Bosco</a>, <a href=\"https://profiles.wordpress.org/adamsilverstein/\">Adam Silverstein</a>, <a href=\"https://profiles.wordpress.org/adamboro/\">adamboro</a>, <a href=\"https://profiles.wordpress.org/addiestavlo/\">Addison Stavlo</a>, <a href=\"https://profiles.wordpress.org/aduth/\">aduth</a>, <a href=\"https://profiles.wordpress.org/mrahmadawais/\">Ahmad Awais</a>, <a href=\"https://profiles.wordpress.org/engahmeds3ed/\">Ahmed Saeed</a>, <a href=\"https://profiles.wordpress.org/aljullu/\">Albert Juh&#233; Lluveras</a>, <a href=\"https://profiles.wordpress.org/albertomake/\">albertomake</a>, <a href=\"https://profiles.wordpress.org/ajlende/\">Alex Lende</a>, <a href=\"https://profiles.wordpress.org/alexwoollam/\">Alex Woollam</a>, <a href=\"https://profiles.wordpress.org/alex27/\">alex27</a>, <a href=\"https://profiles.wordpress.org/chemiker/\">Alexander Lueken</a>, <a href=\"https://profiles.wordpress.org/alexstine/\">alexstine</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/almendron/\">almendron</a>, <a href=\"https://profiles.wordpress.org/amandariu/\">Amanda Riu</a>, <a href=\"https://profiles.wordpress.org/ambienthack/\">ambienthack</a>, <a href=\"https://profiles.wordpress.org/amolv/\">Amol Vhankalas</a>, <a href=\"https://profiles.wordpress.org/afercia/\">Andrea Fercia</a>, <a href=\"https://profiles.wordpress.org/andraganescu/\">Andrei Draganescu</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/andrewserong/\">Andrew Serong</a>, <a href=\"https://profiles.wordpress.org/nosolosw/\">André Maneiro</a>, <a href=\"https://profiles.wordpress.org/afragen/\">Andy Fragen</a>, <a href=\"https://profiles.wordpress.org/apeatling/\">Andy Peatling</a>, <a href=\"https://profiles.wordpress.org/ankitmaru/\">Ankit Panchal</a>, <a href=\"https://profiles.wordpress.org/annalamprou/\">annalamprou</a>, <a href=\"https://profiles.wordpress.org/annezazu/\">Anne McCarthy</a>, <a href=\"https://profiles.wordpress.org/anotherdave/\">anotherdave</a>, <a href=\"https://profiles.wordpress.org/antpb/\">Anthony Burchell</a>, <a href=\"https://profiles.wordpress.org/antonlukin/\">Anton Lukin</a>, <a href=\"https://profiles.wordpress.org/atimmer/\">Anton Timmermans</a>, <a href=\"https://profiles.wordpress.org/anyssa/\">Anyssa Ferreira</a>, <a href=\"https://profiles.wordpress.org/archon810/\">archon810</a>, <a href=\"https://profiles.wordpress.org/aristath/\">Ari Stathopoulos</a>, <a href=\"https://profiles.wordpress.org/passoniate/\">Arslan Ahmed</a>, <a href=\"https://profiles.wordpress.org/artpi/\">Artur Piszek</a>, <a href=\"https://profiles.wordpress.org/maigret/\">Aur&#233;lien Denis</a>, <a href=\"https://profiles.wordpress.org/ayeshrajans/\">Ayesh Karunaratne</a>, <a href=\"https://profiles.wordpress.org/bartosz777/\">bartosz777</a>, <a href=\"https://profiles.wordpress.org/basscan/\">basscan</a>, <a href=\"https://profiles.wordpress.org/bduclos/\">bduclos</a>, <a href=\"https://profiles.wordpress.org/becdetat/\">becdetat</a>, <a href=\"https://profiles.wordpress.org/pixolin/\">Bego Mario Garde</a>, <a href=\"https://profiles.wordpress.org/scruffian/\">Ben Dwyer</a>, <a href=\"https://profiles.wordpress.org/utz119/\">Benachi</a>, <a href=\"https://profiles.wordpress.org/bernhard-reiter/\">Bernhard Reiter</a>, <a href=\"https://profiles.wordpress.org/bernhard reiter/\">Bernhard Reiter</a>, <a href=\"https://profiles.wordpress.org/bhanusinghkre/\">bhanusinghkre</a>, <a href=\"https://profiles.wordpress.org/birgire/\">Birgir Erlendsson (birgire)</a>, <a href=\"https://profiles.wordpress.org/bph/\">Birgit Pauli-Haack</a>, <a href=\"https://profiles.wordpress.org/bobbingwide/\">bobbingwide</a>, <a href=\"https://profiles.wordpress.org/bonniebeeman/\">bonniebeeman</a>, <a href=\"https://profiles.wordpress.org/boonebgorges/\">Boone Gorges</a>, <a href=\"https://profiles.wordpress.org/ibdz/\">Boy Witthaya</a>, <a href=\"https://profiles.wordpress.org/kraftbj/\">Brandon Kraft</a>, <a href=\"https://profiles.wordpress.org/brechtvds/\">Brecht</a>, <a href=\"https://profiles.wordpress.org/brentswisher/\">Brent Swisher</a>, <a href=\"https://profiles.wordpress.org/brijeshb42/\">brijeshb42</a>, <a href=\"https://profiles.wordpress.org/burnuser/\">burnuser</a>, <a href=\"https://profiles.wordpress.org/icaleb/\">Caleb Burks</a>, <a href=\"https://profiles.wordpress.org/cvoell/\">Cameron Voell</a>, <a href=\"https://profiles.wordpress.org/carike/\">Carike</a>, <a href=\"https://profiles.wordpress.org/carloscastilloadhoc/\">carloscastilloadhoc</a>, <a href=\"https://profiles.wordpress.org/carlosgprim/\">carlosgprim</a>, <a href=\"https://profiles.wordpress.org/poena/\">Carolina Nymark</a>, <a href=\"https://profiles.wordpress.org/celendesign/\">celendesign</a>, <a href=\"https://profiles.wordpress.org/cenay/\">Cenay Nailor</a>, <a href=\"https://profiles.wordpress.org/ceyhun0/\">ceyhun0</a>, <a href=\"https://profiles.wordpress.org/chexwarrior/\">chexwarrior</a>, <a href=\"https://profiles.wordpress.org/chipsnyder/\">Chip Snyder</a>, <a href=\"https://profiles.wordpress.org/cbringmann/\">Chloé Bringmann</a>, <a href=\"https://profiles.wordpress.org/chouby/\">Chouby</a>, <a href=\"https://profiles.wordpress.org/chrisvanpatten/\">Chris Van Patten</a>, <a href=\"https://profiles.wordpress.org/pixelverbieger/\">Christian Sabo</a>, <a href=\"https://profiles.wordpress.org/amethystanswers/\">Christina Workman</a>, <a href=\"https://profiles.wordpress.org/cfinke/\">Christopher Finke</a>, <a href=\"https://profiles.wordpress.org/clayray/\">clayray</a>, <a href=\"https://profiles.wordpress.org/claytoncollie/\">Clayton Collie</a>, <a href=\"https://profiles.wordpress.org/codeamp/\">Code Amp</a>, <a href=\"https://profiles.wordpress.org/collizo4sky/\">Collins Agbonghama</a>, <a href=\"https://profiles.wordpress.org/copons/\">Copons</a>, <a href=\"https://profiles.wordpress.org/coreyw/\">Corey</a>, <a href=\"https://profiles.wordpress.org/cristinasoponar/\">cristinasoponar</a>, <a href=\"https://profiles.wordpress.org/dam6pl/\">Damian Nowak</a>, <a href=\"https://profiles.wordpress.org/danfarrow/\">Dan Farrow</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/dvankooten/\">Danny van Kooten</a>, <a href=\"https://profiles.wordpress.org/dariak/\">Daria</a>, <a href=\"https://profiles.wordpress.org/nerrad/\">Darren Ethier (nerrad)</a>, <a href=\"https://profiles.wordpress.org/drw158/\">Dave Whitley</a>, <a href=\"https://profiles.wordpress.org/davidanderson/\">David Anderson</a>, <a href=\"https://profiles.wordpress.org/davidbaumwald/\">David Baumwald</a>, <a href=\"https://profiles.wordpress.org/davidbinda/\">David Biňovec</a>, <a href=\"https://profiles.wordpress.org/dpcalhoun/\">David Calhoun</a>, <a href=\"https://profiles.wordpress.org/dlh/\">David Herrera</a>, <a href=\"https://profiles.wordpress.org/davecpage/\">David Page</a>, <a href=\"https://profiles.wordpress.org/dbtedg/\">dbtedg</a>, <a href=\"https://profiles.wordpress.org/dd32/\">dd32</a>, <a href=\"https://profiles.wordpress.org/dkarfa/\">Debabrata Karfa</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/denishua/\">denishua</a>, <a href=\"https://profiles.wordpress.org/dianeco/\">Diane Co</a>, <a href=\"https://profiles.wordpress.org/dilipbheda/\">Dilip Bheda</a>, <a href=\"https://profiles.wordpress.org/dkoo/\">dkoo</a>, <a href=\"https://profiles.wordpress.org/ocean90/\">Dominik Schilling</a>, <a href=\"https://profiles.wordpress.org/donmhico/\">donmhico</a>, <a href=\"https://profiles.wordpress.org/dragongate/\">dragongate</a>, <a href=\"https://profiles.wordpress.org/dratwas/\">dratwas</a>, <a href=\"https://profiles.wordpress.org/drewapicture/\">Drew Jaynes</a>, <a href=\"https://profiles.wordpress.org/davidszabo/\">Dávid Szabó</a>, <a href=\"https://profiles.wordpress.org/e_baker/\">e_baker</a>, <a href=\"https://profiles.wordpress.org/eatsleepcode/\">eatsleepcode</a>, <a href=\"https://profiles.wordpress.org/metalandcoffee/\">Ebonie Butler</a>, <a href=\"https://profiles.wordpress.org/ediamin/\">Edi Amin</a>, <a href=\"https://profiles.wordpress.org/iseulde/\">Ella van Durpe</a>, <a href=\"https://profiles.wordpress.org/ellatrix/\">Ella van Durpe</a>, <a href=\"https://profiles.wordpress.org/erichmond/\">Elliott Richmond</a>, <a href=\"https://profiles.wordpress.org/enej/\">Enej Bajgorić</a>, <a href=\"https://profiles.wordpress.org/enricocarraro/\">Enrico Carraro</a>, <a href=\"https://profiles.wordpress.org/epicfaace/\">epicfaace</a>, <a href=\"https://profiles.wordpress.org/epiqueras/\">epiqueras</a>, <a href=\"https://profiles.wordpress.org/ericlewis/\">Eric Andrew Lewis</a>, <a href=\"https://profiles.wordpress.org/ebinnion/\">Eric Binnion</a>, <a href=\"https://profiles.wordpress.org/ericmann/\">Eric Mann</a>, <a href=\"https://profiles.wordpress.org/kebbet/\">Erik</a>, <a href=\"https://profiles.wordpress.org/folletto/\">Erin \'Folletto\' Casali</a>, <a href=\"https://profiles.wordpress.org/estelaris/\">Estela Rueda</a>, <a href=\"https://profiles.wordpress.org/etoledom/\">etoledom</a>, <a href=\"https://profiles.wordpress.org/eventualo/\">eventualo</a>, <a href=\"https://profiles.wordpress.org/fabiankaegy/\">Fabian K&#228;gy</a>, <a href=\"https://profiles.wordpress.org/fabianpimminger/\">Fabian Pimminger</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/mista-flo/\">Florian TIAR</a>, <a href=\"https://profiles.wordpress.org/florianziegler/\">Florian Ziegler</a>, <a href=\"https://profiles.wordpress.org/floriswt/\">floriswt</a>, <a href=\"https://profiles.wordpress.org/francina/\">Francesca Marano</a>, <a href=\"https://profiles.wordpress.org/frank-klein/\">Frank Klein</a>, <a href=\"https://profiles.wordpress.org/fullofcaffeine/\">fullofcaffeine</a>, <a href=\"https://profiles.wordpress.org/gab81/\">gab81</a>, <a href=\"https://profiles.wordpress.org/galbaras/\">Gal Baras</a>, <a href=\"https://profiles.wordpress.org/ecgan/\">Gan Eng Chin</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/geekpress/\">GeekPress</a>, <a href=\"https://profiles.wordpress.org/geekzebre/\">geekzebre</a>, <a href=\"https://profiles.wordpress.org/geoffguillain/\">Geoff Guillain</a>, <a href=\"https://profiles.wordpress.org/geoffrey1963/\">Geoffrey</a>, <a href=\"https://profiles.wordpress.org/mamaduka/\">George Mamadashvili</a>, <a href=\"https://profiles.wordpress.org/georgestephanis/\">George Stephanis</a>, <a href=\"https://profiles.wordpress.org/geriux/\">geriux</a>, <a href=\"https://profiles.wordpress.org/gkibria69/\">gKibria</a>, <a href=\"https://profiles.wordpress.org/glendaviesnz/\">glendaviesnz</a>, <a href=\"https://profiles.wordpress.org/gmariani405/\">gmariani405</a>, <a href=\"https://profiles.wordpress.org/alinod/\">Gord</a>, <a href=\"https://profiles.wordpress.org/greatsaltlake/\">greatsaltlake</a>, <a href=\"https://profiles.wordpress.org/gziolo/\">Greg Ziółkowski</a>, <a href=\"https://profiles.wordpress.org/grzim/\">grzim</a>, <a href=\"https://profiles.wordpress.org/gumacahin/\">gumacahin</a>, <a href=\"https://profiles.wordpress.org/gunnard/\">gunnard</a>, <a href=\"https://profiles.wordpress.org/bordoni/\">Gustavo Bordoni</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/hareesh-pillai/\">Hareesh</a>, <a href=\"https://profiles.wordpress.org/hauvong/\">hauvong</a>, <a href=\"https://profiles.wordpress.org/hazdiego/\">Haz</a>, <a href=\"https://profiles.wordpress.org/helen/\">Helen Hou-Sandi</a>, <a href=\"https://profiles.wordpress.org/helmutwalker/\">helmutwalker</a>, <a href=\"https://profiles.wordpress.org/tejwanihemant/\">Hemant Tejwani</a>, <a href=\"https://profiles.wordpress.org/herregroen/\">Herre Groen</a>, <a href=\"https://profiles.wordpress.org/nonverbla/\">hirasso</a>, <a href=\"https://profiles.wordpress.org/hmabpera/\">hmabpera</a>, <a href=\"https://profiles.wordpress.org/howdy_mcgee/\">Howdy_McGee</a>, <a href=\"https://profiles.wordpress.org/hsingyuc7/\">hsingyuc7</a>, <a href=\"https://profiles.wordpress.org/iandunn/\">Ian Dunn</a>, <a href=\"https://profiles.wordpress.org/ianmjones/\">ianmjones</a>, <a href=\"https://profiles.wordpress.org/ibiza69/\">ibiza69</a>, <a href=\"https://profiles.wordpress.org/igorradovanov/\">Igor Radovanov</a>, <a href=\"https://profiles.wordpress.org/ingereck/\">ingereck</a>, <a href=\"https://profiles.wordpress.org/iprg/\">iprg</a>, <a href=\"https://profiles.wordpress.org/ipstenu/\">Ipstenu (Mika Epstein)</a>, <a href=\"https://profiles.wordpress.org/isabel_brison/\">Isabel Brison</a>, <a href=\"https://profiles.wordpress.org/ismailelkorchi/\">Ismail El Korchi</a>, <a href=\"https://profiles.wordpress.org/iviweb/\">iviweb</a>, <a href=\"https://profiles.wordpress.org/jdgrimes/\">J.D. Grimes</a>, <a href=\"https://profiles.wordpress.org/jadeddragoon/\">jadeddragoon</a>, <a href=\"https://profiles.wordpress.org/whyisjake/\">Jake Spurlock</a>, <a href=\"https://profiles.wordpress.org/jakeparis/\">jakeparis</a>, <a href=\"https://profiles.wordpress.org/jakubtyrcha/\">jakub.tyrcha</a>, <a href=\"https://profiles.wordpress.org/jamesgol/\">James Golovich</a>, <a href=\"https://profiles.wordpress.org/macmanx/\">James Huff</a>, <a href=\"https://profiles.wordpress.org/jameskoster/\">James Koster</a>, <a href=\"https://profiles.wordpress.org/jnylen0/\">James Nylen</a>, <a href=\"https://profiles.wordpress.org/jamesros161/\">James Rosado</a>, <a href=\"https://profiles.wordpress.org/janthiel/\">Jan Thiel</a>, <a href=\"https://profiles.wordpress.org/jason_the_adams/\">Jason Adams</a>, <a href=\"https://profiles.wordpress.org/madtownlems/\">Jason LeMahieu (MadtownLems)</a>, <a href=\"https://profiles.wordpress.org/viablethought/\">Jason Ryan</a>, <a href=\"https://profiles.wordpress.org/jaymanpandya/\">Jayman Pandya</a>, <a href=\"https://profiles.wordpress.org/audrasjb/\">Jean-Baptiste Audras</a>, <a href=\"https://profiles.wordpress.org/jeffr0/\">Jeff Chandler</a>, <a href=\"https://profiles.wordpress.org/jfarthing84/\">Jeff Farthing</a>, <a href=\"https://profiles.wordpress.org/jeffpaul/\">Jeff Paul</a>, <a href=\"https://profiles.wordpress.org/jmdodd/\">Jennifer M. Dodd</a>, <a href=\"https://profiles.wordpress.org/jdy68/\">Jenny Dupuy</a>, <a href=\"https://profiles.wordpress.org/jeremyfelt/\">Jeremy Felt</a>, <a href=\"https://profiles.wordpress.org/jeremyyip/\">Jeremy Yip</a>, <a href=\"https://profiles.wordpress.org/jeroenrotty/\">Jeroen Rotty</a>, <a href=\"https://profiles.wordpress.org/jessplease/\">Jessica Duarte</a>, <a href=\"https://profiles.wordpress.org/luminuu/\">Jessica Lyschik</a>, <a href=\"https://profiles.wordpress.org/joanrho/\">joanrho</a>, <a href=\"https://profiles.wordpress.org/joedolson/\">Joe Dolson</a>, <a href=\"https://profiles.wordpress.org/joemcgill/\">Joe McGill</a>, <a href=\"https://profiles.wordpress.org/joelclimbsthings/\">joelclimbsthings</a>, <a href=\"https://profiles.wordpress.org/joen/\">Joen Asmussen</a>, <a href=\"https://profiles.wordpress.org/jonkastonka/\">Johan Jonk Stenstr&#246;m</a>, <a href=\"https://profiles.wordpress.org/goaroundagain/\">Johannes Kinast</a>, <a href=\"https://profiles.wordpress.org/johnbillion/\">John Blackbourn</a>, <a href=\"https://profiles.wordpress.org/johnjamesjacoby/\">John James Jacoby</a>, <a href=\"https://profiles.wordpress.org/johnwatkins0/\">John Watkins</a>, <a href=\"https://profiles.wordpress.org/jonsurrell/\">Jon Surrell</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/jonathanstegall/\">Jonathan Stegall</a>, <a href=\"https://profiles.wordpress.org/spacedmonkey/\">Jonny Harris</a>, <a href=\"https://profiles.wordpress.org/jonoaldersonwp/\">Jono Alderson</a>, <a href=\"https://profiles.wordpress.org/joostdevalk/\">Joost de Valk</a>, <a href=\"https://profiles.wordpress.org/jordesign/\">jordesign</a>, <a href=\"https://profiles.wordpress.org/jorgefilipecosta/\">Jorge Costa</a>, <a href=\"https://profiles.wordpress.org/jomisica/\">Jos&#233; Miguel</a>, <a href=\"https://profiles.wordpress.org/jose64/\">Jose Luis</a>, <a href=\"https://profiles.wordpress.org/joseeyoast/\">Josee Wouters</a>, <a href=\"https://profiles.wordpress.org/accessiblejoe/\">Joseph Karr O&#039;Connor</a>, <a href=\"https://profiles.wordpress.org/chanthaboune/\">Josepha Haden</a>, <a href=\"https://profiles.wordpress.org/joshuatf/\">joshuatf</a>, <a href=\"https://profiles.wordpress.org/joshuawold/\">JoshuaWold</a>, <a href=\"https://profiles.wordpress.org/tai/\">JOTAKI, Taisuke</a>, <a href=\"https://profiles.wordpress.org/joyously/\">Joy</a>, <a href=\"https://profiles.wordpress.org/jsmoriss/\">JS Morisset</a>, <a href=\"https://profiles.wordpress.org/jsnajdr/\">jsnajdr</a>, <a href=\"https://profiles.wordpress.org/jrf/\">Juliette Reinders Folmer</a>, <a href=\"https://profiles.wordpress.org/juliobox/\">Julio Potier</a>, <a href=\"https://profiles.wordpress.org/justinahinon/\">Justin Ahinon</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/k3nsai/\">k3nsai</a>, <a href=\"https://profiles.wordpress.org/kafleg/\">kafleg</a>, <a href=\"https://profiles.wordpress.org/kevin940726/\">Kai Hao</a>, <a href=\"https://profiles.wordpress.org/trepmal/\">Kailey (trepmal)</a>, <a href=\"https://profiles.wordpress.org/akabarikalpesh/\">Kalpesh Akabari</a>, <a href=\"https://profiles.wordpress.org/karamcnair/\">kara.mcnair</a>, <a href=\"https://profiles.wordpress.org/vyskoczilova/\">Karolina Vyskocilova</a>, <a href=\"https://profiles.wordpress.org/ryelle/\">Kelly Choyce-Dwan</a>, <a href=\"https://profiles.wordpress.org/gwwar/\">Kerry Liu</a>, <a href=\"https://profiles.wordpress.org/tmfespresso/\">kimdcottrell</a>, <a href=\"https://profiles.wordpress.org/kirilzh/\">Kiril Zhelyazkov</a>, <a href=\"https://profiles.wordpress.org/kburgoine/\">Kirsty Burgoine</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/knutsp/\">Knut Sparhell</a>, <a href=\"https://profiles.wordpress.org/hwk-fr/\">Konrad Chmielewski</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/kurtpayne/\">Kurt Payne</a>, <a href=\"https://profiles.wordpress.org/kbjohnson90/\">Kyle B. Johnson</a>, <a href=\"https://profiles.wordpress.org/notlaura/\">Lara Schenck</a>, <a href=\"https://profiles.wordpress.org/laurelfulford/\">laurelfulford</a>, <a href=\"https://profiles.wordpress.org/laxman-prajapati/\">Laxman Prajapati</a>, <a href=\"https://profiles.wordpress.org/leogermani/\">leogermani</a>, <a href=\"https://profiles.wordpress.org/levdbas/\">Levdbas</a>, <a href=\"https://profiles.wordpress.org/litemotiv/\">litemotiv</a>, <a href=\"https://profiles.wordpress.org/lovor/\">Lovro Hrust</a>, <a href=\"https://profiles.wordpress.org/lucasbustamante/\">lucasbustamante</a>, <a href=\"https://profiles.wordpress.org/_luigi/\">Luigi Cavalieri</a>, <a href=\"https://profiles.wordpress.org/lpawlik/\">Lukas Pawlik</a>, <a href=\"https://profiles.wordpress.org/lukecarbis/\">Luke Carbis</a>, <a href=\"https://profiles.wordpress.org/lukecavanagh/\">Luke Cavanagh</a>, <a href=\"https://profiles.wordpress.org/happiryu/\">Luke Walczak</a>, <a href=\"https://profiles.wordpress.org/oellin/\">Magali</a>, <a href=\"https://profiles.wordpress.org/magnuswebdesign/\">magnuswebdesign</a>, <a href=\"https://profiles.wordpress.org/mahfuz01/\">Mahafuz</a>, <a href=\"https://profiles.wordpress.org/akramipro/\">Mahdi Akrami</a>, <a href=\"https://profiles.wordpress.org/malinajirka/\">malinajirka</a>, <a href=\"https://profiles.wordpress.org/mallorydxw/\">mallorydxw</a>, <a href=\"https://profiles.wordpress.org/tomdxw/\">mallorydxw-old</a>, <a href=\"https://profiles.wordpress.org/manzoorwanijk/\">Manzoor Wani</a>, <a href=\"https://profiles.wordpress.org/manzurahammed/\">Manzur Ahammed</a>, <a href=\"https://profiles.wordpress.org/marcelo2605/\">marcelo2605</a>, <a href=\"https://profiles.wordpress.org/marcio-zebedeu/\">Marcio Zebedeu</a>, <a href=\"https://profiles.wordpress.org/netweblogic/\">Marcus</a>, <a href=\"https://profiles.wordpress.org/mkaz/\">Marcus Kazmierczak</a>, <a href=\"https://profiles.wordpress.org/chaton666/\">Marie Comet</a>, <a href=\"https://profiles.wordpress.org/marijnkoopman/\">Marijn Koopman</a>, <a href=\"https://profiles.wordpress.org/tyxla/\">Marin Atanasov</a>, <a href=\"https://profiles.wordpress.org/clorith/\">Marius Jensen</a>, <a href=\"https://profiles.wordpress.org/mdwolinski/\">Mark D Wolinski</a>, <a href=\"https://profiles.wordpress.org/markhowellsmead/\">Mark Howells-Mead</a>, <a href=\"https://profiles.wordpress.org/markscottrobson/\">Mark Robson</a>, <a href=\"https://profiles.wordpress.org/mapk/\">Mark Uraine</a>, <a href=\"https://profiles.wordpress.org/vindl/\">Marko Andrijasevic</a>, <a href=\"https://profiles.wordpress.org/flootr/\">Markus</a>, <a href=\"https://profiles.wordpress.org/marybaum/\">Mary Baum</a>, <a href=\"https://profiles.wordpress.org/mberard/\">Mathieu Berard Smartfire</a>, <a href=\"https://profiles.wordpress.org/imath/\">Mathieu Viet</a>, <a href=\"https://profiles.wordpress.org/matveb/\">Matias Ventura</a>, <a href=\"https://profiles.wordpress.org/mattchowning/\">Matt Chowning</a>, <a href=\"https://profiles.wordpress.org/matt/\">Matt Mullenweg</a>, <a href=\"https://profiles.wordpress.org/mattwiebe/\">Matt Wiebe</a>, <a href=\"https://profiles.wordpress.org/maxpertici/\">Maxime Pertici</a>, <a href=\"https://profiles.wordpress.org/mayankmajeji/\">Mayank Majeji</a>, <a href=\"https://profiles.wordpress.org/mdrockwell/\">mdrockwell</a>, <a href=\"https://profiles.wordpress.org/megphillips91/\">Meg Phillips</a>, <a href=\"https://profiles.wordpress.org/megabyterose/\">Megan</a>, <a href=\"https://profiles.wordpress.org/meher/\">Meher Bala</a>, <a href=\"https://profiles.wordpress.org/mehrshaddarzi/\">Mehrshad Darzi</a>, <a href=\"https://profiles.wordpress.org/mehulkaklotar/\">Mehul Kaklotar</a>, <a href=\"https://profiles.wordpress.org/melchoyce/\">Mel Choyce-Dwan</a>, <a href=\"https://profiles.wordpress.org/mendezcode/\">mendezcode</a>, <a href=\"https://profiles.wordpress.org/mgol/\">mgol</a>, <a href=\"https://profiles.wordpress.org/michael-arestad/\">Michael Arestad</a>, <a href=\"https://profiles.wordpress.org/mbabker/\">Michael Babker</a>, <a href=\"https://profiles.wordpress.org/mcsf/\">Miguel Fonseca</a>, <a href=\"https://profiles.wordpress.org/miinasikk/\">Miina Sikk</a>, <a href=\"https://profiles.wordpress.org/mikeschroder/\">Mike Schroder</a>, <a href=\"https://profiles.wordpress.org/mihdan/\">Mikhail Kobzarev</a>, <a href=\"https://profiles.wordpress.org/dimadin/\">Milan Dinić</a>, <a href=\"https://profiles.wordpress.org/milana_cap/\">Milana Cap</a>, <a href=\"https://profiles.wordpress.org/0mirka00/\">mirka</a>, <a href=\"https://profiles.wordpress.org/mmuyskens/\">mmuyskens</a>, <a href=\"https://profiles.wordpress.org/daddou/\">Mohamed El Amine DADDOU</a>, <a href=\"https://profiles.wordpress.org/monika/\">Monika</a>, <a href=\"https://profiles.wordpress.org/monikarao/\">Monika Rao</a>, <a href=\"https://profiles.wordpress.org/morenaf/\">morenaf</a>, <a href=\"https://profiles.wordpress.org/mrjoeldean/\">mrjoeldean</a>, <a href=\"https://profiles.wordpress.org/mukesh27/\">Mukesh Panchal</a>, <a href=\"https://profiles.wordpress.org/munyagu/\">munyagu</a>, <a href=\"https://profiles.wordpress.org/mzorz/\">mzorz</a>, <a href=\"https://profiles.wordpress.org/naveen17797/\">Naveen</a>, <a href=\"https://profiles.wordpress.org/krstarica/\">net</a>, <a href=\"https://profiles.wordpress.org/nicegamer7/\">nicegamer7</a>, <a href=\"https://profiles.wordpress.org/nre/\">nicky</a>, <a href=\"https://profiles.wordpress.org/nico23/\">Nico</a>, <a href=\"https://profiles.wordpress.org/nico_martin/\">Nico Martin</a>, <a href=\"https://profiles.wordpress.org/nicolalaserra/\">Nicola Laserra</a>, <a href=\"https://profiles.wordpress.org/rahe/\">Nicolas Juen</a>, <a href=\"https://profiles.wordpress.org/nicolaskulka/\">NicolasKulka</a>, <a href=\"https://profiles.wordpress.org/ntsekouras/\">Nik Tsekouras</a>, <a href=\"https://profiles.wordpress.org/noahtallen/\">Noah Allen</a>, <a href=\"https://profiles.wordpress.org/nwjames/\">nwjames</a>, <a href=\"https://profiles.wordpress.org/oakesjosh/\">oakesjosh</a>, <a href=\"https://profiles.wordpress.org/oglekler/\">Olga Gleckler</a>, <a href=\"https://profiles.wordpress.org/otshelnik-fm/\">Otshelnik-Fm</a>, <a href=\"https://profiles.wordpress.org/ovidiul/\">ovidiul</a>, <a href=\"https://profiles.wordpress.org/oxyc/\">oxyc</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/swissspidy/\">Pascal Birchler</a>, <a href=\"https://profiles.wordpress.org/patopaiar/\">patopaiar</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/pabline/\">Paul Bunkham</a>, <a href=\"https://profiles.wordpress.org/paulschreiber/\">Paul Schreiber</a>, <a href=\"https://profiles.wordpress.org/pschrottky/\">Paul Von Schrottky</a>, <a href=\"https://profiles.wordpress.org/pawki07/\">pawki07</a>, <a href=\"https://profiles.wordpress.org/pbking/\">pbking</a>, <a href=\"https://profiles.wordpress.org/pedromendonca/\">Pedro Mendon&#231;a</a>, <a href=\"https://profiles.wordpress.org/gungeekatx/\">Pete Nelson</a>, <a href=\"https://profiles.wordpress.org/psmits1567/\">Peter Smits</a>, <a href=\"https://profiles.wordpress.org/peterwilsoncc/\">Peter Wilson</a>, <a href=\"https://profiles.wordpress.org/pinkalbeladiya/\">Pinkal Devani</a>, <a href=\"https://profiles.wordpress.org/boniu91/\">Piotrek Boniu</a>, <a href=\"https://profiles.wordpress.org/freewebmentor/\">Prem Tiwari</a>, <a href=\"https://profiles.wordpress.org/presstoke/\">presstoke</a>, <a href=\"https://profiles.wordpress.org/prettyboymp/\">prettyboymp</a>, <a href=\"https://profiles.wordpress.org/princeahmed/\">Prince</a>, <a href=\"https://profiles.wordpress.org/pwallner/\">pwallner</a>, <a href=\"https://profiles.wordpress.org/pypwalters/\">pypwalters</a>, <a href=\"https://profiles.wordpress.org/itsjonq/\">Q</a>, <a href=\"https://profiles.wordpress.org/r-a-y/\">r-a-y</a>, <a href=\"https://profiles.wordpress.org/rachelbaker/\">Rachel Baker</a>, <a href=\"https://profiles.wordpress.org/rafaelgalani/\">Rafael Galani</a>, <a href=\"https://profiles.wordpress.org/rafhun/\">rafhun</a>, <a href=\"https://profiles.wordpress.org/ramiy/\">Rami Yushuvaev</a>, <a href=\"https://profiles.wordpress.org/rahmohn/\">Ramon Ahnert</a>, <a href=\"https://profiles.wordpress.org/ratneshk/\">ratneshk</a>, <a href=\"https://profiles.wordpress.org/jontyravi/\">Ravi Vaghela</a>, <a href=\"https://profiles.wordpress.org/ravipatel/\">ravipatel</a>, <a href=\"https://profiles.wordpress.org/retrofox/\">retrofox</a>, <a href=\"https://profiles.wordpress.org/reardestani/\">Reza Ardestani</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/rinatkhaziev/\">Rinat Khaziev</a>, <a href=\"https://profiles.wordpress.org/noisysocks/\">Robert Anderson</a>, <a href=\"https://profiles.wordpress.org/rodrigosprimo/\">Rodrigo Primo</a>, <a href=\"https://profiles.wordpress.org/rogertheriault/\">Roger Theriault</a>, <a href=\"https://profiles.wordpress.org/roger995/\">roger995</a>, <a href=\"https://profiles.wordpress.org/rolfsiebers/\">Rolf Siebers</a>, <a href=\"https://profiles.wordpress.org/romain-d/\">Romain</a>, <a href=\"https://profiles.wordpress.org/burtrw/\">Ronnie Burt</a>, <a href=\"https://profiles.wordpress.org/magicroundabout/\">Ross Wintle</a>, <a href=\"https://profiles.wordpress.org/ryan/\">Ryan Boren</a>, <a href=\"https://profiles.wordpress.org/sebastienserre/\">S&#233;bastien SERRE</a>, <a href=\"https://profiles.wordpress.org/soean/\">S&#246;ren Wrede</a>, <a href=\"https://profiles.wordpress.org/stodorovic/\">Sa&#353;a</a>, <a href=\"https://profiles.wordpress.org/sanketchodavadiya/\">Sanket Chodavadiya</a>, <a href=\"https://profiles.wordpress.org/sarahricker/\">Sarah Ricker</a>, <a href=\"https://profiles.wordpress.org/sarayourfriend/\">sarayourfriend</a>, <a href=\"https://profiles.wordpress.org/wonderboymusic/\">Scott Taylor</a>, <a href=\"https://profiles.wordpress.org/sebastianpisula/\">Sebastian Pisula</a>, <a href=\"https://profiles.wordpress.org/sebsz/\">SeBsZ</a>, <a href=\"https://profiles.wordpress.org/sergeybiryukov/\">Sergey Biryukov</a>, <a href=\"https://profiles.wordpress.org/yakimun/\">Sergey Yakimov</a>, <a href=\"https://profiles.wordpress.org/sergiomdgomes/\">sergiomdgomes</a>, <a href=\"https://profiles.wordpress.org/shahinsid07/\">Shahin Sid</a>, <a href=\"https://profiles.wordpress.org/shaunandrews/\">shaunandrews</a>, <a href=\"https://profiles.wordpress.org/shital-patel/\">Shital Marakana</a>, <a href=\"https://profiles.wordpress.org/sirstuey/\">SirStuey</a>, <a href=\"https://profiles.wordpress.org/slaffik/\">Slava Abakumov</a>, <a href=\"https://profiles.wordpress.org/snapfractalpop/\">snapfractalpop</a>, <a href=\"https://profiles.wordpress.org/souri_wpaustria/\">souri_wpaustria</a>, <a href=\"https://profiles.wordpress.org/stefanjoebstl/\">stefanjoebstl</a>, <a href=\"https://profiles.wordpress.org/ryokuhi/\">Stefano Minoia</a>, <a href=\"https://profiles.wordpress.org/hypest/\">Stefanos Togoulidis</a>, <a href=\"https://profiles.wordpress.org/sabernhardt/\">Stephen Bernhardt</a>, <a href=\"https://profiles.wordpress.org/netweb/\">Stephen Edgar</a>, <a href=\"https://profiles.wordpress.org/stevenkword/\">Steven Word</a>, <a href=\"https://profiles.wordpress.org/subrataemfluence/\">Subrata Sarkar</a>, <a href=\"https://profiles.wordpress.org/sumitsingh/\">Sumit Singh</a>, <a href=\"https://profiles.wordpress.org/quadthemes/\">Sunny</a>, <a href=\"https://profiles.wordpress.org/cybr/\">Sybre Waaijer</a>, <a href=\"https://profiles.wordpress.org/synchro/\">Synchro</a>, <a href=\"https://profiles.wordpress.org/t-p/\">t-p</a>, <a href=\"https://profiles.wordpress.org/inc2734/\">Takashi Kitajima</a>, <a href=\"https://profiles.wordpress.org/karmatosed/\">Tammie Lister</a>, <a href=\"https://profiles.wordpress.org/tanvirul/\">Tanvirul Haque</a>, <a href=\"https://profiles.wordpress.org/voboghure/\">Tapan</a>, <a href=\"https://profiles.wordpress.org/teamdnk/\">TeamDNK</a>, <a href=\"https://profiles.wordpress.org/terriann/\">Terri Ann</a>, <a href=\"https://profiles.wordpress.org/tweetythierry/\">Thierry Muller</a>, <a href=\"https://profiles.wordpress.org/thorlentz/\">thorlentz</a>, <a href=\"https://profiles.wordpress.org/tigertech/\">tigertech</a>, <a href=\"https://profiles.wordpress.org/hedgefield/\">Tim Hengeveld</a>, <a href=\"https://profiles.wordpress.org/tnolte/\">Tim Nolte</a>, <a href=\"https://profiles.wordpress.org/sippis/\">Timi Wahalahti</a>, <a href=\"https://profiles.wordpress.org/timothyblynjacobs/\">Timothy Jacobs</a>, <a href=\"https://profiles.wordpress.org/tinodidriksen/\">tinodidriksen</a>, <a href=\"https://profiles.wordpress.org/tkama/\">Tkama</a>, <a href=\"https://profiles.wordpress.org/tmatsuur/\">tmatsuur</a>, <a href=\"https://profiles.wordpress.org/tz-media/\">Tobias Zimpel</a>, <a href=\"https://profiles.wordpress.org/tobiasbg/\">TobiasBg</a>, <a href=\"https://profiles.wordpress.org/tobifjellner/\">tobifjellner (Tor-Bjorn Fjellner)</a>, <a href=\"https://profiles.wordpress.org/skithund/\">Toni Viemer&#246;</a>, <a href=\"https://profiles.wordpress.org/arcangelini/\">Tony A</a>, <a href=\"https://profiles.wordpress.org/hellofromtonya/\">Tonya Mork</a>, <a href=\"https://profiles.wordpress.org/tonysandwich/\">tonysandwich</a>, <a href=\"https://profiles.wordpress.org/zodiac1978/\">Torsten Landsiedel</a>, <a href=\"https://profiles.wordpress.org/toru/\">Toru Miki</a>, <a href=\"https://profiles.wordpress.org/transl8or/\">transl8or</a>, <a href=\"https://profiles.wordpress.org/tylertork/\">Tyler Tork</a>, <a href=\"https://profiles.wordpress.org/grapplerulrich/\">Ulrich</a>, <a href=\"https://profiles.wordpress.org/umangvaghela123/\">Umang Vaghela</a>, <a href=\"https://profiles.wordpress.org/vandestouwe/\">vandestouwe</a>, <a href=\"https://profiles.wordpress.org/vcanales/\">vcanales</a>, <a href=\"https://profiles.wordpress.org/vipulc2/\">Vipul Chandel</a>, <a href=\"https://profiles.wordpress.org/vladytimy/\">Vlad T</a>, <a href=\"https://profiles.wordpress.org/webcommsat/\">webcommsat AbhaNonStopNewsUK</a>, <a href=\"https://profiles.wordpress.org/webmandesign/\">WebMan Design &#124; Oliver Juhas</a>, <a href=\"https://profiles.wordpress.org/wendyjchen/\">Wendy Chen</a>, <a href=\"https://profiles.wordpress.org/wesselvandenberg/\">wesselvandenberg</a>, <a href=\"https://profiles.wordpress.org/westonruter/\">Weston Ruter</a>, <a href=\"https://profiles.wordpress.org/wallstead/\">Willis Allstead</a>, <a href=\"https://profiles.wordpress.org/worldedu/\">worldedu</a>, <a href=\"https://profiles.wordpress.org/wponlinesupport/\">WP OnlineSupport</a>, <a href=\"https://profiles.wordpress.org/tikifez/\">Xristopher Anderton</a>, <a href=\"https://profiles.wordpress.org/yannkozon/\">Yann Kozon</a>, <a href=\"https://profiles.wordpress.org/yoavf/\">Yoav Farhi</a>, <a href=\"https://profiles.wordpress.org/yscik/\">yscik</a>, <a href=\"https://profiles.wordpress.org/fierevere/\">Yui</a>, <a href=\"https://profiles.wordpress.org/yuliyan/\">yuliyan</a>, <a href=\"https://profiles.wordpress.org/zebulan/\">Zebulan Stanphill</a>, and <a href=\"https://profiles.wordpress.org/zieladam/\">zieladam</a>.\n\n\n\n<p></p>\n\n\n\n<div class=\"wp-block-group has-background\" style=\"background-color:#0a5b89\"><div class=\"wp-block-group__inner-container\">\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<p class=\"has-text-align-center has-white-color has-text-color has-large-font-size\"><strong>Code is poetry.</strong></p>\n</div></div>\n\n\n\n<p></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"9888\";s: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:66:\"\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:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"People of WordPress: Olga Gleckler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"https://wordpress.org/news/2021/03/people-of-wordpress-olga-gleckler/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_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, 08 Mar 2021 22:30:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:4:{i:0;a:5:{s:4:\"data\";s:9:\"Community\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:9:\"heropress\";s: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:10:\"Interviews\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:19:\"People of WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=9875\";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:159:\"The latest edition of our People in WordPress series features developer Olga Gleckler, who grew her interest in computers into a career as a tech entrepreneur.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"webcommsat AbhaNonStopNewsUK\";s: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:19992:\"\n<p><em>WordPress is open source software, maintained by a global network of contributors. There are many examples of how WordPress has changed people’s lives for the better. In this monthly series, we share some of the amazing stories that are lesser-known.</em></p>\n\n\n\n<p><strong>From a natural interest in computers and fixing things as a young woman, Olga Gleckler from St Petersburg, Russia, found WordPress took her on a journey to becoming a successful female tech entrepreneur. On International Women’s Day, we share her story.&nbsp;&nbsp;</strong></p>\n\n\n\n<figure class=\"wp-block-image size-large is-resized\"><img loading=\"lazy\" src=\"https://i2.wp.com/wordpress.org/news/files/2021/03/WCEU-2020-online.jpg?resize=580%2C768&#038;ssl=1\" alt=\"Olga with a WordCamp Vienna t-shirt\" class=\"wp-image-9878\" width=\"580\" height=\"768\" srcset=\"https://i2.wp.com/wordpress.org/news/files/2021/03/WCEU-2020-online.jpg?resize=773%2C1024&amp;ssl=1 773w, https://i2.wp.com/wordpress.org/news/files/2021/03/WCEU-2020-online.jpg?resize=226%2C300&amp;ssl=1 226w, https://i2.wp.com/wordpress.org/news/files/2021/03/WCEU-2020-online.jpg?resize=768%2C1018&amp;ssl=1 768w, https://i2.wp.com/wordpress.org/news/files/2021/03/WCEU-2020-online.jpg?resize=1159%2C1536&amp;ssl=1 1159w, https://i2.wp.com/wordpress.org/news/files/2021/03/WCEU-2020-online.jpg?resize=1546%2C2048&amp;ssl=1 1546w, https://i2.wp.com/wordpress.org/news/files/2021/03/WCEU-2020-online.jpg?w=1932&amp;ssl=1 1932w, https://i2.wp.com/wordpress.org/news/files/2021/03/WCEU-2020-online.jpg?w=1264&amp;ssl=1 1264w\" sizes=\"(max-width: 580px) 100vw, 580px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<h2><strong>Finding your path can take longer than you expect</strong></h2>\n\n\n\n<p>From the age of 15, Olga found herself under pressure to find a free place for her professional studies. She said: “I didn’t know how high or low my chances were even if I had very good marks. I could have been just the biggest fish in a small pond. But anyway, I made up my mind to go to technical school.”</p>\n\n\n\n<p>On leaving school in St Petersburg with her certificate, Olga felt her knowledge of opportunities was very narrow. She had pictured being an ecologist or guide translator based on the subjects she had been taught at school. There was also an advertising boom in Russia and she began to explore this as a career avenue. She had developed her computer skills and found opportunities to practise by helping her teachers with administrative work.</p>\n\n\n\n<p>Though she did not have access to any formal career advice, her journey led her into programming. She said: “The range of technical schools was not wide. I spent four years studying transistor markings, soldering and drawing PCB layouts. Programming courses using Pascal didn&#8217;t do anything useful with it.”</p>\n\n\n\n<p>A lack of suitable access to English-language courses made things harder for Olga. She was determined that she would master the language later in her life. In the meantime, she left technical school with an honors degree and improved typing skills.</p>\n\n\n\n<p>“I faced it was a wild, unfriendly market. I didn’t know how to recognize a genuine job offer or how to avoid the bad ones. It was difficult and I don’t know how long I would’ve looked for work without help.”</p>\n\n\n\n<h2><strong>Think differently to find where you belong</strong></h2>\n\n\n\n<p>Olga&#8217;s father worked in an IT company and was able to give her some advice and help with potential introductions. When she was still studying, he suggested her strong technical skills might be useful as a substitute typist. When she finished her studies, he helped her apply for a job updating a legal system on clients’ computers.<br><br>Six months later, she got a full-time job in the same service department. She liked her position and her clients. However, she was given friendly advice that without a university degree she would not be able to have any further promotions.</p>\n\n\n\n<p>At this time, Olga was trying to study PHP from a book. She found it very exciting at first, but a lot of their functions did not give her explanations on how to build something useful. She found when she tried to build practical items from book reading, it did not always make sense and the solutions would often fail.&nbsp;</p>\n\n\n\n<p>She said: “It was hard to admit a failure even to myself and it was nagging me for a long time. I had to choose something I could handle, that I was interested in and could afford. It turned out to be advertising.”</p>\n\n\n\n<p>She spent most of the family’s holidays on learning sessions during the next six years. Olga recalled: “It was tricky for my husband to make me leave a computer, once I was glued to it, so he bought me my first laptop. English was still hard for me, I got high marks through just memorizing all the words in a textbook and how they should sound.”</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p><strong>Doubting your professional skills can happen when you are at home isolated looking after children. Keeping up your interests is important.</strong></p></blockquote>\n\n\n\n<p>Olga’s life took a change after having a new baby and she spent three years doubting her professional skills and her chances of getting a good job. She tried to get back into other interests through studying, baking and drawing, but found ‘the pram was pulling me back’. She found she became very isolated and felt less able to contribute as the family was relying on her husband’s income as she tried to focus on looking forward.</p>\n\n\n\n<p>She said: “I was convinced (and saw) that not too many companies wanted a woman in the office, who with a small baby might need lots of leave.”</p>\n\n\n\n<p>She finished her education when she returned to work after three years caring for her son. She secured a promotion but with changes in the company’s staffing, things were tense. She found the difficulties there had become more heightened and felt that young female colleagues were treated as ‘pieces of furniture’ by one manager. She did not want to stay in this environment and in a few months time decided to leave.</p>\n\n\n\n<h2><strong>Your next chapter may be nearby</strong></h2>\n\n\n\n<p>Determined to not repeat this type of experience, Olga looked at the brighter side. She said: “I wanted to be a marketer. Knowing how tricky it is to sell intangibles, I wanted a solid product to work with.”&nbsp;</p>\n\n\n\n<p>It turned out to be more difficult to find a job outside traditional IT as a young mother. Some human resource officers advised her to remain within the technology arena.</p>\n\n\n\n<p>Olga remained hopeful and continued to study hard. She had many learning experiences along the way, which she hopes others can learn from too. One was setting a low bar to employers. She said: “Companies I worked in wanted to get all publicity and sales increases achieved through deductions from my salary.” This happened once and the next time she was in this situation she asked specifically about the budget before signing up. &#8220;I was assured this would not be the case, but again I found the budget for publicity came out of my wages. It was a tough period of disappointments. So when I was offered a part-time administrative job with basic sick leave, I took it gladly as a reprieve.”</p>\n\n\n\n<p>The job was far from home and involved a lot of travelling. Olga spent two to three hours a day on buses with Harry Potter audio books for company. “In these traffic jams, I started to feel English at last and loved it. It gave me a freedom no money can buy. Life was getting better.” </p>\n\n\n\n<p>Though the job did not pay highly, it gave her something valuable &#8211; a working website. After her boss and the developer parted company, she was asked to maintain the site. Through some studying and reverse engineering, she discovered how it worked and it gave her an insight into how to write simple websites from scratch.</p>\n\n\n\n<p>Olga’s first encounter with JavaScript wasn’t easy: “My first JavaScript calculator almost made me crazy, but I pursued it.”</p>\n\n\n\n<p>Quickly she started to get small tasks from friends and relatives, usually to solve some urgent problems and started to meet popular content management systems. One of the first she met with was WordPress. There was an issue in a website theme used by a website which had been changed and not maintained. It took a whole weekend to solve, but she was determined to work it out. Back then, WordPress was ‘just a system’. She didn’t know then how much it was to become part of her life.</p>\n\n\n\n<p>Olga spent the next two years in this role. As time went on, she started to feel worried and less satisfied with the work. The last straw for her was a negative statement from her boss, who was not a programmer and who hadn’t seen any of the work done on the website. She felt the approach was unfair as she had done extensive work on the site. She recalls: “I became angry, but it was exactly what I needed to move jobs.”</p>\n\n\n\n<p>When Olga was job hunting, she didn&#8217;t feel she had the courage to apply for a developer’s role, despite the learning and work she had already done. So instead she started working on projects where she felt she was more like a ‘seller of box-ready websites’. It was another tough half a year for her with a lot of work, low payment and plans not turning out as she had hoped. On top of long hours, she ended up with pneumonia. She said: “I see now that I was doing a disservice to customers, websites are not a microwave meal &#8211; quick, cheap and dummy. There was no life in the sites without a lot of work which no one was willing to buy. Most of the sites I sold back then died after the first year and they never were truly alive and useful.”</p>\n\n\n\n<h2><strong>You need to be brave and have courage</strong></h2>\n\n\n\n<figure class=\"wp-block-image size-large is-resized\"><img loading=\"lazy\" src=\"https://i2.wp.com/wordpress.org/news/files/2021/03/Berlin-2019.jpg?resize=632%2C422&#038;ssl=1\" alt=\"Olga in Berlin wearing the WordPress Code is Poetry lanyard and a WordCamp t-shirt\" class=\"wp-image-9879\" width=\"632\" height=\"422\" srcset=\"https://i2.wp.com/wordpress.org/news/files/2021/03/Berlin-2019.jpg?resize=1024%2C684&amp;ssl=1 1024w, https://i2.wp.com/wordpress.org/news/files/2021/03/Berlin-2019.jpg?resize=300%2C200&amp;ssl=1 300w, https://i2.wp.com/wordpress.org/news/files/2021/03/Berlin-2019.jpg?resize=768%2C513&amp;ssl=1 768w, https://i2.wp.com/wordpress.org/news/files/2021/03/Berlin-2019.jpg?resize=1536%2C1025&amp;ssl=1 1536w, https://i2.wp.com/wordpress.org/news/files/2021/03/Berlin-2019.jpg?w=2048&amp;ssl=1 2048w, https://i2.wp.com/wordpress.org/news/files/2021/03/Berlin-2019.jpg?w=1264&amp;ssl=1 1264w, https://i2.wp.com/wordpress.org/news/files/2021/03/Berlin-2019.jpg?w=1896&amp;ssl=1 1896w\" sizes=\"(max-width: 632px) 100vw, 632px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<p>Olga really wanted a developer job but seeking jobs of this type was very frustrating. From the job adverts she found, it felt like most IT companies were asking for geniuses who already knew a lot of technologies and frameworks. She found this very demotivating.</p>\n\n\n\n<p>She then found a job offer on a website outside the most popular job portals and it seemed like a perfect fit. They wanted someone with experience to write from scratch, understand someone else’s code and maintain it, with an ability to translate technical documentation and articles, and make simple designs for printing products. After completing a trial task, she was taken on, and enjoyed a better salary, in a calm environment with good colleagues and without the requirement for a lot of extra hours.&nbsp;</p>\n\n\n\n<p>The advert turned out to be a direct ad from one of the sales departments in a technology company. By succeeding in the task set, Olga had bypassed the Human Resources team which she felt&nbsp;would not normally have considered her.&nbsp;</p>\n\n\n\n<p>Her boss agreed to her working remotely most of the time. It solved any potential leave problems which Olga had thought may be an obstacle.&nbsp;</p>\n\n\n\n<p>For Olga it had been 14 years since the original decision to become a programmer and it was only the beginning.&nbsp;</p>\n\n\n\n<p>After a few years at what she describes as an ‘amazing experience’ in this workplace, Olga felt able to move on to her next challenge as a developer.</p>\n\n\n\n<h2><strong>Decision-making can benefit from wider knowledge</strong></h2>\n\n\n\n<p>After working with different systems Olga became sure that WordPress is the best CMS for developers and clients. But she was disappointed to find that the ease of use meant that good code was not always a priority for some of the sites she looked at.&nbsp;</p>\n\n\n\n<p>“The biggest flaw of WordPress &#8211; it’s so easy to make things work that some may feel they don’t need to bother to do things right, but this becomes a problem later.”</p>\n\n\n\n<p>In custom themes for a site, she also saw sites being made and clients left without any further support, or items hard coded when clients actually needed more control to change regularly.</p>\n\n\n\n<p>Olga used to rely on examples she could easily find, documentation and search engines to improve her understanding in using WordPress. She discovered that just by searching for a specific feature or a solution, you can miss the whole picture.&nbsp;</p>\n\n\n\n<p>She turned to online courses to get more comprehensive knowledge and then started to attend WordPress events, firstly online and then by foot, trains and planes! She discovered a worldwide community that was very much alive. She didn’t know when she started studying online materials and attending discussions that she would end up contributing herself to the <a href=\"https://learn.wordpress.org/\">Learn WordPress</a> platform a few years later.</p>\n\n\n\n<p>WordCamps and contributor days became a big part of her life. From her early days attending events and starting out contributing to WordPress, she is an active member of the WordPress.org Global Marketing and Polyglots Teams, and supported the recent WordPress release. She is just beginning her first WordCamp organiser experience, joining WordCamp Europe 2021 on the Contribute Team. </p>\n\n\n\n<figure class=\"wp-block-image size-large is-resized\"><img loading=\"lazy\" src=\"https://i1.wp.com/wordpress.org/news/files/2021/03/St-Petersburg-2018.jpg?resize=632%2C602&#038;ssl=1\" alt=\"Olga next to a banner of WordCamp St Petersburg 2018\" class=\"wp-image-9883\" width=\"632\" height=\"602\" srcset=\"https://i1.wp.com/wordpress.org/news/files/2021/03/St-Petersburg-2018.jpg?resize=1024%2C976&amp;ssl=1 1024w, https://i1.wp.com/wordpress.org/news/files/2021/03/St-Petersburg-2018.jpg?resize=300%2C286&amp;ssl=1 300w, https://i1.wp.com/wordpress.org/news/files/2021/03/St-Petersburg-2018.jpg?resize=768%2C732&amp;ssl=1 768w, https://i1.wp.com/wordpress.org/news/files/2021/03/St-Petersburg-2018.jpg?resize=1536%2C1464&amp;ssl=1 1536w, https://i1.wp.com/wordpress.org/news/files/2021/03/St-Petersburg-2018.jpg?resize=2048%2C1951&amp;ssl=1 2048w, https://i1.wp.com/wordpress.org/news/files/2021/03/St-Petersburg-2018.jpg?w=1264&amp;ssl=1 1264w, https://i1.wp.com/wordpress.org/news/files/2021/03/St-Petersburg-2018.jpg?w=1896&amp;ssl=1 1896w\" sizes=\"(max-width: 632px) 100vw, 632px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<p>Olga said: “Through the wider WordPress community, I knew not only where to look but also whom to ask. Most importantly, I found allies who don’t think I’m going crazy by speaking with delight about work, and with whom I share a passion and fondness for WordPress. This is what matters.</p>\n\n\n\n<p>“Now, after more than seven years of full time development, I am still enjoying endless learning, frequent discoveries, mistakes and an impassioned wish to do better.”</p>\n\n\n\n<p>This and a desire to help others use WordPress.org is part of Olga’s continued contribution to its Support and Marketing Teams, and led her to be involved in the Release Marketing questions and answers in 2020.</p>\n\n\n\n<h2><strong>There is no chequered flag on the way</strong></h2>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" width=\"632\" height=\"946\" src=\"https://i1.wp.com/wordpress.org/news/files/2021/03/Berlin-2019-1.jpg?resize=632%2C946&#038;ssl=1\" alt=\"Olga at WordCamp Europe in Berlin in 2019\" class=\"wp-image-9881\" srcset=\"https://i1.wp.com/wordpress.org/news/files/2021/03/Berlin-2019-1.jpg?resize=684%2C1024&amp;ssl=1 684w, https://i1.wp.com/wordpress.org/news/files/2021/03/Berlin-2019-1.jpg?resize=200%2C300&amp;ssl=1 200w, https://i1.wp.com/wordpress.org/news/files/2021/03/Berlin-2019-1.jpg?resize=768%2C1151&amp;ssl=1 768w, https://i1.wp.com/wordpress.org/news/files/2021/03/Berlin-2019-1.jpg?resize=1025%2C1536&amp;ssl=1 1025w, https://i1.wp.com/wordpress.org/news/files/2021/03/Berlin-2019-1.jpg?w=1367&amp;ssl=1 1367w, https://i1.wp.com/wordpress.org/news/files/2021/03/Berlin-2019-1.jpg?w=1264&amp;ssl=1 1264w\" sizes=\"(max-width: 632px) 100vw, 632px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<p>The road to freedom and becoming her own boss has not been easy for Olga. It is the path that got her where she is today, and she continues to find joy in it. She retains the lessons she’s learned and is always hungry to learn more.</p>\n\n\n\n<p>&nbsp;“I travelled through a very uneven path, with a lot of obstacles and noise, but for me it’s like a kaleidoscope where a little turn presents a new picture, a new “ah-ha” moment, new excitement after seemingly pointless efforts.”&nbsp;</p>\n\n\n\n<p>She added: “When in doubt I remind myself about David Ogilvy (generally considered the Founding Father of the modern advertising industry) who tried a lot of things before he struck gold with advertising, and maybe that’s why he did.”</p>\n\n\n\n<p>Finally, she learned not only to keep a good spirit and try different things, but also to dare as you move forward.</p>\n\n\n\n<h2><strong>Contributors</strong></h2>\n\n\n\n<p>Thanks to Abha Thakor (<a href=\"https://profiles.wordpress.org/webcommsat/\">@webcommsat</a>), Nalini Thakor (<a href=\'https://profiles.wordpress.org/nalininonstopnewsuk/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>nalininonstopnewsuk</a>), Larissa Murillo (<a href=\'https://profiles.wordpress.org/lmurillom/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>lmurillom</a>), Meher Bala (<a href=\'https://profiles.wordpress.org/meher/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>meher</a>), Josepha Haden (<a href=\"https://profiles.wordpress.org/chanthaboune/\">@chanthaboune</a>), Chloé Bringmann (<a href=\'https://profiles.wordpress.org/cbringmann/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>cbringmann</a>) and Topher DeRosia (<a href=\"https://profiles.wordpress.org/topher1kenobe/\">@topher1kenobe</a>). Thank you to Olga Gleckler (<a href=\'https://profiles.wordpress.org/oglekler/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>oglekler</a>) for sharing her #ContributorStory.</p>\n\n\n\n<figure class=\"wp-block-image\"><img src=\"https://lh3.googleusercontent.com/Y3odYTyvSfJbVxUxUWEgKxOprox2zxVwhk7_vdW-AIs4IlE-jK0Zt1itCj867x0dIAbIiK-VeuTLMZr6BjNEY0fkTf--4dT1hkLbnGtsPFNfyrVBYIN59IirTkNnqiQgqxk6E1MI\" alt=\"HeroPress logo\" /></figure>\n\n\n\n<p><em>This post is based on an article originally published on HeroPress.com, a community initiative created by </em><a href=\"https://profiles.wordpress.org/topher1kenobe/\"><em>Topher DeRosia</em></a><em>. It highlights people in the WordPress community who have overcome barriers and whose stories would otherwise go unheard.</em></p>\n\n\n\n<p><em>Meet more WordPress community members in our <a href=\"https://wordpress.org/news/category/heropress/\">People of WordPress</a> series.</em></p>\n\n\n\n<p><em>#ContributorStory #HeroPress</em></p>\n\n\n\n<p></p>\n\n\n\n<p><em>Photo credits: 2nd and 4th Pablo Gigena, Berlin, 2019</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:\"9875\";s: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:57:\"\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:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:37:\"The Month in WordPress: February 2021\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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/2021/03/the-month-in-wordpress-february-2021/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_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, 03 Mar 2021 16:00:41 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s: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=9842\";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:293:\"You don’t have to be rich to have an online presence. You don’t have to find loopholes in proprietary platforms and hope that they never change their terms of service. You own all of the content that you create on a WordPress site and have the liberty to move it to a new host if [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}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:\"Hari Shanker R\";s: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:15761:\"\n<blockquote class=\"wp-block-quote\"><p>You don’t have to be rich to have an online presence. You don’t have to find loopholes in proprietary platforms and hope that they never change their terms of service. You own all of the content that you create on a WordPress site and have the liberty to move it to a new host if you need to, or switch your theme if it fits your mood.</p></blockquote>\n\n\n\n<p class=\"has-drop-cap\">That was Josepha Haden Chomphosy on <a href=\"https://wordpress.org/news/2021/02/wordpress-is-freedom/\">WordPress is Free(dom) episode</a> of the <a href=\"https://wordpress.org/news/podcast/\">WP Briefing Podcast</a>, speaking about the four freedoms of open-source software. Those four freedoms are core to how WordPress is developed. A lot of the updates we bring you this month will resonate with those freedoms.</p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h2>WordPress now powers 40% of the web</h2>\n\n\n\n<p>W3Techs reported that <a href=\"https://w3techs.com/blog/entry/40_percent_of_the_web_uses_wordpress\">WordPress now powers 40% of the top 10 million websites in the world</a>! Every two minutes, a new website using WordPress says, <em>“Hello world”</em>! For the top 1000 sites, the market share is even higher at 51.8%. Over the past 10 years, the growth rate has increased, which is reflected by the fact that 66.2% of all new websites use WordPress!</p>\n\n\n\n<h2>WordPress release updates</h2>\n\n\n\n<p>February was an eventful month for WordPress releases!</p>\n\n\n\n<ul><li>WordPress maintenance releases — <a href=\"https://wordpress.org/news/2021/02/wordpress-5-6-1-maintenance-release/\">version 5.6.1</a> and <a href=\"https://wordpress.org/news/2021/02/wordpress-5-6-2-maintenance-release/\">version 5.6.2</a> — came out this in February. Update to the latest version directly from your WordPress dashboard or by <a href=\"https://wordpress.org/download/\">downloading</a> it from WordPress.org.</li><li>Members of the Core team are working hard on WordPress 5.7, due in March. <a href=\"https://wordpress.org/news/2021/02/wordpress-5-7-beta-1/\">Beta 1</a>, <a href=\"https://wordpress.org/news/2021/02/wordpress-5-7-beta-2/\">Beta 2</a>, and <a href=\"https://wordpress.org/news/2021/02/wordpress-5-7-beta-3/\">Beta 3</a> versions of WordPress 5.7 launched in February. The <a href=\"https://wordpress.org/news/2021/02/wordpress-5-7-release-candidate/\">first</a> and <a href=\"https://wordpress.org/news/2021/03/wordpress-5-7-release-candidate-2/\">second</a> release candidates of WordPress 5.7 are also out! You can test the Beta versions and the release candidate by <a href=\"https://wordpress.org/wordpress-5.6-beta2.zip\">downloading them from WordPress.org</a> or using the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin. To know more about WordPress 5.7, <a href=\"https://make.wordpress.org/polyglots/2021/02/22/wordpress-5-7-ready-to-be-translated/\">check out its field guide</a>.&nbsp;</li></ul>\n\n\n\n<p>Want to contribute to upcoming WordPress releases? Join the WordPress <a href=\"https://wordpress.slack.com/archives/C02RQBWTW\">#core</a> channel in the <a href=\"https://make.wordpress.org/chat/\">Make WordPress Slack</a> and follow the <a href=\"https://make.wordpress.org/core/\">Core team blog</a>. The Core team hosts weekly chats on Wednesdays at <a href=\"https://www.timeanddate.com/worldclock/fixedtime.html?hour=5&amp;min=00&amp;sec=0\">5 AM</a> and <a href=\"https://www.timeanddate.com/worldclock/fixedtime.html?hour=20&amp;min=00&amp;sec=0\">8 PM</a>. UTC. You can also contribute to WordPress 5.7 <a href=\"https://make.wordpress.org/polyglots/2021/02/22/wordpress-5-7-ready-to-be-translated/\">by translating it into your local language</a>. Learn more on the <a href=\"https://make.wordpress.org/polyglots/2021/03/02/wordpress-5-7-translation-status-march-2-2020/\">translation status post</a>.</p>\n\n\n\n<h2>Gutenberg celebrates its 100th release with version 10</h2>\n\n\n\n<p>The 100th release of the Gutenberg plugin — <a href=\"https://make.wordpress.org/core/2021/02/17/whats-new-in-gutenberg-10-0-february/\">Version 10</a>,&nbsp; launched on February 17th, more than four years after the project was first announced at WordCamp US 2016. <a href=\"https://wordpress.org/news/2021/02/reflecting-on-gutenbergs-100th-release/\">Matias Ventura’s post</a> offers a bird’s eye view of the project over the last four years. Version 10 adds the basic pages block and makes the parent block selector visible in the block toolbar. <a href=\"https://make.wordpress.org/core/2021/02/05/whats-new-in-gutenberg-9-9-5-february/\">Version 9.9</a> of Gutenberg — coincidentally, the 99th release of the plugin, which is also the latest Gutenberg release that will be featured in WordPress 5.7, also came out in February. Key highlights of the release include custom icons and background colors in social icons, a redesigned options modal for blocks (which is now called block preferences), and text labels in the block toolbar.&nbsp;</p>\n\n\n\n<p>Want to get involved in building Gutenberg? Follow <a href=\"https://make.wordpress.org/core/\">the Core team blog</a>, contribute to <a href=\"https://github.com/WordPress/gutenberg/\">Gutenberg on GitHub</a>, and join the <a href=\"https://wordpress.slack.com/archives/C02QB2JS7\">#core-editor</a> channel in <a href=\"https://make.wordpress.org/chat/\">the Making WordPress Slack group</a>.</p>\n\n\n\n<h2>Full Site Editing updates</h2>\n\n\n\n<p><a href=\"https://make.wordpress.org/design/handbook/focuses/full-site-editing/\">Full Site Editing (FSE)</a> is an exciting new WordPress feature that allows you to use blocks outside the post or page content. The <a href=\"https://make.wordpress.org/updates/2021/01/21/big-picture-goals-2021/\">main focus</a> of the Core team for 2021 is to merge FSE into WordPress core. Here’s the latest on the Full Site Editing project:&nbsp;</p>\n\n\n\n<ul><li>The <a href=\"https://make.wordpress.org/test/2021/02/18/fse-program-testing-call-2-build-a-homepage-with-site-editing-blocks/\">second call for testing</a> as part of the <a href=\"https://make.wordpress.org/core/2020/12/11/the-fse-outreach-program-is-officially-starting/\">Full Site Editing outreach program</a> is out! To participate, <a href=\"https://make.wordpress.org/test/2021/02/18/fse-program-testing-call-2-build-a-homepage-with-site-editing-blocks/\">check out the second testing call</a> on the <a href=\"https://make.wordpress.org/test/\">Make/Test blog</a> and join the <a href=\"https://make.wordpress.org/core/tag/fse-outreach-experiment/\">#fse-outreach-experiment</a> Slack channel. Deadline: March 5, 2021.</li><li>In case you missed participating in the FSE outreach program, <a href=\"https://make.wordpress.org/test/2021/02/04/fse-program-test-fse-anytime/\">you can now test FSE anytime</a> —check out <a href=\"https://make.wordpress.org/test/handbook/full-site-editing-outreach-experiment/how-to-test-fse/\">this handbook page on testing FSE</a> to learn more.</li><li>Contributor teams are asking for help&nbsp; from local WordPress Communities to support the FSE Project.<a href=\"https://make.wordpress.org/test/2021/02/05/fse-program-connecting-with-local-communities/\"> Learn more on how you can contribute</a>.</li><li><a href=\"https://make.wordpress.org/test/tag/fse-answers/\">Check out these answers</a> for the most common FSE questions on the Make/Test blog.</li><li><a href=\'https://profiles.wordpress.org/chanthaboune/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>chanthaboune</a> has provided an update on the <a href=\"https://make.wordpress.org/core/2021/02/01/full-site-editing-and-themes-where-things-are/\">current status of the FSE and themes</a>.</li></ul>\n\n\n\n<h2>Decision-making checklist for in-person meetups</h2>\n\n\n\n<p>The Community Team <a href=\"https://make.wordpress.org/community/2021/02/16/announcement-decision-making-checklist-for-in-person-meetups-now-available/\">has published handbook pages and a decision-making checklist for organizers</a> to restart in-person meetups at areas where it is safe to do so (e.g., countries such as New Zealand, Australia, and Taiwan, where there are lower COVID-19 risks). However, WordPress meetups and WordCamps in most parts of the world will remain online due to COVID-19.</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 Polyglots team has <a href=\"https://make.wordpress.org/polyglots/2021/02/09/proposal-call-for-volunteers-polyglots-training-working-group/\">kicked-off a proposal to create a working group of contributors </a>to develop training resources for translation contributors.</li><li>The Meta team is actively <a href=\"https://make.wordpress.org/meta/2021/02/01/call-for-feedback-automated-theme-testing/\">working on a tool</a> to help the Themes team automate the theme testing process. The team has already shipped a <a href=\"https://github.com/WordPress/theme-review-action\">proof-of-concept of the Theme Review Action tool</a> to test the process and is <a href=\"https://make.wordpress.org/meta/2021/02/01/call-for-feedback-automated-theme-testing/\">looking for feedback</a>. The Meta team is also working on <a href=\"https://make.wordpress.org/meta/2021/02/19/reducing-the-plugin-review-teams-workload-through-automation/\">reducing the Plugin team’s workload by improving the code scanner tool</a> used for scanning plugins.</li><li>The <a href=\"https://make.wordpress.org/themes/2021/02/24/meeting-notes-matt-josepha-and-theme-review-team/\">Themes team met with the WordPress project leadership team (Matt Mullenweg and Josepha Haden)</a> about improving the Theme directory. They decided to reframe the theme review process by adding “review guard rails” with automated tooling.</li><li>The Plugin Review Team reiterated that <a href=\"https://make.wordpress.org/plugins/2021/02/16/reminder-forked-premium-plugins-are-not-permitted/\">forked premium plugins are not allowed in the Plugin directory.</a>&nbsp;</li><li>After three weekends of celebrating WordPress, <a href=\"https://india.wordcamp.org/2021/\">WordCamp India 2021</a> concluded on February 15. <a href=\"https://prague.wordcamp.org/2021/\">WordCamp Prague 2021</a> took place on February 27. WordCamp India <a href=\"https://india.wordcamp.org/2021/watch-now/\">videos are already available</a>, and videos of both camps will soon be uploaded to WordPress.tv.&nbsp;</li><li>Several online WordCamps were scheduled this month. <a href=\"https://centroamerica.wordcamp.org/2021/\">WordCamp Centroamérica</a>, <a href=\"https://greece.wordcamp.org/2021/\">WordCamp Greece</a>, and <a href=\"https://neo.wordcamp.org/2021/\">WordCamp North East Ohio</a> are scheduled for April 2021. <a href=\"https://japan.wordcamp.org/2021/\">WordCamp Japan</a> takes place in June and has opened-up their <a href=\"https://japan.wordcamp.org/2021/call-for-speakers-is-now-open/\">call for speakers in English and Japanese</a>. Meanwhile, the inaugural <a href=\"https://cochabamba.wordcamp.org/2021/\">WordCamp Cochabamba (Bolivia)</a> runs in July!.</li><li>The Community Team wants <a href=\"https://make.wordpress.org/community/2021/02/25/proposal-to-improve-the-organizing-experience-for-online-wordcamps/\">feedback on how to improve online WordCamps</a>. The team has also announced a <a href=\"https://make.wordpress.org/community/2021/02/18/proposal-2021-global-community-sponsorship-program/\">revamped 2021 Global Community sponsorship program</a> to support online events.</li><li>The Design Team is <a href=\"https://make.wordpress.org/design/2021/02/03/review-feedback-request-ux-for-learn-wordpress-org/\">reviewing the user experience</a> for <a href=\"https://learn.wordpress.org/\">learn.wordpress.org</a>. Please share any <a href=\"https://make.wordpress.org/design/2021/02/03/review-feedback-request-ux-for-learn-wordpress-org/\">design-feedback that you have as comments on the post</a>.</li><li>The Accessibility Team is working on <a href=\"https://make.wordpress.org/accessibility/2021/02/28/accessibility-team-meeting-notes-february-26-2021/\">publishing the updated accessibility standards document </a>(with regard to WCAG 2.1 changes) alongside the WordPress version 5.7 release. The team has also <a href=\"https://make.wordpress.org/accessibility/2021/02/28/accessibility-teams-goals-for-wordpress-5-8-and-beyond/\">started brainstorming goals for WordPress 5.8</a> and beyond.&nbsp;</li><li>The Support Team is <a href=\"https://make.wordpress.org/support/2021/02/rethinking-the-master-list/\">rethinking the use of the master list</a> used for troubleshooting recurring issues. The team is also <a href=\"https://make.wordpress.org/support/2021/02/removing-plugin-and-theme-names-used-as-topic-tags-on-the-forums/\">removing plugin/theme names used as topic tags</a> in forums.</li><li>The Training Team has <a href=\"https://make.wordpress.org/training/2021/03/02/march-2021-sprint-planning/\">kicked off their March 2021 sprint planning</a> to work on their goals.</li><li>The <a href=\"https://make.wordpress.org/core/tag/feature-notifications/\">WP Notify project</a> working group (which is working toward a better notification system for&nbsp; WordPress) has completed the <a href=\"https://github.com/WordPress/wp-notify/wiki/Requirements-(v1)\">first version of the requirements document</a>, and officially kicked off <a href=\"https://make.wordpress.org/core/2021/02/09/wp-notify-meeting-notes-february-8-2021/\">active development of the feature plugin</a>. Contact the team in the <a href=\"https://wordpress.slack.com/archives/C2K1C71FE\">#feature-notifications</a> Slack channel if you would like to contribute. You can start by reviewing the <a href=\"https://github.com/WordPress/wp-notify/issues\">list of the current issues</a>.</li><li><a href=\"https://wordpress.org/news/2021/02/people-of-wordpress-pooja-derashri/\">Pooja Derashri of India</a> was featured in February&#8217;s <a href=\"https://wordpress.org/news/category/heropress/\">People of WordPress</a> series. A cross-team initiative led by the Marketing Team with support from <a href=\"https://heropress.com/\">HeroPress</a>, the series aims to highlight lesser-known stories of WordPress contributors. The Contributor Story series is collecting new features. If you are an active contributor to a WordPress.org team or a local WordCamp, contact the <a href=\"https://make.wordpress.org/marketing/\">Marketing Team</a> in the <a href=\"https://wordpress.slack.com/archives/C0GKJ7TFA\">#marketing</a> Slack channel for more information.</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 using this form</em></a><em>.</em></p>\n\n\n\n<p><em>The Month in WordPress post series is a collective effort, and it would not be possible without contributions from different members of the WordPress Community. Starting this month, we would like to credit and thank all individuals that support this effort with their contributions. I would like to thank the following folks for their contributions to February&#8217;s Month in WordPress: <a href=\'https://profiles.wordpress.org/adityakane/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>adityakane</a> <a href=\'https://profiles.wordpress.org/chaion07/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>chaion07</a> <a href=\'https://profiles.wordpress.org/courtneypk/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>courtneypk</a> <a href=\'https://profiles.wordpress.org/kristastevens/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>kristastevens</a></em> <em>and <a href=\'https://profiles.wordpress.org/psykro/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>psykro</a></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:\"9842\";s: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:\"Mon, 19 Apr 2021 11:59:39 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:\"Thu, 15 Apr 2021 03:05:07 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 1\";}}s:5:\"build\";s:14:\"20191014202409\";}','no'),(300,'_transient_timeout_feed_mod_9bbd59226dc36b9b26cd43f15694c5c3','1618876777','no'),(301,'_transient_feed_mod_9bbd59226dc36b9b26cd43f15694c5c3','1618833577','no'),(302,'_transient_timeout_feed_d117b5738fbd35bd8c0391cda1f2b5d9','1618876778','no'),(303,'_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:100:\"Gutenberg Times: Page Template Editor for WordPress 5.8, Videos and Plugins – Weekend Edition #166\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://gutenbergtimes.com/?p=17602\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:105:\"https://gutenbergtimes.com/page-template-editor-for-wordpress-5-8-videos-and-plugins-weekend-edition-166/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:14988:\"<p>Howdy, </p>\n\n\n\n<p>Yes, it&#8217;s been a while that you received a fully curated Weekend edition. After the move it took a while to get my office operational again. We still have too many boxes to unpack, though. </p>\n\n\n\n\n\n<p>Nevertheless, let&#8217;s catch up on Gutenberg news together! </p>\n\n\n\n<p>All the best, <br />Birgit ?</p>\n\n\n\n<h2>Gutenberg 10.4 Released (and 10.4.1) </h2>\n\n\n\n<p>The <strong><a href=\"https://gutenbergtimes.com/podcast/changelog-42-full-site-editing-scope-for-wordpress-5-8/\">Gutenberg Changelog episode 42</a></strong> is now available. <strong>Grzegorz (&#8220;Greg&#8221;) Ziolkowski </strong>and I discuss Full-site Editing Scope for WordPress 5.8, Gutenberg’s 10.4, Gallery Block Refactor and Block-Based Theme updates.</p>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p><strong>Sarah Gooding</strong> of the WP Tavern wrote about the Gutenberg 10.4 release: <a href=\"https://wptavern.com/gutenberg-10-4-introduces-block-widgets-in-the-customizer\">Gutenberg 10.4 Introduces Block Widgets in the Customizer</a></p>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<h2>Full-Site Editing and WordPress 5.8 </h2>\n\n\n\n<p>If you now find yourself in the position to learn more about the extent of Full-Site Editing experience, I have a real treat for you: <a href=\"https://gutenbergtimes.com/video-full-site-editing-overview-with-anne-mccarthy/\">A 30-min video Full-Site Editing Overview by</a>, Anne McCarthy, Developer Relations for the Gutenberg project. </p>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p>On April 14, 2021, the Gutenberg and 5.8 release leads held a meeting, with Matias Venture giving a tour of the current state of the Phase 2 of Gutenberg development. The outcome of the meeting was a decision on Go/NoGo for component that make it into core for WordPress 5.8.</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy</strong> provide in <a href=\"https://make.wordpress.org/core/2021/04/15/full-site-editing-go-no-go-april-14-2021/\">her follow-up post </a>a list of the detailed scope, the video of the meeting and a transcript of the recording. </p>\n\n\n\n<h3>The block editor scope </h3>\n\n\n\n<ul><li>Improvements from Gutenberg 9.9 to 10.7 plugin version. </li><li>Introduce 25 new blocks (Query, Site Logo, Navigation,Posts, Comments, Archives etc. ), the most valuable among them will be the Query Block. </li><li><code>theme.json</code> Mechanism for Theme builders (<a href=\"https://developer.wordpress.org/block-editor/how-to-guides/themes/theme-json/\">see developer documentation</a>)</li><li>Template Editor for Pages/Blank Template. (<a href=\"https://youtu.be/c4IFn73Nzvk?t=2859\">see demo by Marcus Kazmierczak</a>)</li><li>Widgets Screen &amp; Block widgets in Customizer.</li><li>Design tools: Duotone, Layout controls, padding, etc.</li></ul>\n\n\n\n<p>There is the caution stated in the post: <em>&#8220;Not all the above are currently ready, but there’s some level of confidence that they can be by the time of 5.8.&#8221;</em></p>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p>For the <strong>Template Editor for Pages/Blank Template</strong> you can see it <a href=\"https://youtu.be/c4IFn73Nzvk?t=2859\">in action in a demo</a> by <strong>Marcus Kazmierczak</strong>, he gave at the Mega Meetup last week. </p>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p><strong>Bud Kraus</strong> of JoyofWP showed us in his video, <a href=\"https://joyofwp.com/whats-the-future-of-the-wordpress-widget/\">how the Widget screen will look like in the future.</a> It does not show the Widget handling in the Customizer yet, but that is to come to WordPress 5.8. You could see a short piece of it in Matias Ventura&#8217;s demo video from the release leads meeting. It is now already available in the latest Gutenberg plugin release. </p>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n\n<p><strong> <a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/\" target=\"_blank\" rel=\"noreferrer noopener\">&#8220;Keeping up with Gutenberg &#8211; Index 2021&#8221;</a> </strong><br />A chronological list of the WordPress Make Blog posts from various teams involved in Gutenberg development: Design, Theme Review Team, Core Editor, Core JS, Core CSS, Test and Meta team from Jan. 2021 on. <a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/keeping-up-with-gutenberg-index-2020/\">The index 2020 is here</a></p>\n\n\n\n\n<p><strong>Justin Tadlock</strong> summarized last week&#8217;s announcements in <strong><a href=\"https://wptavern.com/full-site-editing-is-partly-a-go-for-wordpress-5-8\">Full Site Editing Is Partly a ‘Go’ for WordPress 5.8</a></strong></p>\n\n\n\n<h2>Testing Full-Site Editing</h2>\n\n\n\n<p>As the latest Full-Site Editing Call of Testing, <strong>Anne McCarthy</strong> has a <strong><a href=\"https://make.wordpress.org/test/2021/04/14/fse-program-testing-call-5-query-quest/\">Query Quest for you.</a></strong> Again with a great set of test instruction, you are guided towards usage and various features of the Query Block and its accompanying new post blocks for title, content, comments, feature image and pagination.</p>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p><strong>Justin Tadlock</strong> discussed this task a bit further in his article: <strong><a href=\"https://wptavern.com/fse-outreach-round-5-venturing-out-a-query-quest\">FSE Outreach Round #5: Venturing out a Query Quest</a>.</strong> &#8220;Testing never has to be boring. I encourage participants to grab inspiration from their lives as they venture out on their Query Quest.&#8221; he wrote. </p>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p>Apropos Testing: <strong>Sarah Gooding</strong> wrote about our Gutenberg Nightly plugin to get the latest development of the block-editor in an easy to handle plugin. <strong><a href=\"https://wptavern.com/set-up-a-gutenberg-test-site-in-2-minutes-with-the-gutenberg-nightly-plugin\">Set Up a Gutenberg Test Site in 2 Minutes with the Gutenberg Nightly Plugin</a></strong>.</p>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n\n<p><strong><a href=\"https://gutenbergtimes.com/need-a-zip-from-master/\">Need a plugin .zip from Gutenberg&#8217;s main (trunk) branch?</a></strong><br />Gutenberg Times provides daily build for testing and review. <br />Have you been using it? Hit reply and let me know.</p>\n\n\n\n<p><img alt=\"GitHub all releases\" src=\"https://img.shields.io/github/downloads/bph/gutenberg/total?style=for-the-badge\" /></p>\n\n\n\n<p></p>\n\n\n\n\n<p><strong>Anne McCarthy</strong> curated all the feedback from the fourth testing call: <a href=\"https://make.wordpress.org/test/2021/03/30/fse-program-custom-404-page-testing-summary/\"><strong>FSE Program Custom 404 Page Testing Summary</strong></a></p>\n\n\n\n<h2>Block-Based Themes</h2>\n\n\n\n<p><strong>Helen Hou-Sandi</strong> streamed on Twitch her <a href=\"https://www.twitch.tv/videos/981424705\">exploration session to create a block-based theme</a> for the Full-Site Editing.</p>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p><strong>Kjell Reigstad</strong> opened an issue for <a href=\"https://github.com/WordPress/gutenberg/issues/30508\"><strong>Query Block Pattern inspirations.</strong></a> There are great examples posted that could be converted to pattern, that could be bundled with WordPress 5.8 </p>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p><strong>Marcus Kazmierczak</strong> also used Twitch to stream his <a href=\"https://www.twitch.tv/mkaz7000\">Lunch &amp; Learn series on Block-based themes.</a></p>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p>Keep abreast on specific Theme related development and discussions with the weekly round-up from the Themes Team. <strong>Kjell Reigstad</strong> posted this week&#8217;s edition. <a href=\"https://make.wordpress.org/themes/2021/04/16/gutenberg-themes-week-of-apr-12-2021/\"><strong>Gutenberg + Themes: Week of Apr 12, 2021</strong></a></p>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p>A couple of PRs that should help with <strong>transitioning existing themes to be block-based:</strong></p>\n\n\n\n<ul><li><a href=\"https://github.com/WordPress/gutenberg/pull/30345\"><strong>Add do_block_template_part function</strong></a><br />New gutenberg_block_template_part(), gutenberg_block_header_area(), and gutenberg_block_footer_area() functions to help pull block-based template parts into existing PHP templates: </li><li><a href=\"https://github.com/WordPress/gutenberg/pull/30438\"><strong>Allow creating custom block templates in classic themes</strong></a> Allowing people to create and use block-based page template for certain pages on their site, even while using a non-block-based theme.</li></ul>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p>In their latest episode of WPCafe co-hosts <strong>Mark Wilkinson</strong> and <strong>Keith Devon</strong> talked about <a href=\"https://www.youtube.com/watch?v=jAIlY3lTAos\">Building Twenty-Twenty-One with Caroline Nymark and Mel Choyce-Dwan</a>. </p>\n\n\n\n<h2>Plugins for the Block Editor</h2>\n\n\n\n<p><strong><a href=\"https://wordpress.org/plugins/gutentor/\">Gutentor</a></strong> published a collection of 70+ Blocks and layouts for Gutenberg Editor. </p>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p>If you are working on your set of Blocks for the editor, <strong>Justin Tadlock</strong> has some thoughts to consider: <a href=\"https://wptavern.com/yet-another-wordpress-block-library-plugin\"><strong>Yet Another WordPress Block Library Plugin</strong></a>. He is making a well though through case to suggest more unique blocks to fill the gap to the core blocks. It seems to me that, two years of seeing block collections being acquired by big companies like Atom Blocks, Co Blocks and latest <a href=\"https://wptavern.com/ithemes-acquires-kadence-wp-plans-to-sunset-legacy-themes-in-2022\">Kadence Blocks</a>, might tempt a small developer team to come up with another set of blocks matching a specific theme and hope for an acquisition by another big company in the space. There might be space for a few more, indeed. </p>\n\n\n\n<p>Tadlock&#8217;s longs for something new, a unique extension of core or a missing tool:</p>\n\n\n\n<ul><li><a href=\"https://wptavern.com/display-digital-sheet-music-with-the-wordpress-block-editor\">Display Digital Sheet Music With the WordPress Block Editor</a></li><li><a href=\"https://wptavern.com/block-a-saurus-embeds-a-side-scrolling-t-rex-game-via-the-block-editor\">Block-a-saurus Embeds a Side-Scrolling T-Rex Game via the Block Editor</a></li><li><a href=\"https://wptavern.com/emoji-conbini-and-the-case-for-a-block-enhancements-directory\">Emoji Conbini and the Case for a Block Enhancements Directory</a></li><li><a href=\"https://wptavern.com/insert-font-awesome-icons-into-the-block-editor-via-the-jvm-gutenberg-rich-text-icons-plugin\">Insert Font Awesome Icons Into the Block Editor via the JVM Gutenberg Rich Text Icons Plugin</a></li><li><a href=\"https://gutenbergtimes.com/writers-rejoice-iceberg-delivers-distraction-free-writing-for-wordpress/\">Writers Rejoice! Iceberg Delivers Distraction-free Writing for WordPress</a></li></ul>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p><strong><a href=\"https://wordpress.org/plugins/conditional-blocks/\">Conditional Blocks</a></strong> by Morgan Hvidt allows you to create block that are displayed when certain conditions apply. We saw other plugins that offer that, like <a href=\"https://wordpress.org/plugins/block-visibility/\">Block Visibility by Nick Diego</a>. This one is a bit different. It allows you to change content depending on HTTP referrer, so if someone comes from Twitter, they could see a different message than someone coming from a Google Search or a link in a newsletter or an affiliate link. The plugin is also available as a pro version with premium features at <a href=\"https://conditionalblocks.com\">conditionalblocks.com</a>. </p>\n\n\n\n\n<p> <a href=\"https://gutenbergtimes.com/podcast/changelog-42-full-site-editing-scope-for-wordpress-5-8/\"><strong>Episode #4</strong>2 is now available</a>, with new co-host <strong>Grzegorz Ziolkowski</strong></p>\n\n\n\n<p> <strong>Subscribe to the&nbsp;<a href=\"https://gutenbergtimes.com/podcast/\">Gutenberg Changelog</a>&nbsp;podcast </strong><br />?️&nbsp;<a href=\"https://open.spotify.com/show/620NwVKQJGdTupy36zYxvg?mc_cid=4b6c9f88fe\">Spotify</a>&nbsp;|&nbsp;<a href=\"https://podcasts.google.com/feed/aHR0cHM6Ly9ndXRlbmJlcmd0aW1lcy5jb20vZmVlZC9wb2RjYXN0\">Google</a>&nbsp;|&nbsp;<a href=\"https://podcasts.apple.com/us/podcast/gutenberg-changelog/id1469294475\">iTunes</a>&nbsp;|&nbsp;<a href=\"https://pca.st/podcast/f8445ec0-7508-0137-f267-1d245fc5f9cf\">PocketCasts</a>&nbsp;|&nbsp;<a href=\"https://www.stitcher.com/show/gutenberg-changelog\">Stitcher</a>&nbsp;|<br />?️&nbsp;<a href=\"https://www.podbean.com/podcast-detail/chi7j-9904a/Gutenberg-Changelog-Podcast\">Pod Bean</a>&nbsp;|&nbsp;<a href=\"https://castbox.fm/channel/Gutenberg-Changelog-id2173375\">CastBox</a>&nbsp;|&nbsp;<a href=\"https://www.podchaser.com/podcasts/gutenberg-changelog-878239/\">Podchaser</a>&nbsp;|&nbsp;<a href=\"https://gutenbergtimes.com/feed/podcast\">RSS Feed</a>&nbsp;</p>\n\n\n\n<img />\n\n\n\n\n<h2>People and Community</h2>\n\n\n\n<p>It&#8217;s been already a year that <strong>Anne McCarthy</strong> joined the Gutenberg team as a developer relations wrangler. It has been a great pleasure meeting Anne and collaborating with her has been quite inspiring, and I learned a lot from her wisdom and her wealth of ideas. She has also become a good friend. She is som much better and being a remote friend that I ever will be. On her personal block Anne published <a href=\"https://nomad.blog/2021/04/17/one-year-in-devrel/\"><strong>One year in DevRel</strong></a></p>\n\n\n\n<p>Anne&#8217;s pioneer work with WordPress open-source project has been so successful that <a href=\"https://boards.greenhouse.io/automatticcareers/jobs/2937422\">Automattic wants to sponsor another person for developer relations.</a></p>\n\n\n\n<h2>Developing with ReactJS and Gutenberg Blocks. </h2>\n\n\n\n<p><strong>Rob Stinson</strong> wrote a tutorial on how <a href=\"https://studiopress.blog/the-ultimate-guide-to-building-custom-collections-in-genesis-blocks/\">to building custom Collections in Genesis Blocks.</a> Now Collections in this context are Layout templates, that extend existing Genesis blocks. </p>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p><strong> Mark Howells-Mead </strong>uses <a href=\"https://permanenttourist.ch/2021/04/using-react-and-wordpress-to-build-an-interactive-performant-single-page-application\">ReactJS to build interactive single page applications with WordPress</a> and wrote a tutorial. It&#8217;s not at all about Blocks and Gutenberg, but it&#8217;s related to the skill set of learning ReactJS and hopefully inspired developer to gradually make the transition. </p>\n\n\n\n\n\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:\"Sun, 18 Apr 2021 23:33: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:18:\"Birgit Pauli-Haack\";s: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:67:\"WPTavern: Gutenberg 10.4 Introduces Block Widgets in the Customizer\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=115274\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:179:\"https://wptavern.com/gutenberg-10-4-introduces-block-widgets-in-the-customizer?utm_source=rss&utm_medium=rss&utm_campaign=gutenberg-10-4-introduces-block-widgets-in-the-customizer\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3021:\"<p>The latest release of the Gutenberg plugin (<a href=\"https://make.wordpress.org/core/2021/04/14/whats-new-in-gutenberg-10-4-14-april/\">10.4)</a> brings <a href=\"https://github.com/WordPress/gutenberg/issues/29285\">block widgets into the Customizer</a>. When customizing widget-enabled areas, a new block inserter icon is now available for dropping blocks into sidebars. This is the first iteration of <a href=\"https://github.com/WordPress/gutenberg/issues/26900\">block management in the Customizer</a>, tackling the technical integration for editing blocks while also taking advantage of the live preview in the Customizer.</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n\n</div>\n\n\n\n<p>Version 10.4 includes several design updates to the&nbsp;Site Editor List View, bringing more consistency to the icon sizing and spacing, as well as&nbsp;new colors for hover, focus, and select states. The publishing UI has been updated to <a href=\"https://github.com/WordPress/gutenberg/pull/30231\">display the site icon and name</a>, adding a more personal touch to this flow while also making it more clear for full-screen or mobile users.</p>\n\n\n\n<img />Gutenberg 10.4 <a href=\"https://make.wordpress.org/core/2021/04/14/whats-new-in-gutenberg-10-4-14-april/\">release post</a>\n\n\n\n<p>More progress on site editing experiments includes the following notable updates: </p>\n\n\n\n<ul><li>the ability to revert template customizations directly in the editor</li><li>many improvements to the Navigation block, including&nbsp;a&nbsp;<a rel=\"noreferrer noopener\" href=\"https://github.com/WordPress/gutenberg/pull/30403\" target=\"_blank\">new &ldquo;Post Format Link&rdquo; variation</a>, a&nbsp;<a rel=\"noreferrer noopener\" href=\"https://github.com/WordPress/gutenberg/pull/30281\" target=\"_blank\">clearer placeholder state</a>, and more style updates</li><li><a href=\"https://github.com/WordPress/gutenberg/pull/30521\">Better labeling</a> for differentiating &ldquo;Custom Styles&rdquo; vs global style changes in the site editor saving panel </li><li>New &ldquo;<a href=\"https://github.com/WordPress/gutenberg/pull/29839\">manage with live preview link</a>&rdquo; in the Widgets editor</li></ul>\n\n\n\n<p>The block editor still <a href=\"https://github.com/WordPress/gutenberg/issues/29976\">fails to deliver a consistent preview</a> of core blocks on the frontend in many cases. Version 10.4 brings greater parity between the editor/frontend with more consistent markup for archives, latest comments, quote, and separator blocks, with improved default padding to match the browser&rsquo;s default. The GitHub <a href=\"https://github.com/WordPress/gutenberg/issues/29976\">issue</a> for this improvement contains a to-do list for additional blocks that need more polishing on previews, including search, paragraph, columns, embed, post title, and more.</p>\n\n\n\n<p>For a full list of all the enhancements and bug fixes, check out the <a href=\"https://make.wordpress.org/core/2021/04/14/whats-new-in-gutenberg-10-4-14-april/\">10.4 release post</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 17 Apr 2021 13:59: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: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:69:\"Gutenberg Times: Video: Full-Site Editing Overview with Anne McCarthy\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://gutenbergtimes.com/?p=17545\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:79:\"https://gutenbergtimes.com/video-full-site-editing-overview-with-anne-mccarthy/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:52174:\"<p>As part of the <a href=\"https://www.youtube.com/watch?v=c4IFn73Nzvk\">Meta Meetup on April 15th 2021</a>, Anne McCarthy gave a presentation on what Full-Site Editing entails, the updated scope of WordPress 5.8, what the FSE outreach program is and what issues surfaced during the four calls for testing from the group. </p>\n\n\n\n<p>It&#8217;s a fantastic and fast-paced presentation and covers a lot of ground. It&#8217;s ideal for WordPress users that just now want to catch up on all the buzz around Full&#8211;Site Editing and learn what will come to WordPress in the 5.8 release in July 2021. </p>\n\n\n\n<p>Big Thank You to Anne for allowing us to publish the video here with the transcript. </p>\n\n\n\n<p><em>For those interested how the template editor works, <a href=\"https://youtu.be/c4IFn73Nzvk?t=2909\">jump right in to Marcus Kasmierczak&#8217;s live demo</a> portion of the WordPress Mega Meetup recording</em></p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<div class=\"toolbelt-video-wrapper\"></div>\n</div>\n\n\n\n<h2 id=\"0-sha\">Shared Resources</h2>\n\n\n\n<ul><li><a href=\"https://wordpress.org/about/roadmap/\">Roadmap showing phase 2</a>&nbsp;&nbsp;</li><li><a href=\"https://github.com/WordPress/gutenberg/issues/24551\">Full Site Editing Milestones</a>&nbsp;&nbsp;</li><li><a href=\"https://github.com/WordPress/gutenberg/issues/30662\">Special shoutout to the Gradual Adoption Milestone</a>&nbsp;&nbsp;</li><li><a href=\"https://make.wordpress.org/test/2021/04/14/fse-program-testing-call-5-query-quest/\">Query Quest &#8211; Call for testing the Query Block</a>&nbsp;&nbsp;</li><li><a href=\"https://make.wordpress.org/core/2021/04/15/full-site-editing-go-no-go-april-14-2021/\">Go/No go</a> &nbsp;</li><li><a href=\"https://github.com/WordPress/gutenberg/issues/29398\">Preview</a>&nbsp;&nbsp;</li><li><a href=\"https://make.wordpress.org/test/handbook/full-site-editing-outreach-experiment/\">FSE Outreach Program</a>:&nbsp;&nbsp;</li><li><a href=\"https://make.wordpress.org/core/2021/03/16/high-level-feedback-from-the-fse-program-march\">High-level feedback from the Full Site Editing Program thus far</a></li><li><a href=\"https://critterverse.blog/2021/03/23/full-site-editor-404-test/\">404 design</a></li><li><a href=\"https://www.twitch.tv/mkaz7000\">Marcus Kazmierczak Streams on Twitch</a> </li></ul>\n\n\n\n<p><em><a href=\"https://gutenbergtimes.com/feed/#transcript\">See transcript below</a></em></p>\n\n\n\n<div class=\"ngl-articles ngl-articles-50_50 ngl-articles-frontend\">\n\n \n <!-- Begin articles display -->\n <div class=\"ngl-articles-wrap\">\n \n <div class=\"ngl-article ngl-article-img-left\">\n\n \n <div class=\"ngl-article-left-mobile -emogrifier-keep\"><div class=\"ngl-article-featured\"><a href=\"https://gutenbergtimes.com/full-site-editing/\" target=\"_self\" rel=\"\"><img src=\"https://i2.wp.com/gutenbergtimes.com/wp-content/uploads/2021/02/vidar-nordli-mathisen-4NlLMwdFoLY-unsplash.jpg?w=640&ssl=1\" /></a></div></div><div class=\"ngl-article-left\"><div class=\"ngl-article-featured\"><a href=\"https://gutenbergtimes.com/full-site-editing/\" target=\"_self\" rel=\"\"><img src=\"https://i2.wp.com/gutenbergtimes.com/wp-content/uploads/2021/02/vidar-nordli-mathisen-4NlLMwdFoLY-unsplash.jpg?w=640&ssl=1\" /></a></div></div><div class=\"ngl-article-right\"><div class=\"ngl-article-title\"><a href=\"https://gutenbergtimes.com/full-site-editing/\" target=\"_self\" rel=\"\"><span>Full-Site-Editing &#8211; the Ultimate Resource List</span></a></div><div class=\"ngl-article-excerpt\">Nothing in life is to be feared, it is only to be understood. Now is the time to understand more, so that we may fear less.&nbsp;— Marie Curie&nbsp;</div><div class=\"ngl-article-date\">18 Apr 2021</div></div>\n </div>\n\n \n <div class=\"ngl-article ngl-article-img-left\">\n\n \n <div class=\"ngl-article-left-mobile -emogrifier-keep\"><div class=\"ngl-article-featured\"><a href=\"https://gutenbergtimes.com/full-site-editing-mvp-can-i-build-a-landing-page/\" target=\"_self\" rel=\"\"><img src=\"https://i2.wp.com/gutenbergtimes.com/wp-content/uploads/2021/03/kelly-sikkema-gcHFXsdcmJE-unsplash.jpg?w=640&ssl=1\" /></a></div></div><div class=\"ngl-article-left\"><div class=\"ngl-article-featured\"><a href=\"https://gutenbergtimes.com/full-site-editing-mvp-can-i-build-a-landing-page/\" target=\"_self\" rel=\"\"><img src=\"https://i2.wp.com/gutenbergtimes.com/wp-content/uploads/2021/03/kelly-sikkema-gcHFXsdcmJE-unsplash.jpg?w=640&ssl=1\" /></a></div></div><div class=\"ngl-article-right\"><div class=\"ngl-article-title\"><a href=\"https://gutenbergtimes.com/full-site-editing-mvp-can-i-build-a-landing-page/\" target=\"_self\" rel=\"\"><span>Full-site Editing MVP: Can I Build a Landing Page?</span></a></div><div class=\"ngl-article-excerpt\">Josepha Haden Chomphosy was the featured guest on the inaugural episode of the WPTavern Jukebox podcast, hosted by Nathan Wrigley. Chomphosy explained her unofficial benchmark for the Go/NoGo decision on Full-site Editing for the WordPress core merge.&nbsp;</div><div class=\"ngl-article-date\">27 Mar 2021</div></div>\n </div>\n\n \n \n </div>\n\n</div>\n\n\n<p class=\"has-large-font-size\" id=\"transcript\">Transcript </p>\n\n\n\n<div class=\"wp-block-group has-background\"><div class=\"wp-block-group__inner-container\">\n<div class=\"wp-block-sortabrilliant-guidepost\"><ul><li><a href=\"https://gutenbergtimes.com/feed/#0-sha\">Shared Resources</a></li><li><a href=\"https://gutenbergtimes.com/feed/#0-strong-milestones-of-full-site-editing-experience-strong\">Milestones of Full-Site Editing Experience</a><ul><li><a href=\"https://gutenbergtimes.com/feed/#1-strong-infrastructure-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-strong\">Infrastructure&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</a></li><li><a href=\"https://gutenbergtimes.com/feed/#2-strong-browsing-templates-and-template-parts-strong\">Browsing Templates and Template Parts</a></li><li><a href=\"https://gutenbergtimes.com/feed/#3-strong-styling-global-styles-theme-json-strong\">Styling &#8211; Global Styles + theme.json</a></li><li><a href=\"https://gutenbergtimes.com/feed/#4-strong-20-theme-blocks-strong\">20+ Theme Blocks</a></li><li><a href=\"https://gutenbergtimes.com/feed/#5-strong-query-block-the-loop-or-post-list-strong\">Query Block &#8211; The Loop or Post List</a></li><li><a href=\"https://gutenbergtimes.com/feed/#6-strong-navigation-block-strong\">Navigation Block</a></li><li><a href=\"https://gutenbergtimes.com/feed/#7-strong-gradual-adoption-widgets-customizer-hybrid-themes-nbsp-strong\">Gradual Adoption &#8211; Widgets, Customizer, Hybrid Themes&nbsp;</a></li></ul></li><li><a href=\"https://gutenbergtimes.com/feed/#8-strong-whats-coming-to-word-press-5-8-strong\">What&#8217;s coming to WordPress 5.8</a><ul><li><a href=\"https://gutenbergtimes.com/feed/#9-strong-short-demo-template-editing-navigation-block-and-multi-entity-saving-strong\">Short Demo: Template Editing, Navigation Block and Multi-Entity Saving</a></li></ul></li><li><a href=\"https://gutenbergtimes.com/feed/#10-strong-timeline-of-5-8-release-strong\">Timeline of 5.8 Release</a></li><li><a href=\"https://gutenbergtimes.com/feed/#11-strong-what-is-the-fse-outreach-experiment-program-strong\">What is the FSE Outreach Experiment Program?</a><ul><li><a href=\"https://gutenbergtimes.com/feed/#12-strong-whats-the-goal-strong\">What&#8217;s the goal</a></li><li><a href=\"https://gutenbergtimes.com/feed/#13-strong-why-was-it-started-strong\">Why was it started?</a></li><li><a href=\"https://gutenbergtimes.com/feed/#14-strong-how-to-join-fse-outreach-experiment-strong\">How to Join FSE Outreach Experiment</a></li></ul></li><li><a href=\"https://gutenbergtimes.com/feed/#15-strong-high-level-feedback-from-calls-for-testing-strong\">High-Level Feedback from Calls for Testing</a><ul><li><a href=\"https://gutenbergtimes.com/feed/#16-strong-preview-content-strong\">Preview Content</a></li><li><a href=\"https://gutenbergtimes.com/feed/#17-strong-saving-process-strong\">Saving Process</a></li><li><a href=\"https://gutenbergtimes.com/feed/#18-distinction-between-editing-area\">Distinction between editing area.</a></li><li><a href=\"https://gutenbergtimes.com/feed/#19-rethinking-width-and-alignment\">Rethinking Width and Alignment.</a></li><li><a href=\"https://gutenbergtimes.com/feed/#20-strong-general-usability-improvements-strong\">General usability improvements.</a></li><li><a href=\"https://gutenbergtimes.com/feed/#21-strong-improving-placeholders-strong\">Improving Placeholders.</a></li></ul></li><li><a href=\"https://gutenbergtimes.com/feed/#22-strong-will-full-site-editing-take-over-my-site-strong\">Will full site editing take over my site?</a></li><li><a href=\"https://gutenbergtimes.com/feed/#23-strong-what-about-the-block-based-navigation-and-widget-screens-strong\">What about the block-based navigation and widget screens?</a></li><li><a href=\"https://gutenbergtimes.com/feed/#24-strong-site-builders-strong\">Site builders</a></li><li><a href=\"https://gutenbergtimes.com/feed/#25-strong-how-is-this-going-to-impact-themes-strong\">How is this going to impact themes?</a></li><li><a href=\"https://gutenbergtimes.com/feed/#26-strong-what-pathways-are-going-to-be-created-strong\">What pathways are going to be created?</a></li><li><a href=\"https://gutenbergtimes.com/feed/#27-strong-whats-the-best-way-to-prepare-nbsp-strong\">What&#8217;s the best way to prepare?&nbsp;</a></li><li><a href=\"https://gutenbergtimes.com/feed/#28-strong-stay-connected-with-anne-mc-carthy-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-strong\">Stay connected with Anne McCarthy</a></li></ul></div>\n</div></div>\n\n\n\n<p class=\"has-small-font-size\"><em>Featured image: 404 template by Channing Ritter on critterverse.blog</em></p>\n\n\n\n<p>Howdy. To start, thanks so much for having me. This is a presentation about full site editing. I&#8217;m very excited to talk with you. This is a feature I&#8217;ve been thinking a lot about over the last year and I&#8217;m excited to share with you all. I&#8217;m also really keen to learn from each of you what you&#8217;re worried about, what you&#8217;re excited about, how you think full-site editing can improve your workflows, and more. So this is prerecorded because I wanted to make sure with so much information going around, wanted to make sure I had all the details lined up and so I could pause and rework certain sections. But please know that I welcome questions. So while you can&#8217;t interrupt me during the presentation, there will be a whole section at the end. Pull out your pen and paper, write them down, and know that they&#8217;re very, very welcomed. But for now, let&#8217;s dig in.</p>\n\n\n\n<p>So briefly about me, I&#8217;m actually originally from Winter Park, Florida. So I haven&#8217;t been home in about a year and a half, and thank you for letting me virtually return home by participating in this meetup. In 2011, I first found WordPress as a student at UNC Chapel Hill. I worked on their multi-site, had a great time. 2013, I went to my first ever WordCamp. 2014, joined Automatic as a happiness engineer focused on VaultPress and had a great time focusing on security of websites. It gave me a really interesting look into concerns people have about websites that most people don&#8217;t think about. Then 2020, I switched into the developer relations position at Automatic and have been there ever since.</p>\n\n\n\n<p>So let&#8217;s get meta and talk about the talk. (laughing). So to start, I&#8217;m going to zoom out really big and then slowly put pieces together until we kind of get a nice map of what full-site editing is with all the details. So this will look kind of like first answering some big, high-level questions, digging into then how the work is actually being done, so going from high level, &#8220;What is this? Why does it help me?&#8221; to &#8220;How is this work actually being approached? What are the pieces of the work that I need to know, the role of the outreach program?&#8221; Then I want to address some key topics and questions that I often get asked when I&#8217;ve presented at other places and talked on other podcasts about full-site editing or just one-on-one with people. I love to talk about full-site editing. So hopefully some of the key topics and questions can help get people thinking about other things they want to ask about.</p>\n\n\n\n<p>So let&#8217;s dig into the first big picture question. Why is this being done at all? Simply put, it&#8217;s to empower users. Rather than having a specific part of the site locked away in a theme or requiring a plugin, full-site editing will basically open it up to customize any part of your site the way you want to, or, on the flip side, you can let it be, or if you&#8217;re an agency, you could lock certain sites down or certain parts of a site down, depending upon how you want users to have access. So it&#8217;s a pretty powerful, big mission to actually deliver on full site editing.</p>\n\n\n\n<p>So I answered why is this being done. Now let&#8217;s dig into how does this fit into the WordPress roadmap? So full-site editing is a major part of phase two of the current roadmap. It&#8217;s not the only part, though. There&#8217;s actually other interrelated projects, including things like block patterns, the block directory, block-based themes. So it&#8217;s just one piece of this larger roadmap, but it&#8217;s one of the major grounding points of phase two of the roadmap.</p>\n\n\n\n<p>So what is full-site editing at a high level? Essentially, it&#8217;s a collection of features, and it&#8217;s important that you get the collection part. But it&#8217;s a collection of features that bring the familiar experience of blocks to all parts of your site, rather than just posts and pages. But Anne, what does a collection of features mean? Basically, I&#8217;ve noticed people tend to refer to full-site editing as one big thing. It&#8217;s like an on-off switch. It&#8217;s this monolith, and it&#8217;s actually not. It&#8217;s not this binary thing. It&#8217;s way better to talk about how there&#8217;s different pieces that fit together and interrelate, because it actually gives flexibility for release squads to release what&#8217;s ready, rather than all of it at once. So while it might be easier to talk about how it&#8217;s this one big thing, I encourage you all to kind of think about the different pieces, if you can, and I&#8217;ll touch on this more in a bit.</p>\n\n\n\n<p>Okay. So what does full-site editing actually allow me to do, right? So cool, Anne, a collection of features, but show me the money. (laughing). So this is an example of a 404 page. So a 404 page, typically you&#8217;re not actually able to edit, but with full-site editing, you could actually create this 404 page. This was actually done by one of the automatic designers, Channing. Shout-out to Channing. She did this as part of one of the tests for full-site editing, the outreach program. So it&#8217;s a pretty beautiful thing. While we all might not have the design chops that Channing does, it is pretty neat to see kind of a very tangible, hands-on example of what full-site editing unlocks you to be able to do.</p>\n\n\n\n<p>To get more specific, basically, if you&#8217;re a user, imagine editing the template that a specific post has for a specific category. For theme authors, you&#8217;ll be able to tap into design tools that allow you to focus more on actually creating a really compelling experience and less on getting the code in place and hacking things up. You can also out in and out of whatever you&#8217;re ready for, which is really exciting. But ideally, for theme authors, it&#8217;s going to be a huge change. It&#8217;ll allow creating themes to be much, much easier. If you&#8217;re an agency, you&#8217;ll have greater control over what you can offer clients, including setting custom brand colors with presets to locking down various aspects for consistency, such as typography or wanting only certain default colors to be used.</p>\n\n\n\n<h2 id=\"0-strong-milestones-of-full-site-editing-experience-strong\">Milestones of Full-Site Editing Experience</h2>\n\n\n\n<p>So how is this work being done? So rather than trying to go through everything in one go, this project has actually been broken down into seven different milestones. Some of these milestones are completely separate, their own thing. Some are very interrelated. Some mix and match in different ways. But we&#8217;re going to go through each of them so you can get a sense of how this is being done. I&#8217;m going to try to stay at a high level before going into a very brief demo midway through the presentation. But hopefully this&#8217;ll give you a sense of what this looks like.</p>\n\n\n\n<h3 id=\"1-strong-infrastructure-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-strong\">Infrastructure&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</h3>\n\n\n\n<p>So milestone one, this was actually such a big milestone that it was broken into two parts. Essentially, this is all about laying the foundation, everything from multi-entity saving, which is actually being displayed here in the GIF that you see, where you can actually update multiple things at once, including a template part. You update your header, you update a post, and you update your footer. It&#8217;ll show all the changes happening and allow you to check and uncheck different boxes to save. Basically, just think about this as building the foundation of the experience, the technical foundation, unlocking things like being able to edit a template directly to working on specific blocks for full-site editing, like the site title. So we have a site title block, and it updates everywhere you have it listed.</p>\n\n\n\n<h3 id=\"2-strong-browsing-templates-and-template-parts-strong\">Browsing Templates and Template Parts</h3>\n\n\n\n<p>Milestone two, browsing. Again, there&#8217;s another little visual so you can see what this actually looks like. This is basically giving you a map and a GPS to know your location, how to get where you need to go for your site. So because there are these new parts of editing your site that are unlocked with full-site editing, like template editing and template parts, like a header or footer, there needs to be a way to navigate between them. So this milestone is dedicated to that. How can we make it as easy as possible for you to you get where you need to go?</p>\n\n\n\n<h3 id=\"3-strong-styling-global-styles-theme-json-strong\">Styling &#8211; Global Styles + theme.json</h3>\n\n\n\n<p>Milestone three, styling. So this actually covers a couple different layers. I&#8217;m going to break it down in this slide and then the next one to help give you a sense visually of what this looks like. But this includes everything from the technical requirements to make various levels work and the UI for users. So you can actually see a depiction of the future design for the UI that users will interact with in the imagery here. So there&#8217;s generally three layers, including selling for local blocks, theme defaults, and then global modifications or what we often call global styles. You can think of global styles as basically having the option to edit all aspects of your site. So if you want to set a typography that goes across your entire site, if you want to have certain colors for all H1 headers, you can set that up with global styles.</p>\n\n\n\n<p>Currently, much of the work has been focused on the technical underpinnings, especially around aspects like theme.json, which is a very key component for block themes and a really big tool for block theme authors. But for 5.8, the focus is generally going to be on merging the non-user interface parts of global styles. So don&#8217;t expect to interact with this system unless you&#8217;re a theme author. If you are a theme authro, get really excited. Here&#8217;s a little visual, just you can get a sense of it. So these are the different layers that have to interact in the styling system and hierarchy that needs to be thought of when working on this milestone.</p>\n\n\n\n<h3 id=\"4-strong-20-theme-blocks-strong\">20+ Theme Blocks</h3>\n\n\n\n<p>Milestone four, theme blocks. So because full-site editing opens up so many more aspects of the site to edit, new blocks had to be created, basically. So if you&#8217;re creating a new template for a specific category and you&#8217;re putting in post content and you want to add the post author block, which you can see here, you can quickly add it in, customize it to your liking, add in post comment, add in post data, remove the post date. You can edit each parts of these things, which pretty excited about this, is there&#8217;s actually 20-plus blocks that fall into this category. If all goes as planned, some of those will be released for 5.8 and available potentially for all sites. So even if you&#8217;re not using a block theme, you could have access to these theme blocks, which is pretty powerful and pretty cool.</p>\n\n\n\n<h3 id=\"5-strong-query-block-the-loop-or-post-list-strong\">Query Block &#8211; The Loop or Post List</h3>\n\n\n\n<p>Query block. So the query block has its own milestone, because it&#8217;s a pretty powerful block. It&#8217;s also meant to be a theme author tool, so in the long run, if you&#8217;re a user, imagine that you interact with what we call block variations, which basically are just different variations of a block, as the name implies. But imagine you want to add in your latest post. You&#8217;ll add the latest post block, but underneath it, what will be powering that experience of adding your latest post will be the query block. Essentially, as the name implies, it allows you to query posts and pages and display them in different arrangements on the page. I&#8217;m very excited, actually. In Gutenberg 10.5, which will be released in just about two weeks, there&#8217;s going to be some new patterns. You can see right here, large, medium, small are the current selection of patterns that you have for the query block. But pretty soon, there&#8217;s going to be a grid pattern and a couple other cool ones, which is pretty exciting. Generally speaking, though, if you&#8217;re an end user, don&#8217;t expect to interact with this. If you&#8217;re a theme author, get excited.</p>\n\n\n\n<h3 id=\"6-strong-navigation-block-strong\">Navigation Block</h3>\n\n\n\n<p>Navigation block. Again, this is just a single block, but don&#8217;t be fooled. It&#8217;s definitely a mighty one. So this last one is dedicated to all things navigation block, both in terms of structure and design. You can see in this little GIF I have going on, I&#8217;m just kind of making little design changes and moving things around so you can get a sense of what it&#8217;s like to interact with this block. This milestone actually includes everything from how do you build a really simple menu with a few items to thinking about how to create a really large mega menu and add in new blocks, like the search block that you can see here. We&#8217;re even adding sub-menus, different designs, different layouts, and more.</p>\n\n\n\n<h3 id=\"7-strong-gradual-adoption-widgets-customizer-hybrid-themes-nbsp-strong\">Gradual Adoption &#8211; Widgets, Customizer, Hybrid Themes&nbsp;</h3>\n\n\n\n<p>So the last piece of the milestones is the gradual adoption. I hope this GIF makes you laugh, but also seriously, this is the intent, is we slowly want people to be able to adapt in the way that they can. Once more of these pieces are completed, there&#8217;s basically a ton of room to start exploring how adoption might look like for those who can&#8217;t or don&#8217;t want to restructure a full theme. So this might be an intermix of block-based things and regular PHP templates, or it might be covered by projects like the block-based widget editor and the navigation screen. Both of those projects I&#8217;ll cover later, but for now, just keep in mind that this is intentionally a milestone. We want to allow for gradual adoption and want people to have lots of pathways in to taking advantage of full site editing.</p>\n\n\n\n<h2 id=\"8-strong-whats-coming-to-word-press-5-8-strong\">What&#8217;s coming to WordPress 5.8</h2>\n\n\n\n<p>So what&#8217;s coming to WordPress 5.8? So just last week, a post went out from Josepha, who is the executive director of the WordPress project. I want to read a quote from it just to kind of set the tone and give you a sense. So full-site editing is a collection of projects, and together, they represent a big change, arguably too much for a single release. The most important context to share is that it isn&#8217;t shipping as the full default experience for users. One of the clearest pieces of feedback from the phase one merge process was that there wasn&#8217;t enough time for extenders, agencies, theme authors, plugin developers, site builders, et cetera to prepare for the upcoming changes. With that in mind, this merge process won&#8217;t be an on-off switch, and you can see I&#8217;ve bolded various specific parts that I hope you take home with you.</p>\n\n\n\n<p>All right. So let&#8217;s talk WordPress 5.8 plans. This is up-to-date information as of today. A post was released from Josepha on [inaudible 00:12:21], if you&#8217;d like to check it out. From the call that the project leadership had, this is what they came up with for the 5.8 plans. This includes improvements from Gutenberg 9.9 and beyond. So we always package different versions of Gutenberg into major releases. This release is no different. There&#8217;ll be an introduction of new blocks, including query, site logo, navigation, et cetera. These are each very powerful blocks, very exciting to see. theme.json mechanism, this is part of what allows block themes to use different global styling, which will be very cool for block authors to get their hands on.</p>\n\n\n\n<p>The template editor for pages and a blank template, I&#8217;ll actually be showing a demo of this in a moment. So hang tight there, but it&#8217;ll all make sense in a bit. The widget screen and block widgets in the customizer, this is basically work being done to bring blocks to the widgets experience. I will talk more about that later, about how it&#8217;s a stepping stone towards full-site editing. Then finally, design tools, so even more design tools that people can hook into, including duotone, which adds a really cool color filter, layout controls, padding, and more.</p>\n\n\n\n<h3 id=\"9-strong-short-demo-template-editing-navigation-block-and-multi-entity-saving-strong\">Short Demo: Template Editing, Navigation Block and Multi-Entity Saving</h3>\n\n\n\n<p>So at this point, let&#8217;s pause for a minute and actually show off one of the features that is aimed to be included in 5.8.&nbsp;</p>\n\n\n\n<p>I&#8217;m going to show you template editing, the navigation block, and just some of the cool flows with multi-entity saving is one of the things that we talked about that will make it into this release. So I&#8217;m in the post editor. I have a new post. I love to blog and write and present. I hit Update. Super happy, whatever. Open up the post settings, and there&#8217;s this new section that allows you to both create a brand new template. This will ideally be used both in themes that are block-based themes, so they&#8217;re ready for full-site editing, and potentially for classic themes. There&#8217;s actually work underway so that this will be available in anything being used in WordPress right now.</p>\n\n\n\n<p>So right now, if I hit Edit, this will take me into the template that this post is using. So let&#8217;s do that now. So as you can see, this drops me into what looks like the entire site. So you can see I have my header up here, I have the footer down here, and I can make changes directly to them. So, for example, if I jump in here, this is the navigation block, and I haven&#8217;t yet set it up. So I can say add all pages, and I can start empty. In this case, I&#8217;ll say, &#8220;You know what? Let&#8217;s start empty.&#8221; Let&#8217;s say I want to add a custom link. One of the cool things you can actually do, you can quickly select from here, or let&#8217;s say I want to add a new post. Let me first select post link.</p>\n\n\n\n<p>So adventures around the world. Let&#8217;s pretend I&#8217;m just inspired where I&#8217;m writing this. I can actually create a draft post, which is pretty cool, and it&#8217;ll show up here. It will not show up on the front end, since it&#8217;s a draft, but it actually creates a page draft for this with this title automatically. So let&#8217;s say I&#8217;m scrolling through here. I&#8217;m going, &#8220;Oh, this looks pretty good. Actually, I kind of want to see what it looks like if I add an image to the post here.&#8221; Pull up an image block. Oh, my media library. Hammocks. Can&#8217;t get enough hammocks. Going to throw that in there. Great. So at this point, I&#8217;ve made changes to the actual header. I&#8217;ve made changes to the post. I&#8217;m just going to apply and see what happens.</p>\n\n\n\n<p>So this is the multi-entity saving that I mentioned earlier. Now, as you can see, it has a section for posts, so it&#8217;s saying, &#8220;Hey, you edited this post,&#8221; and it has a section saying, &#8220;Hey, you edited the header.&#8221; So at this point, I&#8217;m going to hit Save, because I want both those changes to propagate. Now I&#8217;m back into my post, into the writing flow, and I can easily switch back and forth. I can also select a new one. But yeah, hopefully this gives you a good sense of one of the key parts that&#8217;s being worked on for inclusion in 5.8. There will be a demo later, but this is just a taste.</p>\n\n\n\n<h2 id=\"10-strong-timeline-of-5-8-release-strong\">Timeline of 5.8 Release</h2>\n\n\n\n<p>To help set the stage for what you can prepare for, here are some upcoming dates to keep in mind. If you&#8217;re like me, time is moving really strangely, so I like to have dates to kind of anchor me. Feel free to take a screenshot of this or write it down if you&#8217;d like. So April 13th and April 27th, these are the go and no-go decision dates. So right now, project leadership actually has gathered. So you might notice if you are good with dates and good with time right now, April 13th has come and gone. So this date has passed, and project leadership has met actually to go through different FSE-related features and projects to figure out what might be ready for 5.8. I would expect to see more high-level posts throughout the month, especially after the second date, the April 27th date. That&#8217;s when final decisions will be made around 5.8.</p>\n\n\n\n<p>Then if all goes well, the beta period for WordPress 5.8 will start on June 8th. So people can actually start getting their hands on the tools that are going to be in place in the actual release and testing it and finding bugs and improving things from there. July 20th is the actual date of WordPress 5.8 and when it&#8217;s released. This is being considered as an open beta, where theme authors, plugin authors, agencies, and more can dig into the tools that are being offered and that I went over previously. Then in December 2021, that&#8217;s around the time when WordPress 5.9 will be released, and this is when I expect to move from tools for extenders into tools actually for users and more user-facing interactions with full-site editing and having things unlocked in the interface that previously in 5.8, most users won&#8217;t notice and won&#8217;t interact with. In 5.9, I expect that to be more visible.</p>\n\n\n\n<p>So some key takeaways. I know this is a lot of information. So only what&#8217;s ready from the various milestones will be shipped. This is not an on-off switch, and it won&#8217;t take over your site. The focus right now is on giving tools to extenders first, before user-facing changes. That&#8217;s a big lesson that was learned from the 5.0 merge, where Gutenberg and the core editor was brought into the WordPress experience. This is something that, thankfully, we&#8217;re in a position where because of these interrelated projects, we&#8217;re able to move in a more flexible and adaptable way to release what&#8217;s ready and not anything else.</p>\n\n\n\n<h2 id=\"11-strong-what-is-the-fse-outreach-experiment-program-strong\">What is the FSE Outreach Experiment Program?</h2>\n\n\n\n<p>All right. At this point, let&#8217;s jump into the full-site editing outreach program. As a reminder, this is the program that I actually run, so consider this free rein to ask me whatever question you&#8217;d like, because I think probably too much about this program. But it&#8217;s something I&#8217;m really excited to talk to you about, and I think it&#8217;s a really neat vehicle for both feedback and education about full site editing.</p>\n\n\n\n<p>So let&#8217;s go over some big picture questions, kind of like we did earlier on, and just get the details of the way. So let&#8217;s start. What is it? So essentially, it&#8217;s just a program focused on full-site editing. It&#8217;s in the form of a Slack channel right now. I&#8217;ll go over how to join it in a bit. But it has curated calls for testing, summary posts of the feedback that we get, and various educational opportunities that you can hop in on, mainly in the form of live streams. I&#8217;m running some hallway hangouts, which are basically just Zoom calls. People can come in, and we can talk about full site editing.</p>\n\n\n\n<h3 id=\"12-strong-whats-the-goal-strong\">What&#8217;s the goal</h3>\n\n\n\n<p>What&#8217;s the goal? So the goal is pretty simple, help improve full-site editing experience by gathering feedback from WordPress site builders. While the group originally started solely to be about feedback, there&#8217;s actually this really neat educational component that has come up as the feature has developed and as more people have gotten curious about it. So people can join just to build their own awareness about what&#8217;s happening with full-site editing and kind of just look at a glance or just help amplify the posts that are coming through.</p>\n\n\n\n<h3 id=\"13-strong-why-was-it-started-strong\">Why was it started?</h3>\n\n\n\n<p>Why was it started? So I&#8217;m going to quote Josepha from the kickoff post. During the WordPress 5.0 retrospective, which is when Gutenberg was merged and the core editor was merged, one of the things that came up routinely was the need for better engagement with users. It was generally agreed from all levels and area of contribution that users would be most impacted by Gutenberg, but the users were also the group we had the least channels of communication to. To help get user feedback to WordPress developers a little bit more seamlessly, I&#8217;m going to try and experiment outreach program. So basically, this is a lesson that was learned from the 5.0 release. In order to prevent another situation where people are caught by surprise, this program is in place to help people get excited and on ramped and on boarded onto full-site editing, as well as getting feedback so that we know if a major workflow change is coming into play, we can actually get user feedback to make it a little bit easier.</p>\n\n\n\n<h3 id=\"14-strong-how-to-join-fse-outreach-experiment-strong\">How to Join FSE Outreach Experiment</h3>\n\n\n\n<p>All right. At this point, I bet you&#8217;re just so stoked. You&#8217;re ready to dive in. Awesome. (laughing). All you&#8217;ve got to do is join FSE Outreach Experiment in Make WordPress Slack, and then you&#8217;re all set. You&#8217;ll just get a bunch of annoying pings for me with prompts for how to test, interesting posts related to full site editing, and more. I promise it&#8217;s also not as scary as this dive, which looks absolutely terrifying, but also beautiful.</p>\n\n\n\n<h2 id=\"15-strong-high-level-feedback-from-calls-for-testing-strong\">High-Level Feedback from Calls for Testing</h2>\n\n\n\n<p>So because at this point, we&#8217;re on our fifth call for testing, I want to go over some high-level pieces of feedback that we&#8217;ve actually gotten about the experience so far. Basically, across all the calls for testing, these are repeated themes that have come up. But keep in mind that because there are certain aspects that we actually haven&#8217;t tested, so global styles, for example, the UI isn&#8217;t available really for users, and it&#8217;s not refined for users, so it&#8217;s not something that we&#8217;ve had as a focus part of testing, even though there is a UI that is available. So certain things are left out purely because they aren&#8217;t necessarily ready for testing, but these are the top pieces of feedback. So bear with me.</p>\n\n\n\n<h3 id=\"16-strong-preview-content-strong\">Preview Content</h3>\n\n\n\n<p>Previewing content. Publish a post. You want to go preview it, or you&#8217;re editing a post. You want to go preview the content. The same thing is true with full site editing. This is a big thing that kept coming up. My question is, is this a necessary workflow, or is it a symptom of other problems? Because in general, the site editor should be as WYSIWYG, as what you see is what you get, as possible.</p>\n\n\n\n<p>So if you&#8217;re making a change, it should look exactly the same as the front end of your site, and because it doesn&#8217;t right now, it&#8217;s causing this tension. There actually is a preview site option under discussion, as well as a browse mode option, which basically, if you&#8217;re actually editing your site, it would turn off everything that wouldn&#8217;t actually show up on the front end. So if you only have one page of posts, but you have pagination set up so if you had multiple pages, that would actually go away. So as you can imagine, this is currently up for discussion, but there actually are a couple different pathways to try and address this problem. But it&#8217;s a very important one to address.</p>\n\n\n\n<h3 id=\"17-strong-saving-process-strong\">Saving Process</h3>\n\n\n\n<p>Saving process. I like to say it&#8217;s technically reliable, but not yet delightful. So basically, it&#8217;s left a lot to be desired right now, and it&#8217;s resulted in a fair bit of confusion. There&#8217;s a lot of feature requests and enhancements and bugs that have come up related to saving. This is likely because the multi-entity saving aspect that I demoed earlier is very new for WordPress users. It&#8217;s not something we&#8217;re used to having as part of our workflow. So it&#8217;s something that inherently needs some work on. So whether it was people requesting more granular saving options to show specifically what was being changed to issues with saving for screen readers to confusion around even just what the general parts mean, like what you&#8217;re actually selecting or unselecting, This was definitely a big, big area of feedback.</p>\n\n\n\n<h3 id=\"18-distinction-between-editing-area\">Distinction between editing area.</h3>\n\n\n\n<p>Distinction between editing area. So basically, because you can edit all parts of your site, it&#8217;s hard to know, &#8220;Am I editing the header for all of my site, or am I editing just a specific piece of content on a post?&#8221; This kind of distinction, jumping between different levels of, &#8220;Oh, you&#8217;re changing this. This will change everything&#8221; to &#8220;You&#8217;re just changing this one thing in this one spot&#8221; is pretty tricky. Right now, there&#8217;s not a lot of friction, and there&#8217;s not a lot clarity in the actual experience to show when you&#8217;re actually jumping between those different levels. So this was a big piece that&#8217;s come up, and it&#8217;s something that is an active area of iteration and exploration to kind of get the right amount of friction in place.</p>\n\n\n\n<h3 id=\"19-rethinking-width-and-alignment\">Rethinking Width and Alignment.</h3>\n\n\n\n<p>So rethinking width and alignment. Previously, alignment in full-site editing worked to optimize how traditional things worked, where basically, traditional things provided their own alignment styles. This worked okay for the project up until this point. But recently, work has been shipped to reimagine how this dynamic should work to allow for actually more control over alignments when using the site editor. This should actually help make sure that whether you want something that&#8217;s full width or you want to change the actual width of your content that&#8217;s showing up that it&#8217;ll actually be what you see is what you get. Right now, this is another piece of feedback at a high level that&#8217;s impacted what you see is what you get experience.</p>\n\n\n\n<h3 id=\"20-strong-general-usability-improvements-strong\">General usability improvements.</h3>\n\n\n\n<p>Generally usability improvements. I admit this is totally a catchall, and it covers a ton of stuff, but it&#8217;s actually a very important one to think of, because it&#8217;ll actually move the site editing experience from being just functional to actually delightful, which is really exciting. There&#8217;s a ton of issues that are included in this, including some enhancement requests, bug reports, all that good stuff. One of my favorites to talk about is creating a background image on a template part. So imagine you have a header. You&#8217;re working on it. You&#8217;re super excited, and you&#8217;re almost done. Then you&#8217;re like, &#8220;Oh, do you what would be really cool is if I had mountains in the background. Maybe I&#8217;ll add a cover block in the background and add an image and set the opacity pretty low, but have mountains going in the background of the site.&#8221; That&#8217;s really hard to do.(laughing). You basically would have to delete everything and add the block in and then add everything back. So those are the kinds of experiences that we&#8217;re trying to improve right now.</p>\n\n\n\n<h3 id=\"21-strong-improving-placeholders-strong\">Improving Placeholders.</h3>\n\n\n\n<p>Improving placeholders. So placeholders, especially for some of the newer blocks, are a powerful way to both guide people and a current point of confusion. So you probably saw this with the navigation block earlier, where it had those little grayed boxes. It&#8217;s like, &#8220;How do we explain to people, &#8216;Hey, this is something you have to set up and engage with, but here&#8217;s generally what it will look like and what it will do&#8217;?&#8221;&nbsp;</p>\n\n\n\n<p>The feedback for this mainly came into play with the query block, social icon block, featured image block, and the navigation block. Each currently actually also get users started in different ways. So not only are there different placeholders for different experiences, the actual experience of interacting with the placeholders are all pretty inconsistent right now. So I think in the long run, it seems that users will benefit a bunch from a standardized, consistent way to interact with placeholder content so that it becomes a really familiar interaction when you&#8217;re working with a more powerful block. This especially is true for the query block and navigation block.</p>\n\n\n\n<p>Okay, now that we&#8217;ve covered the milestones, the outreach program, high-level pieces of feedback, I&#8217;m going to quickly run through some key topics that I imagine you&#8217;re going to have questions about. Just because I cover them here does not mean I don&#8217;t want to answer questions, so please don&#8217;t see this as a sign that you can&#8217;t also still ask questions about these topics. This is just what I&#8217;ve been hearing from folks.</p>\n\n\n\n<h2 id=\"22-strong-will-full-site-editing-take-over-my-site-strong\">Will full site editing take over my site?</h2>\n\n\n\n<p>Hopefully by this point, you all can say no in a resounding way. But no, this is not something that&#8217;s going to all of a sudden, on-off switch, you upgrade to 5.8, it takes everything over. Not at all. You very much have to opt into it through using a theme blocking that supports, actually, these features. In time, more pathways are going to be built as well so that when you&#8217;re actually using full-site editing, you&#8217;ll likely be using pieces in all of it. So you could just be using the query block, or you could just be using global styles without it taking over your entire site.</p>\n\n\n\n<h2 id=\"23-strong-what-about-the-block-based-navigation-and-widget-screens-strong\">What about the block-based navigation and widget screens?</h2>\n\n\n\n<p>What&#8217;s the deal there? So in case you missed it, there&#8217;s actually two additional projects that are dedicated to bringing blocks to more areas of the site outside of full site, I think. This include the navigation screens. You can build out menus and the widget screens. You can build out your widget sections, and this is pretty powerful and high-impact work. They are both separate projects that are tangential to full-site editing, but you can think of them as stepping stones, basically. So you could have a theme that is a classic theme, but it uses a block-based widget screen so that people can have the power blocks with their widgets. Essentially, the whole point, like I said, it&#8217;s a stepping stone to get people used to using blocks more places.&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</p>\n\n\n\n<h2 id=\"24-strong-site-builders-strong\">Site builders</h2>\n\n\n\n<p>I could write a thesis about this, because there&#8217;s so much to talk about here. I imagine I&#8217;m going to get questions about this, but essentially, full-site editing is being built partially so people don&#8217;t get stuck or locked into one site builder or another. It&#8217;s also being built in a way that site builders can actually hook into what&#8217;s being created if they choose to. I&#8217;ve heard from a lot of folks, though, that they expect full-site editing to actually fully replicate their favorite site builder&#8217;s functionality, and I&#8217;m here to say that while the goals between full-site editing and site builders are pretty similar in terms of empowering users and giving better tools to customize a site, the difference is that we&#8217;re building for 40% of the Internet, and we&#8217;re building even for site builders, where site builders have a much more targeted approach.</p>\n\n\n\n<p>In the future, I do think there will always be room for specific takes of how to have an ideal site editing experience, whether that&#8217;s geared to a specific group, like a marketing style approach, or if you want to have things locked down or if you want to have things opened up. But generally speaking, full-site editing is meant to actually expand the way WordPress as a whole uses blocks, so don&#8217;t expect it to fully replicate any sort of site builder, your favorite site builder, essentially.</p>\n\n\n\n<h2 id=\"25-strong-how-is-this-going-to-impact-themes-strong\">How is this going to impact themes?</h2>\n\n\n\n<p>How is this going to impact themes? So in the long run, this should actually make theme development much easier. I think Marcus&#8217;s demonstration later will show that, and much simpler, especially with the design tools that will be essentially ready at your fingertips to tap into. Ideally, because of what&#8217;s being released, it should allow theme authors to focus less on coding and functions and more on design aesthetics, integrating block patterns, and all that good stuff. But because one of the key things I wanted to really drive home in this section, though, is that because full-site editing requires a block-based theme or a theme with certain functionality enabled, this makes theming extremely important to get right. So I&#8217;ve heard people say like, &#8220;Oh, themes are a thing of the past.&#8221; It&#8217;s very much not true. I&#8217;d actually argue the opposite, that theme is almost key to this experience, to having it be delightful and having it makes sense.</p>\n\n\n\n<h2 id=\"26-strong-what-pathways-are-going-to-be-created-strong\">What pathways are going to be created?</h2>\n\n\n\n<p>I know I&#8217;ve talked a lot about pathways this entire time, but it is the entire focus of the final month milestone for full-site editing. So expect a lot of pathways. For now, this includes everything from having a classic theme that can take advantage of global styles to template editing or a block-based widget screen. This also includes things like allowing certain full-site editing, really, blocks to be available for users, regardless of if they&#8217;re using a classic theme or a block theme or enabling the ability to edit block templates directly, kind of like I showed in the demo earlier. So there&#8217;s going to be a ton of options here, and I&#8217;m actually really excited to see what happens once 5.8 kind of sparks the creativity of the community, because I imagine both that people will create their own pathways and start experimenting, and we&#8217;ll also get a very clear sense of, &#8220;Hey, I actually really need X, Y, and Z pathway.&#8221; We&#8217;ll get a sense of demand from the community of core, which is super exciting to have.</p>\n\n\n\n<h2 id=\"27-strong-whats-the-best-way-to-prepare-nbsp-strong\">What&#8217;s the best way to prepare?&nbsp;</h2>\n\n\n\n<p>So this depends on who you are. (laughing). So depending on whoever you are, at a high level, this is what I recommend. Join the FSE Outreach Program. I know this is the thing that I run. I&#8217;m very biased. But seriously, join it. I think it&#8217;s really, really helpful to get a sense both of feedback, what&#8217;s being currently iterated on, and just general education opportunities. If you&#8217;re a theme author, I really recommend checking out the theme experiments repo and joining the block-based theme meetings to learn about the latest and greatest, because lots of good information is shared there. In general, too, it&#8217;s often also helpful to join the weekly core editor meetings, because there&#8217;s regular updates about the projects and PRs people working on. Finally, pay attention to upcoming content on Learn WordPress, because I think there&#8217;s going to be a ton of stuff coming up about full-site editing, depending upon what&#8217;s scoped for 5.8 and 5.9, including building a block-based theme, for example. That will really help, I think, everyone level up.</p>\n\n\n\n<h2 id=\"28-strong-stay-connected-with-anne-mc-carthy-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-strong\">Stay connected with Anne McCarthy</h2>\n\n\n\n<p>All right. So we&#8217;re at the very end. At this point, if you want to stay connected with me or you have follow-up questions after this talk, I very much welcome them. You can find me on WordPress or on Slack @annezazu, or you can reach me at my site, nomad.blog. I will also try and drop my automatic email address separately. I just won&#8217;t on a live presentation, in case you want to follow up directly via email. I&#8217;m not on Twitter. I&#8217;m not on Facebook. I&#8217;m on and off of Instagram. So please don&#8217;t try to contact me those ways.</p>\n\n\n\n<p>Finally, I just want to say thanks so much for your time. Let&#8217;s hear your questions at this point. I&#8217;m really excited to hear what you all are thinking and curious about. I do want to say I don&#8217;t know everything, but I can find anything, and I&#8217;ve talked with David about how he can follow up after this presentation to get you all information and answers that you all want to questions that I might not be able to answer. So at this point, I&#8217;m going to pass it off to live and current Anne and give a high-five from past Anne.</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, 16 Apr 2021 18:21:20 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Birgit Pauli-Haack\";s: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:67:\"WPTavern: Enō: ‘Probably This Is the Best Blogging Theme Ever’\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=115149\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:163:\"https://wptavern.com/eno-probably-this-is-the-best-blogging-theme-ever?utm_source=rss&utm_medium=rss&utm_campaign=eno-probably-this-is-the-best-blogging-theme-ever\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4460:\"<img />\n\n\n\n<p class=\"has-drop-cap\">Sometimes a theme&rsquo;s description is so moving that one must install, activate, and test the project. I often rail against the obviously keyword-stuffed text in the free WordPress theme directory. But, I am pleasantly surprised from time to time.</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>En&#333; is an elegant, modern and functional WordPress theme. Probably this is the best blogging theme ever. Just see the demo at&hellip;It supports Gutenberg block editor and has a lot of Customizer options&hellip;</p></blockquote>\n\n\n\n<p>Thus began my journey into <a href=\"https://webminimalism.com/blog/eno-wordpress-theme/\">En&#333;</a>, an upcoming theme by Ivan Fonin. I could have been partially a language-barrier thing. Or, the author could have just been having a bit of fun. Nevertheless, it was the sort of description that stood out enough to pull into my test environment. Any blogging theme claiming the title of &ldquo;the best&rdquo; was at least worth a look.</p>\n\n\n\n<p>What I found was a well-designed theme that focused on some of those timeless elements, such as generous use of whitespace and sound typography. I would not go so far as crowning it the best ever created, but it will undoubtedly be the perfect fit for many bloggers in the future.</p>\n\n\n\n<p>Currently, the theme is awaiting a review before it lands in the official WordPress theme directory. However, those who want to try it out early can snag a copy of the ZIP file from its <a href=\"https://themes.trac.wordpress.org/ticket/97585\">Trac ticket</a>.</p>\n\n\n\n<p>En&#333; tackles the intricacies of block editor design like a pro. In areas where so many &ldquo;block-ready&rdquo; themes fail to live up to expectations, it is a textbook example of working alongside the block system.</p>\n\n\n\n<p>Where it falls short is that it does not go beyond nailing down the basics of block design. The theme bundles no patterns, which would allow users to quickly drop in more advanced layouts. It also does not include block styles or even a custom color palette. There are no unique elements in the design where the author stamps his own signature in bold. It is almost formulaic, but that is not necessarily a bad thing. Formula can feel good. It can be comforting when you need something that simply gets out of the way and allows your content to shine.</p>\n\n\n\n<p>While Fonin bills the project as a blogging theme, it stands out as a solid option for photographers. The open-canvas layout leaves ample room for large images and galleries, and the <a href=\"https://demo.webminimalism.com/eno/\">theme&rsquo;s demo</a> is filled with examples.</p>\n\n\n\n<img />Gallery examples from the En&#333; theme.\n\n\n\n<p>What would make this theme even better would be a few image and gallery styles, allowing end-users to spruce up their blocks a little more.</p>\n\n\n\n<p>As much as I like the theme, it does tick one of the boxes from my most-irritating-things-that-themes-do checklist. It outputs the featured image on single post views above the post content. This creates the dreaded double-image issue when a user also uses the same image in the post itself. The easy fix for this is to provide a theme option for not showing the featured image on single posts.</p>\n\n\n\n<img />No customizer option to disable post featured image on single views.\n\n\n\n<p>It is a surprise that the theme does not have this option because it allows users to enable or disable nearly everything possible outside of the post content. It has three different areas where metadata can be shown: before the post title, after the title, and after the content. Users can pick and choose what appears where via a series of checkboxes. The approach is convoluted at best and is a good representation of why we need the site editor. This is not so much the fault of the theme as it is a limitation of the customizer. Instead of ticking and unticking boxes, users could simply move blocks around to their desired location.</p>\n\n\n\n<p>The comments are broken in the theme at the moment. Each comment&rsquo;s text is outputting a simple comma instead of the content. I am sure this will come up in the theme review and be addressed before it goes live.</p>\n\n\n\n<p>For users looking for a minimalist, block-ready theme, this will be a solid option once it makes it through the review process. I look forward to the day when themes like En&#333; are the baseline when designing for the block system.</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, 16 Apr 2021 17:20:30 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Justin Tadlock\";s: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:66:\"WPTavern: Full Site Editing Is Partly a ‘Go’ for WordPress 5.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:30:\"https://wptavern.com/?p=115193\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:165:\"https://wptavern.com/full-site-editing-is-partly-a-go-for-wordpress-5-8?utm_source=rss&utm_medium=rss&utm_campaign=full-site-editing-is-partly-a-go-for-wordpress-5-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:6930:\"<p class=\"has-drop-cap\">Today, Josepha Haden Chomphosy <a href=\"https://make.wordpress.org/core/2021/04/15/full-site-editing-go-no-go-april-14-2021/\">announced the results</a> of yesterday&rsquo;s &ldquo;go/no-go&rdquo; demo and decision on <a href=\"https://wptavern.com/will-full-site-editing-land-in-wordpress-5-8-a-decision-is-forthcoming\">whether Full Site Editing (FSE) would land in WordPress 5.8</a>. The site editor and global styles are not landing in the next release. However, several other features should launch and allow users to build their sites with blocks in new ways.</p>\n\n\n\n<p>The following people attended the demo:</p>\n\n\n\n<ul><li>Mat&iacute;as Ventura &ndash; Demo Host and Gutenberg Project Lead</li><li>Matt Mullenweg &ndash; WordPress Project Lead</li><li>Helen Hou-Sand&iacute; &ndash; Lead Developer</li><li>Josepha Haden Chomphosy &ndash; Executive Director</li><li>H&eacute;ctor Prieto &ndash; Technical Project Manager</li><li>Chlo&eacute; Bringmann &ndash; Assisting with administrative and operational logistics</li></ul>\n\n\n\n<p>Ventura walked the group through the various FSE features that could be ready for WordPress 5.8, taking questions and discussing along the way. There was also a discussion afterward that focused on ideas beyond the next release.</p>\n\n\n\n<p>The following FSE-related features are expected to ship:</p>\n\n\n\n<ul><li>Improvements from Gutenberg 9.9+.</li><li>New theme-related blocks like Query, Site Logo, Navigation, and more.</li><li><code>theme.json</code> integration, which allows themes to define block defaults and settings.</li><li>Template-editing mode for the block editor.</li><li>Block-based widgets screen and customizer integration.</li><li>New block design tools, such as duotone (SVG filters for images), layout controls, padding, and more.</li></ul>\n\n\n\n<p>&ldquo;Not all of the above are currently ready but there&rsquo;s some level of confidence that they can be by the time of 5.8,&rdquo; noted Haden Chomphosy in the post.</p>\n\n\n\n<p>This list feels like a solid compromise between launching some of the more polished FSE features and trying to force in those that are probably out of reach for a July 2021 release. The features also provide current users access to new block tools without activating a block-based theme.</p>\n\n\n\n<p>The group focused on the Query block for much of the early discussion. The Gutenberg development team will likely change the block&rsquo;s user-facing name to something less confusing. It also needs a bit more polishing to make things more user-friendly. I am interested in seeing how theme authors use this in conjunction with patterns once this launches.</p>\n\n\n\n<p>One other feature that users should look forward to is the <a href=\"https://wptavern.com/first-look-at-initial-designs-for-wordpress-block-pattern-directory\">pattern directory</a>. While it is not ready for integration into the WordPress admin UI, it does not need to be. Users will be able to copy patterns from the directory and paste them directly into their editor. In time, it should become a part of the built-in experience.</p>\n\n\n\n<p>The group seems to have made a good call on which features to include. It is easy to want to push forward and get everything into the hands of users. It can be tougher to pull back and compromise.</p>\n\n\n\n<p>Full video of the demo:</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n\n</div>\n\n\n\n<p>I had two takeaways that stood out to me more than anything in the meeting.</p>\n\n\n\n<h2>Takeaway #1: Page Template Editor</h2>\n\n\n\n<p class=\"has-drop-cap\">In WordPress 5.8, users should gain access to the <a href=\"https://wptavern.com/first-round-of-the-fse-outreach-program-concludes-identifies-template-editing-mode-problems\">template editor</a>. On the page-editing screen, it allows users to switch out of content-editing mode. From there, they can work on the overall template. Essentially, for this release, it would serve as a landing page builder.</p>\n\n\n\n<p>This is a sort of middle ground between just the block editor and the eventual site editor. I like this route because it does not overwhelm end-users with a complete site-editing experience at once. It is a helping hand, a transition from the current phase to the next, allowing users to familiarize themselves with more advanced tools.</p>\n\n\n\n<p>The template editor will work for all users too. They will not be required to run a block-based theme to access it. Because each template would be a one-off use case, WordPress can serve this up without theme authors opting into it.</p>\n\n\n\n<p>Many block-ready themes have already been including an &ldquo;open canvas&rdquo; type of template. This would remove the need for those unless also including it for third-party builders. It would also solve the portability issue when users switch from a theme that bundles the template and one that does not.</p>\n\n\n\n<h2>Takeaway #2: Many Block-Based Themes</h2>\n\n\n\n<p class=\"has-drop-cap\">At the end of the discussion, the group was more or less spitballing some ideas beyond version 5.8. In particular, Hou-Sand&iacute; shared a vision of what theme development for the official directory could look like in the era of FSE.</p>\n\n\n\n<p>&ldquo;Because the full site editing, like from a user-facing point of view, is not about page building all the time,&rdquo; she said. &ldquo;It&rsquo;s about tweaking what&rsquo;s there. Yeah. So I feel like the correct thing for core to do in terms of bundled themes is actually a bunch of small bundled themes.&rdquo;</p>\n\n\n\n<p>I have previously written about how work on <a href=\"https://wptavern.com/work-on-the-twenty-twenty-two-default-wordpress-theme-should-already-be-underway\">Twenty Twenty-Two should already be underway</a> instead of waiting until the last moment to piece a new default theme together for the end-of-the-year launch. The yearly default theme system has served the community well for over a decade now. I am already warming to the idea of turning it on its head and forging a new path.</p>\n\n\n\n<p>With FSE, developers do not necessarily have to follow all of the rules of traditional themes. Themes like Kjell Reigstad&rsquo;s <a href=\"https://wptavern.com/carrd-like-theme-experiment-provides-a-glimpse-into-the-future-of-theming\">Carrd-like, two-column landing page theme</a> would be well-suited to such an experiment. Smaller, more experimental projects like this could replace the old Twenty* theme system with something new or even complement it.</p>\n\n\n\n<p>Hou-Sand&iacute; also threw out a few ideas around building block-based themes via a library of CC0 images, the patterns directory, and copying/pasting things from WordPress.org. She likened it to the CSS Zen Garden era. It could even open the possibility of bypassing the theme review process since everything would be pre-vetted.</p>\n\n\n\n<p>But, these are thoughts for tomorrow. For now, we are at least getting some initial FSE components.</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, 15 Apr 2021 21:54:15 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Justin Tadlock\";s: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:77:\"WPTavern: Zerodium Temporarily Triples Payout to $300K for WordPress Exploits\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=115080\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:197:\"https://wptavern.com/zerodium-temporarily-triples-payout-to-300k-for-wordpress-exploits?utm_source=rss&utm_medium=rss&utm_campaign=zerodium-temporarily-triples-payout-to-300k-for-wordpress-exploits\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4216:\"<p><a href=\"https://zerodium.com/\">Zerodium</a>, one of the most well-known security vulnerability brokers, announced that it is tripling payouts for remote code execution exploits on default WordPress installations. Payouts are typically $100K but have been temporarily increased to $300K. </p>\n\n\n\n<p>The company focuses on acquiring original and previously unreported zero-day research. It pays researchers for high-risk vulnerabilities and fully functional exploits, with the highest rewards at $2.5M for &lsquo;full chain, zero-click, with persistence&rsquo; Android exploits. This price tag was increased from $200K in September 2019, suggesting Android exploits have become more difficult to find or that demand for them has increased significantly.</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">We\'re temporarily increasing our payouts for WordPress RCEs to $300,000 per exploit (usually $100K). <br /><br />The exploit must work with latest WordPress, default install, no third-party plugins, no auth, no user interaction!<br /><br />If you have this gem, contact us: <a href=\"https://t.co/PBuS1nnpED\">https://t.co/PBuS1nnpED</a></p>&mdash; Zerodium (@Zerodium) <a href=\"https://twitter.com/Zerodium/status/1380489573009031170?ref_src=twsrc%5Etfw\">April 9, 2021</a></blockquote>\n</div>\n\n\n\n<p>Exploit resellers operate within a sort of grey area of security research. As a standard practice, security researchers are encouraged to report vulnerabilities to the original developer of the software, not an intermediary that may pass it along to a party that may not use the information for good. The appeal of these companies is that they pay more than most organizations, hence the tagline: &ldquo;<em>We pay BIG bounties, not bug bounties.&rdquo;</em></p>\n\n\n\n<p>WordPress has an account with <a href=\"https://hackerone.com/wordpress/\">Hackerone</a> to pay security researchers for vulnerabilities but <a href=\"https://hackerone.com/wordpress/hacktivity?type=team\">payouts</a> are much smaller in comparison to what exploit brokers pay. This makes it a tough choice for security researchers who do this for a living. Professional zero-day hunters are looking for the highest payouts for the vulnerabilities they find, which can sometimes take months or longer.</p>\n\n\n\n<div class=\"wp-block-image\"><img /></div>\n\n\n\n<p>Zerodium does not reveal who its clients are or what their purpose is for buying the the vulnerabilities. The best case scenario would be a government entity wanting to secure its own systems. Even then one cannot guarantee that they use the exploit ethically or that they don&rsquo;t inadvertently leak the exploits where they could be used maliciously by others. </p>\n\n\n\n<p>Zerodium did not elaborate on why it has increased payouts for WordPress exploits to $300K. <a href=\"https://blog.wpscan.com/2021/04/10/zerodium-wordpress-exploit.html\">WPScan</a> speculates that the company may suddenly have a greater demand for WordPress RCE exploits, combined with WordPress becoming more secure:</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>This could indicate that WordPress is becoming more secure and that it is getting harder to find the critical security issues that buyers want. On the other hand, we must also assume that these types of exploits already exist and are already being actively sold on Zerodium and other similar platforms.</p><p>We could also conclude that if a government is going to pay more than $300,000 on a WordPress RCE exploit, that they intend to use it. World governments may even barter over the exploits so that the seller, in this case, Zerodium, gets the best price.</p></blockquote>\n\n\n\n<p>WPScan also emphasized that with WordPress having such a large presence on the web, an exploit against core with those particular characteristics &ldquo;would be devastating to the web as a whole if it landed in the wrong hands.&rdquo;</p>\n\n\n\n<p>&ldquo;Zerodium increasing their prices may indicate that it is becoming harder to find these critical issues in WordPress Core,&rdquo; WPScan founder and CEO Ryan Dewhurst said. &ldquo;That, at least, should be good news for WordPress and the web as a whole.&rdquo;</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, 15 Apr 2021 18:11: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: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:68:\"WordPress.org blog: WordPress 5.7.1 Security and Maintenance Release\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=10144\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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/2021/04/wordpress-5-7-1-security-and-maintenance-release/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:8387:\"<p>WordPress 5.7.1 is now available!</p>\n\n\n\n<p>This security and maintenance release features <a href=\"https://core.trac.wordpress.org/query?milestone=5.7.1&group=component&col=id&col=summary&col=milestone&col=owner&col=type&col=status&col=priority&order=priority\">26 bug fixes</a> in addition to two security fixes. Because this is a <strong>security release</strong>, it is recommended that you update your sites immediately. All versions since WordPress 4.7 have also been updated.</p>\n\n\n\n<p>WordPress 5.7.1 is a short-cycle security and maintenance release. The next major release will be version 5.8.</p>\n\n\n\n<p>You can download WordPress 5.7.1 by downloading from WordPress.org, or visit your Dashboard → Updates and click Update Now.</p>\n\n\n\n<p>If you have sites that support automatic background updates, they’ve already started the update process.</p>\n\n\n\n<h3>Security Updates</h3>\n\n\n\n<p>Two security issues affect WordPress versions between 4.7 and 5.7. If you haven’t yet updated to 5.7, all WordPress versions since 4.7 have also been updated to fix the following security issues:</p>\n\n\n\n<ul><li>Thank you <a href=\"https://www.sonarsource.com/\">SonarSource</a> for reporting an XXE vulnerability within the media library affecting PHP 8.</li><li>Thanks <a href=\"https://mikaelkorpela.fi/\">Mikael Korpela</a> for reporting a data exposure vulnerability within the REST API.</li></ul>\n\n\n\n<p>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>. This gave the security team time to fix the vulnerabilities before WordPress sites could be attacked.</p>\n\n\n\n<p>Props to <a href=\"https://profiles.wordpress.org/zieladam/\">Adam Zielinski</a>, <a href=\"https://profiles.wordpress.org/swissspidy/\">Pascal Birchler</a>, <a href=\"https://profiles.wordpress.org/peterwilsoncc/\">Peter Wilson</a>, <a href=\"https://profiles.wordpress.org/jrf/\">Juliette Reinders Folmer</a>, <a href=\"https://profiles.wordpress.org/xknown/\">Alex Concha</a>, <a href=\"https://profiles.wordpress.org/ehtis/\">Ehtisham Siddiqui</a>, <a href=\"https://profiles.wordpress.org/timothyblynjacobs/\">Timothy Jacobs</a> and the WordPress security team for their work on these issues.</p>\n\n\n\n<p>For more information, browse the <a href=\"https://core.trac.wordpress.org/query?milestone=5.7.1&group=component&col=id&col=summary&col=milestone&col=owner&col=type&col=status&col=priority&order=priority\">full list of changes</a> on Trac, or check out the <a href=\"https://wordpress.org/support/wordpress-version/version-5-7-1/\">version 5.7.1 HelpHub documentation page</a>.</p>\n\n\n\n<h2>Thanks and props!</h2>\n\n\n\n<p>The 5.7.1 release was led by <a href=\"https://profiles.wordpress.org/peterwilsoncc/\">@peterwilsoncc</a> and <a href=\"https://profiles.wordpress.org/audrasjb/\">@audrasjb</a>.</p>\n\n\n\n<p>In addition to the security researchers and release squad members mentioned above, thank you to everyone who helped make WordPress 5.7.1 happen:</p>\n\n\n\n<p><a href=\"https://profiles.wordpress.org/ninetyninew/\">99w</a>, <a href=\"https://profiles.wordpress.org/adamsilverstein/\">Adam Silverstein</a>, <a href=\"https://profiles.wordpress.org/azaozz/\">Andrew Ozz</a>, <a href=\"https://profiles.wordpress.org/annalamprou/\">annalamprou</a>, <a href=\"https://profiles.wordpress.org/anotherdave/\">anotherdave</a>, <a href=\"https://profiles.wordpress.org/aristath/\">Ari Stathopoulos</a>, <a href=\"https://profiles.wordpress.org/ayeshrajans/\">Ayesh Karunaratne</a>, <a href=\"https://profiles.wordpress.org/bobbingwide/\">bobbingwide</a>, <a href=\"https://profiles.wordpress.org/brechtvds/\">Brecht</a>, <a href=\"https://profiles.wordpress.org/talldanwp/\">Daniel Richards</a>, <a href=\"https://profiles.wordpress.org/davidbaumwald/\">David Baumwald</a>, <a href=\"https://profiles.wordpress.org/dkoo/\">dkoo</a>, <a href=\"https://profiles.wordpress.org/ocean90/\">Dominik Schilling</a>, <a href=\"https://profiles.wordpress.org/dragongate/\">dragongate</a>, <a href=\"https://profiles.wordpress.org/eatsleepcode/\">eatsleepcode</a>, <a href=\"https://profiles.wordpress.org/ellatrix/\">Ella van Durpe</a>, <a href=\"https://profiles.wordpress.org/kebbet/\">Erik</a>, <a href=\"https://profiles.wordpress.org/fabianpimminger/\">Fabian Pimminger</a>, <a href=\"https://profiles.wordpress.org/flixos90/\">Felix Arntz</a>, <a href=\"https://profiles.wordpress.org/mista-flo/\">Florian TIAR</a>, <a href=\"https://profiles.wordpress.org/gab81/\">gab81</a>, <a href=\"https://profiles.wordpress.org/galbaras/\">Gal Baras</a>, <a href=\"https://profiles.wordpress.org/geoffrey1963/\">Geoffrey</a>, <a href=\"https://profiles.wordpress.org/mamaduka/\">George Mamadashvili</a>, <a href=\"https://profiles.wordpress.org/glendaviesnz/\">Glen Davies</a>, <a href=\"https://profiles.wordpress.org/gziolo/\">Greg Ziółkowski</a>, <a href=\"https://profiles.wordpress.org/grzim/\">grzim</a>, <a href=\"https://profiles.wordpress.org/ipstenu/\">Ipstenu (Mika Epstein)</a>, <a href=\"https://profiles.wordpress.org/whyisjake/\">Jake Spurlock</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/joen/\">Joen A.</a>, <a href=\"https://profiles.wordpress.org/jonkastonka/\">Johan Jonk Stenström</a>, <a href=\"https://profiles.wordpress.org/goaroundagain/\">Johannes Kinast</a>, <a href=\"https://profiles.wordpress.org/johnbillion/\">John Blackbourn</a>, <a href=\"https://profiles.wordpress.org/johnjamesjacoby/\">John James Jacoby</a>, <a href=\"https://profiles.wordpress.org/desrosj/\">Jonathan Desrosiers</a>, <a href=\"https://profiles.wordpress.org/joseeyoast/\">Josee Wouters</a>, <a href=\"https://profiles.wordpress.org/joyously/\">Joy</a>, <a href=\"https://profiles.wordpress.org/k3nsai/\">k3nsai</a>, <a href=\"https://profiles.wordpress.org/ryelle/\">Kelly Choyce-Dwan</a>, <a href=\"https://profiles.wordpress.org/gwwar/\">Kerry Liu</a>, <a href=\"https://profiles.wordpress.org/clorith/\">Marius L. J.</a>, <a href=\"https://profiles.wordpress.org/melchoyce/\">Mel Choyce-Dwan</a>, <a href=\"https://profiles.wordpress.org/mihdan/\">Mikhail Kobzarev</a>, <a href=\"https://profiles.wordpress.org/mmuyskens/\">mmuyskens</a>, <a href=\"https://profiles.wordpress.org/mukesh27/\">Mukesh Panchal</a>, <a href=\"https://profiles.wordpress.org/nicegamer7/\">nicegamer7</a>, <a href=\"https://profiles.wordpress.org/otshelnik-fm/\">Otshelnik-Fm</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/swissspidy/\">Pascal Birchler</a>, <a href=\"https://profiles.wordpress.org/peterwilsoncc/\">Peter Wilson</a>, <a href=\"https://profiles.wordpress.org/pwallner/\">pwallner</a>, <a href=\"https://profiles.wordpress.org/rachelbaker/\">Rachel Baker</a>, <a href=\"https://profiles.wordpress.org/youknowriad/\">Riad Benguella</a>, <a href=\"https://profiles.wordpress.org/rinatkhaziev/\">Rinat Khaziev</a>, <a href=\"https://profiles.wordpress.org/noisysocks/\">Robert Anderson</a>, <a href=\"https://profiles.wordpress.org/rogertheriault/\">Roger Theriault</a>, <a href=\"https://profiles.wordpress.org/sergeybiryukov/\">Sergey Biryukov</a>, <a href=\"https://profiles.wordpress.org/yakimun/\">Sergey Yakimov</a>, <a href=\"https://profiles.wordpress.org/sirstuey/\">SirStuey</a>, <a href=\"https://profiles.wordpress.org/stefanjoebstl/\">stefanjoebstl</a>, <a href=\"https://profiles.wordpress.org/sabernhardt/\">Stephen Bernhardt</a>, <a href=\"https://profiles.wordpress.org/sumitsingh/\">Sumit Singh</a>, <a href=\"https://profiles.wordpress.org/cybr/\">Sybre Waaijer</a>, <a href=\"https://profiles.wordpress.org/synchro/\">Synchro</a>, <a href=\"https://profiles.wordpress.org/terriann/\">Terri Ann</a>, <a href=\"https://profiles.wordpress.org/tigertech/\">tigertech</a>, <a href=\"https://profiles.wordpress.org/timothyblynjacobs/\">Timothy Jacobs</a>, <a href=\"https://profiles.wordpress.org/tmatsuur/\">tmatsuur</a>, <a href=\"https://profiles.wordpress.org/tobiasbg/\">TobiasBg</a>, <a href=\"https://profiles.wordpress.org/hellofromtonya/\">Tonya Mork</a>, <a href=\"https://profiles.wordpress.org/toru/\">Toru Miki</a>, <a href=\"https://profiles.wordpress.org/grapplerulrich/\">Ulrich</a>, and <a href=\"https://profiles.wordpress.org/vladytimy/\">Vlad T</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, 15 Apr 2021 03:05:01 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Peter Wilson\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:7;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:60:\"WPTavern: FSE Outreach Round #5: Venturing out a Query Quest\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=115153\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:161:\"https://wptavern.com/fse-outreach-round-5-venturing-out-a-query-quest?utm_source=rss&utm_medium=rss&utm_campaign=fse-outreach-round-5-venturing-out-a-query-quest\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:5293:\"<p class=\"has-drop-cap\">The Full Site Editing (FSE) outreach program is chugging along. Since December, it has called for and completed four rounds of testing. The latest round asks volunteers to <a href=\"https://make.wordpress.org/test/2021/04/14/fse-program-testing-call-5-query-quest/\">provide feedback on the Query block</a>, arguably one of the most crucial pieces of the FSE-puzzle.</p>\n\n\n\n<p>Automattic Developer Relations Wrangler Anne McCarthy has been overseeing the program since its inception. Each round of testing asks participants to follow along with a set of instructions while testing a specific feature related to FSE. They can then provide feedback on what does or does not work. Thus far, the program has tested and identified issues for <a href=\"https://wptavern.com/first-round-of-the-fse-outreach-program-concludes-identifies-template-editing-mode-problems\">template-editing mode</a>, <a href=\"https://wptavern.com/fse-outreach-round-2-building-a-custom-homepage-with-gutenbergs-site-editor\">building a custom homepage</a>, <a href=\"https://wptavern.com/new-full-site-editing-testing-challenge-create-a-custom-404-page\">creating a 404 page</a>, and <a href=\"https://wptavern.com/fse-outreach-round-4-building-a-restaurant-themed-header-with-gutenbergs-site-editor\">wrangling a restaurant-themed header</a>.</p>\n\n\n\n<p>Volunteers for the program should install the latest version of the <a href=\"https://wordpress.org/plugins/gutenberg\">Gutenberg plugin</a> and the <a href=\"https://wordpress.org/themes/tt1-blocks/\">TT1 Blocks theme</a>. Participation is open to all, and further details are available through the announcement post.</p>\n\n\n\n<p>The latest test is all about the Query block &mdash; McCarthy is dubbing it a &ldquo;Query Quest.&rdquo;</p>\n\n\n\n<p>&ldquo;Not many blocks get an entire milestone dedicated to them but the Query Block did!&rdquo; she wrote. &ldquo;As the name implies, this is a pretty powerful block allowing you to display posts/pages on your site and customize them as you see fit. For example, you could easily use this block to show off all of your favorite recipes by setting it up to show a specific category of posts.&rdquo;</p>\n\n\n\n<p>Generally, theme authors will primarily work with this block. However, for those end-users who will inevitably want to customize post output on their sites, they may need to at least have some basic familiarity with it or its block variations.</p>\n\n\n\n<h2>Building With the Query Block</h2>\n\n\n\n<p class=\"has-drop-cap\">Following the instructions for the testing round netted fairly consistent results between the editor and front end. Each step walks participants through the process of assembling a two-column page with posts from separate categories. Within just a few minutes, I built a few demo posts with custom categories named &ldquo;Veggie Garden&rdquo; and &ldquo;Fruit Trees&rdquo; (side note: these are pics of my plants). I sped through the process with no issues.</p>\n\n\n\n<img />Using Columns to output two category-based Query blocks.\n\n\n\n<p>However, I am a bit of a pro at this point with the Query block. It is one feature I have been eyeing at least every week for months.</p>\n\n\n\n<p>The two primary issues I ran into were with the &ldquo;read more&rdquo; link and spacing. For the more-link, it simply did not appear on the front end. When viewing the source code, the wrapper HTML was there, but the actual text was nowhere to be found.</p>\n\n\n\n<p>As for spacing, this is more of a theme problem. I have harped on this issue in past testing rounds, and it is the same ol&rsquo; tune. TT1 Blocks failed to produce consistent spacing between the front and back end. One example is when using the Post Featured Image block followed by the Post Excerpt block. In the editor, there is little whitespace between the two. On the front end, there is ample room.</p>\n\n\n\n<p>Some might say it is the most vital part of page building &mdash; nailing down the layout. I have voiced my concerns <em>ad nauseam</em> on spacing, so I have nothing new to report on the subject.</p>\n\n\n\n<p>I decided to take a few extra steps and move beyond the basic testing instructions. Because it is springtime, I have been enjoying the outdoors a bit more as of late. I wanted to spruce up my Query block design. I wrapped the initial design in a Cover block with a garden-related background image, dropped in some header and intro text, and created boxes for my posts with the Group block. With a splash of color, some font-size changes, and a Spacer block here and there, I built something with a tiny bit more personality.</p>\n\n\n\n<img />Custom layout with the Query, Cover, and Columns blocks.\n\n\n\n<p>Testing never has to be boring. I encourage participants to grab inspiration from their own lives as they venture out on their Query Quest.</p>\n\n\n\n<p>While I have my complaints about the site editor and realize we are miles away from the long-term vision, it is also amazing what is now possible. Even six months ago, building something as simple as this was not happening. More and more each day, I believe a <a href=\"https://wptavern.com/will-full-site-editing-land-in-wordpress-5-8-a-decision-is-forthcoming\">public beta of the site editor</a> and other FSE components in WordPress 5.8 is not such a bad idea.</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, 14 Apr 2021 22:38:36 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Justin Tadlock\";s: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:68:\"WPTavern: WordCamp Europe 2021 Opens Call for Speakers and Workshops\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=115025\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:181:\"https://wptavern.com/wordcamp-europe-2021-opens-call-for-speakers-and-workshops?utm_source=rss&utm_medium=rss&utm_campaign=wordcamp-europe-2021-opens-call-for-speakers-and-workshops\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1836:\"<p><a href=\"https://europe.wordcamp.org/2021/wceu-launch-7-june-2021/\">WordCamp Europe 2021</a> will be taking place online, June 7-10. This will be the second year in a row that the event has not been held in person due to the pandemic, but organizers are incorporating feedback from the first edition to improve upon it.</p>\n\n\n\n<p><a href=\"https://europe.wordcamp.org/2021/call-for-speakers/\">Speaker applications are now open</a> and first-time speakers are encouraged to apply. Organizers posted a list of example topics for inspiration, including advanced development, frameworks, security, storytelling, website performance optimization, and more.</p>\n\n\n\n<p>WCEU 2021 will be running two tracks, with two different presentation formats: long talks (20-minute talk with a 10-minute Q&amp;A) and lightning talks (10-minute talk with a 5-minute Q&amp;A). Prospective speakers are allowed to submit up to three different presentation topics on their <a href=\"https://europe.wordcamp.org/2021/speaker-application-form/\">applications</a>. The call for speakers is open until April 24, 2021, and selected speakers will be contacted the first week of May ahead of mid-May public announcements.</p>\n\n\n\n<p>WCEU organizers also plan to continue the successful tradition of hosting workshops after 77% of attendees who completed a feedback survey requested their return. Workshop sessions will be 45 minutes long and hosts will have workshop assistants available to them. Organizers are aiming to schedule a diverse lineup of workshops with topics like &ldquo;Starting with WordPress,&rdquo; accessibility, development, security, and SEO, to name a few.</p>\n\n\n\n<p>The <a href=\"https://europe.wordcamp.org/2021/call-for-workshops/\">call for workshops</a> is on the same timeline as speaker selection, with a closing date of April 24, 2021.</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, 14 Apr 2021 02:40: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:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:9;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:172:\"HeroPress: A Journey toward Freedom 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=3529\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:152:\"https://heropress.com/essays/a-journey-toward-freedom-with-wordpress/#utm_source=rss&utm_medium=rss&utm_campaign=a-journey-toward-freedom-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:46477:\"<img width=\"1024\" height=\"512\" src=\"https://s20094.pcdn.co/wp-content/uploads/2022/04/041321-min.jpg\" class=\"attachment-large size-large wp-post-image\" alt=\"Pull Quote: My WordPress job allowed the freedom to work on my time.\" /><p><a href=\"https://heropress.com/feed/#nepali\">यो लेख नेपाली भाषामा पनि उपलब्ध छ।</a></p>\n<p>Hello world!</p>\n<p>“Always be thankful for what you have, many people have nothing!” &#8211; Buddha</p>\n<p>Yes, I’m immensely grateful to be writing this essay! I’m fortunate to have had the education that gave me the capacity to aspire, get into a WordPress job, meet people from around the world, connect with Topher of HeroPress, and tell my story!</p>\n<h3>How I Landed Into a WordPress Job</h3>\n<p>My WordPress journey began by chance! Honestly, I didn’t know WordPress until I landed on a WordPress job.</p>\n<p>Back then, I was doing my Master’s degree in Sociology and had just left my work as a school teacher. I was looking for a job that would allow me to focus on my study and pay me a decent salary.</p>\n<p>I had a long career of over 5 years in teaching which was a full-time job. In addition to 9 AM to 5 PM work, we had to work extra hours at home &#8211; designing lesson plans, evaluating assignment works, exams, etc. – so I was finding it hard to manage time for my own study. I just needed a job that wouldn’t require me to work after office hours.</p>\n<p>After applying to several different positions, I finally got a content writing job. Fortunately, the company turned out to be a successful WordPress development company based in Nepal (<a href=\"https://access-keys.com/\">Access Keys</a>).</p>\n<p>Well, it’s how my WordPress story began! But it’s not the full story.</p>\n<h3>For Hope! My Family’s Struggle for Education</h3>\n<p>I come from a remote village in the hills of Nepal, not connected by any means of transportation until recently. We had to walk a minimum of an hour to go to the nearest school, from where I completed my secondary education.</p>\n<blockquote><p>But that time wasn’t just about walking hours to reach school. It was also about poverty, hardships, and the burning desire to overcome them someday!</p></blockquote>\n<p>Schools were first opened in the late 1970s in our village but my parents couldn’t even complete the lower secondary level. Pervasive poverty and lack of awareness both were responsible for it.</p>\n<p>Time passed but our family’s financial condition was still the same. But my parents had understood that the only way out of it was education. Hence, they decided to send us to school, no matter what. Our father sometimes as a seasonal migrant worker to India, sometimes as a porter, brought us (me and my siblings) school supplies. Our mother worked day and night, managed home, family, and our farm.</p>\n<p>After completing secondary level education, I moved to a nearby city in the guardianship of my aunt. With minimal financial support from my parents, my aunt helped me complete higher secondary school.</p>\n<p>However, she had her own hardships. She was a single mother without any academic degree so had to work minimum-wage jobs which hardly met her and her family’s needs.</p>\n<p>Therefore, I couldn’t simply add to her burden. And on the other side, my parents had to support my younger siblings too. So, the only choice I had, if I wanted to study further, was to support myself, for which I started teaching in a school.</p>\n<h3>Breakthrough through English Language Skills</h3>\n<p>I got my life’s first job but it wasn’t easy. I joined a private English-medium school as a teacher. But my schooling as well as the undergraduate program had been in our national language, Nepali, and not in English. We had “English” as a subject in school but the teacher taught us English in the Nepali language. We never spoke in English. Yet, my English writing was fine as I was a good student.</p>\n<p>When I joined an English medium school as a teacher, I had no choice but to improve my English. I practiced speaking English with primary-level students. Within a year, my spoken English improved considerably.</p>\n<p>Along with my teaching job, I continued my college. It was a super-busy schedule but was the only option I had! With my earnings, I paid my college fees, covered some of my living expenses, and also supported my family. Well, this is how I completed my Bachelor’s degree and started my Master’s degree too.</p>\n<p>Later on, the same teaching job that I started to sustain myself enabled me to apply for an English content writing job! As of now, I’m quite confident about my English language skills but still feel hesitant when I have to talk with native speakers.</p>\n<h3>My WordPress Journey – Toward Freedom</h3>\n<p>As I stated earlier, I landed on my first WordPress job when I was looking for the type of job that would allow me free time for my study. Yes, and that’s from where my journey toward freedom began!</p>\n<p>During my interview, I explained to the CEO of <a href=\"https://access-keys.com/\">Access Keys</a> (<a href=\"https://twitter.com/athakuri\">Arjun Singh Thakuri</a>) about the flexibility that I need in my new job so that I could also focus well on my studies. I was hired and could join from 11 AM instead of the usual 9:30 AM after attending my classes in the morning. It was a moment of gratitude and great relief for me!</p>\n<p>I learnt WordPress at Access Keys. <em><strong>First</strong></em>, by reading Wikipedia and other blogs on the web. <em><strong>Second</strong></em>, from Arjun sir as well as from the senior developers and the designers at the company. I used to have a lot of questions, and my team at Access Keys helped me get answers to those questions. <em><strong>Third</strong></em>, by doing. I set up a WordPress.com blog, a testing site on localhost, and tried different options.</p>\n<blockquote><p>My curiosity was definitely the driving force, but above all, ‘the way WordPress is built’ is what made it possible for someone like me (with no technical background) to understand a powerful website creation software, WordPress.</p></blockquote>\n<p>As for content writing skills, I started with list articles (theme collections). Arjun sir mentored me for my first few articles. Later, Access Keys hired an experienced SEO professional <a href=\"https://twitter.com/seonerdy\">Amin Ghale</a> who taught me more about SEO and content writing. He is a mentor cum brother to me.</p>\n<p>When in Access Keys, I joined WordCamp for the first time – <a href=\"https://nepal.wordcamp.org/2015/\">WordCamp Nepal 2015</a>. The event was grand! I met people involved in WordPress from other companies in Nepal and abroad, heard their stories, and learnt about new innovations in WordPress!</p>\n<p>I was truly enthralled by the event and had truly wished to give a presentation in a WordCamp someday. And I did, the very next year! I shared what I had learnt so far on the title ‘SEO Copywriting for WordPress’ at <a href=\"https://www.google.com/url?sa=t&rct=j&q=&esrc=s&source=web&cd=&cad=rja&uact=8&ved=2ahUKEwi64ajv-_TvAhVCCM0KHdXKAVoQFjAAegQIBBAD&url=https%3A%2F%2Fkathmandu.wordcamp.org%2F2016%2F&usg=AOvVaw0nTcwn8d7MOgIp2sDtNhOD\">WordCamp Kathmandu 2016</a>.</p>\n<p>Later, I also joined a panel ‘Girls in WordPress – Story, Experience, Opportunity, and Career’ in <a href=\"https://www.google.com/url?sa=t&rct=j&q=&esrc=s&source=web&cd=&cad=rja&uact=8&ved=2ahUKEwiCzcj_-_TvAhUJbc0KHfLUAWMQFjAAegQIBBAD&url=https%3A%2F%2Fbiratnagar.wordcamp.org%2F2018%2F&usg=AOvVaw1on2S3L2VlRRUTeN9eYsqa\">WordCamp Biratnagar 2018</a> along with a dear friend <a href=\"https://twitter.com/sandilyakafle\">Ganga Kafle</a> and my WordPress sister <a href=\"https://twitter.com/prithuthakuri\">Prithu Singh Thakuri</a>. Now, looking forward to joining some international WordCamps!</p>\n\n<a href=\"https://heropress.com/wordcampkathmandu2016speaker-srai/\"><img width=\"2048\" height=\"1349\" src=\"https://s20094.pcdn.co/wp-content/uploads/2021/04/wordcampkathmandu2016speaker-srai.jpg\" class=\"attachment-full size-full\" alt=\"Speaking at WordCamp Kathmandu 2016 S Rai\" /></a>\n<a href=\"https://heropress.com/essays/a-journey-toward-freedom-with-wordpress/wordcampbiratnagar2018panel/\"><img width=\"2048\" height=\"1365\" src=\"https://s20094.pcdn.co/wp-content/uploads/2022/04/wordcampbiratnagar2018panel.jpg\" class=\"attachment-full size-full\" alt=\"Sunita Rai on a panel at WordCamp\" /></a>\n<a href=\"https://heropress.com/essays/a-journey-toward-freedom-with-wordpress/wordcampkathmandu2017fun/\"><img width=\"2048\" height=\"1367\" src=\"https://s20094.pcdn.co/wp-content/uploads/2022/04/wordcampkathmandu2017fun.jpg\" class=\"attachment-full size-full\" alt=\"\" /></a>\n<a href=\"https://heropress.com/wordcampkathmandu2018-fun/\"><img width=\"2048\" height=\"1365\" src=\"https://s20094.pcdn.co/wp-content/uploads/2021/04/wordcampkathmandu2018-fun.jpg\" class=\"attachment-full size-full\" alt=\"A Moment of Fun at WordCamp Kathmandu 2018\" /></a>\n\n<p>About my WordPress career, I’m still in WordPress content writing.</p>\n<p>After Access Keys, I went to ThemeGrill, another successful WordPress business in Nepal, with even more flexibility and freedom in the working hours.  <a href=\"https://twitter.com/sanjipshah\">Sanjip Shah</a> and <a href=\"https://twitter.com/rabinsthaa\">Rabin Shrestha</a> (Founders of ThemeGrill) encouraged me to learn and explore this field even more. After some time, ThemeGrill hired a few new writers and I started mentoring them.</p>\n<p>Next, I joined Awesome Motive, the company behind the popular WPBeginner blog. In the beginning, I wrote for IsItWP and MonsterInsights blog but later also got the opportunity to write for WPBeginner. When at Awesome Motive, I got an even better opportunity to learn WordPress and marketing skills.</p>\n<p>My supervisors <a href=\"https://twitter.com/shahzadsaeed\">Shahzad Saeed</a> from India, <a href=\"https://twitter.com/noumaan_\">Noumaan Yaqoob</a> from Pakistan, <a href=\"https://twitter.com/LittleZotzWrite\">Lauren Tharp</a>, and <a href=\"https://twitter.com/keri_engel\">Keri Lynn Engel</a> from the United States helped me be better at my work. Above all, I was super lucky to have <a href=\"https://twitter.com/syedbalkhi\">Syed Balkhi</a> himself tutoring me every week on various aspects of content writing and marketing. I still remember how he explained the “success gap” over multiple calls, over weeks. He’s really a wonderful mentor!</p>\n<p>As of now, I work with beginners who’re just starting their careers in WordPress content writing. I’m trying to help small WordPress businesses and blogs with the marketing skills I’ve acquired so far. For example, SiteSaga.com, ZakraTheme.com are some of the sites I’m currently working on. Yet, I feel there’s a lot more for me to learn!</p>\n<p>Now, I want to make my final and important point – freedom!</p>\n<blockquote><p>First, my WordPress job allowed me the freedom to work on my time (so I could manage time for my study too). But more importantly, I meant the ‘economic freedom’.</p></blockquote>\n<p>For an individual, economic independence is a major freedom factor! Income isn’t everything, but definitely a basic aspect of human development!</p>\n<p>My salary at my first WordPress job wasn’t high, but increments since then are cool! Plus, we can always do some extra work. For instance, after my talk at WordCamp, I got a lot of freelance work opportunities, which I did during my free time and earned some extra bucks. Then, I was able to support my family even better.</p>\n<p>Finally, it&#8217;s the &#8216;feeling of freedom&#8217; that, I have now, enabled me to share this story. I always had an &#8216;inferiority complex&#8217; due to which I could never tell anyone about my family or our socio-economic background. Even if someone asked, I&#8217;d simply avoid the question or lie to them.</p>\n<p>I&#8217;ve now overcome the situation as well as the fear of being judged. And, I believe it&#8217;s the &#8216;freedom&#8217; in its truest sense.</p>\n<p>That’s my story of freedom! Story of our freedom!</p>\n<h3>Now is Great! I Have Greater Aspiration for the Future!</h3>\n<p>Yes, now is great! I have a good career as a WordPress content writer, editor, and mentor. I also joined the MPhil degree and will soon complete it.</p>\n<p>For the future, have greater aspirations!</p>\n<ol>\n<li>I hope to continue doing what I do &#8211; teaching beginners copywriting skills and help them achieve their part of freedom. WordPress is a gift for people like me!</li>\n<li>I want to earn a Doctorate degree; not yet content being a student! I haven’t planned it yet but I really wish to do it in this life!</li>\n<li>I want to give back to my community. Our village hasn’t changed much &#8211; still struggling with poverty. Even today, most students from my village fail to complete their university degree in lack of a support system. I firmly believe education is vital to change; for individuals as well as society as a whole. So, I really wish to work on it but I’m not yet sure how! I hope time will answer!</li>\n</ol>\n<p>Thanks for reading my story! Thanks, dear friend Topher for this opportunity! It’s a privilege to be sharing my story on HeroPress (feeling like a hero!). :D</p>\n<p>Thank you to every single individual who supported my journey to this date! And, thanks to the universe for everything I have!</p>\n<hr class=\"ttfmake-hr\" />\n<h1 id=\"nepali\">वर्डप्रेससंगै स्वतन्त्रता तर्फको यात्रामा</h1>\n<p>नमस्कार संसार!</p>\n<p>तपाईंसँग जे छ त्यसैमा सदैव कृतग्य रहनु, किनकी धेरै मानिसहरू संग केहि पनि हुन्न। &#8211; बुद्ध</p>\n<p>हो, म यो लेख लेख्दै गर्दा एकदमै खुसी र आभारि छु। म आफुलाई एकदमै भाग्यमानी ठान्दछु कि मैले जस्तोसुकै परिस्थितिमा पनि शिक्षा आर्जन गर्न पाए जसले मलाई सपना देख्न प्रेरित गर्यो, वर्डप्रेसमा काम गर्न सक्षम बनायो, संसारभरिका मानिससंग भेटघाट गर्ने अवसर दिलायो, हिरोप्रेसका टोफर संग भेत्न र मेरो कथा सबैसंग बाड्ने अवसर दिलायो।</p>\n<h3>मेरो वर्डप्रेस यात्राको शुरुवात</h3>\n<p>मेरो वर्डप्रेस यात्रा संयोगवश सुरु भएको हो। साच्चिकै भन्नुपर्दा मैले काम गर्न सुरु गर्नु भन्दा अगाडी मलाई वर्डप्रेसको बारेमा केही पनि थाहा थिएन।</p>\n<p>त्यो समयमा म समाजशास्त्र बिषयमा मास्टर डिग्री गरिरहेकी थिएँ। समयको अभावले गर्दा भर्खरै विद्यालय शिक्षण पेशाको काम पनि छोडेको थिएं। त्यसैले म यस्तो कामको खोजीमा थिए जुन बाट राम्रो तलब र मेरो पढाईको लागि केहि समय पनि बच्न सक्थ्यो।</p>\n<p>मैले शिक्षण पेशामा लगभग ५ बर्ष सम्म काम गरें। ती दिनहरुमा म विहान ९ बजेदेखि दिउँसो ५ बजे सम्म स्कुल पढाउथे । अनि फेरि राति अर्को दिनको कक्षाका लागि तयारी र गृहकार्य जाँच गर्दा गर्दै ठिक्क हुन्थ्यो। जसले गर्दा मलाई आफ्नो पढाई सम्हाल्न गाह्रो भइरहेको थियो। त्यसैले मलाई खासगरि अफिस समयपश्चात अरु थप काम गर्नु नपर्ने खालको काम चाहिएको थियो।</p>\n<p>धेरै खालको जागिरहरूमा आवेदन दिएपश्चात बल्ल कन्टेन्ट राइटिङ्ग (इन्टरनेटको लागि लेख लेखन) को जागिर पाए। भाग्यवश मैले काम पाएको कम्पनी वर्डप्रेस विकासको क्षेत्रमा नेपालको एक सफल कम्पनी रहेछ (<a href=\"https://access-keys.com/\">एक्सेस किइज</a>)।</p>\n<p>हो यसरी नै मेरो वर्डप्रेसको यात्रा सुरु भयो, तर यो नै सम्पुर्ण कथा भने हैन।</p>\n<h3>शिक्षाको लागि मेरो परिवारको संघर्ष र आशा</h3>\n<p>नेपाल को पहाडी भेगमा अवस्थित एउटा गाउँमा मेरो जन्म भएको हो जहाँ आवतजावत गर्नलाई अझैसम्मपनि भरपर्दो सडक अनि गाडीहरूको ब्यबस्था भएको छैन। हाम्रो घरबाट नजिकैको विद्यालय नै १ घण्टा को बाटो हिडेर पुग्नुपर्थ्यो र त्यहि विद्यालय बाट मैले कक्षा १० सम्म को अध्ययन पुरा गरें।</p>\n<blockquote><p>तर हाम्रो गाउँको त्यो समय घन्टौ हिड्नुपर्ने दुखका बारेमा मात्र थिएन। सर्वत्र ब्याप्त गरिवी, खानलाउनको लागि कठिन संघर्ष, र यि तमाम दुखबाट कुनै दिन मुक्त हुने प्रबल आकङ्क्षाको पनि समय थियो।</p></blockquote>\n<p>हाम्रो गाउँमा विद्यालय सन १९७० को दशक अन्त्य तिर खुले तर मेरो आमाबाबुले भने गरिवी र अशिक्षाको कारण निम्न माध्यमिक तहको शिक्षा सम्म पनि पुरा गर्न सक्नुभएन। समय बित्यो, हामि बिद्यालय जान थाल्यौ तर पनि हाम्रो परिवारको आर्थिक अवस्थामा भने कुनै सुधार आएको थिएन। तरपनि मेरा बुबाआमाले भने शिक्षाको महत्व बुझिसक्नु भएको थियो। त्यसैले उहाहरुले जस्तो सुकै अप्ठ्यारो परिस्थिति भए पनि हामी लाई विद्यालय पठाउने निधो गर्नुभयो।</p>\n<p>आपा (राई बान्तावा भाषामा बुबा) कहिले भारततिर मौसमी कामदार को रूपमा त कहिले भरियाको रूपमा काम गर्न जानुहुन्थ्यो। अनि फर्केर आउँदा म र मेरो बहिनीहरू लाई किताब कापी र स्कुलको कपडा हरू ल्याइदिनु हुन्थ्यो। हाम्रो आमा भने रातदिन आफैं खटेर घरपरिवार, खेतिपाती र गाइबस्तु सम्हाल्नु हुन्थो।</p>\n<p>गाउँकै बिध्यालय बाट माध्यमिक तह उत्तीर्ण गरीसके पछि म नजिकै को सहरमा फुपुसंग बस्दै पढ्न थालें। मेरो फुपुले मलाई उच्च शिक्षा हासिल गर्नमा धेरै मद्दत गर्नुभएको छ।</p>\n<p>तर त्यो बेला उहाँको लागि पनि कठिन समय थियो। कुनै पनि शैक्षिक डिग्रि नभएको एक एकल महिलाका लागि सहरमा आफु अनि आफ्नो सन्तानलाइ पाल्नु, हुर्काउनु, पढाउनु सानो दुख थिएन। उहाँले दिनभर ज्याला मजदुरि गरेर कमाएको पैसाले बिहानबेलुका को छाक टार्न मै ठिक्क हुन्थ्यो।</p>\n<p>त्यसैले म आफैंपनि उहाँमाथि अझ भार थपिन चाहन्नथे। फेरि अर्को तर्फ मेरो बाबाआमा ले पनि त अरु साना बहिनीहरू लाई हेर्नुपर्थ्यो। अब भने मसंग आफ्नो उच्च शिक्षालाइ निरन्तरता दिनको लागि एउटै मात्र बिकल्प थियो &#8211; आफैले कमाएर पढ्ने। यसैकारण मैले एउटा विद्यालयमा पढाउन शुरु गरें।</p>\n<h3>अङ्ग्रेजी भाषाको ज्ञानमार्फत उडान आरम्भ</h3>\n<p>मैले मेरो जीवनको पहिलो जागिर त पाए तर त्यो सोचेजस्तो सजिलो थिएन। मैले शिक्षक को रूपमा एक निजी विद्यालयमा प्रबेश गरे। तर म आफैले भने सरकारी विद्यालयमा पढेको थिए जहाँ नेपाली भाषामा पढाई हुन्थ्यो। हाम्रो कक्षामा अङ्ग्रेजी एउटा मात्र अनिवार्य विषय थियो तर त्यो पनि शिक्षकहरु ले नेपाली भाषामा नै पढाउनु हुन्थ्यो। हामीले कहिल्यै पनि अङ्ग्रेजी भाषा बोलेनौं। यधपी म राम्रो बिध्यार्थीहरु मध्यको एक थिए, जसकारण मेरो अङ्ग्रेजी लेखन भने सामान्यतया राम्रो नै थियो।</p>\n<p>मैले अङ्ग्रेजी शिक्षकको रूपमा पढाउन थालिसके पछि भने मसंग अङ्ग्रेजी सुधार्नु भन्दा अरू कुनै उपाए थिएन। त्यसैले मैले प्राथमिक तहका बिध्यार्थीहरूसँग अङ्ग्रेजीमा बोल्न सुरु गरें। फलस्वरूप एकवर्ष भित्र मेरो अङ्ग्रेजी बोलाईमा धेरै सुधार आयो।</p>\n<p>शिक्षण पेशासंगै मैले मेरो पढाईलाई पनि अगाडि बढाउदै लगें। त्यो बेला मेरो दैनिकि धेरै नै व्यस्त थियो, तर फेरि अर्को विकल्प पनि त थिएन। मेरो तलबले आफ्नो पढाई खर्च जुटाउँदै अलिअलि परिवार लाई पनि सहयोग गर्न थाले। हो यसरी नै मैले ब्याचलर डिग्री पुरा गरें र मास्टर डिग्री पनि शुरु गरें।</p>\n<p>मैले आफ्नो आवश्यकता पुर्ति गर्नको लागि सुरु गरेको शिक्षण पेशाले नै मलाई अङ्ग्रेजी कन्टेन्ट राइटिङ्गको जागिरमा आवेदन दिने साहस दियो। अहिलेको कु्रा गर्ने हो भने, म मेरो अङ्ग्रेजी भाषाको बोलाई र लेखाईसंग केही हदसम्म विश्वस्त छु तर अझै पनि अङ्ग्रेजी नै मातृभाषा भएका बिदेशिहरुका अगाडि बोल्न भने केहि हिच्किचाउछु।</p>\n<h3>मेरो वर्डप्रेस यात्राः स्वतन्त्रता तिर</h3>\n<p>मैले अगाडि नै भनेको जस्तै मेरो पढाईलाई हानी नगर्ने खालको काम खोज्दै गर्दा संयोगवश वर्डप्रेसमा प्रवेश गरेको थिएँ। र यहि बाट नै मेरो स्वतन्त्रता तिर को यात्रा सुरु भएको हो।</p>\n<p>मैले कामको लागि अन्तर्वार्ता दिँदै गर्दा नै <a href=\"https://access-keys.com/\">एक्सेस किइज</a> कम्पनीको प्रमुख (<a href=\"https://twitter.com/athakuri\">अर्जुन सिंह ठकुरी</a>) संग आफ्नो पढाईको लागि चाहिने समयको बारेमा पनि कुरा गरेको थिएँ। उहाँले सजिलैसंग सहमति जनाउनु भयो। फलस्वरूप मैले आफ्नो बिहान को कलेज सकेर ११ बजेदेखि कार्यालय जाने भए जबकि अफिस समय भने ९ः३० बजे नै शुरु हुन्थ्यो। त्यो पल मेरो लागि कृतज्ञता र ठूलो राहतको क्षण थियो।</p>\n<p>एक्सेस किइज कम्पनीमा काम गर्दा नै मैले वर्डप्रेस सिके। <em><strong>पहिलो</strong></em>, विकिपीडिया र अन्य ब्लग हरूलाई धेरै पढे। <em><strong>दोस्रो</strong></em>, नजानेको सानासाना कुराहरू अर्जुन सर र अरू अनुभबी कर्मचारी (डेभलपर, डिजाइनर) हरु संग सोध्थे। र उहाँ हरूले पनि धेरै सहयोग गर्नुहुन्थ्यो। <em><strong>तेस्रो</strong></em>, मैले आफैले वर्डप्रेस डटकम ब्लग स्थापना गरें, परिक्षणका लागि वेबसाइट बनाए र त्यहाँ हरेक कुरा जान्ने र बुझ्ने कोशिस गरे।</p>\n<blockquote><p>अवश्य पनि मेरो जिज्ञासु भावना नै मलाई अगाडि बढाउने शक्ती थियो। यधपी म जस्तो प्राविधिक पृष्ठभूमि नभएको ब्यक्तिलाई वेबसाइट बनाउन सक्ने शक्तिशाली सफ्टवेयर, वर्डप्रेस को बारेमा बुझाउनमा भने वर्डप्रेस आफै सरल हुनु र इन्टरनेटमा प्रशस्ट सामग्रि पाइनुको ठूलो भुमिका छ।</p></blockquote>\n<p>मैले कन्टेन्ट राइटिङ्ग गर्ने क्रमको शुरुवात भने वर्डप्रेस थिमको सुचि बनाउने लेखहरुबाट गरें। सुरूको लेखहरूमा अर्जुन सर नै मेरो सल्लाहकारको रूपमा रहनु भयो। पछि एक्सेस किइज कम्पनीले अनुभबी एसईओ विज्ञ <a href=\"https://twitter.com/seonerdy\">अमिन घले</a> लाइ नियुक्ति गर्यो र उहाँले नै मलाई धेरै कुराहरु सिकाउनुभयो। उहा मेरो गुरुका साथै दाई पनि हुनुहुन्छ।</p>\n<p>म एक्सेस किइज कम्पनीमा काम गरिरहेकै बखत पहिलो पटक “<a href=\"https://nepal.wordcamp.org/2015/\">वर्डक्याम्प नेपाल २०१५</a>“ मा सहभागी भए। यो कार्यक्रम भव्य थियो। मैले त्यहाँ वर्डप्रेसमा काम गर्ने नेपालका तथा अन्य देशबाट आएका ब्यक्तिहरुसंग भेटें, उनीहरूको कथा सुने र वर्डप्रेसको बारेमा अझ नयाँनयाँ कुराहरु थाहा पाए।</p>\n<p>म त्यो कार्यक्रमबाट धेरै नै प्रभावित भए र त्यतिबेलानै कुनै दिन वर्डक्याम्पमा वक्तव्य दिने अठोट गरे। नभन्दै मैले अर्को सालको &#8220;<a href=\"https://kathmandu.wordcamp.org/2016/\">वर्डक्याम्प काठमान्डु २०१६</a>“ मा वक्ता को रूपमा सहभागी भए र “वर्डप्रेसको लागि एसइओ कपिराईटिङ“ शिर्षक मा वक्तव्य दिए।</p>\n<p>पछि फेरि बिराटनगर मा आयोजना भएको “<a href=\"https://biratnagar.wordcamp.org/2018/\">वर्डक्याम्प बिराटनगर २०१८</a>“ मा पनि सहभागी भए। यसमा म, साथी <a href=\"https://twitter.com/sandilyakafle\">गंगा काफ्ले</a> र प्यारी बहिनी <a href=\"https://twitter.com/prithuthakuri\">प्रिठु शिंह थकुरी</a>ले “वर्डप्रेसमा केटीहरुः अनुभव, कथा, अवसर, र चुनौती“ शिर्षक मा छलफल गरेका थियौ। अब भने, मलाई अरु अन्तर्राष्ट्रिय वर्डक्याम्प हरूमा सहभागी हुन मन छ।</p>\n\n<a href=\"https://heropress.com/wordcampkathmandu2016speaker-srai-1/\"><img width=\"2048\" height=\"1349\" src=\"https://s20094.pcdn.co/wp-content/uploads/2021/04/wordcampkathmandu2016speaker-srai-1.jpg\" class=\"attachment-full size-full\" alt=\"वर्डक्याम्प काठमान्डु २०१६ मा प्रस्तुति दिदै गर्दा\" /></a>\n<a href=\"https://heropress.com/essays/a-journey-toward-freedom-with-wordpress/wordcampbiratnagar2018panel-2/\"><img width=\"2048\" height=\"1365\" src=\"https://s20094.pcdn.co/wp-content/uploads/2022/04/wordcampbiratnagar2018panel-1.jpg\" class=\"attachment-full size-full\" alt=\"वर्डक्याम्प बिराटनगर २०१८ मा एक प्यानलमा बोल्दै गर्दा\" /></a>\n<a href=\"https://heropress.com/wordcampkathmandu2017fun-1/\"><img width=\"2048\" height=\"1367\" src=\"https://s20094.pcdn.co/wp-content/uploads/2021/04/wordcampkathmandu2017fun-1.jpg\" class=\"attachment-full size-full\" alt=\"वर्डक्याम्प काठमान्डु २०१७ मा वर्डप्रेसको मेरो दाजुभाइहरु सँग फोटो खिच्दै\" /></a>\n<a href=\"https://heropress.com/wordcampkathmandu2018-fun1/\"><img width=\"2048\" height=\"1365\" src=\"https://s20094.pcdn.co/wp-content/uploads/2021/04/wordcampkathmandu2018-fun1.jpg\" class=\"attachment-full size-full\" alt=\"वर्डक्याम्प काठमान्डु २०१८ मा एक रमाइलो क्षण\" /></a>\n\n<p>म अझै पनि वर्डप्रेस कन्टेन्ट राइटिङ्ग नै गर्छु।</p>\n<p>मैले एक्सेस किइजमा काम गरिसके पछि नेपालको अर्को सफल कम्पनी थिमग्रिलमा प्रवेश गरे। त्यहाँ अझै धेरै काममा सौलियत र समयमा लचकता थियो। थिमग्रिल कम्पनी का संस्थापक-सन्चालक द्वय <a href=\"https://twitter.com/sanjipshah\">सन्जिप शाह</a> र <a href=\"https://twitter.com/rabinsthaa\">रबिन श्रेष्ठ</a> सरले झन धेरै कुरा सिक्ने हौसला दिनुभयो। केही समय पछाडि कम्पनी ले नयाँनयाँ लेखकहरु ल्यायो र मैले उनीहरूलाई सिकाउन थाले।</p>\n<p>पछि मैले अमेरिकामा अवस्थित अवसम मोटिभ कम्पनीमा पनि काम गरें। सुरु सुरुमा “इजइटडब्लुपि“ र “मन्स्टरइनसाइट्स“ ब्लगमा लेखे र पछि “डब्लुपिबिगिनर“ मा पनि लेख्ने मौका पाएं। म यसै कम्पनीमा काम गरिरहेकै बेला वर्डप्रेस र मार्केटिङ सम्बन्धि अझ धेरै कुरा जान्ने मौका पाए।</p>\n<p>मेरो काममा सुधार आउनुमा मुख्यतया मेरो निरिक्षक <a href=\"https://twitter.com/shahzadsaeed\">साहजाद सइद</a> (भारतबाट), <a href=\"https://twitter.com/noumaan_\">नवमान याकुब</a> (पाकिस्तानबाट), <a href=\"https://twitter.com/LittleZotzWrite\">लउरेन थार्प</a> र <a href=\"https://twitter.com/keri_engel\">केरि लिन एन्जेल</a> (अमेरिकाबाट) को धेरै ठूलो भुमिका छ। यतिमात्र हैन कम्पनीको प्रमुख <a href=\"https://twitter.com/syedbalkhi\">शाइद बाल्खि</a> संग काम गर्न पाउनु पनि मेरो लागि भाग्यको कुरा थियो। उहाँले मलाई प्रत्येक हप्ता कन्टेन्ट राइटिङ्ग को बारेमा बिस्तृत रुपमा सिकाउनु हुन्थ्यो। मलाई अझै याद छ उहाँले थुप्रै पटकको संवादमा “सफलताको अन्तर&#8221; को बारेमा सिकाउनु भएको थियो। उहाँ साच्चिकै राम्रो प्रशिक्षक सल्लाहकार हुनुहुन्छ।</p>\n<p>अब अहिलेको कुरा! हाल म वर्डप्रेस लेख लेखन क्षेत्रमा भर्खर आउदै गरेका ब्यक्तिहरु संग काम गर्छु। मैले अहिलेसम्म बटुलेको अनुभवहरु को माध्यमबाट साना वर्डप्रेस विजिनेश र ब्लग लाई सहयोग गर्न खोजिरहेको छु। जस्तो कि म अहिले “साइटसागा डटकम“ र “जाक्राथिम डटकम“ मा कार्यरत छु। यधपि मेरो आफ्नै सिक्ने क्रम भने सदैब जारि नै छ।</p>\n<p>अब भने म आफुलाइ लागेको सबभन्दा महत्वपुर्ण कुरा भन्न चाहान्छ। यो क्षेत्रमा मैले पाएको सबभन्दा महत्वपूर्ण कुरा भनेको “स्वतन्त्रता“ हो।</p>\n<blockquote><p>सर्वप्रथम त मेरो वर्डप्रेसको कामले मलाई समयको स्वतन्त्रता दिलायो। मेरो मतलब यो काम म आफुले भ्याएको समयमा गर्न सक्थे जसले गर्दा मेरो आफ्नै पढाईको लागि समय छुटाउन पाए। अनि दोस्रो कुरा भनेको “आर्थिक स्वतन्त्रता“।</p></blockquote>\n<p>आर्थिक आत्मनिर्भरता प्रत्येक व्यक्तिकालागि स्वतन्त्रता प्राप्तिको एक प्रमुख आधार हो। आम्दानी नै सबै कुरा हो भन्ने त होइन तर यो मानव विकासको एक आधारभुत पक्ष भने अवश्य पनि हो।</p>\n<p>वर्डप्रेसमा मेरो शुरुको तलब ठिकै मात्र थियो तर यसको वृद्धि क्रमशः राम्रो हुदै गयो। उदाहरणका लागि, मैले वर्डक्याम्पमा वक्तव्य दिइसकेपछि भने मलाई अरू पनि धेरै फ्रिल्यान्सिङ्ग काम गर्ने अवसरहरू पाए जुन काम मैले खालि समयमा गर्थे र केही थप पैसा पनि कमाए। त्यसपछि मैले मेरो परिवारलाई पनि राम्ररि सहयोग गर्न थाले।</p>\n<p>अबभने, म स्वतन्त्रता बारे अन्तिम कुरा भन्न चाहान्छु। मलाइ लाग्छ यो स्वतन्त्रताको अनुभुति नै त हो जसले मलाइ यो लेख लेख्न सक्षम बनायो। किनभने मलाइ जहिल्यै पनि लघुताबासले थिचिरहन्थ्यो र आफ्नो परिवार अनि आफ्नो सामाजिक-आर्थिक अवस्थाबारे कसैलाइ पनि भन्न सक्दिनथे या चाहान्नथे। यदि कसैले सोधिहाले पनि, म त्यो प्रश्नलाइ बेवास्ता गर्थे वा ढाटेर जवाफ दिन्थे।</p>\n<p>अहिलेको सन्दर्भको कुरा गर्दा, मैले त्यो परिस्थिति र अरुले के सोच्छन भन्ने डर दुबैमाथि जित हासिल गरेझै लाग्छ। र मलाइ यो नै साचो अर्थमा &#8216;स्वतन्त्रता&#8217; हो जस्तो लाग्छ।</p>\n<p>यही हो मेरो स्वतन्त्रता को कथा! हाम्रो स्वतन्त्रता को कथा!</p>\n<h3>आज राम्रो छ र मसँग अझै ठुला आकांक्षाहरु छन् भविष्यको लागि!</h3>\n<p>हो, मेरो वर्तमान राम्रो छ! वर्डप्रेस कन्टेन्ट राइटर, एडिटर, र सल्लाहाकार रूपमा मेरो करियर राम्रो छ। म एमफिल डिग्री पनि गर्दैछु र छिट्टै पुरा पनि गर्नेछु।</p>\n<p>तर अझपनि भविष्यको लागि मेरा धेरै ठुला आकांक्षाहरु छन्!</p>\n<ol>\n<li>म जे गरिरहेको छु त्यसैलाई निरन्तरता दिन चाहन्छु &#8211; नयाँ लेखकहरुलाई कपिराइटिङ्गको सिप सिकाउदै स्वतन्त्रता को अनुभुति दिलाउन। म जस्तो मान्छेहरू को लागि वर्डप्रेस एक अमुल्य उपहार हो।</li>\n<li>म कुनैदिन विद्यावारिधि गर्न चाहन्छु। यसको लागि यतिबेला भने कुनै योजना बनाएको छैन तर जसरी पनि यसै जुनिमा पुरा गर्ने इच्छा छ।</li>\n<li>म मेरो समुदायलाई सहयोग गर्न चाहन्छु। हाम्रो गाउँमा अझै पनि धेरै परिवर्तन आएको छैन – गरिबीको अवस्था यथावत् नै छ। राम्रो सहयोग प्रणालीको अभावमा अहिले पनि मेरो गाउँका धेरै जसो विद्यार्थीहरु स्नातक तह सम्मको अध्ययन पुरा गर्न सम्म असमर्थ छन्। मलाइ चै ब्यक्ति र समाज सबैको परिवर्तन को लागि शिक्षा एक्दमै महत्वपुर्ण हुन्छ भन्ने कुरामा दृढ विश्वास छ। त्यसैले म यो क्षेत्रमा काम गर्न चाहन्छु, तर कसरी गर्ने भन्ने कुरा भने थाहा छैन! मलाई आशा छ, समयले मेरो प्रश्नको जवाफ अवश्य दिनेछ!</li>\n</ol>\n<p>मेरो कथा पढ्नुभएको यहाँहरु सबैलाई धन्यवाद! मुख्यतः मलाई यो अवसर दिने साथी टोफर लाई धेरै धेरै धन्यवाद! हिरोप्रेसमा मेरो कथा सुनाउन पाउँदा म धेरै नै खुसि छु (आफुलाइ हिरो जस्तै महसुस गरिरहेकोछु)।</p>\n<p>मलाई यो स्थान सम्म पुग्न मद्दत गर्ने सम्पूर्ण व्याक्तीहरूलाई धेरै धेरै धन्यवाद! मैले पाएका सम्पूर्ण चिजहरुको लागि ब्रह्माण्ड लाई धन्यवाद!</p>\n<p>The post <a rel=\"nofollow\" href=\"https://heropress.com/essays/a-journey-toward-freedom-with-wordpress/\">A Journey toward Freedom with WordPress &#8211; वर्डप्रेससंगै स्वतन्त्रता तर्फको यात्रामा</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, 14 Apr 2021 02:24:46 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"Sunita Rai\";s: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:52:\"WPTavern: Yet Another WordPress Block Library Plugin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=115095\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:149:\"https://wptavern.com/yet-another-wordpress-block-library-plugin?utm_source=rss&utm_medium=rss&utm_campaign=yet-another-wordpress-block-library-plugin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4107:\"<p class=\"has-drop-cap\">You are the team manager at a WordPress development company. You just spent the last couple of months directing the group of highly skilled developers that you oversee to create the latest and greatest block library for WordPress. Your developers just spent those two months recreating what has already been done at least a couple of dozen times.</p>\n\n\n\n<p>You go through your product launch list:</p>\n\n\n\n<p><em>Testimonial block?</em> Check.</p>\n\n\n\n<p><em>Accordion block?</em> Check.</p>\n\n\n\n<p><em>Countdown block?</em> Check.</p>\n\n\n\n<p><em>Meme-creation block?</em> Coming in version 2.0.</p>\n\n\n\n<p>Everything seems to be in order. Your company has a new and shiny wheel, a bullet point on its product list, and a promise to end-users that you are keeping up with the times, launching a set of blocks that they can pick up literally anywhere else. But, yours is better because you built it in-house.</p>\n\n\n\n<p>Color me unimpressed.</p>\n\n\n\n<p>Maybe you are just trying to make a dent in the market, grabbing your share of the pie that companies have been snacking on for the last couple of years. Every time I see another forms plugin, I wonder how they will remain competitive, but there have been success stories. However, the ones who tell those stories always had a fresh take on an old concept.</p>\n\n\n\n<p>I worry about the upcoming years when the block market is simply a race to the bottom. Everyone has built their plugin with 100+ blocks, 500+ patterns, and more customization options than you can count. It is the story of the early ThemeForest days where premium themes amassed a gluttonous amount of theme options. The top sellers were continually one-upping each other with another notch on their feature lists.</p>\n\n\n\n<p>As a user, developer, and journalist who writes about these products, I am often lost. I look at a new plugin and ask myself if I had already checked it out and dismissed it last week. I am always searching for something innovative, but the lines between one project to the next are blurry. I am swirling in a sea of icon, shape divider, post list, and container blocks &mdash; just looking for a life preserver to pull myself out.</p>\n\n\n\n<p>Don&rsquo;t get me wrong. I am a wheel recreator myself. I have built products that others had already created. In some cases, I launched something better. In others, I failed miserably. I may be a little biased, but I always felt like I was bringing something new to the table. And that is where I take issue.</p>\n\n\n\n<p>I want to see you create a block that no one has ever done before, such as <a href=\"https://wptavern.com/display-digital-sheet-music-with-the-wordpress-block-editor\">drawing digital sheet music</a> or a <a href=\"https://wptavern.com/block-a-saurus-embeds-a-side-scrolling-t-rex-game-via-the-block-editor\">side-scrolling T-Rex game</a>.</p>\n\n\n\n<p>I want to see you extend the editor with new tools like <a href=\"https://wptavern.com/emoji-conbini-and-the-case-for-a-block-enhancements-directory\">inserting Emoji</a> or <a href=\"https://wptavern.com/insert-font-awesome-icons-into-the-block-editor-via-the-jvm-gutenberg-rich-text-icons-plugin\">Font Awesome icons</a> into Rich Text.</p>\n\n\n\n<p>I want to see you overhaul the editor and create a <a href=\"https://wptavern.com/new-iceberg-plugin-brings-a-distraction-free-writing-experience-to-wordpress\">Markdown-friendly experience</a>.</p>\n\n\n\n<p>Instead of an &ldquo;advanced&rdquo; list block of your own design, create a plugin that extends the core List block with custom options. Skip that custom gallery. <a href=\"https://wptavern.com/automatically-create-image-slideshows-with-the-full-screen-galleries-plugin\">Bring something new</a> to the existing Gallery block. Got a custom music player? Use it to overhaul the Audio block instead of wrapping it up separately.</p>\n\n\n\n<p>The community has all the tabs, buttons, and progress bars it can handle. Of course, if you are raising the bar on all of these same ol&rsquo; blocks, keep pushing forward. Let&rsquo;s see what you can do. Otherwise, keep thinking outside of the box.</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, 13 Apr 2021 20:34: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:14:\"Justin Tadlock\";s: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:50:\"WordPress.org blog: People of WordPress: Tyler Lau\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=10102\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:65:\"https://wordpress.org/news/2021/04/people-of-wordpress-tyler-lau/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:9022:\"<p><em>WordPress is open source software, maintained by a global network of contributors. There are many examples of how WordPress has changed people’s lives for the better. In this monthly series, we share some of the amazing stories that are lesser-known.</em></p>\n\n\n\n<h2><strong>Embrace Who You Are and Your Journey</strong></h2>\n\n\n\n<p>In this People of WordPress contributor story, we chat to Tyler Lau from the US on his relationship building work in marketing and his WordPress journey.</p>\n\n\n\n<p>Read on to discover his story which shows it is often what you have learned from negative experiences in your life that can make you a major asset to a product team.</p>\n\n\n\n<img src=\"https://i1.wp.com/wordpress.org/news/files/2021/04/people-of-wp-tyler-thumb.jpg?resize=632%2C464&ssl=1\" alt=\"Tyler Lau stood in front of a colorful mural\" class=\"wp-image-10116\" width=\"632\" height=\"464\" />\n\n\n\n<h2><strong>An Entrepreneurial Mindset</strong></h2>\n\n\n\n<p>Tyler recalls he always had a knack for spotting a enterprise ideas. As an industrious seven-year-old, he was already finding ways to make sales during the school breaks.&nbsp;</p>\n\n\n\n<p>While many entrepreneurs have similar stories, Tyler’s path took many turns before he discovered and thrived in the WordPress community.</p>\n\n\n\n<p>He was drawn to both the software and the community that surrounds it from his search for personal and professional freedom. He ultimately was able to combine his various business interests and people skills into professional marketing work.</p>\n\n\n\n<h2><strong>Using your skills to uncover your journey</strong></h2>\n\n\n\n<img src=\"https://i0.wp.com/wordpress.org/news/files/2021/04/people-of-wp-tyler-2.jpg?resize=632%2C758&ssl=1\" alt=\"Tyler Lau pictured sat on a chair using his mobile phone in his social media work\" class=\"wp-image-10118\" width=\"632\" height=\"758\" />\n\n\n\n<p>Tyler’s current role is as a Marketing Relationship Builder, based in Kansas, USA. His responsibilities span across all digital properties and products, leveraging his broad set of business and people skills.</p>\n\n\n\n<p>These skills are amplified by his creativity and adaptability. Tyler says that one reason he is always looking for new projects is his Attention Deficit Hyperactivity Disorder (ADHD), a diagnosis he received in 2005.</p>\n\n\n\n<p>In an industry built by programmers and developers who often have a strong sense of focus, Tyler felt that someone with ADHD wouldn’t be seen as a natural fit. He found the WordPress community to be a place where everyone can find the right spot for their unique skills. Tyler’s skill is people, and this has translated into many opportunities and responsibilities in his work life. His skills have also helped him give back to the WordPress community as a speaker and volunteer, and through multiple contributor days.</p>\n\n\n\n<h2><strong>Relationship-building as a career</strong></h2>\n\n\n\n<p>Most of Tyler’s experience was in the restaurant industry, and his resume did not exactly point to a career in tech. But the service industry actually prepared him well for everything he has taken on since.</p>\n\n\n\n<p>When he is at work events, he meets people from across the world and builds connections with them. As an extrovert, he enjoys this and couldn’t imagine a job where he was isolated from getting to know others and relationship-building.</p>\n\n\n\n<p>Understanding people and being able to operate in any setting are key competencies. Social skills and tact are useful for community building in the WordPress space too, and in Tyler’s life at different times it has been necessary for survival. </p>\n\n\n\n<h2><strong>The true meaning of freedom</strong></h2>\n\n\n\n<p>In the WordPress community, the concept of freedom comes up often. WordPress is built on GPL, free software, and open-source values. Practically speaking, anyone can work remotely or be their own boss to gain more freedom in work and life.&nbsp;Tyler feels that he never fitted into a traditional work mould. With his strong focus on freedom, he found this resonated with the freedom and opportunities he believes WordPress provides him and thousands of others.</p>\n\n\n\n<p>Tyler describes how in 2013 his ‘inner opportunist’ got him into trouble. After dropping out of college following a brain aneurysm, he needed capital to fund his first startup.&nbsp;He shares that he found a quick but unlawful way to make money. Alongside this between shifts as a waiter, he worked on prototypes for his first product. The company was growing fast, and to protect his patents and take research and development to the next level, he had to work hard. Everything came to a halt when some of the actions he took resulted in being sent to prison. </p>\n\n\n\n<p>He says that meeting other inmates reminded him that he was in a much better situation than most. He was educated, well-off, loved, and knew he had a future once he was released. He found that many inmates never graduated from high school and were computer illiterate. While inside, Tyler taught subjects like science, math, writing, reading, and social studies. He found that due to the lack of skills and support, many inmates would struggle upon release. He believes getting the mental health support and job training needed to thrive after prison is not easy for many.</p>\n\n\n\n<p>“<em>There’s more to freedom than just being on the outside. You also need a sense of agency and enfranchisement,</em>” says Tyler. He considered his sense of purpose and support network were plenty to keep him going and was ready to take on his next (legal) business challenge as soon as he could.</p>\n\n\n\n<h2>Going forward positively&nbsp;</h2>\n\n\n\n<img width=\"632\" height=\"632\" src=\"https://i0.wp.com/wordpress.org/news/files/2021/04/FF50DF21-38AA-4778-B465-C2DF0B441AD7.jpeg?resize=632%2C632&ssl=1\" alt=\"Tyler Lau portrait picture\" class=\"wp-image-10139\" />\n\n\n\n<p>The idea that your past doesn’t define you and you can choose to embrace it, is a key driver for Tyler.</p>\n\n\n\n<p>He describes himself as an outlier in many ways. He recalls how politics influenced his life from the day he was born. Tyler’s father is a semi-dissident Chinese visual anthropologist, his mother is an art professor who left her home country of Japan to break free from traditional Japanese gender roles. Tyler feels he inherited a lot of this fearlessness.</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>“<em>I’ve never fitted in, and yet this is what makes me able to adapt to most situations and relate to just about anyone. I embrace my eclectic, dissonant past and see beauty in the person those experiences shaped me to be</em>,” says Tyler.&nbsp;</p></blockquote>\n\n\n\n<p>Now, he’s able to put those skills to good use in the WordPress community and beyond.&nbsp;</p>\n\n\n\n<p>He says: “<em>Regardless of your physical abilities, mental health struggles, upbringing, and even your run-ins with the law, no one is excluded from carving their place in the WordPress industry</em>”.<br /></p>\n\n\n\n<h2><strong>Contributors</strong></h2>\n\n\n\n<p>Thank you to Tyler Lau (<a href=\"https://profiles.wordpress.org/tylermaximus/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>tylermaximus</a>) for sharing his #ContributorStory.</p>\n\n\n\n<p>Thanks to Larissa Murillo (<a href=\"https://profiles.wordpress.org/lmurillom/\">@lmurillom</a>), Surendra Thakor (<a href=\"https://profiles.wordpress.org/sthakor/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>sthakor</a>), Olga Gleckler (<a href=\"https://profiles.wordpress.org/oglekler/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>oglekler</a>), Meher Bala (<a href=\"https://profiles.wordpress.org/meher/\">@meher</a>), Yvette Sonneveld (<a href=\"https://profiles.wordpress.org/yvettesonneveld/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>yvettesonneveld</a>), Abha Thakor (<a href=\"https://profiles.wordpress.org/webcommsat/\">@webcommsat</a>), Josepha Haden (<a href=\"https://profiles.wordpress.org/chanthaboune/\">@chanthaboune</a>), Chloé Bringmann (<a href=\"https://profiles.wordpress.org/cbringmann/\">@cbringmann</a>) and Topher DeRosia (<a href=\"https://profiles.wordpress.org/topher1kenobe/\">@topher1kenobe</a>) for working on the People of WordPress series.</p>\n\n\n\n<img src=\"https://lh3.googleusercontent.com/Y3odYTyvSfJbVxUxUWEgKxOprox2zxVwhk7_vdW-AIs4IlE-jK0Zt1itCj867x0dIAbIiK-VeuTLMZr6BjNEY0fkTf--4dT1hkLbnGtsPFNfyrVBYIN59IirTkNnqiQgqxk6E1MI\" alt=\"HeroPress logo\" />\n\n\n\n<p><em>This post is based on an article originally published on HeroPress.com, a community initiative created by&nbsp;</em><a href=\"https://profiles.wordpress.org/topher1kenobe/\"><em>Topher DeRosia</em></a><em>. It highlights people in the WordPress community who have overcome barriers and whose stories would otherwise go unheard.</em></p>\n\n\n\n<p><em>Meet more WordPress community members in our&nbsp;<a href=\"https://wordpress.org/news/category/heropress/\">People of WordPress</a>&nbsp;series.</em></p>\n\n\n\n<p><em>#ContributorStory #HeroPress</em></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 13 Apr 2021 13:47:30 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"webcommsat AbhaNonStopNewsUK\";s: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:100:\"WPTavern: Free Software Foundation Unrelenting on Stallman Reinstatement: “We Missed His Wisdom”\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=115008\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:231:\"https://wptavern.com/free-software-foundation-unrelenting-on-stallman-reinstatement-we-missed-his-wisdom?utm_source=rss&utm_medium=rss&utm_campaign=free-software-foundation-unrelenting-on-stallman-reinstatement-we-missed-his-wisdom\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:8324:\"<p>The Free Software Foundation has <a href=\"https://www.fsf.org/news/statement-of-fsf-board-on-election-of-richard-stallman\">published</a> a public explanation of why they decided to reinstate Richard Stallman to the board of directors last month:</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>&ldquo;The voting members of the Free Software Foundation, which include the board of directors, voted to appoint Richard Stallman to a board seat after several months of thorough discussion and thoughtful deliberation.</p><p>We decided to bring RMS back because we missed his wisdom. His historical, legal and technical acumen on free software is unrivaled. He has a deep sensitivity to the ways that technologies can contribute to both the enhancement and the diminution of basic human rights. His global network of connections is invaluable. He remains the most articulate philosopher and an unquestionably dedicated advocate of freedom in computing.&rdquo;</p></blockquote>\n\n\n\n<p>The board took responsibility for bungling the news of his election to a board seat, stating that the planned flow of information was not executed in a timely manner. When Stallman <a href=\"https://wptavern.com/free-software-community-condemns-richard-stallmans-reinstatement-to-fsf-board-of-directors\">announced his return to the board</a> at last month&rsquo;s LibrePlanet event, the free software community was not able to discern whether he did so with the board&rsquo;s permission. It took the FSF by surprise, polarized the community, and provoked organizations and corporations to publish statements condemning his reinstatement.</p>\n\n\n\n<p>The board admits that &ldquo;FSF staff should have been informed and consulted first,&rdquo; but follows it up by effectively downplaying his influence, stating that Stallman is &ldquo;an unpaid volunteer and subject to the organization&rsquo;s policies.&rdquo; </p>\n\n\n\n<p>The statement reads like a perplexing love letter for someone who struggles with social cues. It obscures most of the real issues outlined in an <a href=\"https://rms-open-letter.github.io/\">open letter</a> signed by many prominent members of the free software community. The FSF board referenced a <a href=\"https://www.fsf.org/news/rms-addresses-the-free-software-community\">statement</a> from Stallman, published one minute prior, and claims that he has acknowledged his mistakes:</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>&ldquo;He has sincere regrets, especially at how anger toward him personally has negatively impacted the reputation and mission of FSF. While his personal style remains troubling for some, a majority of the board feel his behavior has moderated and believe that his thinking strengthens the work of the FSF in pursuit of its mission.&rdquo;</p></blockquote>\n\n\n\n<p>The FSF board has officially confirmed that the majority of its leadership advocated for Stallman&rsquo;s return and see it as important in its aim &ldquo;to attract a new generation of activists for software freedom and to grow the movement.&rdquo; </p>\n\n\n\n<p><a href=\"https://www.fsf.org/news/rms-addresses-the-free-software-community\">Stallman&rsquo;s statement</a> identifies his past behaviors as something outside his control, saying it was &ldquo;not a choice&rdquo; and &ldquo;unavoidable:&rdquo;</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>Later in life, I discovered that some people had negative reactions to my behavior, which I did not even know about. Tending to be direct and honest with my thoughts, I sometimes made others uncomfortable or even offended them &mdash; especially women. This was not a choice: I didn&rsquo;t understand the problem enough to know which choices there were.</p><p>Sometimes I lost my temper because I didn&rsquo;t have the social skills to avoid it. Some people could cope with this; others were hurt. I apologize to each of them. Please direct your criticism at me,&nbsp;<a href=\"https://www.fsf.org/news/statement-of-fsf-board-on-election-of-richard-stallman\">not at the Free Software Foundation</a>.</p></blockquote>\n\n\n\n<p>He also attempted to explain his position regarding the 2019 controversy that prompted his <a href=\"https://wptavern.com/gpl-author-richard-stallman-resigns-from-free-software-foundation\">resignation from the FSF board</a> and MIT&rsquo;s Computer Science and Artificial Intelligence Lab.</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>&ldquo;It was right for me to talk about the injustice to Minsky, but it was tone-deaf that I didn&rsquo;t acknowledge as context the injustice that Epstein did to women or the pain that caused.</p><p>I&rsquo;ve learned something from this about how to be kind to people who have been hurt. In the future, that will help me be kind to people in other situations, which is what I hope to do.&rdquo;</p></blockquote>\n\n\n\n<p>This strategically intertwined pair of statements from Stallman and the FSF did little to change the community&rsquo;s perception of his reinstatement to the board. They seemed to have the opposite effect of inflaming those who opposed it in the first place.</p>\n\n\n\n<p>&ldquo;I&rsquo;m really grateful that the FSF board took the time to clarify this,&rdquo; Tock founder Brian Fitzpatrick <a href=\"https://twitter.com/therealfitz/status/1381656583554404353\">said</a>. &ldquo;This makes it crystal clear that they would rather have RMS around than become an inclusive and welcoming environment to more than half the people who write software. Toxic to the core.&rdquo;</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">Congratulations on getting RMS offering a non-apology for being tone deaf. You\'ve just inherited that skill.<br />It\'s time for that \"new generation of activists for software freedom\" to help another foundation grow.</p>&mdash; St&#11093;nehead (@stonehead) <a href=\"https://twitter.com/stonehead/status/1381647487178571776?ref_src=twsrc%5Etfw\">April 12, 2021</a></blockquote>\n</div>\n\n\n\n<p>The statements were met with considerable backlash, as they did little to assuage community concerns regarding Stallman&rsquo;s patterns of misconduct. More recently that includes his controversial remarks on rape, assault,&nbsp;and child sex trafficking, along with two decades of&nbsp;<a href=\"https://geekfeminism.wikia.org/wiki/Richard_Stallman\">behaviors and statements</a>&nbsp;that many have found to be disturbing and offensive. Whether these behaviors are motivated by malice or simply a lack of understanding the proper context, the damage to the FSF continues.</p>\n\n\n\n<p>Red Hat principle engineer Elana Hashman, former director of the Open Source Initiative, <a href=\"https://twitter.com/ehashdn/status/1381665600846528515\">published a thread</a> with suggestions for 501(c)(3) public charities the community can donate to as an alternative to the FSF, including The Software Freedom Conservancy, EFF, OSI, and Software in the Public Interest.</p>\n\n\n\n<p>Last week we <a href=\"https://wptavern.com/fsf-doubles-down-on-stallman-reinstatement-wordpress-does-not-support-his-return-to-the-board\">reported</a> that the WordPress project does not support Stallman&rsquo;s return to the FSF board of directors. Curiously, WordPress&rsquo; executive director Josepha Haden-Chomphosy published the <a href=\"https://josepha.blog/2021/04/02/on-recent-news-about-the-fsf-board-of-directors/\">statement</a> to her personal blog instead of on the project&rsquo;s website, but she confirmed it is WordPress&rsquo; official stance on Stallman&rsquo;s reinstatement. Since that time, the <a href=\"https://wordpressfoundation.org/\">WordPress Foundation</a> has quietly removed the Free Software Foundation from its list of inspirations. </p>\n\n\n\n<p>Many corporations and individuals have distanced themselves and pulled funding from the FSF, but it has not had much impact on the leadership of the organization. The FSF board seems confident in their decision to keep Stallman in place, despite openly admitting that &ldquo;his personal style remains troubling.&rdquo; When the organization&rsquo;s actions so sublimely repudiate its stated goals (to attract a new generation of activists for software freedom), it&rsquo;s easy to see why former supporters can no longer buy into the FSF&rsquo;s promises to improve transparency and accountability.</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, 13 Apr 2021 03:53:44 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:69:\"WPTavern: Display Digital Sheet Music With the WordPress Block Editor\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=115022\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:183:\"https://wptavern.com/display-digital-sheet-music-with-the-wordpress-block-editor?utm_source=rss&utm_medium=rss&utm_campaign=display-digital-sheet-music-with-the-wordpress-block-editor\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4520:\"<img />OSMD plugin output on the front end.\n\n\n\n<p class=\"has-drop-cap\">PhonicScore, a company out of Vienna, recently released its <a href=\"https://wordpress.org/plugins/opensheetmusicdisplay/\">OpenSheetMusicDisplay (OSMD) plugin</a>. It is a WordPress block built for rendering digital sheet music in the browser.</p>\n\n\n\n<p>The OSMD plugin is built on top of the team&rsquo;s JavaScript library of the same name, a project officially released in 2016. It is a bridge between <a href=\"https://www.vexflow.com/\">VexFlow</a> and <a href=\"https://www.musicxml.com/\">MusicXML</a>. VexFlow is a JavaScript API for rendering music notation, and MusicXML is a standard open format for exchanging digital sheet music.</p>\n\n\n\n<p>&ldquo;As WordPress is one of the most popular CMS&rsquo; we decided to make an out-of-the-box solution that users could easily plug in their WP websites,&rdquo; wrote Marin Jurcic in the <a href=\"https://opensheetmusicdisplay.org/2016/09/19/hello-world-opensheetmusicdisplay-musicxml/\">announcement post</a>. &ldquo;This wasn&rsquo;t an easy build, lucky for us OSMD provided all the tools for the job. To make this happen we relied heavily on the latest OSMD release and bundled it with the plugin. To add the &lsquo;out-of-the-box features&rsquo; and get it working we used WordPress&rsquo;s framework/library &mdash; Javascript and PHP.&rdquo;</p>\n\n\n\n<p>This is the type of plugin that allows the beauty of the block editor to shine. A few years ago, such a feat would only have been possible via the shortcode system. Users would have had to manually type in all of the shortcode&rsquo;s arguments &mdash; assuming they could remember them all &mdash; and preview the post to see what it would look like. Today, they can interact with and make changes directly to their sheet music&rsquo;s display from the editor. </p>\n\n\n\n<p>OSMD was never a WordPress-first project. It was a standalone library that the company decided to make available to WordPress. With the power of the block system, they were able to do that. One can only hope that we see investments in our community from similar projects now that the block editor has become more stable.</p>\n\n\n\n<p>We are barely digging beneath the surface of what will be possible in time. Blocks like OSMD build upon the optimism I had when the system was first unveiled.</p>\n\n\n\n<p>To use the plugin, users must simply insert the OpenSheetMusicDisplay block into their content canvas. It is located under the Embed category. From that point, they must select or upload an XML file via the block options sidebar (<code>.xml</code>, <code>.musicxml</code>, and <code>.mxl</code> files are supported). Dragging and dropping a file does not work in this version &mdash; <em>maybe a feature request for 2.0?</em></p>\n\n\n\n<img />OSMD block in the editor.\n\n\n\n<p>The &ldquo;Basic Options&rdquo; tab has several width and aspect ratio settings. For the most part, it is probably best to leave these at the defaults. However, this will depend on your theme and how much room it provides.</p>\n\n\n\n<p>The block does not currently support the standard wide-alignment system. Instead, it has a width option, allowing users to determine the front-end output. Because this is a non-standard option, it may not play well with all themes. Depending on how the user&rsquo;s active theme handles content width, they can get wildly different results.</p>\n\n\n\n<p>The &ldquo;Drawing Options&rdquo; tab is where users have more control over customizing the output. These settings allow users to determine what is &ldquo;drawn&rdquo; in the digital sheet music. One option is whether to draw the composer&rsquo;s name. Another is to output time signatures. With 10 settings in total, there is a lot to tinker with.</p>\n\n\n\n<p>The biggest issue I ran into with the plugin was with the editor freezing from time to time. It appeared that the block was trying to reload, even when I was working outside of it. This happened despite having unticked the &ldquo;Automatically Rerender on Change&rdquo; checkbox.</p>\n\n\n\n<p>Overall, this plugin should serve users who want to display sheet music well. It is simple to use and offers numerous customization options. The team has a <a href=\"https://opensheetmusicdisplay.github.io/demo/\">demo of the OSMD library</a> in action on their site.</p>\n\n\n\n<p>For those who are not inclined to share digital sheet music, well, we can all appreciate the genius of J.S. Bach&rsquo;s <em>Air</em>:</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:\"Mon, 12 Apr 2021 21:16: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:14:\"Justin Tadlock\";s: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:92:\"WordPress Foundation: Announcement: Upcoming live discussion on do_action charity hackathons\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"https://wordpressfoundation.org/?p=184010\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:107:\"https://wordpressfoundation.org/2021/announcement-upcoming-live-discussion-on-do_action-charity-hackathons/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4578:\"<blockquote class=\"wp-block-quote\"><p>This live discussion has concluded. You can find a video recording of the live discussion on this post or <a rel=\"noreferrer noopener\" href=\"https://www.youtube.com/watch?v=pCg47iuHgBI\" target=\"_blank\">watch it directly on YouTube</a> and <a href=\"https://wordpress.tv/2021/04/13/tuesday-training-how-to-organize-an-online-do_action-charity-hackathon/\">on WordPress.tv</a>. Captions and a full transcript of the video will be made available shortly.</p></blockquote>\n\n\n\n<p class=\"has-drop-cap\">Over the past few months, many community organizers have expressed interest in organizing do_action charity hackathons and asked many questions about the event to Community deputies. In order to address these questions &#8211; some members of the WordPress Community are organizing a live <a href=\"https://make.wordpress.org/community/tag/tuesdaytrainings/\">Tuesday Training</a> discussion on <a href=\"https://make.wordpress.org/community/2021/04/09/tuesday-training-announcement-how-to-organize-an-online-do_action-charity-hackathon/\">How to organize do_action charity hackathons</a>!</p>\n\n\n\n<p><a rel=\"noreferrer noopener\" href=\"https://profiles.wordpress.org/harishanker\" target=\"_blank\">Hari Shanker</a>, <a rel=\"noreferrer noopener\" href=\"https://profiles.wordpress.org/hlashbrooke\" target=\"_blank\">Hugh Lashbrooke</a>, <a href=\"https://profiles.wordpress.org/nao\">Naoko Takano</a>, and <a rel=\"noreferrer noopener\" href=\"https://profiles.wordpress.org/yoga1103\" target=\"_blank\">Yogesh Londhe</a> – who are all experienced do_action hackathon organizers, will participate in this Live discussion on do_action charity hackathons. The event, which will be streamed LIVE on the&nbsp;<a href=\"https://www.youtube.com/WordCampCentral\">WordCamp Central YouTube channel</a> on <a href=\"https://www.timeanddate.com/worldclock/fixedtime.html?iso=20210413T0200\">Tuesday, April 13, 2021, 02:00 UTC</a>, is open to all! Community members can also participate in the discussion by asking questions in the live chat, which will be answered by the panelists live, during the session!</p>\n\n\n\n<h2>What are do_action charity hackathons?</h2>\n\n\n\n<p><a href=\"https://www.google.com/search?q=do_action+handbook&oq=do_action+handbook&aqs=chrome..69i57j69i60l3.2453j0j4&sourceid=chrome&ie=UTF-8\">do_action hackathons</a> are community-organized events that are focused on using WordPress to give deserving charitable organizations their own online presence. Each do_action event includes participants from the local WordPress community coming together to plan and build brand new websites for a number of local organizations in one day. Due to the COVID-19 pandemic, <a href=\"https://make.wordpress.org/community/handbook/meetup-organizer/event-formats/do_action-charity-hackathon/organising-an-online-do_action-event/\">do_action hackathons have moved online</a>. </p>\n\n\n\n<p>In this session, we talk about do_action events, and their importance in this post-pandemic world, and on how to effectively organize an online do_action hackathon.</p>\n\n\n\n<h2>Watch the discussion!</h2>\n\n\n\n<p>The live discussion has concluded, but you can catch a recording of the session below.</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<div class=\"jetpack-video-wrapper\"></div>\n</div>\n\n\n\n<p><s><strong>Date and time:</strong>&nbsp;<a href=\"https://www.timeanddate.com/worldclock/fixedtime.html?iso=20210413T0200\">Tuesday April 13, 2021, 02:00 UTC</a> (Click to view in your local time)<br /><em>You can sign up for notifications on the YouTube live link below!</em></s></p>\n\n\n\n<p><s>In case the timing is off, and if you will not be able to join the live event, fret not! The <a href=\"https://www.youtube.com/watch?v=pCg47iuHgBI\">event recording will be available on YouTube</a>, and will soon be uploaded to <a rel=\"noreferrer noopener\" href=\"https://wordpress.tv/\" target=\"_blank\">WordPress.tv</a> as well!</s> <br />As mentioned above, while the live discussion has concluded, don&#8217;t forget to check out the recording of the live discussion above. We are working on adding captions for the video and will share a transcript of the same, shortly.</p>\n\n\n\n<p>We hope that this session was useful. We strongly encourage you to <a href=\"https://make.wordpress.org/community/handbook/meetup-organizer/event-formats/do_action-charity-hackathon/do_action-event-application/\">organize a do_action charity hackathon</a> to support your local non-profits by giving them a WordPress-powered online presence. Thank you for all that you do to support the global WordPress Community!</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, 12 Apr 2021 15:10: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:12:\"Hari Shanker\";s: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:50:\"WordPress.org blog: WP Briefing: Who Is 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:53:\"https://wordpress.org/news/?post_type=podcast&p=10099\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:52:\"https://wordpress.org/news/2021/04/who-is-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:9290:\"<p>In this episode, Josepha explores the five groups within the WordPress ecosystem and provides a high-level example of how they interact and support one another. As always, stay tuned for the small list of big things and a contributor highlight.&nbsp;&nbsp;</p>\n\n\n\n<p><em><strong>Have a question you&#8217;d like answered? You can submit them to <a href=\"mailto:wpbriefing@wordpress.org\">wpbriefing@wordpress.org</a>, either written or as a voice recording.</strong></em></p>\n\n\n\n<h2><strong>Credits</strong></h2>\n\n\n\n<ul><li>Editor:<a href=\"https://profiles.wordpress.org/dustinhartzler/\"> Dustin Hartzler</a></li><li>Logo:<a href=\"https://profiles.wordpress.org/beafialho/\"> Beatriz Fialho</a></li><li>Production:<a href=\"https://profiles.wordpress.org/mkaz/\"> </a><a href=\"https://profiles.wordpress.org/cbringmann/\">Chloé Bringmann</a></li><li>Song: Fearless First by Kevin MacLeod</li></ul>\n\n\n\n<h2>References</h2>\n\n\n\n<ul><li>Get to know<a href=\"https://make.wordpress.org/\"> WordPress Teams</a></li><li><a href=\"https://wordpress.tv/2017/12/10/josepha-haden-beginners-guide-to-contributions/\">Five Steps of Volunteer Engagement </a></li><li><a href=\"https://twitter.com/CoachBirgit/status/1339516878495117313\">Community Highlight </a></li><li><a href=\"https://centroamerica.wordcamp.org/2021/\">WordCamp Centroamérica 2021 Online</a> (<a href=\"https://centroamerica.wordcamp.org/2021/sesiones/\">Schedule</a>)</li><li><a href=\"https://wordpress.org/news/2021/03/so-you-want-to-make-block-patterns/\">So you want to make block patterns?</a></li><li><a href=\"https://docs.google.com/spreadsheets/d/1h73xMwjSRkJJsn7ooiwXFeZpd0hxXh26pJ7qXzI5iUg/edit#gid=0\">Gutenberg Tutorial sign-up</a></li></ul>\n\n\n\n<h2>Transcript</h2>\n\n\n\n<span id=\"more-10099\"></span>\n\n\n\n<p>Hello, everyone, and welcome to the WordPress briefing, the podcast where you can catch quick explanations of some of the ideas behind the WordPress open source project and the community around it, as well as get a small list of big things coming up in the next two weeks. I&#8217;m your host, Josepha Haden Chomphosy. Here we go!</p>\n\n\n\n<p>In the first episode of this podcast, I said that there&#8217;s a lot that goes into WordPress, that&#8217;s really hard to see. One of the hardest things to see about the WordPress project as you get started is the overall structure. There is quite a bit of documentation that can clarify the basics: the names of teams, what they work on, and where, and when they meet. The way that they influence and support each other can really feel like a bit of a mystery. So today, I&#8217;m going to break down the WordPress community into five big groups; I want you to keep a couple of things in mind.&nbsp;</p>\n\n\n\n<p>Firstly, these are high-level and based on my observations. Each of these groups can be further broken down into subgroups. So while you may not feel represented in this exact five, you are included if you were to dig a little bit deeper. The second thing to keep in mind is that the makeup of these groups is pretty fluid. Many community members find themselves in more than one group, but generally not far off. Some group two folks end up in group three, depending on the situation, people in group four can also end up in group five, and so on. As with so many things that I share, I&#8217;m not trying to insist that one size fits all. I&#8217;m not trying to put the WordPress community into a box. This is just a basic framework to understand how it all fits together. Alright, are you ready? I&#8217;m ready. Let&#8217;s do it!</p>\n\n\n\n<p>Okay, I have a broad definition of the community, which I have mentioned before. I believe that the community is anyone who has interacted with WordPress, whether they know it or not. So, I&#8217;ll start from way out there and work my way in that first group; we’re going to call our <strong>Visitors</strong>.&nbsp;</p>\n\n\n\n<p><strong>Visitors</strong> are people who arrive at a WordPress site to gain information or engage in an activity. Sometimes they know it&#8217;s a WordPress site, but most of the time, they don&#8217;t. The second group are <strong>Users</strong>, people who use WordPress as their CMS. So, that&#8217;s website builders, website designers, small businesses, content creators, and the list goes on and on. The third group I like to refer to is the <strong>Extenders</strong>. Those are people who extend WordPress through the creation of blocks, themes, plugins, and more. There are also people who teach WordPress to others through WordPress podcasts, and newsletters and tutorials. The fourth group I refer to as our <strong>Contributors</strong> is the people who contribute to the open source software and the infrastructure supporting it, but not necessarily the same people who contribute directly to their own product. And then there&#8217;s group five, <strong>Leaders</strong>. Those are people who help drive the vision and strategy for WordPress; the most notable member of that group is of course, Matt Mullenweg. And I&#8217;m also in that group.&nbsp;</p>\n\n\n\n<p>Each of these groups directly influenced the groups on either side. For example, a WordPress user is affected by both visitors and extenders. Imagine a content creator who shares their passion for photography through a WordPress site; this photographer may have visitors that need to purchase photos. In response, the user now has a need to make it possible for visitors to purchase photos on a site. So they go to what we consider the extenders, people who have built a plugin that supports that need. And as a result, that user can install that on their site. And they have have satisfied the need of the visitors to their site, the people who now can purchase photos.&nbsp;</p>\n\n\n\n<p>There are a lot of examples like this in the WordPress project. Every small pattern that you see is mirrored in the larger patterns across our ecosystem. And every large pattern you see in the ecosystem can be seen among our teams. It&#8217;s pretty cool to look at really. So, why should this matter to you? From a very practical standpoint, this matters for anyone who&#8217;s trying to learn more about contributing to the WordPress project. These five groups mirror very closely the five steps of volunteer engagement that we see across the ecosystem and from a more philosophical standpoint, it&#8217;s just kind of nice to know who your neighbors are. Without the influence and support of the groups around us, it can be hard to know whether we&#8217;re on the right track or not. So take a look to your left and look to your right, and get to know your partners in this project.</p>\n\n\n\n<p>That brings us now to our community highlight, the segment where I share a note about contributors who have helped others along the way, or WordPress success story. This week&#8217;s highlight is from @CoachBirgit, <a href=\"https://profiles.wordpress.org/coachbirgit/\">Birgit Olzem</a>, a longtime contributor and a friend of mine. Her success story goes like this.&nbsp;</p>\n\n\n\n<p>WordPress has allowed me as a mother of five to leave a toxic marriage for good.&nbsp;</p>\n\n\n\n<p>Later, the community picked me up when I became seriously ill.&nbsp;</p>\n\n\n\n<p>So I can say from the bottom of my heart, that working with WordPress has saved my life.</p>\n\n\n\n<p>And now our small list of big things. I&#8217;ve got three things for you this week. I think that they&#8217;re all very important. And I hope you check them all out. The first one is a reminder that word camp Central America is coming up on April 15 and 16th. If you have not registered for tickets, you still have time, I will share a link to the registration page and the schedule in the show notes below.&nbsp;</p>\n\n\n\n<p>The second thing on our small list of big things is that the Gutenberg 10.4 release is coming out later this week on April 14th. It&#8217;s an important release because it&#8217;s when we take a look at the current iteration of full site editing tools that we have, and decide if it&#8217;s ready to get into the WordPress 5.8 release. There&#8217;s a post that has a little more information about that which I will share in the show notes below as well. If you haven&#8217;t checked out the Gutenberg plugin lately, obviously I think it&#8217;s a good idea to do that in general, but definitely a good idea to check it out now.&nbsp;</p>\n\n\n\n<p>The third thing on our list today is a reminder to check out our most recent block pattern tutorial, I&#8217;ll share a link to that in the show notes. It&#8217;s this kind of tips and tricks, tutorial, the “show me how to do it,” kind of thing in the style of <a href=\"https://css-tricks.com/css-style-guides/\">CSS-Tricks</a>. If you or anyone that you know might be interested in sharing a similar style of tutorial, there&#8217;s a link to a form in that show notes as well so that you can share with us your name and the topic that you&#8217;re interested in. We&#8217;ll take a look and see if it&#8217;s something that we definitely need to make sure our users know how to do. So, that my friends is your small list of big things.&nbsp;</p>\n\n\n\n<p>Thank you for joining in today for the WordPress briefing. I&#8217;m your host, Josepha Haden Chomphosy. I&#8217;ll see you again in a couple of 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:\"Mon, 12 Apr 2021 14:36:23 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Chloe Bringmann\";s: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: Set Up a Gutenberg Test Site in 2 Minutes with the Gutenberg Nightly Plugin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=114098\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:215:\"https://wptavern.com/set-up-a-gutenberg-test-site-in-2-minutes-with-the-gutenberg-nightly-plugin?utm_source=rss&utm_medium=rss&utm_campaign=set-up-a-gutenberg-test-site-in-2-minutes-with-the-gutenberg-nightly-plugin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4142:\"<p>WordPress contributors are working towards landing full site editing (FSE) sometime this year, an ambitious plan that will require all hands on deck for testing. A meeting of a small group of core leads on April 14 will start the process of deciding whether FSE will land in version 5.8. In the meantime, the FSE outreach program has <a href=\"https://make.wordpress.org/test/2021/03/25/fse-program-testing-call-4-building-a-restaurant-themed-header/\">extended the deadline for the fourth round of testing</a> until April 12. </p>\n\n\n\n<p>One of the quickest ways to get started doing alpha/beta testing is to install the Gutenberg Nightly plugin, which pulls in the latest build from the Gutenberg project. Ordinarily, to get the latest build one would have to install NodeJS and npm and use the command line to get set up. This process can be prohibitive, along with the dizzying pace of Gutenberg development, for less technical users who want to start testing.</p>\n\n\n\n<p>The Gutenberg Nightly plugin, combined with the GitHub Updater plugin completely automates the process of grabbing the latest zip from Gutenberg trunk, and users will be notified when a new nightly is available for updating.</p>\n\n\n\n<h2>How to Set Up a Gutenberg Nightly Test Environment</h2>\n\n\n\n<p>The first step is to <a href=\"https://gutenbergtimes.com/need-a-zip-from-master/#nightly\">download</a> and install the Gutenberg Nightly plugin by uploading the zip file. If you already have the stable version of the Gutenberg plugin, you will be prompted to replace the current version with the one you are uploading. If you want to get updates when a new nightly is available, download and install the <a href=\"https://github.com/afragen/github-updater/releases/latest\">GitHub Updater</a> plugin the same way. </p>\n\n\n\n<div class=\"wp-block-image\"><img />Gutenberg Nightly update available</div>\n\n\n\n<p>Testing the full-site editing project will require you to install a theme like TT1 Blocks, which has support for the experimental feature. Once you do, you will see the &ldquo;Site Editor (beta)&rdquo; menu item in the dashboard.</p>\n\n\n\n<div class=\"wp-block-image\"><img /></div>\n\n\n\n<p>I set up a Gutenberg testing environment in 2 minutes using these plugins. Please note that it&rsquo;s not recommended to use Gutenberg Nightly in production.</p>\n\n\n\n<p>Birgit Pauli-Haack, publisher of the <a href=\"https://gutenbergtimes.com/\">Gutenberg Times</a>, created the plugin in October 2020, to help testers keep up with the rapid pace of Gutenberg development. </p>\n\n\n\n<p>&ldquo;On October 19, 2020, there were 250 new commits made since the last release (9.1.1) and before the release of 9.2,&rdquo; Pauli-Haack said. &ldquo;Any issue you might file, might get a response like &lsquo;Could you please try it in master, I think it was already fixed.\'&rdquo; This slows down the testing process and can be discouraging to testers.</p>\n\n\n\n<p>Pauli-Haack creates the build every day as a volunteer service to facilitate Gutenberg testing. </p>\n\n\n\n<p>&ldquo;At the beginning it took a bit longer but now I wrote a small <a href=\"https://github.com/bph/distribute-nightly\">Node CLI script</a> that does the distribution to GitHub and uploads it to the GT site as well, so the button Download gives you the newest version,&rdquo; she said. &ldquo;In October, I was a total rookie with an idea.&rdquo;</p>\n\n\n\n<p>Pauli-Haack credits Andy Fragen, author of the GitHub Updater plugin, and Riad Benguella, a technical lead on the Gutenberg project, who helped her past some skill gaps in getting the process more automated.</p>\n\n\n\n<p>&ldquo;Andy Fragen helped me think through it for making it the easiest for the &lsquo;normal&rsquo; users to get a Test version without to know much about git, node and stuff,&rdquo; she said.</p>\n\n\n\n<p>Gutenberg Nightly has facilitated more than 62,000 downloads to date. The repository for the plugin has <a href=\"https://github.com/bph/gutenberg/discussions/\">discussions</a> enabled so users can stay updated with major changes, make feature requests, and <a href=\"https://github.com/bph/gutenberg/discussions/3\">participate in Q&amp;A</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sun, 11 Apr 2021 16:12: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: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:86:\"Gutenberg Times: Full-Site Editing Scope in WordPress 5.8. Weekend (Tiny) Edition #165\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://gutenbergtimes.com/?p=17473\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:88:\"https://gutenbergtimes.com/full-site-editing-scope-in-wordpress-5-8-weekend-edition-165/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:8253:\"<p>Howdy! </p>\n\n\n\n<p>In the last two weeks there was so much was happening around Gutenberg. To keep you somewhat in the loop, I interrupt my unpacking of way-too-many boxes and share a few links with you.</p>\n\n\n\n<p>Next week again in full force. Stay tuned. </p>\n\n\n\n<p>Have a great weekend! </p>\n\n\n\n<p>Yours, ?<br />Birgit</p>\n\n\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p><strong>Grzegorz </strong>(Greg)<strong> Ziółkowsk</strong>i and I published our first episode together, <strong><a href=\"http://erg-10-3-full-site-editing-mvp/\">Episode #41</a></strong>. It is a great episode, and we had a lot of fun. I am delighted having Grzegorz on the show. It&#8217;s now available with show notes and transcript. </p>\n\n\n\n<p><strong>Josepha Haden Chomphosy </strong>posted <a href=\"https://make.wordpress.org/core/2021/04/08/full-site-editing-scope-for-wp5-8/\">Full Site Editing Scope for WP5.8</a>&nbsp;(u)</p>\n\n\n\n<ul><li>Lesson from Phase 1 roll-out, extenders like plugins developers, site builders and theme authors didn’t have enough time to test their products with the new editor in core.&nbsp;</li><li>Full-Site Editing user experience with Global Styles, Template editing and saving, will not be changing default user experience. It’s opt-in only. There is some confusion on saving template and switch from overall template to content and back. Polishing those will be out of scope for 5.8.&nbsp;</li><li>Also, on the scope list for WordPress 5.8 are: Widget Editor, Navigation Screen and block, refactored Gallery Block and the List View. These&nbsp; components are some of the most complex, and the user experience of them will be key. “They are all high priority to complete (hopefully for WP5.8), but will be punted if they aren’t ready in time for Beta.”&nbsp;</li></ul>\n\n\n\n<p><em>Matias Ventura</em> will demo the current state of these features to the release lead team trio of&nbsp; Matt Mullenweg, Josepha Haden Chomphosy and Helen Hou-Sandi. </p>\n\n\n\n<p><strong>Justin Tadlock</strong> has the skinny: <a href=\"https://wptavern.com/will-full-site-editing-land-in-wordpress-5-8-a-decision-is-forthcoming\">Will Full Site Editing Land in WordPress 5.8? A Decision Is Forthcoming</a></p>\n\n\n\n<p><strong>Hector Prieto</strong> published the <a href=\"https://make.wordpress.org/core/2021/04/08/whats-next-in-gutenberg-april-2021/\">April Focus areas for the Gutenberg team.&nbsp;</a></p>\n\n\n\n<p>As expected, it covers Widget, Navigation Screen, and Full-Site Editing with more details. Please see the <strong>“Area to be aware of”</strong> section of the post, for Block and plugin Developers, Designers and Theme builders. We talked about most of them in one or the other episode, but you find them all in one place in Hector’s post.&nbsp;</p>\n\n\n\n<p><strong>Kjell Reigstad</strong> published the notes from the <strong><a href=\"https://make.wordpress.org/themes/2021/04/08/block-themes-meeting-notes-april-7-2021/\">Block Theme Meeting </a></strong> They team discussed among other things: </p>\n\n\n\n<ul><li>TT1 Blocks update&nbsp;</li><li>Block-based theme updates in&nbsp;Gutenberg&nbsp;10.3 with alignment styles automatically for front and back end and the capability to use theme.json styles for every block. </li><li>New tools for transitioning to Block-based Themes.</li></ul>\n\n\n\n<p>The deadline for the <a href=\"https://make.wordpress.org/test/2021/03/25/fse-program-testing-call-4-building-a-restaurant-themed-header/\"><strong>Full Site Editing Testing Call #4</strong></a> has been extended until <strong>April 12th, 2021. </strong></p>\n\n\n\n\n<p><strong><a href=\"https://gutenbergtimes.com/need-a-zip-from-master/\">Need a plugin .zip from Gutenberg&#8217;s master branch?</a></strong><br />Gutenberg Times provides daily build for testing and review. <br />Have you been using it? Hit reply and let me know.</p>\n\n\n\n<p><img alt=\"GitHub all releases\" src=\"https://img.shields.io/github/downloads/bph/gutenberg/total?style=for-the-badge\" /></p>\n\n\n\n\n<p>⏰ <strong>Don&#8217;t Miss this! </strong> <br /><strong>Mega-Meetup April 15th, 2021 </strong> 6:30 -8:30 pm EDT / 23:30 UTC with Anne McCarthy, David Bisset and the organizers of six Florida Meetup groups. All <strong>About Full Site Editing </strong>(Coming in WordPress). <a href=\"https://www.meetup.com/SF-WordPress-Users/events/277019024/\">Register via Meetup.com</a> <a href=\"https://t.co/36RYiMfivU?amp=1\" rel=\"noreferrer noopener\" target=\"_blank\"></a></p>\n\n\n\n<p>For a more in-depth look on current Gutenberg development, <a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/\">the Index page with all the teams&#8217; updates</a> in the Core handbook has the latest. </p>\n\n\n\n\n<p><strong>&nbsp;<a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/\" target=\"_blank\" rel=\"noreferrer noopener\">&#8220;Keeping up with Gutenberg &#8211; Index&#8221;</a>&nbsp;</strong><br />A chronological list of the WordPress Make Blog posts from various teams involved in Gutenberg development: Design, Theme Review Team, Core Editor, Core JS, Core CSS, Test and Meta team from Jan. 2021 on. <a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/keeping-up-with-gutenberg-index-2020/\">The index 2020 is here</a></p>\n\n\n\n\n\n<p class=\"has-small-font-size\">Featured Image: <em>Photo by&nbsp;<a href=\"https://unsplash.com/@fran_?utm_source=unsplash&utm_medium=referral&utm_content=creditCopyText\">Fran Jacquier</a>&nbsp;on&nbsp;<a href=\"https://unsplash.com/s/photos/lego?utm_source=unsplash&utm_medium=referral&utm_content=creditCopyText\">Unsplash</a></em></p>\n\n\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p class=\"has-text-align-left\"><strong>Don&#8217;t want to miss the next Weekend Edition? </strong></p>\n\n\n\n<form class=\"wp-block-newsletterglue-form ngl-form ngl-portrait\" action=\"https://gutenbergtimes.com/feed/\" method=\"post\"><div class=\"ngl-form-container\"><div class=\"ngl-form-field\"><label class=\"ngl-form-label\" for=\"ngl_email\"><br />Type in your Email address to subscribe.</label><div class=\"ngl-form-input\"><input type=\"email\" class=\"ngl-form-input-text\" name=\"ngl_email\" id=\"ngl_email\" /></div></div><button class=\"ngl-form-button\">Subscribe</button><p class=\"ngl-form-text\">We hate spam, too and won&#8217;t give your email address to anyone except Mailchimp to send out our Weekend Edition</p></div><div class=\"ngl-message-overlay\"><div class=\"ngl-message-svg-wrap\"></div><div class=\"ngl-message-overlay-text\">Thanks for subscribing.</div></div><input type=\"hidden\" name=\"ngl_list_id\" id=\"ngl_list_id\" value=\"26f81bd8ae\" /><input type=\"hidden\" name=\"ngl_double_optin\" id=\"ngl_double_optin\" value=\"yes\" /></form>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n\n\n<p> <a href=\"https://gutenbergtimes.com/podcast/changelog-41-greg-ziolkowski-gutenberg-10-3-full-site-editing-mvp/\"><strong>Episode #41</strong> is now available</a>, with new co-host <strong>Grzegorz Ziolkowski</strong></p>\n\n\n\n<p> <strong>Subscribe to the&nbsp;<a href=\"https://gutenbergtimes.com/podcast/\">Gutenberg Changelog</a>&nbsp;podcast </strong><br />?️&nbsp;<a href=\"https://open.spotify.com/show/620NwVKQJGdTupy36zYxvg?mc_cid=4b6c9f88fe\">Spotify</a>&nbsp;|&nbsp;<a href=\"https://podcasts.google.com/feed/aHR0cHM6Ly9ndXRlbmJlcmd0aW1lcy5jb20vZmVlZC9wb2RjYXN0\">Google</a>&nbsp;|&nbsp;<a href=\"https://podcasts.apple.com/us/podcast/gutenberg-changelog/id1469294475\">iTunes</a>&nbsp;|&nbsp;<a href=\"https://pca.st/podcast/f8445ec0-7508-0137-f267-1d245fc5f9cf\">PocketCasts</a>&nbsp;|&nbsp;<a href=\"https://www.stitcher.com/show/gutenberg-changelog\">Stitcher</a>&nbsp;|<br />?️&nbsp;<a href=\"https://www.podbean.com/podcast-detail/chi7j-9904a/Gutenberg-Changelog-Podcast\">Pod Bean</a>&nbsp;|&nbsp;<a href=\"https://castbox.fm/channel/Gutenberg-Changelog-id2173375\">CastBox</a>&nbsp;|&nbsp;<a href=\"https://www.podchaser.com/podcasts/gutenberg-changelog-878239/\">Podchaser</a>&nbsp;|&nbsp;<a href=\"https://gutenbergtimes.com/feed/podcast\">RSS Feed</a>&nbsp;</p>\n\n\n\n<img />Review by <a href=\"https://twitter.com/Peter_Ingersoll\"><strong>Peter Ingersoll</strong></a> on <a href=\"https://www.stitcher.com/show/gutenberg-changelog\">Stitcher</a>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_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, 10 Apr 2021 15:24: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:18:\"Birgit Pauli-Haack\";s: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:81:\"WPTavern: Will Full Site Editing Land in WordPress 5.8? A Decision Is Forthcoming\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=114870\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:205:\"https://wptavern.com/will-full-site-editing-land-in-wordpress-5-8-a-decision-is-forthcoming?utm_source=rss&utm_medium=rss&utm_campaign=will-full-site-editing-land-in-wordpress-5-8-a-decision-is-forthcoming\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:6679:\"<p class=\"has-drop-cap\">Yesterday, Josepha Haden Chomphosy <a href=\"https://make.wordpress.org/core/2021/04/08/full-site-editing-scope-for-wp5-8/\">announced the roadmap</a> for deciding whether Full Site Editing (FSE) will land in WordPress 5.8. After the launch of Gutenberg 10.4 on April 14, a small group of core leads will participate in a go/no-go demo.</p>\n\n\n\n<p>The following people will be on the call:</p>\n\n\n\n<ul><li>Matias Ventura &ndash; Gutenberg Project Lead who will host the demo.</li><li>Matt Mullenweg &ndash; WordPress Project Lead.</li><li>Helen Hou-Sand&igrave; &ndash; Lead Developer.</li><li>Josepha Haden Chomphosy &ndash; Executive Director.</li></ul>\n\n\n\n<p>The meeting&rsquo;s agenda is simple. Ventura will host the demo, and the group will discuss and cover implementation questions.</p>\n\n\n\n<p>If there are no blockers, they will share a plan for merging FSE into WordPress. The more likely outcome is that they will find at least a few items that must be addressed. In that case, they will share these publicly with a plan to tackle them before a second go/no-go date of April 27.</p>\n\n\n\n<p>The first beta release of WordPress 5.8 is set for June 8, with a general public release for July 20. The team needs to decide on inclusion early in the release cycle to give theme and plugin developers time to prepare.</p>\n\n\n\n<p>While many are on their toes awaiting a final decision, everyone needs to have a little patience at the moment. Everything needs to be carefully weighed by the project leaders. There is a good chance we will not know the outcome until that second, April 27 deadline.</p>\n\n\n\n<p>Most of the FSE transition would be a beta run for a subset users. Including these features in core does not mean that WordPress immediately flips the switch and enables everything for 40% of the web. For the overall FSE experience, users must make an explicit choice to install and activate a block-based theme.</p>\n\n\n\n<p>With that in mind, the onboarding experience should be a welcoming one that invites users into site editing while letting them know the potential issues. If it is a built-in beta, they <em>really</em> need to understand that improvements are forthcoming.</p>\n\n\n\n<p>An in-core beta run like this is also welcome, given the project&rsquo;s launch of the block editor a couple of years ago. Regardless of whether people loved or hated the block editor, the rollout was not smooth for everyone. WordPress dropped end-users into an overhauled system, which was a shocking change for many. The project has a chance to do better this time around by incrementally introducing features to users and allowing others to immerse themselves in the new experience of their own choice.</p>\n\n\n\n<p>&ldquo;The most important context to share is that <strong>it isn&rsquo;t shipping as the full, default experience for users</strong>,&rdquo; wrote Chomphosy in the post, noting that the team is growing beyond past mistakes. &ldquo;One of the clearest pieces of feedback from the Phase One merge process was that there wasn&rsquo;t enough time for our extenders (agencies, theme authors, plugin developers, site builders, etc.) to prepare for the upcoming changes.&rdquo;</p>\n\n\n\n<p>The decision-makers may also decide to ship some pieces but not others. FSE is a project made up of several components.</p>\n\n\n\n<p>&ldquo;The whole full site editing project is sort of an umbrella term for a collection of tools and projects, so it would be possible for some pieces to ship while others don&rsquo;t,&rdquo; said Haden Chomphosy. &ldquo;There are probably some exceptions to that, as you mentioned, but many of these can ship as they are ready.&rdquo;</p>\n\n\n\n<p>The exceptions she was referring to are components that make more sense together. For example, block-based themes via a <code>theme.json</code> config file and most of the site-editing blocks are not as useful when separate.</p>\n\n\n\n<p>Of course, there are cases where something like the Query block could be used outside of the site editor. Users might create custom queries within a page without the benefit of the site editor, for example.</p>\n\n\n\n<p>My primary concern is not with features related to the site editor but with block-based widgets. It is a transitional tool for users on traditional themes. Along with the new nav menus screen, it is not a part of the block-based themes experience. The goal is to allow users to start using blocks in more places. However, this will result in a broken UX in many cases.</p>\n\n\n\n<p>The widgets experience is still <a href=\"https://wptavern.com/are-block-based-widgets-ready-to-land-in-wordpress-5-6\">partially broken</a>, treating each block as a separate widget. Users must learn to put a Heading (widget title) and another block (widget content) into a Group (widget wrapper) for the correct widget-related classes on the front end of the site. For some themes, whether users do this will be a non-issue. For others, it will look ugly at best and break the layout at worst. Putting this responsibility on the shoulders of end-users was <a href=\"https://github.com/WordPress/gutenberg/issues/25174#issuecomment-708238689\">deemed an acceptable solution</a>.</p>\n\n\n\n<p>I wanted to focus on this issue because it is one of those things that may simply be flipped on for all users. I am still afraid that transitioning from a functioning system to a potentially broken one will make for a bumpy ride.</p>\n\n\n\n<p>The WordPress 5.6 release team <a href=\"https://wptavern.com/wordpress-5-6-release-team-pulls-the-plug-on-block-based-widgets\">decided not to ship</a> block-based widgets. Hou-Sand&igrave;, as the core tech lead for 5.6, provided a historical account of the decision and why it was not ready for inclusion:</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>My question for features that affect the front-end is &ldquo;can I try out this new thing without the penalty of messing up my site?&rdquo; &mdash; that is, user trust. At this current moment, given that widget areas are not displayed anything like what you see on your site without themes really putting effort into it and that you have to save your changes live without revisions to get an actual contextual view, widget area blocks do not allow you to try this new feature without penalizing you for experimenting.</p></blockquote>\n\n\n\n<p>While widgets have arguably improved, I still see the answer as being the same as last October. I have not seen enough buy-in from the theme development community to support the block editor itself, much less new block-related features. However, at some point, the project simply needs to move forward. Themers will just need to keep 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:\"Fri, 09 Apr 2021 15:48: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:14:\"Justin Tadlock\";s: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:76:\"WPTavern: iThemes Acquires Kadence WP, Plans to Sunset Legacy Themes in 2022\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=114848\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:195:\"https://wptavern.com/ithemes-acquires-kadence-wp-plans-to-sunset-legacy-themes-in-2022?utm_source=rss&utm_medium=rss&utm_campaign=ithemes-acquires-kadence-wp-plans-to-sunset-legacy-themes-in-2022\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3957:\"<p>iThemes has <a href=\"https://ithemes.com/kadence-wp-joins-ithemes-family/\">acquired Kadence WP</a>, the Missoula-based makers of the <a href=\"https://wordpress.org/plugins/kadence-blocks/\">Kadence Blocks</a> plugin and its accompanying <a href=\"https://wordpress.org/themes/kadence/\">Kadence theme</a>. Originally founded in 2008 as a themes company, iThemes became more of a plugin-oriented business over the years before it was <a href=\"https://wptavern.com/liquid-web-acquires-ithemes-in-multi-million-dollar-deal\">acquired by Liquid Web in 2018</a>. The company is returning to its roots with this acquisition and plans to make Kadence WP the official theme platform of choice for iThemes.</p>\n\n\n\n<p>&ldquo;It&rsquo;s no secret that the &lsquo;themes&rsquo; part of iThemes has been lacking for many years now,&rdquo; iThemes general manager Matt Danner said. &ldquo;While we got our start in WordPress themes in 2008, over the past 10 years, we pivoted to the more obvious needs of our customers (mainly WordPress security, backups, memberships and maintenance) as the theme marketplace got more competitive.&nbsp;</p>\n\n\n\n<p><em>&ldquo;</em>Joining forces with Kadence WP means that iThemes can once again have an innovative and modern WordPress theme platform.&rdquo;</p>\n\n\n\n<p>iThemes announced it will be sunsetting its <a href=\"https://ithemes.com/purchase/builder-theme/\">iThemes Builder theme framework</a> and all of its legacy themes in 2022, in favor of supporting the Kadence theme which already has more than 50,000 active installations. Danner said the older themes &ldquo;are no longer truly compatible with the future direction of WordPress.&rdquo;</p>\n\n\n\n<p>Kadence Blocks are even more popular than the accompanying theme, since they can be used in combination with any WordPress theme. The plugin has gained more than 100,000 users after its initial launch in August 2018. Kadence Blocks <a href=\"https://wptavern.com/wordpress-theme-and-plugin-shops-are-pioneering-the-first-layout-blocks-for-gutenberg\">pioneered some of the first full-featured layout blocks</a> in the early days of Gutenberg prior to its inclusion in core.</p>\n\n\n\n<p>&ldquo;This last year has marked some ridiculous growth for Kadence WP,&rdquo; co-founder Ben Ritner said. &ldquo;Only one year ago my sister Hannah (many users will know Hannah from our support channels) and I were the entirety of&nbsp;the Kadence WP team. It is hard to gauge user numbers with accuracy because of how many free products we have, but the amount of people using Kadence WP products has roughly quadrupled in the last 10 months! Our new Kadence Theme, which landed on the repo in November (only 160 days ago), now has more than 50,000 active users.&rdquo;</p>\n\n\n\n<p>Kadence WP will continue running under its same branding and as a separate company under the iThemes brand. Pricing will remain the same for existing Kadence WP customers. iThemes plans to raise its prices for its Agency Bundle on May 1, 2021, but renewal pricing will remain the same as long as the customers&rsquo; subscriptions auto-renew.</p>\n\n\n\n<p>Kadence Blocks is adding dynamic content for its pro version in the next month. The team is also launching a new plugin called Kadence Cloud, which will allow users to create a pre-built cloud of content that they can pull down into any website. Both Kadence Blocks and the theme will also be rolling in many of the top-voted feature requests from its community. A major new product release is planned for Q4 2021.</p>\n\n\n\n<p>iThemes will be hosting a <a href=\"https://attendee.gotowebinar.com/register/8329602538499610384\">townhall meeting</a> Friday, April 9 at 11:00 am CST to address any questions or concerns that users and customers may have. They are also running an online training workshop titled &ldquo;<a href=\"https://attendee.gotowebinar.com/register/446959587392124432\">Learn How to Use Kadence WP</a>&rdquo; on May 5, 2021, at 1:00 p.m. CST.</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, 09 Apr 2021 05:23: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: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:71:\"WPTavern: Yes, Comments Are Still Relevant, But We Need a Better System\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=114628\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:183:\"https://wptavern.com/yes-comments-are-still-relevant-but-we-need-a-better-system?utm_source=rss&utm_medium=rss&utm_campaign=yes-comments-are-still-relevant-but-we-need-a-better-system\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:6116:\"<p class=\"has-drop-cap\">More and more, open comments are becoming a thing of the past. Large news organizations have kicked them to the curb. Frustrated bloggers who no longer desire all of the hassles with moderation shut down their forms. The conversations have moved to corporate-controlled social media.</p>\n\n\n\n<p>It is hard to pinpoint the exact moment much of the web devolved into chaos. It was probably more of a gradual thing. The tools that we built fostered the darkest side of humanity. Far too often, people let out their worst unfiltered thoughts without regard to decency and kindness. If we dig deep enough, social media is likely the culprit that spawned this growing experience. However, it is also entrenched in the blogging world.</p>\n\n\n\n<p>Now, with the ubiquity of mobile phones, everyone has a voice. And, far too often, the vocal minority drives the masses from discussion to ad hominem. Or, maybe the majority was always looking for a justification.</p>\n\n\n\n<p>There is a bright side. Commenting on and discussing ideas in an open forum can change hearts and minds. It can lead to discoveries and create life-long friendships &mdash; I still routinely chat with people I met through blogs and their comments from nearly two decades ago.</p>\n\n\n\n<p>Ryan McCue, a core contributor to WordPress, said that <a href=\"https://twitter.com/rmccue/status/1375873040496594946\">comments should be a plugin</a>.</p>\n\n\n\n<p>There are few things I could think that would hurt the blogging community more. Comments are the lifeblood of many WordPress-built sites. Without them as part of the core experience, how many new users will venture out to find a commenting plugin? Such a change would sign the death warrant for commenting on a large part of the web, moving more discussion away from blogs into the waiting arms of social networks.</p>\n\n\n\n<p>McCue&rsquo;s response was to a <a href=\"https://twitter.com/Krogsgard/status/1375867036102971396\">tweet by Brian Krogsgard</a>, the Post Status creator and editor. &ldquo;WordPress should have one singular button that says: Turn off all comments and comment displays. This is so hilariously complicated, it&rsquo;s absurd.&rdquo;</p>\n\n\n\n<p>He is not wrong.</p>\n\n\n\n<p>The WordPress comment settings screen is so complex that I rarely change anything other than a setting or two, even when I want comments enabled for a site. There are around two dozen individual options on that screen, and none of them just allow users to turn it all off.</p>\n\n\n\n<p>Eric Karkovack explores this same topic in his piece for Speckyboy titled <a href=\"https://speckyboy.com/is-the-wordpress-comment-system-still-relevant/\">Is the WordPress Comment System Still Relevant?</a> He concluded:</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>So, where does this leave the default comment system? It still offers the basics and can be extended. Yet it seems a bit antiquated when compared to what other services are offering. To remain a compelling option, improvements are in order.</p><p>There&rsquo;s certainly no harm in keeping it around. But, short of a renewed effort to improve the out-of-the-box functionality, perhaps it shouldn&rsquo;t be as front-and-center within WordPress as it is now.</p></blockquote>\n\n\n\n<p>WordPress has failed to iterate on its commenting feature in recent years.</p>\n\n\n\n<p>&ldquo;Like most things, [Full Site Editing] will change things there,&rdquo; wrote WordPress Themes Team rep Ari Stathopoulos in the Post Status Slack. &ldquo;Want comments? Add the comment-form block in your template. Don&rsquo;t want them? Don&rsquo;t add it.&rdquo;</p>\n\n\n\n<p>While that is partly true, it only handles things on the front end of the site. All the commenting-related features would still be there in the admin. However, it is a step in the right direction.</p>\n\n\n\n<p>The ability to easily opt in or out of a commenting system is merely one change that needs to happen. Something as basic as an <a href=\"https://core.trac.wordpress.org/ticket/33627\">in-context comment list view</a> is a must for easier moderation. The <a href=\"https://wptavern.com/a-conceptual-wordpress-plugin-by-stephen-cronin-that-makes-comment-moderation-easier\">Tavern still uses</a> Stephen Cronin&rsquo;s <a href=\"https://wordpress.org/plugins/show-parent-comment/\">Show Comment Parent</a> plugin for this. Even a basic JavaScript-based front-end submission form would go a long way toward modernizing the commenting system. Does anyone enjoy a full page reload when leaving a comment?</p>\n\n\n\n<p>However, there is more that we could be doing. For a platform that prides itself on democratizing publishing and owning your content, a <a href=\"https://core.trac.wordpress.org/ticket/35435\">ticket for supporting webmentions</a> has had virtually no movement in five years.</p>\n\n\n\n<p>A Webmention is a standardized protocol for mentions and conversations across the web. It is a part of a goal for a decentralized social &ldquo;network&rdquo; of sorts where everyone owns and controls their content. While the <a href=\"https://wordpress.org/plugins/webmention/\">Webmention plugin</a> by Matthias Pfefferle takes care of this feature, universal adoption would be a far more realistic goal as part of WordPress.</p>\n\n\n\n<p>We should also have some serious conversations about what tools publishers need to build thriving communities via their comments. For example, is comment moderation easy enough? If not, what can we do to improve it?</p>\n\n\n\n<p>WordPress is more than simply a blogging platform. Users can build any kind of site they want today, with or without the comments. However, commenting is part of the software&rsquo;s history and identity. It is a gateway to discussion &mdash; often as important or even more so than a site&rsquo;s content.</p>\n\n\n\n<p>Comments will always be relevant. Whether it is a response to a blog post, tweet, Slack thread, or some new thing we have yet to think of, the web is all about connecting and communicating with others. We should constantly reevaluate whether WordPress is leading the pack, creating the tools to enable more discussion.</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, 08 Apr 2021 23:11:34 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Justin Tadlock\";s: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:11:\"\n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:51:\"HeroPress: Hallway Chats Joins The HeroPress Family\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://heropress.com/?p=3524\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:147:\"https://heropress.com/hallway-chats-joins-the-heropress-family/#utm_source=rss&utm_medium=rss&utm_campaign=hallway-chats-joins-the-heropress-family\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2413:\"<img width=\"375\" height=\"100\" src=\"https://s20094.pcdn.co/wp-content/uploads/2021/04/hallway-chats-logotype-v01.png\" class=\"attachment-large size-large wp-post-image\" alt=\"Original Hallway Chats logo\" />\n<p>As any parent or pet owner knows, quiet doesn&#8217;t always equal inactivity. And the same is true here at HeroPress.</p>\n\n\n\n<h2 id=\"h-investing-in-a-sustainable-framework\">Investing in a sustainable framework</h2>\n\n\n\n<p>While we haven&#8217;t said much over the last few months, we&#8217;ve been working with the initial feedback we received to expand HeroPress in the most manageable and sustainable way. Because really, if it&#8217;s not manageable and sustainable, what&#8217;s even the point?</p>\n\n\n\n<p>This quest prompted a lot of additional research and active listening, all of which lead the fine folks behind the <a href=\"http://hallwaychats.com\">Hallway Chats</a> podcast to start a conversation with us. </p>\n\n\n\n<h2 id=\"h-hallway-chats-found-us\">Hallway Chats found us</h2>\n\n\n\n<p>We were considering a podcast, but had moved it down the build list. <a href=\"https://twitter.com/TaraClaeys\">Tara Claeys</a> and <a href=\"https://twitter.com/liamdempsey\">Liam Dempsey</a>, while loving the work they&#8217;ve done with Hallway Chats, found life was moving then in different directions, as it does for us all. And as Hallway Chats approached its 150th episode, the decision was made to pass the torch, or microphone as it were.</p>\n\n\n\n<p>We&#8217;re thrilled to be able to build on their legacy and continue to grow Hallway Chats through out the community, and we&#8217;re grateful to Tara and Liam that they&#8217;ve entrusted it into our care.</p>\n\n\n\n<h2 id=\"h-embrace-opportunities-that-are-the-right-fit\">Embrace opportunities that are the right fit</h2>\n\n\n\n<p>A few shifts and changes are inevitable, but the spirit of Hallway Chats will always stand. After all, why change something that so ideally meshes with our own goals?</p>\n\n\n\n<p>Listen to the <a href=\"https://hallwaychats.com/episodes/episode-150-cate-and-topher-derosia/\">150th Episode of Hallway Chats</a> where Tara, Liam, Topher, and I talk even more about the direction we&#8217;re all heading.</p>\n<p>The post <a rel=\"nofollow\" href=\"https://heropress.com/hallway-chats-joins-the-heropress-family/\">Hallway Chats Joins The HeroPress Family</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:\"Thu, 08 Apr 2021 14:55: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:\"\";}}}}}i:22;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:76:\"WPTavern: Calling All Themers: Design the Next Round of Query Block Patterns\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=114777\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:195:\"https://wptavern.com/calling-all-themers-design-the-next-round-of-query-block-patterns?utm_source=rss&utm_medium=rss&utm_campaign=calling-all-themers-design-the-next-round-of-query-block-patterns\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4621:\"<p class=\"has-drop-cap\">The Gutenberg plugin repository currently has an open ticket calling for <a href=\"https://github.com/WordPress/gutenberg/issues/30508\">community-contributed Query block patterns</a>. These would launch alongside Full Site Editing&rsquo;s inclusion in WordPress, which could be as soon as version 5.8 &mdash; no hard decision has been made on that yet. Some may not end up bundled directly in WordPress but could be included in the <a href=\"https://wptavern.com/first-look-at-initial-designs-for-wordpress-block-pattern-directory\">upcoming pattern directory</a>.</p>\n\n\n\n<p><a href=\"https://wptavern.com/gutenberg-10-2-adds-spacers-to-navigation-lists-lets-users-categorize-template-parts-and-introduces-scoped-patterns\">Gutenberg 10.2</a> introduced a new feature called &ldquo;scoped patterns.&rdquo; This system allows developers to build block patterns within a specific context instead of always being available from the inserter. Specifically, the Gutenberg development team created a handful of patterns for the Query block. When inserting the block, users can choose between each of these patterns as a starting point for outputting their posts.</p>\n\n\n\n<img />Pattern selections for the Query block in its initial state.\n\n\n\n<p>The patterns are far too generic and do not come close to replicating the array of design options in the real world. While the end goal is to not cover every scenario imaginable, WordPress should ultimately give users a little more flexibility as a jumping-off point.</p>\n\n\n\n<p>&ldquo;Those were always meant to be temporary to start with,&rdquo; wrote Kjell Reigstad, a core WordPress contributor and Design Director at Automattic, in the GitHub ticket. &ldquo;Let&rsquo;s take another look at these, both to replace the current ones for now, but also so that we eventually have a nice set of WordPress community-designed query block patterns to add to the Pattern Directory at launch.&rdquo;</p>\n\n\n\n<p>Theme authors will be able to release their own scoped patterns for the Query block too. However, with block-based themes being few and far between at this phase of the project, WordPress needs to set the stage.</p>\n\n\n\n<p>This is one of the reasons I was so vocal pre-WordPress 5.5 about the <a href=\"https://wptavern.com/decision-time-what-block-patterns-should-ship-with-wordpress-5-5\">early pattern designs</a>, and it is why I was happy to see them <a href=\"https://wptavern.com/gutenberg-8-7-adds-minor-changes-updates-block-pattern-designs-and-continues-full-site-editing-work\">overhauled before the launch</a>. Many users need that bit of inspiration, that push to try out alternate layouts instead of building them on their own. They need options beyond the typical stacked blog posts layouts.</p>\n\n\n\n<p>A few well-designed Query patterns do that.</p>\n\n\n\n<p>I decided to try my hand at building what I think would be a fun Query pattern to use:</p>\n\n\n\n<img />Query block pattern with full-width background image.\n\n\n\n<p>I built this using core blocks instead of the Query block with the Eksell theme installed. Side note: let me just reiterate my earlier <a href=\"https://wptavern.com/compatibility-is-not-enough-the-eksell-wordpress-theme-creates-art-with-blocks\">review of Eksell</a>. It is such a well-rounded design that anyone can create all sorts of custom patterns. It makes for an easy-to-use testbed for exploring design concepts.</p>\n\n\n\n<p>The idea was based on a pattern that Mel Choyce-Dwan shared in the ticket:</p>\n\n\n\n<img /> Query block pattern with background image and centered text. \n\n\n\n<p>I do not think it is currently possible to build this Query pattern idea with the site editor. Unless I am mistaken, there is no way to use the post featured image as a background or within the Cover block, a common layout design.</p>\n\n\n\n<p>Eventually, the site editor should get to the point where theme authors can move at least a hair beyond the basics. It will take some time for the tooling to catch up, but we are approaching the point where designers can build more complex things. That is another reason theme authors should be involved with this discussion. It needs input and ideas from themers who are out there dealing with users in real-world settings. The Gutenberg team cannot know everything it needs to build without this vital community source.</p>\n\n\n\n<p>Choyce-Dwan shared several other patterns in the ticket that are worth exploring. Along with Reigstad, Beatriz Fialho and Paal Joachim Romdahl have contributed pattern ideas.</p>\n\n\n\n<p>If you fancy yourself a theme designer, now is as good a time as any to contribute.</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, 07 Apr 2021 22:45: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:14:\"Justin Tadlock\";s: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:32:\"Matt: Wix and Their Dirty Tricks\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=53999\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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/2021/04/wix-dirty-tricks/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3651:\"<p>Wix, the website builder company you may remember from <a href=\"https://ma.tt/2016/10/wix-and-the-gpl/\">stealing WordPress code and lying about it</a>, has now decided the best way to gain relevance is attacking the open source WordPress community in a <a href=\"https://wptavern.com/wix-takes-a-jab-at-wordpress-with-bewildering-new-marketing-campaign\">bizarre set of ads</a>. They can&#8217;t even come up with original concepts for attack ads, and have tried to rip-off of Apple&#8217;s Mac vs PC ads, but tastelessly personify the WordPress community as an absent, drunken father in a therapy session. <img src=\"https://s.w.org/images/core/emoji/13.0.1/72x72/1f914.png\" alt=\"?\" class=\"wp-smiley\" /></p>\n\n\n\n<p>I have a lot of empathy for whoever was forced to work on these ads, including the actors, it must have felt bad working on something that&#8217;s<strong> like Encyclopedia Britannica attacking Wikipedia</strong>. WordPress is a global movement of hundreds of thousands of volunteers and community members, coming together to make the web a better place. The code, and everything you put into it, belongs to you, and its open source license ensures that you&#8217;re in complete control, now and forever. WordPress is free, and also gives you freedom. </p>\n\n\n\n<p>Wix is a for-profit company with a valuation that peaked at around 20 billion dollars, and whose business model is getting customers to pay more and more every year and making it difficult to leave or <a href=\"https://www.trustpilot.com/review/www.wix.com?aspects=refund\">get a refund</a>. (Don&#8217;t take my word for it, look at their investor presentations.) They are so insecure that they are also the only website creator I&#8217;m aware of that doesn&#8217;t allow you to export your content, so they&#8217;re like a roach motel where you can check in but never check out. Once you buy into their proprietary stack you&#8217;re locked in, which even their support documentation admits:</p>\n\n\n\n<div class=\"wp-block-image\"><img /></div>\n\n\n\n<p><strong>So if we&#8217;re comparing website builders to abusive relationships, Wix is one that locks you in the basement and doesn&#8217;t let you leave.</strong> I&#8217;m surprised consumer protection agencies haven&#8217;t gone after them.</p>\n\n\n\n<p>Philosophically, I believe in open source, and if WordPress isn&#8217;t a good fit for you there are other great open source communities like Drupal, Joomla, Jekyll, and Typo3. We also have a great relationship with some of our proprietary competitors, and I have huge respect for the teams at Shopify and Squarespace, and even though we compete I&#8217;ve always seen them operate with integrity and I&#8217;d recommend them without hesitation. </p>\n\n\n\n<p>I have to believe that users will care about that in the long run, and maybe that&#8217;s <a href=\"https://w3techs.com/technologies/history_overview/content_management/all/y\">why Squarespace just passed up Wix in market share</a>. They <a href=\"https://support.squarespace.com/hc/en-us/articles/206566687-Exporting-your-site\">natively support exporting into WordPress&#8217; format</a> and don&#8217;t have to resort to dirty tricks to be successful. I expect Squarespace&#8217;s upcoming IPO will be a great one.</p>\n\n\n\n<p>Wix, though, continues to show their true colors. Regardless of their product, I hope people consider the behavior of companies in the world they support with their dollars. Wix really wants you to see their new campaign though, so let&#8217;s take the bait and watch the creepy, misleading way they are trying to represent themselves.</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:\"Wed, 07 Apr 2021 17:34:36 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s: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: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: Wix’s Negative Advertising Campaign Falls Flat with WordPress Developers and Professionals\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=114772\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:243:\"https://wptavern.com/wixs-negative-advertising-campaign-falls-flat-with-wordpress-developers-and-professionals?utm_source=rss&utm_medium=rss&utm_campaign=wixs-negative-advertising-campaign-falls-flat-with-wordpress-developers-and-professionals\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:5971:\"<p>Wix has launched a negative advertising campaign targeting WordPress, following a <a href=\"https://wptavern.com/wix-takes-a-jab-at-wordpress-with-bewildering-new-marketing-campaign\">bizarre marketing stunt</a> where the company shipped out Bose headphones to influential WordPress community members. Recipients were puzzled, because it appeared the company was wasting its marketing budget on people who were not likely to be swayed by the campaign. Wix seems oblivious to the <a href=\"https://twitter.com/danyork/status/1379128016387866624\">negative </a><a href=\"https://twitter.com/wesbos/status/1379570402347864066\">responses</a> to its headphones marketing ploy.</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">Like, these are nice headphones, but I want to know if there is a proprietary CMS that is willing to pay to replace the outdoor condenser thing for my A/C within the next 12 months or not before making my decision.</p>&mdash; Josh Pollock (@Josh412) <a href=\"https://twitter.com/Josh412/status/1379470244968857600?ref_src=twsrc%5Etfw\">April 6, 2021</a></blockquote>\n</div>\n\n\n\n<p>Subsequent advertisements in this new &ldquo;You Deserve Better&rdquo; campaign are markedly more negative than the <a href=\"https://www.secret-update.com/from-wp\">launch video</a> sent to recipients of the headphones, packed with tasteless and tired motifs. </p>\n\n\n\n<div class=\"wp-block-image\"><img /></div>\n\n\n\n<p>Wix representative Maya Gril said the campaign is part of the company&rsquo;s &ldquo;initiative to connect with an audience that doesn&rsquo;t think or know that Wix applies to their needs.&rdquo; </p>\n\n\n\n<p>When asked what message they are intending to send with the videos, Gril likened using WordPress to being stuck in a bad relationship.</p>\n\n\n\n<p>&ldquo;The campaign shows in a clever way that WordPress users don&rsquo;t need to be stuck in a bad relationship with their platform and they should consider the alternative which allows them to focus on their actual work,&rdquo; Gril said. &ldquo;Each video in the campaign revolves around user pain points, which also highlight Wix&rsquo;s strengths.&rdquo;</p>\n\n\n\n<p>Morten Rand-Hendriksen, who received a pair of the headphones, characterized the campaign as &ldquo;<a href=\"https://twitter.com/mor10/status/1379513577619394563\">nuclear troll-marketing</a>.&rdquo; Instead of emphasizing any new, innovative features of the Wix platform, the ads come across as short, petulant narratives with no clear objective. </p>\n\n\n\n<p>&ldquo;I guess they&rsquo;re trying to provoke us into responding?&rdquo; WordPress co-founder Matt Mullenweg <a href=\"https://twitter.com/photomatt/status/1379217014472896512\">tweeted</a> in response to discussion on the campaign. &ldquo;I agree it comes off as creepy and misleading to impersonate &lsquo;WordPress&rsquo; this way.</p>\n\n\n\n<p>&ldquo;I can&rsquo;t tell if trying to get a cease and desist letter is part of their strategy to try and drum up press. Unethical, tacky behavior from an unethical, tacky company. Good reminder: I really appreciate the integrity, principles, and ethics of WordPress ecosystem companies.&rdquo;</p>\n\n\n\n<p>Wix&rsquo;s new video ads seem more geared at professional developers with references that are likely outside of regular users&rsquo; experience with the software. The company may have failed to attract professionals in the past, which might explain why it opted to send thousands of dollars worth of headphones to influential WordPress users who fall within that demographic. </p>\n\n\n\n<p>In 2019, Wix began shifting its marketing budget away from TV advertisements and added products that targeted agencies, developers, and designers. The company spent $55 million in marketing in the first quarter of 2019, according to reports shared with <a href=\"https://digiday.com/marketing/wix-com-using-linkedin-target-designers-engineers-agencies/\">Digiday</a>. Wix became more active on LinkedIn&nbsp;and Twitter in pursuit of professionals who would bring more customers to its platform.</p>\n\n\n\n<p>&ldquo;We want to make it clear that we have everything a professional needs,&rdquo; Maya Gril said. &ldquo;Our product is mature and constantly evolving. We&rsquo;re broadening our target audience and we want all new, existing and prospective users to know that Wix is the ultimate web creation platform to help them create, manage and grow online.&rdquo;</p>\n\n\n\n<p>Unfortunately, Wix is lacking one very important feature for catering to &ldquo;professional needs&rdquo; &ndash; data portability. When asked for his thoughts on the campaign, Mullenweg added that Wix is the only CMS in the world that doesn&rsquo;t allow export &ndash; even Facebook does. The <a href=\"https://support.wix.com/en/article/exporting-or-embedding-your-wix-site-elsewhere\">Wix support center</a> states: Y<em>our Wix site and all of its content is&nbsp;<a href=\"https://support.wix.com/en/article/wix-site-hosting\">hosted</a>&nbsp;exclusively on Wix&rsquo;s servers, and cannot be exported elsewhere.</em></p>\n\n\n\n<p>Having content that is locked in and cannot be easily exported to other platforms or hosts does not appeal to professionals. No amount of extravagant spending on marketing stunts will convince developers to bring their customers to a proprietary CMS that also locks in your content. </p>\n\n\n\n<p>This is why their marketing doesn&rsquo;t appeal to the group of people who received the headphones. Many of them build WordPress as long-time contributors or run WordPress product businesses. </p>\n\n\n\n<p>Wix fundamentally misunderstands why people use WordPress and what makes them stay. It&rsquo;s for reasons not found in their overly simplified list of differentiators played out in the new video ads. The desperate marketing tactics, which are geared more towards developers and power users, serve only to reinforce the platform&rsquo;s underdog status and lack of market awareness.</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, 07 Apr 2021 07:10:46 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:25;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"WPTavern: Twentig Now Upgrades the Twenty Twenty-One Theme Experience\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=114785\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:183:\"https://wptavern.com/twentig-now-upgrades-the-twenty-twenty-one-theme-experience?utm_source=rss&utm_medium=rss&utm_campaign=twentig-now-upgrades-the-twenty-twenty-one-theme-experience\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:6098:\"<p class=\"has-drop-cap\">Twentig, the brainchild of sibling co-founders Diane and Yann Collet, now supports the Twenty Twenty-One theme. The developers originally built the plugin, which is <a href=\"https://wordpress.org/plugins/twentig/\">hosted on WordPress.org</a>, around the idea of &ldquo;supercharging&rdquo; Twenty Twenty. After its initial success, they have turned their sights onto the most recent default theme, adding a slew of new features over the past few months.</p>\n\n\n\n<p>The plugin still supports Twenty Twenty. It has merely added features for the latest default theme to its repertoire. The duo behind the plugin does not plan to stop there either.</p>\n\n\n\n<p>&ldquo;Yes, we&rsquo;ll definitively continue this with the future default themes,&rdquo; said Yann Collet. &ldquo;It will be exciting to see what we can do with Full Site Editing and the next block-based theme. With FSE coming, the opportunity is immense, making us confident that we can help people building better websites.&rdquo;</p>\n\n\n\n<p>When I <a href=\"https://wptavern.com/supercharge-the-default-wordpress-theme-with-twentig-a-toolbox-for-twenty-twenty\">last covered it</a>, Twentig had a mere 4,000 active installations. All 34 of its reviews were five stars. Today, the plugin has accumulated over 10,000 installs and 75 five-star reviews. It did garner its first four-star rating, bringing the average down a tad. Nevertheless, its user base clearly loves what the plugin developers are doing.</p>\n\n\n\n<p>The team has created 10 <a href=\"https://twentig.com/demos/\">website demos</a> and 8 single-page examples for inspiration, each on top of the Twenty Twenty-One theme.</p>\n\n\n\n<ul><li class=\"blocks-gallery-item\"><img />Orlando</li><li class=\"blocks-gallery-item\"><img />Kyoto</li><li class=\"blocks-gallery-item\"><img />Letuce</li></ul>\n\n\n\n<p>One of the great things about the plugin is that it essentially treats the default themes as a bit of a foundation, a framework. Users do not have to search around for a new theme when they tire of their current look. They can simply mix things up with Twentig.</p>\n\n\n\n<p>&ldquo;The goal is to showcase the power and flexibility of Twentig, the default theme, and the block editor,&rdquo; said the team. &ldquo;And ultimately inspire people to be creative with blocks. It&rsquo;s incredibly fun and fast to build directly inside the block editor with our block patterns instead of using a prototyping tool like Figma.&rdquo;</p>\n\n\n\n<h2>Extending the Block Editor</h2>\n\n\n\n<p class=\"has-drop-cap\">The Twentig plugin&rsquo;s strength is in how it extends the block editor. Users are first presented with a custom sidebar panel with a plethora of patterns and full-page layouts. The plugin then further provides options for individual blocks.</p>\n\n\n\n<p>Unlike many other block-related plugins, Twentig does not register its own blocks. It uses the core WordPress blocks, except for Contact Form 7 integration, by mixing and matching them in various ways. If a user needs a call-to-action section, the plugin offers 11 patterns. If a user wants to spruce up their galleries, they have plenty of choices.</p>\n\n\n\n<img />Inserting a single page layout.\n\n\n\n<p>The plugin&rsquo;s page layouts and patterns all work with both the Twenty Twenty and Twenty Twenty-One themes. Since Twentig relies primarily on core blocks, it is just a matter of making sure its custom CSS works.</p>\n\n\n\n<p>Some blocks get an extra setting or two through the plugin. However, the bulk of customization options happen through the Twentig &ldquo;CSS Library.&rdquo; This is a setting under the Advanced tab for most blocks that users can access by clicking the &ldquo;+&rdquo; icon next to the Additional CSS Classes option. It allows users to tick off checkboxes for numerous classes &mdash; each has an explanation of what it does. These are merely a set of utilities that change the block&rsquo;s output in some way.</p>\n\n\n\n<img />Picking Heading block classes via the Twentig CSS Library.\n\n\n\n<p>Twentig&rsquo;s CSS classes system follows the road paved by utility class frameworks like Tailwind. WordPress does a little of this but does not take a holistic approach to it. I have argued that WordPress <a href=\"https://wptavern.com/themes-of-the-future-a-design-framework-and-a-master-theme\">should build a design framework</a> in the past. A standardized class system would play well with block options, giving the development team a foundation for creating a better user experience across themes.</p>\n\n\n\n<p>The drawback is that the two extra stylesheets on top of Twenty Twenty-One&rsquo;s CSS add a bit of heft to the page. This could give pause to users who want to keep things lightweight. However, it has a smaller footprint than when using it with the older Twenty Twenty.</p>\n\n\n\n<h2>Customizer Options and More</h2>\n\n\n\n<img />Customizing Twenty Twenty-One&rsquo;s design.\n\n\n\n<p class=\"has-drop-cap\">The plugin packages dozens of settings under the &ldquo;Twentig Options&rdquo; customizer panel. It also extends other sections, such as adding more color options. Users who care more about modifying the overall design than blocks will find nearly anything they need to put their own spin on their sites.</p>\n\n\n\n<p>Everything from fonts to site layouts to what post metadata to show is covered. Users can also switch between stacked and grid-style blog posts designs while further customizing based on their choices.</p>\n\n\n\n<p>The biggest downside to the plugin&rsquo;s customizer integration is that it does not utilize the live preview functionality with most of its options. Making a change means a frame refresh to see its effects. A little bit of custom JavaScript and a few partials for server-side changes would go a long way toward making the experience better.</p>\n\n\n\n<p>Ultimately, future versions of Twentig will rely less on or not at all on the customizer. If Twenty Twenty-Two is a block-based, FSE theme, such customization will happen in the upcoming site editor. The plugin developers will need to change tactics and find ways to extend the experience in new ways.</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, 06 Apr 2021 22:36:37 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Justin Tadlock\";s: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:78:\"WPTavern: Wix Takes a Jab at WordPress with Bewildering New Marketing Campaign\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=114714\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:201:\"https://wptavern.com/wix-takes-a-jab-at-wordpress-with-bewildering-new-marketing-campaign?utm_source=rss&utm_medium=rss&utm_campaign=wix-takes-a-jab-at-wordpress-with-bewildering-new-marketing-campaign\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:5921:\"<p>Wix is taking direct aim at WordPress in a new cryptic marketing campaign that began over the weekend with shipments of <a href=\"https://www.amazon.com/Bose-Cancelling-Wireless-Bluetooth-Headphones/dp/B07Q9MJKBV/\">Bose noise-canceling headphones</a> landing in the mailboxes of prominent WordPress users. At the end of December, 2020, Wix sent out the following Twitter DM to a group of people it deemed &ldquo;influencers from the tech industry,&rdquo; soliciting their addresses in order to deliver a box: </p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>In the last few months, my team and I have been working on a new innovative concept. We have packed this concept into a free, no strings attached box that we&rsquo;d love to share with you as one of our selected influencers from the Tech industry. </p><p>I know the information I have provided you is basic, but the reason is that I do not want to ruin your experience (and let&rsquo;s be honest, what&rsquo;s more fun than being surprised on the holidays?)</p></blockquote>\n\n\n\n<ul><li class=\"blocks-gallery-item\"><img /></li><li class=\"blocks-gallery-item\"><img /></li></ul>\n\n\n\n<p>Recipients were instructed to scan a QR code to view a one-minute <a href=\"https://www.secret-update.com/from-wp\">video</a> where a man acts as a personified &ldquo;WordPress&rdquo; making bizarre claims:</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>&ldquo;Apparently, Wix is coming out with a campaign trashing me. I just want you to know that it&rsquo;s totally fake news, completely bogus. They&rsquo;re just spreading lies because they&rsquo;re jealous of our relationship.&rdquo; </p><cite><a href=\"https://www.secret-update.com/from-wp\">www.secret-update.com/from-wp</a></cite></blockquote>\n\n\n\n<p>The message of the video is not clear and it ends with a few snide jabs referencing &ldquo;exhausted memory&rdquo; and WordPress&rsquo; market share. </p>\n\n\n\n<div><img /></div>\n\n\n\n<p>The most common reaction to the surprise headphones was confusion. Many recipients had no idea what Wix was trying to communicate with the gift.</p>\n\n\n\n<div>\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">I don\'t understand their goal. Am I supposed to start using their service because they sent me some headphones I don\'t want?</p>&mdash; Michael Torbert (@michaeltorbert) <a href=\"https://twitter.com/michaeltorbert/status/1379125464917237763?ref_src=twsrc%5Etfw\">April 5, 2021</a></blockquote>\n</div>\n\n\n\n<p>A few people perceived the video to be cheeky and humorous. WordPress contributor Aaron Campbell found it off-putting. </p>\n\n\n\n<p>&ldquo;The video takes some odd snipes at WordPress, but the whole overall feel is a bit shady/dirty. Not a great look for Wix in my opinion,&rdquo; Campbell said after receiving the headphones in the mail. &ldquo;I think I&rsquo;d be fine with it if it weren&rsquo;t signed as &lsquo;From WP&rsquo; and &lsquo;Yours, WP.&rsquo; By the time I got to watching the video I already had that bad taste in my mouth.&rdquo;</p>\n\n\n\n<p>Some speculated that it may be the first act in a strange marketing saga of Wix targeting WordPress. Others were inadvertently convinced the headphones were actually from WordPress, since the advertisement uses WordPress&rsquo; trademark in the video. This may be a violation of the WordPress Foundation&rsquo;s <a href=\"https://wordpressfoundation.org/trademark-policy/\">trademark policy</a>, but this has not yet been confirmed. Wix was not printed anywhere in the message, except on the shipping label. </p>\n\n\n\n<div>\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">Ok thank you to whoever at <a href=\"https://twitter.com/WordPress?ref_src=twsrc%5Etfw\">@WordPress</a> sent me this, I don&rsquo;t remember giving you my address but these are cool headphones and you definitely got me not-using-Wix if that was your goal &hearts;&#65039;<br /><br />(i also have not used WP in like 10 years but now it will be in/around my head, dammit) <a href=\"https://t.co/l1xA7FvAiw\">pic.twitter.com/l1xA7FvAiw</a></p>&mdash; swyx (@swyx) <a href=\"https://twitter.com/swyx/status/1378268509910622211?ref_src=twsrc%5Etfw\">April 3, 2021</a></blockquote>\n</div>\n\n\n\n<p>This isn&rsquo;t the first time WordPress and Wix have been at odds. In 2016, Matt Mullenweg&nbsp;<a rel=\"noreferrer noopener\" href=\"https://wptavern.com/mullenweg-takes-aim-at-wix-over-gpl-abuses-wix-response-fails-to-address-licensing-issue\" target=\"_blank\">called out Wix for copying GPL code</a>&nbsp;from the WordPress mobile app and distributing it in its&nbsp;<a rel=\"noreferrer noopener\" href=\"http://www.prnewswire.com/news-releases/wixcom-launches-wix-app-providing-a-powerful-mobile-operating-system-for-small-business-owners-store-owners-hoteliers-and-bloggers-around-the-world-300339448.html\" target=\"_blank\">proprietary app</a>.&nbsp;This rendered the entire app in violation of the GPL. Instead of complying with the GPL, Wix responded by <a href=\"https://wptavern.com/wix-removes-gpl-licensed-wordpress-code-from-mobile-app-forks-original-mit-library\">removing the GPL-licensed code</a> and forking the original MIT-licensed library that the WordPress mobile app code was built upon. The fork was relicensed under an absurd modification of the MIT that prohibits the code&rsquo;s redistribution under any copyleft license. </p>\n\n\n\n<p>In October 2020, Wix passed Drupal as 4th <a href=\"https://w3techs.com/technologies/history_overview/content_management\">most popular CMS</a>, according to W3Techs. Since that time, Squarespace has grown to overtake Wix, pushing the CMS back into 5th place with 2.4% of the market. It&rsquo;s only natural that Wix would want to target WordPress, the market leader at 40.9%. However, the strategy of misrepresenting WordPress, while sending headphones to influential users and contributors, was perplexing and unsavory. Wix has not yet responded to my request for comment on its new marketing campaign.</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, 06 Apr 2021 06:09:31 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:27;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:88:\"WPTavern: The Michelle WordPress Theme Launches With Dozens of Block Patterns and Styles\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=114708\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:221:\"https://wptavern.com/the-michelle-wordpress-theme-launches-with-dozens-of-block-patterns-and-styles?utm_source=rss&utm_medium=rss&utm_campaign=the-michelle-wordpress-theme-launches-with-dozens-of-block-patterns-and-styles\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:6534:\"<p class=\"has-drop-cap\">Oliver Juhas recently released his sixth theme to the WordPress community for free. <a href=\"https://wordpress.org/themes/michelle/\">Michelle</a> is a block-ready theme. However, it also supports Beaver Builder, Elementor, and other page-building plugins.</p>\n\n\n\n<p>It is a multipurpose theme, which is often an immediate turn-off for me. I prefer to see a purpose-driven design with a unique take on a niche. However, it is hard not to love the personality of Michelle. Juhas did not shy away from putting his brand of styling on the project, which is evident in his past <a href=\"https://wordpress.org/themes/author/webmandesign/\">free themes</a>.</p>\n\n\n\n<p>Juhas is marketing Michelle as an accessibility-ready theme. However, it has yet to receive an accessibility review for the theme directory, which would allow it to be tagged as such. From a quick scan for common issues, everything seems to be in order. It will likely pass its review like some of his past free themes. And, &ldquo;inclusive, disabilities friendly, and barrierless&rdquo; are at the forefront of his branding for <a href=\"https://www.webmandesign.eu/\">WebMan Design</a>.</p>\n\n\n\n<p>As has become common for block-ready themes, Michelle packages a &ldquo;Content Only&rdquo; template. This is a post/page template that allows end-users to use the block editor as a page builder by not displaying anything other than the post content.</p>\n\n\n\n<p>The theme is yet another showcase of what is possible with the block editor. A couple of weeks after Anders Nor&eacute;n&rsquo;s <a href=\"https://wptavern.com/eksell-portfolio-theme-now-available-in-wordpress-themes-directory\">Eksell landed in the directory</a>, Juhas has presented the community with another quality theme. The two are entirely different in style and approach, but they both make the block system shine in their own ways.</p>\n\n\n\n<img />Portfolio designed using multiple blocks.\n\n\n\n<p>Users can read more about the theme and peruse several demos via the <a href=\"https://www.webmandesign.eu/portfolio/michelle-wordpress-theme/\">theme&rsquo;s official page</a>.</p>\n\n\n\n<h2>Block Patterns and Styles</h2>\n\n\n\n<p class=\"has-drop-cap\">Michelle may be the only free theme in existence with 67 patterns. And, no, you did not misread that. It literally registers 67 block patterns. Yeah, that is a lot.</p>\n\n\n\n<p>It has a little bit of everything. From team galleries to logos, from hero headers to contact cards, it is hard not to find something you need. There was no way that I could realistically test all of them. However, for the dozen or so that I did try, they worked well and offered an easy one-click option for end-users.</p>\n\n\n\n<img />Variable gallery with description pattern.\n\n\n\n<p>I always knew the day would come when a theme author would push the limits on the number of patterns it should offer. While 67 seems a bit excessive, I know from experience that we will see a day when patterns number in the 100s.</p>\n\n\n\n<p>I hate to continue beating a dead horse, but WordPress needs to use an <a href=\"https://wptavern.com/proposal-to-create-an-expanded-view-or-overlay-for-the-block-patterns-inserter\">overlay system for block patterns</a>, at least for desktop users. Michelle makes it more apparent than ever that a small slide-out panel will not cut it.</p>\n\n\n\n<p>If the theme&rsquo;s array of patterns is not enough to whet users&rsquo; appetites, its two dozen block styles just might.</p>\n\n\n\n<img />Hiding a Heading block for everyone but screen-readers.\n\n\n\n<p>The options range from light and dark text shadows to variable galleries. It even has an &ldquo;accessibly hidden&rdquo; style for Heading blocks, which hides the text from the screen but makes it available to screen readers.</p>\n\n\n\n<h2>Block-Ready Footer and 404 Page</h2>\n\n\n\n<p class=\"has-drop-cap\">The theme allows end-users to build their footer and 404 error pages via the block system. Considering that the site editor is not available yet and the block editor is limited to post content, Juhas had to think outside the box a little to make this possible. He made use of the reusable blocks system. This is the sort of ingenuity that happens when theme authors are not burdened by too many rules.</p>\n\n\n\n<p>In the customizer, users can select the Theme Options &gt; Content section. From there, they are directed to pick a reusable block for their footer and 404 pages. Or they can simply opt out of it. The customizer section also links to the semi-secret admin page to create reusable blocks.</p>\n\n\n\n<img />Select reusable blocks for the 404 and footer content.\n\n\n\n<p>In the past, I have used a similar technique for 404 views. Instead of going the reusable block route, theme users could select a private page. Either option is acceptable for allowing users to modify content they may not have been able to customize in the past.</p>\n\n\n\n<h2>Starter Content</h2>\n\n\n\n<p class=\"has-drop-cap\">Michelle makes extensive use of the WordPress starter content feature. This allows new WordPress users to see what their site could look like with pre-loaded content. The theme creates Home, About, Blog, Services, FAQ, and Contact pages.</p>\n\n\n\n<img />Homepage starter content.\n\n\n\n<p>The feature has languished in recent years. Many theme authors had hoped they would eventually be able to use the feature for non-new installs too. However, Helen Hou-Sand&iacute; <a href=\"https://wptavern.com/wordpress-to-combine-its-long-neglected-theme-previewer-with-starter-content\">got the ball rolling again in November 2020</a>, breathing new life into an old idea. WordPress.org would begin displaying theme starter content via the theme preview system. Only the Twenty Twenty-One, Twenty Twenty, and Twenty Seventeen themes received this treatment last year. It now seems that it is being rolled out for others.</p>\n\n\n\n<p>This is a welcome change in the directory. Users can now <a href=\"https://wp-themes.com/michelle/\">get a feel of the Michelle theme</a> without tracking down the author&rsquo;s demo. It is a better experience than the old-school demo content.</p>\n\n\n\n<p>One issue is that the previewer uses the first sentence of the theme description for the demo&rsquo;s tagline. This can make for a long and unusual bit of text. It can also mess up a theme&rsquo;s layout as it is doing with Michelle. I hope this will be addressed from WordPress&rsquo;s end soon.</p>\n\n\n\n<p>Other theme authors should note that starter content could factor into whether a user skips over or downloads their theme.</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, 05 Apr 2021 23:21:38 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Justin Tadlock\";s: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:20:\"Matt: Doctorow on IP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=53979\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:37:\"https://ma.tt/2021/04/doctorow-on-ip/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:655:\"<p>It&#8217;s not every day you see noted writer Cory Doctorow refer to a column as &#8220;the piece I&#8217;m most proud of,&#8221; and <a href=\"https://locusmag.com/2020/09/cory-doctorow-ip/\">his essay in Locus Magazine on IP doesn&#8217;t disappoint</a>, connecting the free software movement and the evolution of the term &#8220;author&#8217;s monopolies&#8221; to &#8220;intellectual property.&#8221;</p>\n\n\n\n<p>The essay on DRM and Apple, <a href=\"https://pluralistic.net/2021/03/22/gandersauce/#petard\">available on his WP-powered blog</a>, <a href=\"https://twitter.com/doctorow/status/1374020143316004864\">or Twitter</a>, is also worth reading.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sun, 04 Apr 2021 02:42: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: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: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:54:\"WordPress.org blog: The Month in WordPress: March 2021\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=10084\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"https://wordpress.org/news/2021/04/the-month-in-wordpress-march-2021/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:9799:\"<blockquote class=\"wp-block-quote\"><p>This way of iterating improves WordPress and ties back to one of my favorite open-source principles. The idea that with many eyes, all bugs are shallow. To me, that means that with enough people looking at a problem, someone is bound to be able to see the solution.</p></blockquote>\n\n\n\n<p class=\"has-drop-cap\">These words from <a href=\"https://profiles.wordpress.org/chanthaboune/\">Josepha Haden Chomphosy</a> on the <a href=\"https://wordpress.org/news/2021/03/how-wordpress-improves/\">How WordPress Improves</a> episode of the <a href=\"https://wordpress.org/news/podcast/\">WP Briefing Podcast</a> point to the factors that differentiate building software in an open-source environment. Our updates this month are closely tied to the philosophy behind those core principles of open source software.&nbsp;</p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h2>WordPress 5.7 released</h2>\n\n\n\n<p>WordPress <a href=\"https://wordpress.org/news/2021/03/esperanza/\">version 5.7</a> “Esperanza,” came out on March 9. The release offers fresher admin colors, several improvements to the block editor, single-click HTTP to HTTPS migration, and a new Robots API. Read more about it in the <a href=\"https://wordpress.org/news/2021/03/esperanza/\">release post</a>, the <a href=\"https://make.wordpress.org/core/2021/02/23/wordpress-5-7-field-guide/\">field guide</a>, and the <a href=\"https://make.wordpress.org/community/2021/03/12/meetup-group-resources-talking-points-for-wordpress-5-7/\">talking points post for meetup groups</a>. The Core Team has also <a href=\"https://make.wordpress.org/core/2021/03/30/5-8-pre-planning/\">started work on WordPress 5.8 pre-planning</a>.</p>\n\n\n\n<p>Want to contribute to WordPress 5.8? Join the WordPress <a href=\"https://wordpress.slack.com/archives/C02RQBWTW\">#core</a> channel in the <a href=\"https://make.wordpress.org/chat/\">Make WordPress Slack</a> and follow the <a href=\"https://make.wordpress.org/core/\">Core Team blog</a>. The Core Team hosts weekly chats on Wednesdays at <a href=\"https://www.timeanddate.com/worldclock/fixedtime.html?hour=5&min=00&sec=0\">5 AM</a> and <a href=\"https://www.timeanddate.com/worldclock/fixedtime.html?hour=20&min=00&sec=0\">8 PM</a> UTC.&nbsp;</p>\n\n\n\n<h2>Gutenberg Version 10.1 and 10.2 are out</h2>\n\n\n\n<p>Contributor teams released Gutenberg <a href=\"https://make.wordpress.org/core/2021/03/02/whats-new-in-gutenberg-10-1-3-march/\">Version 10.1</a> on March 3 and <a href=\"https://make.wordpress.org/core/2021/03/17/whats-new-in-gutenberg-10-2-17-march/\">Version 10.2</a> on March 17.</p>\n\n\n\n<p><a href=\"https://make.wordpress.org/core/2021/03/02/whats-new-in-gutenberg-10-1-3-march/\">Version 10.1</a> showcases significant improvements to reusable blocks, a clearer image toolbar, and spatial options for the social media block. <a href=\"https://make.wordpress.org/core/2021/03/17/whats-new-in-gutenberg-10-2-17-march/\">Version 10.2</a> offers block pattern options to display contents from the query block and removes writing prompts from empty paragraphs in the editor. It also adds width adjustment for spacer blocks in horizontal parent blocks and the ability to transform media and text blocks into columns.</p>\n\n\n\n<p>Want to get involved in building Gutenberg? Follow <a href=\"https://make.wordpress.org/core/\">the Core Team blog</a>, contribute to <a href=\"https://github.com/WordPress/gutenberg/\">Gutenberg on GitHub</a>, and join the <a href=\"https://wordpress.slack.com/archives/C02QB2JS7\">#core-editor</a> channel in <a href=\"https://make.wordpress.org/chat/\">the Make WordPress Slack</a>. The “<a href=\"https://make.wordpress.org/core/2021/03/08/whats-next-in-gutenberg-march-2021/\">What’s next in Gutenberg</a>” post offers more details on the latest updates. Don’t miss the monthly Gutenberg tutorial on <a href=\"https://wordpress.org/news/2021/03/so-you-want-to-make-block-patterns/\">How to make block patterns</a>!</p>\n\n\n\n<h2>Full Site Editing updates</h2>\n\n\n\n<p>March saw a plethora of updates to the <a href=\"https://make.wordpress.org/core/tag/full-site-editing/\">Full Site Editing</a> project!</p>\n\n\n\n<ul><li><a href=\"https://profiles.wordpress.org/chanthaboune/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>chanthaboune</a> published a <a href=\"https://make.wordpress.org/updates/2021/03/12/full-site-editing-pre-merge-overview/\">Full Site Editing pre-merge overview</a>. She shares the project’s current status, go/no-go dates for core merge, communication plans, and challenges.&nbsp;</li><li>March saw two calls for testing as part of the <a href=\"https://make.wordpress.org/test/handbook/full-site-editing-outreach-experiment/\">Full Site Editing outreach program</a>. The first test of the month — <a href=\"https://make.wordpress.org/test/2021/03/09/fse-program-testing-call-3-create-a-fun-custom-404-%20page/\">creating a custom 404 page</a>,&nbsp; wrapped up successfully.&nbsp; Participate in the latest testing initiative — <a href=\"https://make.wordpress.org/test/2021/03/25/fse-program-testing-call-4-building-a-restaurant-themed-header/\">&nbsp;build a restaurant-themed website header</a> to help improve the future of WordPress! Deadline: April 8.&nbsp;</li><li>You can also find <a href=\"https://make.wordpress.org/core/2021/03/16/high-level-feedback-from-the-fse-program-march/\">high-level feedback on the FSE Program</a> in this March 2021 post.</li></ul>\n\n\n\n<h2>Proposal launched for a WordPress contributor handbook</h2>\n\n\n\n<p>A proposal has been kicked off on <a href=\"https://make.wordpress.org/updates/2021/03/16/proposal-a-wordpress-project-contributor-handbook/\">building a project-wide WordPress contributor handbook</a>. The handbook will have content around the WordPress project’s underlying philosophies and commitments, along with shared expectations on working together and building products. It will also contain modern open source best practices for WordPress.&nbsp;</p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h2>Further Reading</h2>\n\n\n\n<ul><li>You can now schedule office hours with Matt Mullenweg and Josepha Haden as part of their <a href=\"https://make.wordpress.org/core/2021/03/12/q2-listening-hours-april-7th-2021/\">Q2 Quarterly listening hours initiative</a>. This quarter’s listening session is scheduled for April 7th, 2021, from <a href=\"https://www.timeanddate.com/worldclock/fixedtime.html?iso=20210407T2200\">22:00</a>&#8211;<a href=\"https://www.timeanddate.com/worldclock/fixedtime.html?iso=20210408T0000\">24:00</a> UTC. Slots are still available — <a href=\"https://calendly.com/mmullenweg/team-lead-office-hours?month=2021-04&date=2021-04-08\">sign up now</a>!&nbsp;</li><li>The Themes Team is working on <a href=\"https://make.wordpress.org/themes/2021/03/17/next-steps-on-themes-and-reviews/\">automating the theme review process</a>. The team has shared a detailed post on these changes and is requesting feedback.</li><li>The Core Team has <a href=\"https://make.wordpress.org/core/2021/03/05/dual-licensing-gutenberg-next-steps/\">kicked-off plans</a> on dual licensing Gutenberg under GPL and MPL.</li><li><a href=\"https://buddypress.org/2021/03/buddypress-7-2-1-security-release/\">Version 7.2.1</a> of BuddyPress (security release) is out! Update all your BuddyPresses!</li><li>The Docs Team shipped the <a href=\"https://make.wordpress.org/docs/2021/03/07/wordpress-documentation-style-guide-google-season-of-docs-2020-project-report-tacitonic/\">WordPress documentation style guide</a> as part of its Google Season of Docs 2020 effort. The team has also kicked off work on applying for <a href=\"https://href.li/?https://make.wordpress.org/docs/tag/season-of-docs-2021/\">Google Season of Docs 2021</a>!</li><li>The Polyglots Team is making <a href=\"https://make.wordpress.org/polyglots/2021/03/26/polyglots-training-working-group-update-2/\">significant progress on building their contributor training program</a>. The team is also requesting feedback on <a href=\"https://make.wordpress.org/polyglots/2021/03/30/request-for-feedback-polyglots-team-stats-dashboard/\">building their dashboard</a>.</li><li><a href=\"https://profiles.wordpress.org/chanthaboune/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>chanthaboune</a> shared an <a href=\"https://make.wordpress.org/updates/2021/03/19/experiment-coordinating-sponsored-contributor-teams/\">experiment to coordinate sponsored contributors</a> by adding them to a private Slack channel to offer them better support.</li><li>The Community Team announced its revamped <a href=\"https://make.wordpress.org/community/2021-wordpress-global-community-sponsorship-program/\">2021 Global Sponsorship Program</a>. The team also published a <a href=\"https://make.wordpress.org/community/2021/03/12/2021-financial-update-for-the-wordpress-community/\">financial update for WP Communities in 2021</a>.</li><li>The Core Team is moving ahead to <a href=\"https://make.wordpress.org/core/2021/03/04/discussion-dropping-support-for-ie11/\">drop support for Internet Explorer 11</a> for upcoming versions of WordPress.</li><li>The Design Team shared <a href=\"https://make.wordpress.org/design/2021/03/30/wordpress-org-patterns-directory/\">initial designs for the Block pattern directory</a>.</li><li>The <a href=\"https://make.wordpress.org/chat/\">Make WordPress Slack</a> workspace briefly went down on March 30 due to a Slack ToS issue, which was subsequently resolved. More details on <a href=\"https://make.wordpress.org/updates/2021/03/30/journal-entry-wordpress-slack-workspace-unavailability/\">this explainer post</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 using this form</em></a><em>.</em></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 03 Apr 2021 16:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Hari Shanker R\";s: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:104:\"WPTavern: FSF Doubles Down on Stallman Reinstatement, WordPress Does Not Support His Return to the Board\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=114565\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:251:\"https://wptavern.com/fsf-doubles-down-on-stallman-reinstatement-wordpress-does-not-support-his-return-to-the-board?utm_source=rss&utm_medium=rss&utm_campaign=fsf-doubles-down-on-stallman-reinstatement-wordpress-does-not-support-his-return-to-the-board\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:9079:\"<p>The <a href=\"https://www.fsf.org/\">Free Software Foundation</a> (FSF) is hemorrhaging board members and management following the <a href=\"https://wptavern.com/free-software-community-condemns-richard-stallmans-reinstatement-to-fsf-board-of-directors\">reinstatement of Richard Stallman</a>. The GPL author and founder of the FSF announced last week that he had rejoined the board and is not planning to resign a second time. An <a href=\"https://rms-open-letter.github.io/\">open letter</a> signed by more than 3,000 people called&nbsp;for the removal of Stallman from all leadership positions, including the GNU project, and removal of the entire Board of the FSF. So far it has gained support from Red hat, Mozilla, Outreachy, the Software Conservancy project, and many other high profile organizations.</p>\n\n\n\n<p>&ldquo;We are long past the point where we can pretend that the most important thing about software freedom is the software,&rdquo; Mozilla Engineering Community Manager Michael Hoye said in signing support for the open letter. &ldquo;We cannot demand better from the internet if we do not demand better from our leaders, our colleagues and ourselves.&rdquo; </p>\n\n\n\n<p>In addition to the resignation of former FSF board member Kat Walsh, the organization&rsquo;s executive director, deputy director, and chief technology officer have also resigned. They published a joint <a href=\"https://www.fsf.org/blogs/executive-director/management-team-members-resigning\">statement</a>, reaffirming their commitment to the mission of free software, despite their departure:</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p></p><p>As members of FSF management, we have decided to resign, with specific end dates to be determined. We believe in the importance of the FSF&rsquo;s mission and feel a new team will be better placed to implement recent changes in governance. Free software and copyleft are critical issues of our time, and the FSF is, and should continue to be, the organization leading this movement. FSF staff have our utmost respect, support, and appreciation, and it has been a privilege to work with you all. Our team&rsquo;s mutual goal is to ensure a smooth transition while supporting the necessary renovation of the foundation&rsquo;s governance.</p></blockquote>\n\n\n\n<p>An oddly-timed <a href=\"https://twitter.com/fsf/status/1376714994721689601\">tweet</a> announced a new published statement the FSF board voted on, which &ldquo;condemns misogyny, racism, and other bigotry as well as defamation, intimidation, and unfair attacks on free thought and speech.&rdquo; The statement was met with ridicule and outrage on Twitter, as it hints at the defense Stallman used when he <a href=\"https://wptavern.com/gpl-author-richard-stallman-resigns-from-free-software-foundation\">resigned as the FSF board director</a>, claiming he had been subject to &ldquo;a series of misunderstandings and mischaracterizations.&rdquo;</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">While our primary mission is freedom for software users, we want to be clear, the FSF board unanimously condemns misogyny, racism,and other bigotry as well as defamation, intimidation, and unfair attacks on free thought and speech.</p>&mdash; Free Software Fndn. (@fsf) <a href=\"https://twitter.com/fsf/status/1376714994721689601?ref_src=twsrc%5Etfw\">March 30, 2021</a></blockquote>\n</div>\n\n\n\n<p>Recent statements published to the FSF website indicate that its leadership is doubling down on the decision to reinstate Stallman:</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p><a href=\"https://fsf.org/about/staff-and-board\">Some of our colleagues in the FSF</a>&nbsp;have decided to resign. We are grateful for the good work they have done for so long, and we will miss them. We regret losing them; we regret the situation that has motivated them to leave.</p><p>We appreciate their strong commitment to free software and we want to find replacements with a similar competence and commitment. We are open to suggestions and applications for these positions.</p><p>Finally, we would like to thank the numerous friends across the free software movement who have recently joined as well as those who have left and provided suggestions for helping us through this difficult time.</p></blockquote>\n\n\n\n<p>The FSF seems to be counting the resignations as an acceptable loss, as funds from donors are evaporating. Several organizations have discontinued financial support for the organization. Most notably, Red Hat, a long-time donor with hundreds of contributors who have submitted millions of lines of code to projects stewarded by the FSF, publicly <a href=\"https://www.redhat.com/en/blog/red-hat-statement-about-richard-stallmans-return-free-software-foundation-board\">discontinued support</a> for the organization and any of its events. In addition to $708,016 in membership dues, the FSF received $1,383,003 in contributions, gifts, and grants, which makes up the bulk of its annual revenue, according to a recent <a href=\"https://www.charitynavigator.org/index.cfm?bay=search.summary&orgid=8557#accountability-transparency-performance-metrics\">report</a> on Charity Navigator.</p>\n\n\n\n<p>Stallman is synonymous with the FSF and his reinstatement puts many free software advocates in a difficult position. Some cannot easily write off the entire organization, as it is engaged in important work. The FSF publishes the GPL, LGPL, and FDL licenses. It also holds copyrights to defend free software from those who would seek to make it proprietary and has the power to enforce the GPL. As part of its <a href=\"https://www.fsf.org/licensing\">Free Software Licensing and Compliance Lab</a>, the organization works to ensure that free software distributors respect their obligations to pass on the user freedoms that these licenses are meant to convey. </p>\n\n\n\n<p>The Fedora Council cited the FSF&rsquo;s important function when publishing a <a href=\"https://fedoramagazine.org/fedora-council-statement-on-richard-stallman-rejoining-fsf-board/\">statement</a> on why it is pulling funding from the organization:</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>Along with many in the free and open source software world, the Fedora Council was taken aback that the Free Software Foundation (FSF) has allowed Richard Stallman to rejoin their Board of Directors given his history of abuse and harassment. The Fedora Council does not normally involve itself with the governance of other projects. However, this is an exceptional case due to the FSF&rsquo;s stewardship of the GPL family of licenses, which are critical for the work we do.</p></blockquote>\n\n\n\n<p>The council will not provide funding or attend any FSF-sponsored events where Stallman is a featured speaker or exhibitor, and stated that this also applies to any organization where he has a leadership role.</p>\n\n\n\n<h2>WordPress Responds to Stallman&rsquo;s Reinstatement</h2>\n\n\n\n<p>Up until today, WordPress had not published an official statement on Stallman&rsquo;s reinstatement to the FSF board. <a href=\"https://wordpressfoundation.org/\">The WordPress Foundation</a> website lists the Free Software Foundation as one of the project&rsquo;s inspirations. WordPress co-founder Matt Mullenweg was also among the FSF&rsquo;s list of patrons in previous years. </p>\n\n\n\n<p>After asking WordPress&rsquo; executive director Josepha Haden Chomphosy for a comment regarding the matter, she published a <a href=\"https://josepha.blog/2021/04/02/on-recent-news-about-the-fsf-board-of-directors/\">statement</a>: </p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>In short, I do not support his return as a board member.&nbsp;</p><p>It makes me proud that the WordPress project embodies the best traditions of open source and retires outdated traditions, or shibboleths, that do not have a place in our mission: to democratize publishing and grow the open web. For years, this community has been committed to championing underrepresented voices and maintaining a safe and welcoming environment for those we rarely see in open source.&nbsp;</p></blockquote>\n\n\n\n<p>Although the statement is published on her personal blog, Haden Chomphosy confirmed that this is the WordPress project&rsquo;s official stance on Stallman&rsquo;s reinstatement. The statement quietly calls out Stallman&rsquo;s lack of accountability and the fact that he has not publicly acknowledged how harmful his behavior has been to the free software community:</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>The high standards for welcoming behavior are held across the board. WordPress contributors lead with accountability, acknowledgment of error, and a genuine desire to grow based on feedback. Under the guidance of many thoughtful leaders, WordPress makes space for those who are committed to growth.&nbsp;</p></blockquote>\n\n\n\n<p>The message is more focused on the positive aspects of the WordPress community and its values but is clear in the first paragraph: WordPress does not support Stallman&rsquo;s return as an FSF board member.</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, 02 Apr 2021 18:57:11 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:31;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:78:\"WPTavern: Disable the WordPress Block Editor’s Fullscreen Mode With a Plugin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=114659\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:195:\"https://wptavern.com/disable-the-wordpress-block-editors-fullscreen-mode-with-a-plugin?utm_source=rss&utm_medium=rss&utm_campaign=disable-the-wordpress-block-editors-fullscreen-mode-with-a-plugin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3173:\"<p class=\"has-drop-cap\">On Wednesday, Johan Jonk Stenstr&ouml;m released <a href=\"https://wordpress.org/plugins/fullscreen-mode-b-gone/\">Fullscreen Mode B Gone</a> to the WordPress plugin directory. As the catchy title implies, it gets rid of the block editor&rsquo;s fullscreen mode.</p>\n\n\n\n<p>As anyone who prefers to opt-out of fullscreen mode knows, there are moments when you log into WordPress and hop over to the post editor only to find it is not in the state you last left it. It is a slight annoyance but enough to dampen the user experience.</p>\n\n\n\n<p>Nearly two years ago, Andrew Duthie opened a ticket for storing <a href=\"https://github.com/WordPress/gutenberg/issues/15105\">users&rsquo; editor preferences to the database</a> instead of their browser&rsquo;s local storage. This includes basic settings like toggling whether fullscreen mode should be enabled. Local storage is not considered sticky, at least not permanently. It can be cleared in a variety of ways. This means that users must deal with disabling the default fullscreen editor more often than they should. It is also not stored when switching browsers, using private tabs, or when working on multiple sites across the same network.</p>\n\n\n\n<p>The ultimate goal should be to persistently save preferences on a per-user basis. There has been little movement on that ticket in the past year. Most comments have come in the form of closed duplicates.</p>\n\n\n\n<p>In the meantime, users must look for alternative solutions. That&rsquo;s where plugins like Fullscreen Mode B Gone offer some assistance.</p>\n\n\n\n<p>The plugin is simple. It toggles the block editor&rsquo;s fullscreen mode off. Regardless of whether users have switched browsers, cleared their local storage, or anything else, they can safely enter the editor without being bombarded by a different editing experience.</p>\n\n\n\n<img />New post with fullscreen mode disabled.\n\n\n\n<p>Both an upside and a downside of the plugin is that it resets fullscreen mode each time the user opens the editor. It does not address the sticky issue. For users like me who prefer to always have fullscreen mode disabled or only turn it on once in a while, this is ideal. However, for users who want WordPress to remember the last state, it is best to skip this plugin. The default experience is better suited to what you need.</p>\n\n\n\n<p>One of the things I dislike about how the editor works is that it requires JavaScript for plugins to make changes like this. Even if it is merely a few lines of code, it still calls for one more HTTP response just to alter a default setting. At least with PHP, a simple filter would have sufficed.</p>\n\n\n\n<p>This is not Stenstr&ouml;m&rsquo;s first editor-related plugin. He has a plugin titled <a href=\"https://wordpress.org/plugins/fatso/\">Fatso</a>, which widens the content canvas for users who prefer more space when writing. Also, continuing with the &ldquo;B Gone&rdquo; branding, he released <a href=\"https://wordpress.org/plugins/welcome-to-the-block-editor-b-gone/\">Welcome To the Block Editor B Gone</a> a week ago. Similar to his current plugin, it disables the block editor welcome message permanently.</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, 02 Apr 2021 16:38:20 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Justin Tadlock\";s: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:115:\"WPTavern: Gutenberg 10.3 Supports Default Image Sizes, Continues Normalizing Toolbars, and Categorizes Theme Blocks\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=114610\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:271:\"https://wptavern.com/gutenberg-10-3-supports-default-image-sizes-continues-normalizing-toolbars-and-categorizes-theme-blocks?utm_source=rss&utm_medium=rss&utm_campaign=gutenberg-10-3-supports-default-image-sizes-continues-normalizing-toolbars-and-categorizes-theme-blocks\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:6241:\"<p class=\"has-drop-cap\">Version 10.3 of the Gutenberg plugin landed yesterday. Users can now define a default Image block size. The development team also continued work on normalizing block toolbars, created a &ldquo;theme&rdquo; block category, and added a padding option to the Verse block.</p>\n\n\n\n<p>Contributors fixed over 30 bugs. However, the bulk of work went toward Full Site Editing (FSE) with over 70 commits. It is an impressive effort toward the looming WordPress 5.8 deadline and an upcoming decision on whether FSE will land in the release.</p>\n\n\n\n<p>The team included a few additional blocks for FSE. The new <a href=\"https://github.com/WordPress/gutenberg/pull/29766\">Login/out block</a> displays a login or logout link, depending on whether the user is logged out or in, respectively. The block also has an option for displaying a login form. A <a href=\"https://github.com/WordPress/gutenberg/pull/29428\">Query Title block</a> was included with an Archive Title variation, which will automatically output the current title on archive views. The team also added a <a href=\"https://github.com/WordPress/gutenberg/pull/29613\">Term Description block</a> for displaying category, tag, and custom taxonomy term descriptions on archives.</p>\n\n\n\n<p>Of course, as has become ritual at this point, I am now writing in an editor that looks different than it did a day ago. In version 10.2, all of our Paragraph blocks were shifted to the left. In 10.3, none of our theme&rsquo;s width constraints are applying to the content canvas. I still optimistically envision a day in which a Gutenberg update does not affect theme styles.</p>\n\n\n\n<h2>Default Image Sizes</h2>\n\n\n\n<img />\n\n\n\n<p class=\"has-drop-cap\">One of the features I have been patiently awaiting has finally arrived &mdash; <em>sort of.</em> We all have pet-peeves when it comes to the block editor, and not being able to <a href=\"https://github.com/WordPress/gutenberg/pull/29966\">set the default image size</a> when using the Image block has been high on my list.</p>\n\n\n\n<p>A recently-added feature uses the core WordPress <code>image_default_size</code> option to handle this. When set, any new Image blocks added will default to this chosen size. While it is a welcome enhancement, there are two problems with the solution.</p>\n\n\n\n<p>The first issue is that this option is not exposed in the WordPress admin interface. That is unless you know how to get to the secret <code>/wp-admin/options.php</code> page. There are no links to it, but users can directly enter the URL, scroll down to find the <code>image_default_size</code> option, and manually type in the size handle (e.g., <code>full</code>, <code>large</code>, etc.) that they want before saving.</p>\n\n\n\n<p>The second issue is that it solves the problem on a site-wide level but not on a user level. For publications like WP Tavern with multiple authors, we all have our own preferred workflows. For me, I like to pre-crop all of my images before uploading, which often means that I want to use the full-sized image in the post. However, other writers may want to go a different route. The default image size should be a user preference, falling back to the site setting.</p>\n\n\n\n<p>Nevertheless, I am happy to see some progress. I can skip that extra step of setting the image size every time I add an image to a post.</p>\n\n\n\n<p>Next, let&rsquo;s make this happen for image alignment. Or, how about we let users set defaults for many more block options to help them streamline their workflows?</p>\n\n\n\n<h2>Normalizing Block Toolbar Groupings</h2>\n\n\n\n<img />Semantic groupings for the Paragraph block.\n\n\n\n<p class=\"has-drop-cap\">Building off <a href=\"https://wptavern.com/gutenberg-10-1-enhances-reusable-blocks-updates-social-icons-spacing-options-and-normalizes-image-block-toolbar\">work that started in version 10.1</a>, the development team continued <a href=\"https://github.com/WordPress/gutenberg/issues/25983\">normalizing the block toolbar</a>. Over a dozen blocks received the new treatment.</p>\n\n\n\n<p>The end goal is to create semantic groupings of the toolbar buttons for all blocks. This will make it easier for end-users to find options and for developers to know where to place buttons in the future. The order in the toolbar, broken down into four groups, is as follows:</p>\n\n\n\n<ul><li>Meta</li><li>Block Level</li><li>Inline Level</li><li>More Options</li></ul>\n\n\n\n<p>The toolbar separates each grouping with a border. With the Paragraph block, for example, the text alignment option is on the block level. However, the bold, italic, and link settings are inline.</p>\n\n\n\n<p>Developers creating custom blocks should follow the best practices under the <a href=\"https://github.com/WordPress/gutenberg/blob/trunk/docs/how-to-guides/designers/block-design.md\">block design documentation</a>.</p>\n\n\n\n<h2>Theme Block Category</h2>\n\n\n\n<img />Theme category with Template Part, Header, and Footer blocks.\n\n\n\n<p class=\"has-drop-cap\">When using a block-based theme, which enables FSE mode, Gutenberg 10.3 introduces a new <a href=\"https://github.com/WordPress/gutenberg/pull/30020\">&ldquo;Theme&rdquo; category in the inserter</a>. It currently includes the Template Part, Header, and Footer blocks. The goal for the enhancement is to indicate that they are the building blocks of themes.</p>\n\n\n\n<p>The enhancement could be better if the category was not so tough to find in the inserter&rsquo;s long list of blocks. I am still arguing that we bring back the original accordion in the UI. In the site editor, it would be better to shift the Theme category to the top, which is primarily for editing theme-related things.</p>\n\n\n\n<h2>Padding Option for the Verse Block</h2>\n\n\n\n<img />Adding horizontal padding to the Verse block.\n\n\n\n<p class=\"has-drop-cap\">Users can now set the <a href=\"https://github.com/WordPress/gutenberg/pull/29820\">padding for the Verse block</a>. The setting feels a bit out of place right now without any other stylistic options. Background and border options will make padding more relevant in the long term. </p>\n\n\n\n<p>For now, it is nice to see more blocks getting spacing options. It just happened to land on what, I&rsquo;d wager, is the least-used block for WordPress users.</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, 01 Apr 2021 22:21:19 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Justin Tadlock\";s: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:99:\"WPTavern: FSE Outreach Round #4: Building a Restaurant-Themed Header With Gutenberg’s Site Editor\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=114578\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:233:\"https://wptavern.com/fse-outreach-round-4-building-a-restaurant-themed-header-with-gutenbergs-site-editor?utm_source=rss&utm_medium=rss&utm_campaign=fse-outreach-round-4-building-a-restaurant-themed-header-with-gutenbergs-site-editor\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:6069:\"<p class=\"has-drop-cap\">Anne McCarthy <a href=\"https://make.wordpress.org/test/2021/03/25/fse-program-testing-call-4-building-a-restaurant-themed-header/\">announced the fourth round of testing</a> for the Full Site Editing (FSE) Outreach program last week. This testing phase calls for users to build a restaurant-themed header via the Gutenberg plugin&rsquo;s site editor. Testing is open to anyone, and participants should leave feedback by April 8.</p>\n\n\n\n<p>The testing process is broken down into 24 steps with both setup and testing instructions. Those participating will need to activate the latest version of the <a href=\"https://wordpress.org/themes/tt1-blocks/\">TT1 Blocks</a> theme and the <a href=\"https://wordpress.org/plugins/gutenberg\">Gutenberg</a> plugin.</p>\n\n\n\n<p>The more people who leave feedback, the better it is for the project. The program provides that direct link between the user and the developer team that has often been missing in the past. If you have an hour or so of spare time, jump right in.</p>\n\n\n\n<h2>Building a Custom Header</h2>\n\n\n\n<p class=\"has-drop-cap\">I want to push the site editor beyond its limits, creating move advanced layouts. However, the site builder is so fundamentally limiting &mdash; and broken in some cases &mdash; that it is easy to become frustrated. And, depending on which version of Gutenberg you are using, such as the latest dev vs. stable version, you can get wildly different results.</p>\n\n\n\n<p>This propensity to jump ahead of the lesson is something I have done my entire life. In school, I frustrated more than a few teachers. I would be working on stuff from the end of the chapter when they were still explaining the basics to the rest of the class a half-hour later. I have always wanted to get to the &ldquo;good stuff.&rdquo; Of course, I did so by blazing past the boring fundamentals. I also dropped out of software engineering twice in college because building calculators was neither exciting nor challenging.</p>\n\n\n\n<p>Like always, I jumped ahead with Round #4 of the FSE Outreach Program. I came to the realization that attempting to do anything remotely advanced with the site editor was simply not going to happen.</p>\n\n\n\n<p>I want Full Site Editing to be successful, but we are mere weeks away from the deadline that determines whether it will land in the next version of WordPress. Somehow this experience felt like a step back from where the plugin was a few weeks ago as I built a custom homepage as part of the <a href=\"https://wptavern.com/fse-outreach-round-2-building-a-custom-homepage-with-gutenbergs-site-editor\">second round</a> of the FSE Outreach testing program. I do not know whether the problems stemmed directly from Gutenberg, the TT1 Blocks theme, or both. As someone who prides himself on near-infinite patience, Round #4 sought to crack me.</p>\n\n\n\n<p>I wanted to recreate several elements from the UK-based <a href=\"https://www.phocafe.co.uk/\">Pho Cafe</a> page header. I knew the site editor could not yet manage a one-to-one replication. I still thought I could pull in parts of it but utterly failed.</p>\n\n\n\n<img />Pho Cafe website page header.\n\n\n\n<p>I appreciate the need for controlled circumstances. Step-by-step testing puts everyone on the same page, makes it easier to gather data, and allows others to reproduce issues. I am just bad at it.</p>\n\n\n\n<h2>Following the Rules</h2>\n\n\n\n<p class=\"has-drop-cap\">I restarted from scratch. I followed the rules. And, for the most part, the testing round was successful. I built a restaurant website header from the instructions and put my own spin on it.</p>\n\n\n\n<img />Custom beachside caf&eacute; header design.\n\n\n\n<p>Of course, I hit a few snags. That is what the testing program is all about &mdash; identifying pain points.</p>\n\n\n\n<p>The most problematic issue is that what I saw in the editor was not what I got on the front end. I have played around with it enough to know in my mind what it <em>might</em> look like on the front end to make adjustments without previewing the changes. However, that is not the user experience that WordPress is shooting for.</p>\n\n\n\n<img />Editor view of the restaurant website header.\n\n\n\n<p>Admittedly, on the front end, I tidied up the padding for the Group block and bottom margin for the Columns block for the &ldquo;Order Online&rdquo; strip across the top of the header. I thought about making the button smaller too. However, I stuck with the TT1 Blocks theme default. Ultimately, padding, margin, and other types of sizing/spacing should be customizable by the end-user.</p>\n\n\n\n<p>Wide and full block alignments completely disappeared after activating TT1 Blocks. I am unsure if this was a recent change in the Gutenberg plugin or the theme. Nevertheless, they were gone, which was one reason I had trouble recreating pieces of the original page header I wanted to build.</p>\n\n\n\n<p>The TT1 Blocks theme also has a hardcoded font-size for the site title link. This means that users cannot change the size of the Site Title block. I wanted to bump this up a little to make it more prominent.</p>\n\n\n\n<p>Like the first design I was shooting for, I wanted my Navigation items to look like individual buttons, each with a bit of whitespace in between. However, the Navigation block does not currently support adding backgrounds to each nav item. Even if it did, it also does not have a horizontal margin setting to add the spacing. And, I outright refuse to use a <a href=\"https://wptavern.com/gutenberg-10-2-adds-spacers-to-navigation-lists-lets-users-categorize-template-parts-and-introduces-scoped-patterns\">Spacer block between items</a>.</p>\n\n\n\n<p>I did want to spruce my restaurant page header up a bit with a custom background. To do that, I added the primary elements inside a Cover block. Currently, the only way to do that is to copy all of the blocks, delete the old ones, and paste them into a new Cover block. A welcome enhancement to the editor would be an option for &ldquo;grouping&rdquo; blocks into a Cover like what is possible with the Group block.</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, 31 Mar 2021 22:07:52 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Justin Tadlock\";s: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:80:\"WPTavern: First Look at Initial Designs for WordPress’ Block Pattern Directory\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=114531\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:199:\"https://wptavern.com/first-look-at-initial-designs-for-wordpress-block-pattern-directory?utm_source=rss&utm_medium=rss&utm_campaign=first-look-at-initial-designs-for-wordpress-block-pattern-directory\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3268:\"<p>WordPress contributors began <a href=\"https://wptavern.com/wordpress-contributors-discuss-launching-an-official-block-pattern-directory\">discussing</a> the possibility of a block pattern directory in October 2020, an idea that garnered enthusiastic support. The directory would offer a place to browse user-submitted patterns, as well as one-click installation of patterns from the block inserter inside the editor. </p>\n\n\n\n<p>Interface designer Shaun Andrews <a href=\"https://make.wordpress.org/design/2021/03/30/wordpress-org-patterns-directory/\">published</a> the initial designs for the pattern directory yesterday. Patterns will be displayed in a masonry-style grid that can be sorted by category, which works well for pattern thumbnails of varying heights. Users can search the directory and sort by featured, newest, and most popular. </p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<a href=\"https://cloudup.com/cK4jSz1Fx9c\"><img src=\"https://cldup.com/HiaWY_zXIf.gif\" alt=\"Masonry grid\" width=\"1024\" height=\"535\" /></a>\n</div>\n\n\n\n<p>The idea is that a user will be able to copy a single pattern to their clipboard while visiting the directory and paste it directly into the block editor. Users will also be able to &ldquo;favorite&rdquo; patterns from the directory and access them inside the editor.</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<a href=\"https://cloudup.com/czovcau6B_D\"><img src=\"https://cldup.com/OYhRf1SQz9.gif\" alt=\"Copy pattern flow\" width=\"1024\" height=\"757\" /></a>\n</div>\n\n\n\n<p>One of the most exciting aspects of the plan is that anyone will be able to create and submit a pattern without having a lot of technical knowledge. Andrews shared a quick landing page mockup to explain what patterns are and how to submit one. Prospective pattern authors would be able to create a pattern on WordPress.org using a hosted instance of the block editor with a few tweaks specific to describing and categorizing the pattern.</p>\n\n\n\n<div class=\"wp-block-image\"><img /></div>\n\n\n\n<p>Users who submit patterns will have a new &ldquo;My Patterns&rdquo; screen listing all of their patterns, ones they have favorited, information about how many people have favorited their submitted patterns, and status updates for patterns still in review.</p>\n\n\n\n<div class=\"wp-block-image\"><img /></div>\n\n\n\n<p>&ldquo;This is a big opportunity for designers to contribute to the overall WordPress ecosystem without having to know how to code a&nbsp;plugin&nbsp;or a theme,&rdquo; Andrews said. It opens up a new avenue of design contribution that would not have been possible with the same scale of distribution in the days of the previous editor.</p>\n\n\n\n<p>There are still many unanswered questions, such as how &ldquo;featured&rdquo; patterns would be chosen, how drafts work, if the patterns can only include core blocks, how users will browse and manage favorite patterns in the editor, who approves the patterns, how pattern authors can edit existing patterns, and more. If you want to help out on the project, check out the Pattern Directory repository on <a href=\"https://github.com/WordPress/pattern-directory\">GitHub</a>. The work is broken down into smaller projects in the <a href=\"https://github.com/WordPress/pattern-directory/issues\">issues</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, 31 Mar 2021 17:12: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: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:66:\"WPTavern: GoDaddy Pro Will Kick off 2-Day Expand Event on April 27\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=114518\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:177:\"https://wptavern.com/godaddy-pro-will-kick-off-2-day-expand-event-on-april-27?utm_source=rss&utm_medium=rss&utm_campaign=godaddy-pro-will-kick-off-2-day-expand-event-on-april-27\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:5095:\"<p class=\"has-drop-cap\">GoDaddy Pro is launching its first <a href=\"https://www.godaddy.com/pro/expand\">virtual Expand event</a> on April 27. The <a href=\"http://events.godaddy.com/expand\">free-to-attend conference</a> will focus on web professionals and will last until April 28.</p>\n\n\n\n<p>In February, GoDaddy <a href=\"https://wptavern.com/godaddy-launches-the-hub-a-new-site-project-and-client-management-experience-for-web-professionals\">re-launched GoDaddy Pro</a> as a formal sub-brand of the company. The &ldquo;Pro&rdquo; branding was not a new outing. However, it was a fresh take on an old idea. As part of this launch, they introduced a re-engineered interface named the Hub. The experience was geared toward website designers and developers, providing them with a central location to manage their client projects. More than simply a new set of tools, the company created a dedicated branding experience for GoDaddy Pro.</p>\n\n\n\n<p>&ldquo;We are committed to, passionate about, and truly in awe of web designers and developers,&rdquo; said Adam Warner, the Global Field Marketing Sr. Manager at GoDaddy. &ldquo;It has been a pleasure supporting this audience, but it&rsquo;s now our mission to up the ante and deepen our commitment. Our goal with GoDaddy Pro is to empower web pros with a unified tool that helps them create outsize efficiency for their operation, deliver incredible results for their clients, grow their skills and operation, and connect and inspire by fostering community.&rdquo;</p>\n\n\n\n<p>The Expand 2021 event is a continuation of that goal. The target audience is described as &ldquo;web designers and developers who identify as eager side hustlers or website freelancers.&rdquo; The conference&rsquo;s sessions are meant to provide instructions, resources, and connections to help developers grow their businesses.</p>\n\n\n\n<p>The event will begin with an opening keynote from GoDaddy&rsquo;s Aman Bhutani, the CEO; Tara Wellington, the Senior Director of Product Management; and Warner. It will feature eight sessions, split evenly between each day. The event&rsquo;s schedule will fit into a small window between 10 am and 12:30 pm <a href=\"https://www.timeanddate.com/time/zones/pt\">Pacific Time</a> on both days.</p>\n\n\n\n<p>By some conference standards, even virtual ones, this may seem like a small event. However, the tighter focus could be a welcome one for people suffering from <a href=\"https://wptavern.com/wordcamp-us-2020-canceled-due-to-pandemic-stress-and-online-event-fatigue\">online event fatigue</a>. Each session is scheduled to last around 30 minutes.</p>\n\n\n\n<p>The sessions will focus on a wide span of topics like client management, eCommerce, creating a project starter stack, website security, and scaling a freelance business with care plans.</p>\n\n\n\n<h2>The History Behind GoDaddy Pro Expand</h2>\n\n\n\n<p class=\"has-drop-cap\">Spearheading the first Expand conference, Warner avoided talking about target audiences, performance indicators, or budgetary concerns in an internal memo sent throughout GoDaddy. The effort is about creating a series of GoDaddy Pro Expand events globally in the coming months and years that help the community.</p>\n\n\n\n<p>The idea for a conference had been in the making since 2018. Warner described the purpose of GoDaddy Pro, Expand 2021, and meetups as empowering and inspiring the next generation of web designers and developers to deliver for their clients and create self-sustaining freelance businesses.</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>Expand 2021 is, in some way, my Opus for giving back to the community that raised me and giving the new generation a head start in following their own passions. It&rsquo;s the culmination of my years exploring and creating on the internet. My first time on the internet was in 1993. I was in my third year of college, working at Hungry Howie&rsquo;s Pizza in small-town Michigan. A co-worker had some of us to her house, and her boyfriend logged us on to a Bulletin Board System (BBS). We chatted in a dull, orange text late into the night to people around the world.</p><p>I was amazed then, and that sense of wonder and possibility stayed with me as I started to learn HTML and build simple websites a few years later. Then came my discovery of WordPress in early 2005 and the incredible global community of users willing to lift each other up for collective success.</p><p>It was at that moment, I knew I had to find a way to make websites and WordPress my career.</p></blockquote>\n\n\n\n<p>Now, 28 years later, Warner is taking the next step in organizing his first event from scratch along with over 40 others. He wanted to build a conference that was devoid of &ldquo;talking heads touting theoretical advice.&rdquo; Instead, to offer an experience with actionable knowledge that web professionals can use immediately.</p>\n\n\n\n<p>&ldquo;The real purpose of Expand 2021 is to &lsquo;pay it forward&rsquo; by advising and inspiring the next generation of web designers and developers, enabling them to take the next steps in their paths,&rdquo; said Warner.</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, 30 Mar 2021 20:16:19 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Justin Tadlock\";s: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:55:\"WordPress.org blog: So you want to make block patterns?\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=9995\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:70:\"https://wordpress.org/news/2021/03/so-you-want-to-make-block-patterns/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:12967:\"<img width=\"632\" height=\"356\" src=\"https://i2.wp.com/wordpress.org/news/files/2021/03/Block-Patterns.jpg?resize=632%2C356&ssl=1\" alt=\"\" class=\"wp-image-9998\" />\n\n\n\n<p>If you&#8217;ve ever built something for the WordPress block editor — a theme or a plugin — you may have also heard about <strong>block patterns</strong>. </p>\n\n\n\n<p>Looking at the patterns that come bundled with WordPress, I thought it would be nice to dedicate to them a short post. They&#8217;re pretty nice, useful shortcuts when you know them, but there&#8217;s a good chance you may not know what they are or why you might want to use them.</p>\n\n\n\n<h2>What&#8217;s a block pattern?</h2>\n\n\n\n<p>Patterns are&nbsp;<strong>collections of pre-arranged blocks</strong>&nbsp;that can be combined and arranged in many ways making it easier to create beautiful content. They act as a head-start, leaving you to plug and play with your content as you see fit and be as simple as single blocks or as complex as a full-page layout.</p>\n\n\n\n<div class=\"wp-block-image\"><img width=\"632\" height=\"414\" src=\"https://i0.wp.com/wordpress.org/news/files/2021/03/block-library.png?resize=632%2C414&ssl=1\" alt=\"\" class=\"wp-image-10021\" /></div>\n\n\n\n<p>They live in a tab in the block library. You can click or drag and you&#8217;re able to preview them with your site&#8217;s styles.</p>\n\n\n\n<div class=\"wp-block-image\"><img width=\"632\" height=\"413\" src=\"https://i2.wp.com/wordpress.org/news/files/2021/03/block-pattern.png?resize=632%2C413&ssl=1\" alt=\"\" class=\"wp-image-10022\" /></div>\n\n\n\n<p>Basically, a block pattern is just a bunch of blocks put together in advance:</p>\n\n\n\n<pre class=\"wp-block-code\"><code> &lt;!-- wp:group --&gt;\n&lt;div class=\"wp-block-group\"&gt;&lt;div class=\"wp-block-group__inner-container\"&gt;&lt;!-- wp:separator {\"className\":\"is-style-default\"} --&gt;\n&lt;hr class=\"wp-block-separator is-style-default\"/&gt;\n&lt;!-- /wp:separator --&gt;\n&lt;!-- wp:image {\"align\":\"center\",\"id\":553,\"width\":150,\"height\":150,\"sizeSlug\":\"large\",\"linkDestination\":\"none\",\"className\":\"is-style-rounded\"} --&gt;\n&lt;div class=\"wp-block-image is-style-rounded\"&gt;&lt;figure class=\"aligncenter size-large is-resized\"&gt;&lt;img src=\"https://blockpatterndesigns.mystagingwebsite.com/wp-content/uploads/2021/02/StockSnap_HQR8BJFZID-1.jpg\" alt=\"\" class=\"wp-image-553\" width=\"150\" height=\"150\"/&gt;&lt;/figure&gt;&lt;/div&gt;\n&lt;!-- /wp:image --&gt;\n&lt;!-- wp:quote {\"align\":\"center\",\"className\":\"is-style-large\"} --&gt;\n&lt;blockquote class=\"wp-block-quote has-text-align-center is-style-large\"&gt;&lt;p&gt;\"Contributing makes me feel like I\'m being useful to the planet.\"&lt;/p&gt;&lt;cite&gt;— Anna Wong, &lt;em&gt;Volunteer&lt;/em&gt;&lt;/cite&gt;&lt;/blockquote&gt;\n&lt;!-- /wp:quote --&gt;\n&lt;!-- wp:separator {\"className\":\"is-style-default\"} --&gt;\n&lt;hr class=\"wp-block-separator is-style-default\"/&gt;\n&lt;!-- /wp:separator --&gt;&lt;/div&gt;&lt;/div&gt;\n&lt;!-- /wp:group --&gt;</code></pre>\n\n\n\n<p>That&#8217;s also how you create them: just use the block editor to configure a smattering of blocks to your liking, and the hard part&#8217;s over.</p>\n\n\n\n<h2>How do I get them in the block library?</h2>\n\n\n\n<p>There&#8217;s <a href=\"https://developer.wordpress.org/block-editor/developers/block-api/block-patterns/\">more documentation in the handbook</a>, but what it boils down to is this:</p>\n\n\n\n<pre class=\"wp-block-code\"><code>&lt;?php \n/*\nPlugin Name: Quote Pattern Example Plugin\n*/\n\nregister_block_pattern(\n \'my-plugin/my-quote-pattern\',\n array(\n \'title\' =&gt; __( \'Quote with Avatar\', \'my-plugin\' ),\n \'categories\' =&gt; array( \'text\' ),\n \'description\' =&gt; _x( \'A big quote with an avatar\".\', \'Block pattern description\', \'my-plugin\' ),\n \'content\' =&gt; \'&lt;!-- wp:group --&gt;&lt;div class=\"wp-block-group\"&gt;&lt;div class=\"wp-block-group__inner-container\"&gt;&lt;!-- wp:separator {\"className\":\"is-style-default\"} --&gt;&lt;hr class=\"wp-block-separator is-style-default\"/&gt;&lt;!-- /wp:separator --&gt;&lt;!-- wp:image {\"align\":\"center\",\"id\":553,\"width\":150,\"height\":150,\"sizeSlug\":\"large\",\"linkDestination\":\"none\",\"className\":\"is-style-rounded\"} --&gt;&lt;div class=\"wp-block-image is-style-rounded\"&gt;&lt;figure class=\"aligncenter size-large is-resized\"&gt;&lt;img src=\"https://blockpatterndesigns.mystagingwebsite.com/wp-content/uploads/2021/02/StockSnap_HQR8BJFZID-1.jpg\" alt=\"\" class=\"wp-image-553\" width=\"150\" height=\"150\"/&gt;&lt;/figure&gt;&lt;/div&gt;&lt;!-- /wp:image --&gt;&lt;!-- wp:quote {\"align\":\"center\",\"className\":\"is-style-large\"} --&gt;&lt;blockquote class=\"wp-block-quote has-text-align-center is-style-large\"&gt;&lt;p&gt;\"Contributing makes me feel like I\\\'m being useful to the planet.\"&lt;/p&gt;&lt;cite&gt;— Anna Wong, &lt;em&gt;Volunteer&lt;/em&gt;&lt;/cite&gt;&lt;/blockquote&gt;&lt;!-- /wp:quote --&gt;&lt;!-- wp:separator {\"className\":\"is-style-default\"} --&gt;&lt;hr class=\"wp-block-separator is-style-default\"/&gt;&lt;!-- /wp:separator --&gt;&lt;/div&gt;&lt;/div&gt;&lt;!-- /wp:group --&gt;\',\n )\n);\n\n?&gt;</code></pre>\n\n\n\n<p><img src=\"https://s.w.org/images/core/emoji/13.0.1/72x72/1f446.png\" alt=\"?\" class=\"wp-smiley\" /> That&#8217;s a snippet of PHP, which means you can drop it in a WordPress plugin, or perhaps more simply, paste it into the <strong>functions.php</strong> file from your theme. Done:</p>\n\n\n\n<div class=\"wp-block-image\"><img width=\"632\" height=\"430\" src=\"https://i2.wp.com/wordpress.org/news/files/2021/03/Quote.jpg?resize=632%2C430&ssl=1\" alt=\"\" class=\"wp-image-10047\" /></div>\n\n\n\n<p>For patterns that include images, it&#8217;s worth thinking about where those are stored. The <a href=\"https://wordpress.org/themes/tt1-blocks/\">TT1 Blocks theme</a> (which is a fancy name for &#8220;TwentyTwentyOne Blocks&#8221;) stores images in the theme library.</p>\n\n\n\n<h2>Now what?</h2>\n\n\n\n<p>The thing about a block pattern is, as soon as you insert it from the block library, it stops being <em>a cohesive unit</em> — now it&#8217;s just a smattering of blocks, detached from the pattern you created and meant to be customized to your liking. It&#8217;s a <em>shortcut</em>, not a <em>template</em>. That also means you don&#8217;t have to worry about switching themes or deactivating pattern plugins: the blocks you already inserted won&#8217;t go anywhere.</p>\n\n\n\n<p>That being said, if you like this one pattern so much you want to use it again and again, with no customization at all, you can make it into a <a href=\"https://wordpress.org/news/2021/02/gutenberg-tutorial-reusable-blocks/\">reusable block</a>:</p>\n\n\n\n\n\n\n\n<p>Reusable blocks are created, as the name implies, to be reused. The feature is a great way to store small bits of commonly used snippets that you can edit in one place to update in all. &#8220;<strong>Follow me on Twitter</strong>,&#8221; &#8220;<strong>Article series</strong>,<strong>&#8220;</strong> or <strong>&#8220;Subscribe to my podcast&#8221;</strong> are great examples of that.</p>\n\n\n\n<h2>What makes a good block pattern?</h2>\n\n\n\n<p>Patterns, as they ship today, are limited by the features available. If the block editor doesn&#8217;t allow you to customize letter-spacing, your block pattern can&#8217;t either. While the Global Styles project will expand what&#8217;s to blocks, in the meantime, we have to work with the available tools.</p>\n\n\n\n<p>Even then, with the most basic ingredients — color, photography, typography — it is possible to do a lot:</p>\n\n\n\n<div class=\"wp-block-image\"><img src=\"https://lh5.googleusercontent.com/W3RKCu5c7ONKnmuLdChmOhD40iZAFseq30i-qGwqFaq0dPTj_U5b1JXhhRR96-jRvJvKgC8BBZA4p_-EBYF-WoMRPoDLgCX8FG3RIWQhv6zX6-H7xBj4FZGGRm7cl_qdVgRy9G8q\" alt=\"\" />Three columns with images and text<br /></div>\n\n\n\n<div class=\"wp-block-image\"><img width=\"632\" height=\"397\" src=\"https://i0.wp.com/wordpress.org/news/files/2021/03/Media-and-text-with-image-on-the-right-1.png?resize=632%2C397&ssl=1\" alt=\"\" class=\"wp-image-10036\" />Media and text with image on the right</div>\n\n\n\n<p>I designed these patterns to potentially land in WordPress core, which all have a few properties in common:</p>\n\n\n\n<h3><strong>They share a theme.</strong></h3>\n\n\n\n<p>You can think of a pattern as a section of a website: it is meant to be part of a whole, and so it works best when it can exist in the context of other patterns that share the same theme. There are a few sharing a Nature theme in the patterns above, a few sharing an Art theme, and others sharing an Architecture theme. When seen together, it becomes easier to see how you might be able to piece together multiple pages of your site, one page at a time.</p>\n\n\n\n<ul class=\"blocks-gallery-grid\"><li class=\"blocks-gallery-item\"><img width=\"632\" height=\"406\" src=\"https://i0.wp.com/wordpress.org/news/files/2021/03/Large-header-with-text-and-a-button.png?resize=632%2C406&ssl=1\" alt=\"\" class=\"wp-image-10033\" /></li><li class=\"blocks-gallery-item\"><img width=\"632\" height=\"405\" src=\"https://i2.wp.com/wordpress.org/news/files/2021/03/Media-text-with-image-on-the-right.png?resize=632%2C405&ssl=1\" alt=\"\" class=\"wp-image-10034\" /></li></ul>\n\n\n\n<h3><strong>They share a minimalist color palette.</strong></h3>\n\n\n\n<p>By being parts of a whole, patterns will inevitably land in a context that uses different colors. With a reduced color palette, there&#8217;s both a better chance of fitting in and less to customize to make it just right.</p>\n\n\n\n<ul class=\"blocks-gallery-grid\"><li class=\"blocks-gallery-item\"><img width=\"632\" height=\"535\" src=\"https://i2.wp.com/wordpress.org/news/files/2021/03/Heading-and-a-paragraph.jpg?resize=632%2C535&ssl=1\" alt=\"\" class=\"wp-image-10042\" /></li><li class=\"blocks-gallery-item\"><img width=\"632\" height=\"271\" src=\"https://i0.wp.com/wordpress.org/news/files/2021/03/Media-text-in-a-full-height-container.jpg?resize=632%2C271&ssl=1\" alt=\"\" class=\"wp-image-10043\" /></li></ul>\n\n\n\n<h3><strong>The best patterns <strong>do things you might have not done otherwise</strong>.</strong></h3>\n\n\n\n<p>Whether that&#8217;s images offset to create a unique silhouette, or just using less visible features (like fixed positioning in the Cover block), it&#8217;s a way to surface creativity.</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p><em>Tip: You can use any block in your patterns, including blocks that came from a plugin. And if that block is in the block directory, it will prompt you to install it with one click if it&#8217;s missing from your self-hosted WordPress:</em></p></blockquote>\n\n\n\n\n\n\n\n<h2>Here’s a plugin for you</h2>\n\n\n\n<pre class=\"wp-block-code\"><code>&lt;?php \n/*\nPlugin Name: Quote Pattern Example Plugin\n*/\n\nregister_block_pattern(\n \'my-plugin/my-quote-pattern\',\n array(\n \'title\' =&gt; __( \'Quote with Avatar\', \'my-plugin\' ),\n \'categories\' =&gt; array( \'text\' ),\n \'description\' =&gt; _x( \'A big quote with an avatar\".\', \'Block pattern description\', \'my-plugin\' ),\n \'content\' =&gt; \'&lt;!-- wp:group --&gt;&lt;div class=\"wp-block-group\"&gt;&lt;div class=\"wp-block-group__inner-container\"&gt;&lt;!-- wp:separator {\"className\":\"is-style-default\"} --&gt;&lt;hr class=\"wp-block-separator is-style-default\"/&gt;&lt;!-- /wp:separator --&gt;&lt;!-- wp:image {\"align\":\"center\",\"id\":553,\"width\":150,\"height\":150,\"sizeSlug\":\"large\",\"linkDestination\":\"none\",\"className\":\"is-style-rounded\"} --&gt;&lt;div class=\"wp-block-image is-style-rounded\"&gt;&lt;figure class=\"aligncenter size-large is-resized\"&gt;&lt;img src=\"https://blockpatterndesigns.mystagingwebsite.com/wp-content/uploads/2021/02/StockSnap_HQR8BJFZID-1.jpg\" alt=\"\" class=\"wp-image-553\" width=\"150\" height=\"150\"/&gt;&lt;/figure&gt;&lt;/div&gt;&lt;!-- /wp:image --&gt;&lt;!-- wp:quote {\"align\":\"center\",\"className\":\"is-style-large\"} --&gt;&lt;blockquote class=\"wp-block-quote has-text-align-center is-style-large\"&gt;&lt;p&gt;\"Contributing makes me feel like I\\\'m being useful to the planet.\"&lt;/p&gt;&lt;cite&gt;— Anna Wong, &lt;em&gt;Volunteer&lt;/em&gt;&lt;/cite&gt;&lt;/blockquote&gt;&lt;!-- /wp:quote --&gt;&lt;!-- wp:separator {\"className\":\"is-style-default\"} --&gt;&lt;hr class=\"wp-block-separator is-style-default\"/&gt;&lt;!-- /wp:separator --&gt;&lt;/div&gt;&lt;/div&gt;&lt;!-- /wp:group --&gt;\',\n )\n);\n\n?&gt;</code></pre>\n\n\n\n<p>In case you want to make patterns, this example plugin features two of the patterns you saw above. Drop it in your plugins folder and they should show up in your block library.</p>\n\n\n\n<div class=\"wp-block-image\"><img width=\"632\" height=\"966\" src=\"https://i1.wp.com/wordpress.org/news/files/2021/03/Captura-de-ecra-2021-03-30-as-11.00.39.png?resize=632%2C966&ssl=1\" alt=\"\" class=\"wp-image-10062\" />Installed pattern under &#8220;Text&#8221; Category</div>\n\n\n\n<p>Feel free to tweak it, customize it, and make it yours. It’s GPL, after all!</p>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p><em>Thank you <a href=\"https://profiles.wordpress.org/joen/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>joen</a> for the help writing this post.</em></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 30 Mar 2021 17:01: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:14:\"Beatriz Fialho\";s: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:112:\"WPTavern: Open Collective Launches Funds to Help Companies Streamline Donations to Multiple 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:30:\"https://wptavern.com/?p=114400\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:269:\"https://wptavern.com/open-collective-launches-funds-to-help-companies-streamline-donations-to-multiple-open-source-projects?utm_source=rss&utm_medium=rss&utm_campaign=open-collective-launches-funds-to-help-companies-streamline-donations-to-multiple-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:4141:\"<p>Open Collective has launched <a href=\"https://blog.opencollective.com/funds-for-open-source/\">Funds</a>, a new funding infrastructure for funneling contributions to open source projects. Any open source project can receive contributions from a Fund, even those that are not listed on Open Collective due to having their own foundation or working with another fiscal host. The new feature was added to Open Collective&rsquo;s existing non-profit funding platform that serves more than 2,500 projects. </p>\n\n\n\n<p>Funds were designed to mitigate the friction between corporations and open source projects, cutting out the excessive bureaucracy that can sometimes stifle funding for smaller projects. Companies can use the feature to support multiple projects that are crucial to their business efforts and underlying tech.</p>\n\n\n\n<p>&ldquo;Funds facilitates a relationship between maintainers and organizations on their own terms,&rdquo; Open Collective co-founder Pia Mancini said. &ldquo;No contracts, no promises, no agendas. We take on the work of administrating payments to projects and of ensuring companies have what they need in their procurement processes.&rdquo;</p>\n\n\n\n<p>Traditionally, if you wanted to work on an open source project full time, you would most likely need to be sponsored by a company. Although WordPress&rsquo; &ldquo;<a href=\"https://wordpress.org/five-for-the-future/\">Five for the Future</a>&rdquo; campaign isn&rsquo;t perfect, it has brought some stability, enabling the project to drive important efforts forward even in leaner times of contribution from unpaid volunteers. Some open source projects aren&rsquo;t able to thrive this way, especially those that are categorized as simple utilities.</p>\n\n\n\n<p>Critical dependencies can sometimes be grossly underfunded when supported by only a handful of individuals who may not have steady employment to buoy their maintainership efforts. The <a rel=\"noreferrer noopener\" href=\"http://heartbleed.com/\" target=\"_blank\">Heartbleed Bug</a> that was disclosed in 2014 put a spotlight on the immense economic challenges of funding open source work. In the aftermath of this global fiasco, the tech industry turned its attention towards brainstorming different initiatives that might create a more healthy ecosystem.</p>\n\n\n\n<p>Open Collective&rsquo;s Funds feature aims to make &ldquo;working for an open source project a legitimate alternative to a career working for a for-profit corporation.&rdquo; Prior to launching the new feature, the platform quietly tested a number of Funds with Airbnb, Indeed, Salesforce, and other companies with successful outcomes for maintainers.</p>\n\n\n\n<p>&ldquo;Airbnb&rsquo;s investment in webpack has enabled groundbreaking advancements in web compiler technology, paved the way for the last 2 major versions, and enabled us to devote entire teams to ecosystem management, CLI, docs, and infrastructure,&rdquo; webpack core team member Sean Larkin said. </p>\n\n\n\n<p>Airbnb received so many reports of the positive impact of its Fund that the company decided to expand its open source sustainability commitment by 50% to $150,000.</p>\n\n\n\n<p>&ldquo;Donations from Airbnb have made it possible for ESLint to pay core contributors for work,&rdquo; ESLint creator Nicholas Zakas said. &ldquo;As a result, contributors are able to spend more time pushing forward large projects that weren&rsquo;t possible when we relied solely on volunteering.&rdquo;</p>\n\n\n\n<p>As open source projects are becoming less self-contained and more interdependent, maintaining the health of the overall ecosystem is a priority. When smaller utilities that everyone depends on are underfunded, it can have a ripple effect that slows down progress throughout the vast web of projects that rely on the dependency. </p>\n\n\n\n<p>Open Collective&rsquo;s Funds feature is one solution that helps companies streamline their donations and keep track of their contributions to multiple projects in one place. Companies interested in creating a new Fund can get in touch with the organization via its <a href=\"https://www.oscollective.org/contact\">contact form</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, 30 Mar 2021 06:39:15 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:76:\"WPTavern: Creating Tiled, Masonry, and Other Image Layouts With Meow Gallery\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=114473\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:193:\"https://wptavern.com/creating-tiled-masonry-and-other-image-layouts-with-meow-gallery?utm_source=rss&utm_medium=rss&utm_campaign=creating-tiled-masonry-and-other-image-layouts-with-meow-gallery\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4546:\"<p class=\"has-drop-cap\">I am uncertain of how I first came across the <a href=\"https://wordpress.org/plugins/meow-gallery/\">Meow Gallery</a> WordPress plugin. It was a pinned tab in my browser for a while, but it has recently become one of those projects that I keep coming back to. I delight in the imagery of the Meow Apps brand, created by Japan-based software developer Jordy Meow. It has the sort of fun and artistic visuals that are often missing in the WordPress business ecosystem. This creativity also comes across in the Meow Apps plugins.</p>\n\n\n\n<p>The problem with WordPress gallery plugins is that I find a new one I want to use every other week. It is a bit of an obsession. There are so many different options that it is tough to grow comfortable with a solution before finding something new and shiny to tinker with.</p>\n\n\n\n<p>Such is the case with Meow Gallery. From the simplicity of its options to the range of layouts that the plugin provides, it has found its way onto my ever-growing list of favorite gallery-related plugins.</p>\n\n\n\n<p>I also prefer the decoupled, modular nature of what Meow Apps is doing with its plugins. Meow Gallery keeps a tight focus on the gallery layout itself. Users can select an image lightbox/overlay extension separately. <a href=\"https://wordpress.org/plugins/meow-lightbox/\">Meow Lightbox</a> is recommended, of course. However, both are developed to work alongside third-party gallery or lightbox plugins. It is the sort of building-block solution that more developers in the community should embrace, ultimately offering end-users more freedom.</p>\n\n\n\n<p>Meow Gallery is straightforward to use. It works similarly to the core Gallery block. When first adding images, users can drag-and-drop them directly into it or select from their media library. From that point, the experiences begin to diverge.</p>\n\n\n\n<img />Tiled gallery with 10px gutter.\n\n\n\n<p>Instead of selecting the number of columns, whether to crop, or the image size, the Meow Gallery block automatically handles this based on the type of layout chosen. Options may change based on the layout too. The following are available:</p>\n\n\n\n<ul><li>Tiles</li><li>Masonry</li><li>Justified</li><li>Square</li><li>Cascade</li><li>Carousel (pro only)</li><li>Map (pro only)</li></ul>\n\n\n\n<p>The block also offers a handful of basic animations, link options, and more. However, the gutter setting provides more control over the output. The gutter is the horizontal and vertical space between images. Users can choose between 0 and 100. Gutter spacing is the one option from the plugin that WordPress should adopt, allowing theme authors to opt-into a default and users to customize.</p>\n\n\n\n<img />Square-layout gallery with no gutter.\n\n\n\n<p>The plugin also has <a href=\"https://meowapps.com/plugin/meow-gallery/\">commercial features</a>, but they are value-added upsells instead of necessary functionality. The pro version includes extras like more layouts, new animations, and infinite scrolling for galleries with many images.</p>\n\n\n\n<p>The one off-putting issue with Meow Gallery is that it creates a custom block. Having already seen solutions from other plugin authors that extend the default Gallery block, I was hoping this plugin would go in the same direction. Extending the core block makes it easier for end-users to switch gallery plugins at any point. However, users can transform Meow Gallery blocks into Gallery blocks and vice versa.</p>\n\n\n\n<p>Keep in mind that the WordPress Gallery block is also undergoing drastic changes. Currently, the plan is to make it more of a container block that houses nested Image blocks. By not extending the core block, plugin users will miss out on some of the advantages this change brings. Of course, the plugin developer could follow suit and add the same features to the project.</p>\n\n\n\n<p>Meow Gallery relies on the WordPress <code>gallery</code> shortcode. Therefore, it will continue working regardless of whether users deactivate the plugin in the future. As a fallback, it is not a perfect solution. Users of the block editor would likely rather have it revert to the core Gallery block &mdash; the shortcode and block are not remotely the same. However, it is a bit of a compromise between showing a working gallery or nothing at all.</p>\n\n\n\n<p>I suspect the reliance on the shortcode is for historical reasons. Meow Gallery existed in the pre-block era. However, the developer has managed to keep up with the times, offering support for both the block and classic editor.</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, 29 Mar 2021 21:26:37 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Justin Tadlock\";s: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:55:\"WordPress.org blog: WP Briefing: How WordPress Improves\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:52:\"https://wordpress.org/news/?post_type=podcast&p=9980\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"https://wordpress.org/news/2021/03/how-wordpress-improves/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:10224:\"<p>In this episode, <a href=\"https://profiles.wordpress.org/chanthaboune/\">Josepha Haden Chomphosy</a> explores the WordPress release process. Tune in and learn the phases of a release and catch this week’s small list of big things.</p>\n\n\n\n<p><em><strong>Have a question you&#8217;d like answered? You can submit them to <a href=\"mailto:wpbriefing@wordpress.org\">wpbriefing@wordpress.org</a>, either written or as a voice recording.</strong></em></p>\n\n\n\n<h2><strong>Credits</strong></h2>\n\n\n\n<ul><li>Editor:<a href=\"https://profiles.wordpress.org/dustinhartzler/\"> Dustin Hartzler</a></li><li>Logo:<a href=\"https://profiles.wordpress.org/beafialho/\"> Beatriz Fialho</a></li><li>Production:<a href=\"https://profiles.wordpress.org/mkaz/\"> </a><a href=\"https://profiles.wordpress.org/cbringmann/\">Chloé Bringmann</a></li><li>Song: Fearless First by Kevin MacLeod</li></ul>\n\n\n\n<h2>References</h2>\n\n\n\n<ul><li><a href=\"https://wordpress.org/news/2021/03/esperanza/\">WordPress 5.7 “Esperanza” </a></li><li><a href=\"https://en.wikipedia.org/wiki/Esperanza_Spalding\">Esperanza Spalding</a></li><li><a href=\"https://wordpress.org/news/2021/02/gutenberg-tutorial-reusable-blocks/\">Gutenberg Tutorial: Reusable Blocks</a></li><li><a href=\"https://make.wordpress.org/test/\">make.wordpress.org/test</a></li><li><a href=\"https://make.wordpress.org/core/handbook/contribute/git/\">GitHub repository </a></li></ul>\n\n\n\n<h2>Transcript</h2>\n\n\n\n<span id=\"more-9980\"></span>\n\n\n\n<p>Hello, everyone, and welcome to the WordPress briefing, the podcast where you can catch quick explanations of some of the ideas behind the WordPress open source project and the community around it, as well as get a small list of big things coming up in the next two weeks. I&#8217;m your host, Josepha Haden Chomphosy. Here we go!</p>\n\n\n\n<p>All right, so last week, we wrapped up and shipped the WordPress 5.7 release. The release team this time around was smaller than we&#8217;ve had in the last couple of years. By the numbers, it looks really good: 66 enhancements or feature requests went in, 127 bugs were fixed, and seven versions of a Gutenberg plugin were merged and backported. If you use WordPress, you are probably aware that we have new releases throughout the year, but you probably don&#8217;t know much about the release process. There&#8217;s not really a reason to know unless you&#8217;re actively contributing to a release. For those interested in knowing more about how we improve WordPress, this week&#8217;s exploration is for you.</p>\n\n\n\n<p>We&#8217;re gonna take a look at what goes into WordPress releases and just kind of zoom our way in from the highest level. At the highest level, there are three major WordPress releases a year, plus the minor releases, plus Gutenberg releases. So if you&#8217;re following current WordPress work and future WordPress work, that&#8217;s going to get you to probably around <strong>30 releases a year</strong>. If we zoom in one level to the release itself, a single release of WordPress takes four to five months from start to the day that we ship, and an additional four to six weeks on support and translations, and minor releases after that. If you&#8217;re looking from my vantage point, you&#8217;ll see that WordPress releases have essentially five parts, some of which happen kind of simultaneously.&nbsp;</p>\n\n\n\n<p>The first part is planning and includes the project lead, lead developers, design; groups like that. The second phase is the creation phase when we&#8217;re actually building the things that have to go into the CMS that involves the design, core, editor, mobile, and other teams. Then there&#8217;s this phase that I like to refer to as the distribution phase. This is mostly done by the teams that make sure that WordPress is widely distributable; the polyglots team work on translations, accessibility does some work, docs make sure that everything is documented, and training, of course, gets things ready for when we have to be able to tell people how to use the release.&nbsp;</p>\n\n\n\n<p>Then there is the fourth phase; I really don&#8217;t think they go sequentially or in a waterfall format. The fourth-ish phase that I include, and that I tend to see, is this extending and iteration phase. It&#8217;s the phase where we see our theme authors and our plugin authors, folks who are doing support, show up and help us to make sure that WordPress is available not only widely but broadly to ensure that their audiences as theme authors and plugin authors are covered in the features that they need based on what they are using WordPress for. The fifth phase is the part of our communication that involves the community team, especially marketing, WordPressTV, and learn.wordpress.org. Basically, anyone who&#8217;s showing up to make sure that we all share what happened in the release, the features that are coming, and how that affects the users is involved in that particular phase. So five big phases of what happens over those four to five months, and then for the month or month and a half afterward.&nbsp;</p>\n\n\n\n<p>If we zoom in a bit more on the creation phase, each release has people who lead the work and coordinate contributor efforts during the course of the release. For any given release, hundreds of people contribute and receive credit for moving the WordPress project forward. Okay, hold on a second. Let&#8217;s pump the brakes and zoom in a bit on that. Hundreds of people work on every major release for a project that powers over 40% of the web that feels like a small number. But for the people who process the contributions in preparation for release, it&#8217;s actually pretty substantial. For every release, there is a small team of leaders who asked the hard questions. Is this a usable feature? Does this make WordPress better overall? And, of course, is this ready to ship?&nbsp; Some of those leaders, a smaller subset of even the leaders that we have already, are committers who actually prep and merge patches to the CMS; they don&#8217;t do all the work to create a design or write all the code. This tiny group of people processes hundreds and hundreds of bug fixes, improvements, and enhancements that have been submitted over the course of months and sometimes years. As a side note, that whole process is a little smaller, a little faster in the Gutenberg featured plugin, but the basic parts are still there. Alright, so we&#8217;ve zoomed from the big picture way into some of the finer details, and it really looks like any other project cycle. So now, I&#8217;m going to layer in the filter of open source to that process.</p>\n\n\n\n<p>There are a couple of things that make building software in an open source environment so different. The first is that the code is readily available. If you have a basic understanding of the languages, you can see the code, learn from it, and make suggestions about improving it. Second, you consider the user a co-developer in the process, which means that as long as people use your product, they will have opinions on what you shipped. This way of iterating improves WordPress and ties back to one of my favorite open source principles. The idea that with many eyes, all bugs are shallow. To me, that means that with enough people looking at a problem, someone is bound to be able to see the solution.</p>\n\n\n\n<p>This brings us to our community highlight, the segment where I share a note about contributors who have helped others along the way or a WordPress success story. This week&#8217;s highlight is from Nok in our Bangkok community. When asked to help her find her way into the WordPress community, she said, “@shinichiN who started the WordPress community in Bangkok and encouraged me to contribute, and also @mayukojpn has introduced me to the WP community team to join as a deputy. “ Thank you for sharing those two inspiring people with us. And if you, listener, have any stories that you would like to share of your own WordPress success or people that you have been so grateful to help you find your way in the project, you can feel free to email those to me at <a href=\"mailto:wpbriefing@wordpress.org\">wpbriefing@wordpress.org</a>.</p>\n\n\n\n<p>That brings us to our final segment of the WP Briefing, the small list of big things. I only have three things to share with you this week. The first one is that about a week ago, we had our first release of 2021. It was the WordPress 5.7 release, titled Esperanza. If you have not yet seen it, go ahead and update your website or check with your host and make sure that they have updated you if you&#8217;re on a managed host. And then take a listen to the artists that it&#8217;s named after.&nbsp;</p>\n\n\n\n<p>The second thing that I want you to keep an eye out for is wordpress.org/news. We are starting a new series of content that gets at the heart of some of Gutenberg’s basic parts; there’s a lot of change coming up in the next few releases of WordPress. And the most important thing to me is that you understand what we&#8217;re trying to change and where those changes are primarily taking place. There will be a couple of tutorials that go up there over the course of the of the next few weeks. The third item on the small list of big things is to remind you of our call for testing. As I mentioned earlier in the podcast, the users of any open source software are the code developers; the software built is supposed to make your life and work easier. When you test things and find interactions that can use a little bit of refinement or features that are not working exactly as expected, it&#8217;s incredibly helpful for us to have that information to always make sure that we&#8217;re solving problems instead of accidentally creating them. If you want to participate in the Current call for testing, you can head over to make.wordpress.org/test. Or, if you&#8217;ve been doing your own testing, you can also submit any bugs you have found in the GitHub repo, which I will share in the show notes below. So that, my friends, is your small list of big things. Thank you for tuning in today for the WordPress briefing. I’m your host, Josepha Haden Chomphosy. I&#8217;ll see you again in a couple of 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:\"Mon, 29 Mar 2021 15:15: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: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: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:79:\"WordPress.org blog: WP Briefing: Talking Full Site Editing with Matías Ventura\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"https://wordpress.org/news/?post_type=podcast&p=10013\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:81:\"https://wordpress.org/news/2021/03/talking-full-site-editing-with-matias-ventura/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:31292:\"<p>In this episode, Josepha is joined by Matías Ventura, also known as “the spark behind the vision of Gutenberg.” Josepha and Matías discuss full site editing and answer your questions, from “is full site editing a standalone plugin?” to “will full site editing break my current site?”</p>\n\n\n\n<p><em><strong>Have a question you&#8217;d like answered? You can submit them to <a href=\"mailto:wpbriefing@wordpress.org\">wpbriefing@wordpress.org</a>, either written or as a voice recording.</strong></em></p>\n\n\n\n<h2><strong>Credits</strong></h2>\n\n\n\n<ul><li>Editor:<a href=\"https://profiles.wordpress.org/dustinhartzler/\"> Dustin Hartzler</a></li><li>Logo:<a href=\"https://profiles.wordpress.org/beafialho/\"> Beatriz Fialho</a></li><li>Production:<a href=\"https://profiles.wordpress.org/mkaz/\"> </a><a href=\"https://profiles.wordpress.org/cbringmann/\">Chloé Bringmann</a></li><li>Song: Fearless First by Kevin MacLeod</li></ul>\n\n\n\n<h2>References</h2>\n\n\n\n<ul><li><a href=\"https://wordpress.org/themes/tt1-blocks/\">Twenty Twenty One theme</a></li><li><a href=\"https://centroamerica.wordcamp.org/2021/\">Word Camp Central America </a></li><li><a href=\"https://make.wordpress.org/core/2021/03/12/q2-listening-hours-april-7th-2021/\">2021 Second Quarter Listening Hours with Matt Mullenweg and Josepha Haden Chomphosy</a></li></ul>\n\n\n\n<h2>Transcript</h2>\n\n\n\n<span id=\"more-10013\"></span>\n\n\n\n<p>Hello, everyone, and welcome to the WordPress briefing, the podcast where you can catch quick explanations of some of the ideas behind the WordPress open source project and the community around it, as well as get a small list of big things coming up in the next two weeks. I&#8217;m your host, Josepha Haden Chomphosy. Here we go!</p>\n\n\n\n<p>Josepha [0:41]: This month, we have a bonus briefing, so I&#8217;ve asked my dear friend and colleague <a href=\"https://profiles.wordpress.org/matveb/\">Matías Ventura</a> to join me. Matías was recently called “the spark behind the vision of Gutenberg.” With full site editing coming our way in 202, I asked if he would join me for a quick Q&amp;A. Welcome, Matías.&nbsp;</p>\n\n\n\n<p>Matías [0:56]: Hello, hello! Thanks for inviting me. It&#8217;s a pleasure to be here.</p>\n\n\n\n<p>Josepha [1:00]: Well, I&#8217;m delighted to have you. And I think that we have a lot of excellent questions. All right, so Matías, we actually ended up with questions in about three different groupings. And so I&#8217;m going to start with the “what is it about full site editing,” sorts of questions that people had. We&#8217;re gonna work our way into “what are we doing with it?” and then “how are we planning on getting this out the door?” Then, a couple of big picture questions that people asked. We&#8217;re just gonna leap right in this full site editing part of the Gutenberg plugin, or is it a standalone plugin?</p>\n\n\n\n<p>Matías [1:39]: Okay, we&#8217;ll start with the basics. Full site editing is part of the Gutenberg plugin right now. I think it&#8217;s important to mention that full site editing is like an umbrella for several projects that we&#8217;re working on. They are all aiming to bring blocks into more parts of your site so that editing becomes easier and more expressive, and so on. So full site editing right now encompasses adding a ton of new blocks. I think we have around 20 new blocks coming in, including navigation query, site, title, logo, etc. There&#8217;s also the interface to interact with templates outside of the content; that&#8217;s another big part of the full site editing project. We also have a lot of new design tools included, many of these have been released in previous major releases, but they still comprise a strong part of what full site editing is. We also have something called Global Styles, which aims to allow people to configure the visual aspects of blogs across the entire site, not just on any individual blog. And of course, then there&#8217;s a whole layer of how we utilize these tools. It can get complex because there are many layers and projects that need to come together. So yeah, all of these are accessible through the Gutenberg plugin right now.</p>\n\n\n\n<p>Josepha [3:07]: Yeah. So it&#8217;s not a standalone plugin. If you wanted to check out full site editing the site editor experience as it is now, you would just have to make sure you had the Gutenberg plugin on your site. Right?</p>\n\n\n\n<p>Matías: Yes, correct.</p>\n\n\n\n<p>Josepha:&nbsp; So a couple of the questions related to this are how exactly do I enable it on my site? And what is the easiest and safest way to try this on my site? And I think the answer is, is right in there. It&#8217;s in the Gutenberg plugin. And so if you have that plugin, you don&#8217;t need the testing plugin or anything else to make that work, right?</p>\n\n\n\n<p>Matías [3:51]:&nbsp; No, you like, you might need to install a theme like Twenty Twenty One blocks that unlock some of these new interfaces that we just talked about. Like other of these pieces are available for anything. But some of these, like the interface to edit templates, right now only talk with things that know how to express their desire.&nbsp;</p>\n\n\n\n<p>Josepha [4:14]: And I think we have less than 10 themes right now that do that, but I&#8217;ll leave some links to at least 2021 blocks in the show notes. And then, if there are another one or two themes that I can find, I can add those in there as well.&nbsp;</p>\n\n\n\n<p>So you have to have the Gutenberg plugin; you have to have a theme that works with that site editor kind of experience. And then you&#8217;re safe to try everything out. It shows up in your left toolbar just like any other thing, like if you were working with plugins, or if you were adding a post or anything else, right?</p>\n\n\n\n<p>Matías [4:51]: Yes, correct. And so, some of these details are being worked on right now. Like how and where you access things, and so on. These things are subject to change, but right now, you have this site editor beta in the sidebar when both you have the plugin running and a theme that&#8217;s capable.</p>\n\n\n\n<p>Josepha [5:10]: Yeah. Excellent note. If you are running this on a production website, I would recommend you not do that unless you are very, very good with WordPress. It&#8217;s a really safe and easy thing to test and try out. But because it is still in beta, I recommend always putting it on a test site. I have a couple of different test sites that I run on myself. Another question that I had was, “will full site editing slow down my site?” And I think we have some refreshed performance tests coming out about that. And maybe they&#8217;ll be out by the time we publish this podcast.</p>\n\n\n\n<p>Matías [5:49]: Yeah, I mean, like the performance has been one of the major focuses for the whole project. In many cases, it should speed up things because we&#8217;re like, I think one of the big pieces that these projects bring into the picture, especially for themes, is that it allows only the necessary assets to be loaded on the front end. For example, if for a given page, there are, I don&#8217;t know, 10-15 blocks being used, you would only get the CSS and scrapes and so on related to those blocks. This can cut down on a lot a ton of CSS that themes used to end queue on a side, particularly if you were trying to customize many widgets and so on, like a lot of themes have the full styles or multiple widgets, even third party plugins, and so on. So one of the advantages of having this blog system is that we can know at the time of rendering what blogs are being used and only load those assets.&nbsp;</p>\n\n\n\n<p>Josepha [6:50]: Excellent. Another big question that we have is, “does full site editing work with the classic editor? And does it work with other builders?” I think that&#8217;s a really big answer if you&#8217;re going to get super deep into it. But I think that the short answer is yes, it does. Is that fair?</p>\n\n\n\n<p>Matías [7:08]: Yeah, I don&#8217;t think it touches a bit on that full site editing is not like a single thing. There are multiple projects around it. So again, like the template editor that only deals with blogs, it doesn&#8217;t have a lot to do with a classic editor. But the classic editor use for both doesn&#8217;t change anything at all; like the same way that when the block editor was introduced, it didn&#8217;t change how you could still write posts in the classic editor. You will still be able to do that.</p>\n\n\n\n<p>Josepha [7:41]: And if you are brand new to WordPress person, or, I mean, I guess at this point, you don&#8217;t have to be super brand new. If you&#8217;re fairly new to WordPress person and have no idea what we&#8217;re talking about when we say the classic editor, you don&#8217;t really have to worry about it either. You don&#8217;t have to go and find out what that is; the block editor that you have right now works perfectly for what you&#8217;re trying to do. So if you don&#8217;t know what I mean when I say classic editor, don&#8217;t worry about chasing it down either.&nbsp;</p>\n\n\n\n<p>I think that this last question we accidentally answered earlier, but I&#8217;m going to go ahead and ask it anyway since I received it. “I keep hearing that you can use the site editor with the 2021 theme. But I don&#8217;t seem to be able to. What am I missing?” I think the answer is that there&#8217;s the Twenty Twenty One theme shipped with the WordPress release 5.6. And then there is the Twenty Twenty One blocks theme; those are two different themes. The link to the Twenty Twenty One block theme is going to be in our show notes this time around. And so, if you have been trying to use the full site editor with Twenty Twenty One and not succeeding, try the link to the one below. And I bet that that will work for you.</p>\n\n\n\n<p>Matías [8:50]: Yes, that&#8217;s correct.&nbsp;</p>\n\n\n\n<p>Josepha [8:51]: All right, excellent. Well, that brings us kind of into our second set of questions, which is about how we are doing it. The first one that folks have is “will full site editing be on by default in the next release. In this context, the next release is WordPress 5.8. But I think it&#8217;s a safe question to ask if full site editing will be on by default in the release that it&#8217;s planned for.</p>\n\n\n\n<p>Matías [9:15]: Yeah, and for this, I need to go back to the same principle of many projects because there are many pieces of full site editing, and we have been merging them in major releases, particularly like the blocks and the design tools. There are more coming in that we want to make accessible as soon as possible. The full experience that requires a theme to opt-in to templates using blogs won’t be by default; it requires a specific theme running. A lot of these details we&#8217;re still like determining exactly what projects are ready to be merged and so on. But yeah, if you have a theme right now that works the way you want, it doesn&#8217;t change anything there. If anything, it adds some more capabilities and more customization tools, and so on. And the theme can also regulate how much they want to incorporate.</p>\n\n\n\n<p>Josepha [10:13]: Matías, you&#8217;ve mentioned a couple of times in this podcast so far like this is a really complex and really complicated part of this work. And just for anyone out there who&#8217;s either encountering Gutenberg or full site editing or this podcast for the first time, I think a tiny bit of context that&#8217;s worth having here is that Matías and I have been working on this together in various capacities for like, five years. And Matías has probably been working on this for practically a decade. So, when we say that this is a really complicated problem, and when we say that this is a complex set of issues that we&#8217;re working with like, it is all that we have been thinking about for I want to say at least the last three or four years, but certainly it&#8217;s all that we have been trying to untangle for quite a bit of time before that as well. So we don&#8217;t take it lightly when we&#8217;re like, “this is complicated;” we mean it. It&#8217;s really complicated. And we&#8217;re trying our hardest over here as WordPress.&nbsp;</p>\n\n\n\n<p>The next big question, since we&#8217;re all stuck in the “it&#8217;s very complicated,” part of things is the question, “will this update break my current site?” Like, if I have a site that is updated and ready, and it&#8217;s exactly as I wanted it to be, and it took me two years to get there will full site editing, whichever release it&#8217;s in. Currently, 5.8 is what we&#8217;re planning for. Will that break anything on my site as I know it right now?</p>\n\n\n\n<p>Matías [11:44]: No, not at all. One of the major things that the WordPress team, the WordPress community, always cares so much about, never to break things. Many of these things are stepping stones that you can adopt, as we&#8217;ve talked about full site editing. But for example, we also have a few concurrent projects around the widget screen and the navigation screen that are meant to bring blocks into existing interfaces. So again, the theme doesn&#8217;t need to change, and a lot of care is being put into making this more like you&#8217;re unlocking new features, and nothing really breaks or falls apart.</p>\n\n\n\n<p>Josepha [12:23]: This update, like all the other updates, should have minimal, minimal impact on what you have to actively fix on your site. Every once in a while, a bug is gonna get by. We can&#8217;t say that we&#8217;re 100% perfect with not breaking things. But also, we always and I and I know that we&#8217;re planning on this for our remaining releases for the rest of the year. At the very least, I can&#8217;t imagine we&#8217;d ever change it. But after every major release, we always make a plan to have a minor release within the next one or two weeks. Because we know that a broken thing on a site is really incredibly impactful, even if you&#8217;re only 1% of the sites that had that happen to it. And so I think that&#8217;s true in this case, too. And getting that feedback back from all of the people who are actually using WordPress is the thing that makes us be able to kind of move quickly when we do see those problems.&nbsp;</p>\n\n\n\n<p>One of the questions that we have been getting is, “can I see a live preview without saving the changes that I made?” When I got this question, I didn&#8217;t actually understand it. And so I went and looked at a site without the Gutenberg plugin on it, and then a site with the Gutenberg plugin on it. And of course, on sites without Gutenberg, without the block editor, without full site editing, when you are looking to preview, you have the option to open up your preview in a new window. And you don&#8217;t have that with Gutenberg because it&#8217;s supposed to be a true WYSIWYG editor. A true what you see is what you get, editor. I think that the answer to this is, yes, you can see a live preview without actually saving the changes on the front end of your site. But you don&#8217;t actually have to reload anything. You don&#8217;t have to open it up in a new window. You don&#8217;t have to, like, actively click “please show me a preview” because what you see in your editing screen should be what you see at the end of your app as an end-user.</p>\n\n\n\n<p>Matías [14:28]: Yeah, that&#8217;s the sort of the main gist to it. Yes, the site editor is built so that it always reflects the front end as truly as possible, so that&#8217;s one layer. Also, the preview tools should allow you to see in different devices like mobile breakpoints, and I don&#8217;t know if they will have breakpoints and stuff like that. There are a lot of things in the current interface that is just not enabled. There are some challenges in the sidebar. Because the site editor is not just focused on a single post, it&#8217;s focused on the entire site. So, there can be many, many changes that need to be shadowed for the site.&nbsp;</p>\n\n\n\n<p>If you&#8217;re changing the site title, some of the global styles, aspects, and so on need to be orchestrated. So, to see in the previewing new window, there are some challenges there to integrate. Again, the interface is not final yet; a lot of these things are still being tweaked and improved. There are many things from the regular post editor that are not enabled yet. But they will be enabled. So yeah, it&#8217;s a, I guess, it&#8217;s not a simple thing to answer. Because, again, the idea of previewing the site that&#8217;s core to the whole project is that you&#8217;re always interacting in the same way that when you&#8217;re in the customizer, you&#8217;re seeing the preview all the time. That&#8217;s the main scope of this project,</p>\n\n\n\n<p>Josepha [15:54]: Excellent. Changes like that changes to your workflow can be really hard to get your mind around, especially if part of that existing workflow was there to create some confidence in what you&#8217;re seeing with your users. And so I understand. Now that I&#8217;ve researched that question a bit, I see where that&#8217;s coming from. Based on existing workflows and existing patterns that we have for ourselves in WordPress, will we need to have a theme to use the full site editor?</p>\n\n\n\n<p>Matías [16:33]: I think we&#8217;ve already covered some of these. And again, they are tools that can work on any existing theme. There is other stuff that needs space-specific themes to opt-in into these tools, like blog templates and so on.</p>\n\n\n\n<p>Josepha [16:50]: Yes, I think the question that we have next, because I see that the literal next question I have is actually something we have covered; just because we&#8217;re being pretty conversational about it, not because anyone already asked the question. So I&#8217;m actually going to skip to the last question of this section that I received. I got this next one via Twitter. The question is, “how do you view the role of themes once full site editing is fully rolled out and all the page elements (content, headers, widgets, footers, etc.) and all the views are managed via blocks and block patterns? Will things become typographic and block styles?”</p>\n\n\n\n<p>Matías [17:28]: I think this is a great question because it goes to the heart of, why are we doing all this. One of the main reasons is to empower users more. WordPress has been democratizing publishing for a while; this is another step into allowing themes to get more customization tools and more control over their site if they want to. I think the recent call for testing has focused on the 404 page, for example. That&#8217;s something that forever has been locked away from users. And it&#8217;s also something that, as a theme developer, and I used to develop themes a long time ago, that was one of the things where you decide what sort of approach you take for the 404 page. Maybe sometimes you want to have something more whimsical. Sometimes you need something more serious. And committing to one when you can have such a diverse and broad user base can be challenging. With these, it becomes as easy as offering a few different patterns for that template. Then the user will always be able to change the copy and modify something. So again, it opens up a lot of these things that used to be locked down. However, from a theme perspective, I think this doesn&#8217;t reduce the theme at all. If anything, it allows the theme to focus less on coding and functions and more on design expression and aesthetics. I don&#8217;t think that would ever be exhausted. That will always remain as diverse as humans are interacting with WordPress. And so it&#8217;s not that I don&#8217;t see it&#8217;s just as like, typographic and block styles. How do you express a template, how do you express the structure, what choices you quote, what choices you make as a theme builder? And of course, there are many degrees of control there. Because a site maintainer may not want the 404 template to be editable, that sort of control will always be present.</p>\n\n\n\n<p>Josepha [19:38]: Yeah. And really fast. I have to add a caveat to a thing that you said in there. For anyone who&#8217;s listening keenly, you may have heard Matías say that the users can update any of the content there &#8211; any of the copy. In this context, we&#8217;re talking about users as in the people who are maintaining the site, not people who are visiting your site. Visitors to your site will not be able to change any copy on your page unless you&#8217;ve done something very interesting with your WordPress site, which is also fine if that&#8217;s what you prefer to do. By default, your visitors can&#8217;t change everything on your website, which is good news, frankly.</p>\n\n\n\n<p>So I&#8217;ve got one logistics question, which I&#8217;m happy to take. And then one is kind of a big picture question that I also got from Twitter. “What about the classic editor block; what is going to happen to that? And when will we know?” So ages and ages ago, before COVID? I think so. Probably maybe a couple of years ago, Matt said that the classic editor plugin would be supported through the end of 2021. And that is still the case; there will be active support on that through the end of 2021. After that, it will not be actively supported anymore. It won&#8217;t be removed from any place that you can get access to right now. In a “this is the end of its lifecycle” sort of way, we just won&#8217;t have anyone who is currently committed to maintaining that plugin anymore. So that&#8217;s what&#8217;s happening at the end of the year. And yeah, at the end of 2021. The big question that we have is, “why is full site editing being so rushed?” I think this is a bit of a loaded question.</p>\n\n\n\n<p>Matías [21:32]: Yeah, I think I think it&#8217;s still a fair question, though. I think we&#8217;re dealing with two things here. And one is ensuring that we release things in the best state possible. And also, some of the urgency is to offer tools that we know that people lack right now and that could really benefit from. Making that determination is very tricky. The full site editing project has been in the works for the last couple of years. If we count the initial phase of Gutenberg, that&#8217;s four to five years. We&#8217;ve been doing many calls for testing, which I think have been super useful to catch issues and reflect as a community on where things are going; how do we integrate with these? How do we use it? What are the shortcomings? What do we need to do? Based on all of these, we&#8217;ll continue to make decisions on when things become ready. We&#8217;re not committed to releasing something that&#8217;s not in a good state. And I think we will always be very careful about that. There are these two competing senses of the urgency &#8211; of getting some of these tools out, and because it also benefits from the feedback loops. I always say that, in many ways, the initial phase of Gutenberg, to me, is not finished. We took the initial two years to do the 5.0 release, the initial block editor, and so on. But, it&#8217;s still being improved at a very fast pace, among all the recent major releases improvements to the editor were included; that will continue to be the case. In many ways, phase one is not finished. And the moment we choose to release some of these tools or editing tools, it won&#8217;t be finished either. They will need to continue to grow, mature, and incorporate a lot of the feedback. Even the things that the ecosystem is building around. I&#8217;ve seen a few themes already that are incorporating a blank canvas template so that you can use them in some pages and take over and do everything with blocks. So even the community and ecosystem as a whole is also sort of paving the way for what needs to come.</p>\n\n\n\n<p>Josepha [24:06]: I think from my perspective, and of course, I&#8217;m on the people side of things, the communication side of things, the logistics side of things; I have a frequently a very different view from what a lot of other folks are seeing. And so from my side of things, I have to say, I&#8217;m communicating about this change in a really broad way, which has not been happening since 2019 when we started the work. We&#8217;ve been communicating broadly with the WordPress community, but not with everybody who uses WordPress. So, I think that for a lot of people, this looks like a project that we started really actively working on in the last six months or so. And now we&#8217;re just racing toward a finish line. I think that there&#8217;s, there&#8217;s not been a lot of awareness of everything that&#8217;s gone into it. And so, on the one hand, it feels a little less rushed to me knowing the full length of the history on this. But also, as you said, I really think that this gets a bunch of tools to people who otherwise have not been able to accomplish these things in WordPress or otherwise. I am so anxious to get something to people who really can benefit from this change the most. And it&#8217;s the nature of the open source, right that like, one, as long as you have users, you&#8217;re going to have stuff you have to fix in your software. So we&#8217;re never really, really going to be done with this; there&#8217;s not going to be like a done point of WordPress. And the second thing is, I think it&#8217;s generally true that you don&#8217;t really start getting full user feedback until after you have launched your major release. I think that we see that a lot in open source software; you can bring in as many people as you think you can in your user tests heading up to it. And in your accessibility tests. And, in general, quality assurance tests. You can bring in a lot of people and still not have gotten the full understanding of the various niche use cases that your users will bring to you. Because at this point, we&#8217;re like 40% of the web. And that means that we&#8217;re serving this majority collection of increasingly minority voices and niche voices in the space. And so, a little bit I feel a sense of urgency; I feel a bit of anxiousness about trying to get this out there for one, to get the tools in the hands of the people who can benefit the most from them, but also so that we can start really getting the full stress test of this software out and get that feedback in so that we can really build something responsive to what our users need our long tail, “anyone who ever uses WordPress ever,” definition of users. And so, that&#8217;s why I feel a sense of urgency around it. Even though you know, as I said, you and I have been working on this for like five years, and you&#8217;ve been working on it for a decade or something. I actually don&#8217;t know how long it&#8217;s been worked on.</p>\n\n\n\n<p>Matías [27:35]: Now that makes me feel a bit old.</p>\n\n\n\n<p>Josepha [27:40]: Nobody makes Matías feel old. He is a lovely, wonderful colleague. Sorry, Matías, If I made you feel old.</p>\n\n\n\n<p>Matías [27:46]: No, that&#8217;s totally fine. I also want to add that full site editing is not like a single toggle that&#8217;s going to drop into a major release. So I think that&#8217;s important to consider, I think this entire year is going to see a lot of these tools being, and sometimes the sort of the end-user is not the, again, the site maintainer. Still, you can also be the theme developer; I think there are many tools that would be empowering for theme developers to use. Again, we mentioned there are like five to ten themes, block themes right now. That needs to grow a lot, and that only grows through these sorts of feedback loops. And the theme community pushing things forward and seeing where things can lead to. I&#8217;m very excited about the pattern directory integration because I think that can also combine with blog themes in very powerful ways. Imagine if, I don&#8217;t know many of these patterns that are very common on the web and very needed, that if we can refine them together with a second community and make them available across themes, you can combine a header from one theme with a content of another; all these sorts of mixtures could happen. All of this needs exploration, the creativity of the entire community, and so on. In that sense, getting all these tools, even if it doesn&#8217;t immediately change anything for like the site itself, starts to unlock a lot of things.&nbsp;</p>\n\n\n\n<p>Josepha [29:27]: I&#8217;m going to take a bit of your answer from there and tie it all the way back to your first answer that we had when you joined me today. And say, I think you&#8217;re absolutely right. We have a set of users in our theme authors and our plugin developers as well that we desperately need to get looking at this set of tools. I hope that what we are shipping in the first iteration of this serves as an opportunity for all of those theme authors and agency owners, plugin authors, WordPress site configurers freelancers. Like, I really hope that this puts it into a really accessible, easy-to-access space for them so that they can do those experiments based on what they know their users need the most. They are the group that has the closest access to site maintainers. And what they need compared to, for instance, me or a potential you like we have a lot of information, you and I, we do a lot of tests, we have a strong sense of what is needed at the moment, but we don&#8217;t have as a close connection that our theme and agency and plugin folks all have. And so that&#8217;s another part of why I&#8217;m so excited to get this out in the current iteration of it.</p>\n\n\n\n<p>Josepha [31:04]: That was a lot of questions in a little bit of time. This is going to be officially my longest WordPress briefing. Matías, I am so glad that you were able to join me today. And I think that everyone&#8217;s going to be really, really excited to hear your answers to these questions.</p>\n\n\n\n<p>Matías [31:23]: Thank you for having me.</p>\n\n\n\n<p>Josepha [31:25]: All right, my friends. That brings us into our small list of big things. I&#8217;m going to skip our community highlight today just because we had a slightly longer word press briefing in our bonus iteration today. But the small list of big things. The first thing is WordCamp Central America is coming up on April 15; there is a registration link in the show notes that you can access your tickets with. I recommend that you go; we&#8217;ve got a lot of excellent speakers coming up there and a lot of good content and good training and learning for y&#8217;all. The second thing is that Matt Mullenweg and I have listening hours coming up with the community in the first week of April. I&#8217;ll add the link to register for those in the show notes as well; it&#8217;s just a few minutes for you all to stop by, check-in, see what&#8217;s going on, and share some celebrations or concerns with us. And I hope that I see you there.&nbsp;</p>\n\n\n\n<p>So that my friends is your small list of big things. Thank you for joining in today for the WordPress briefing. I&#8217;m your host, Josepha Haden Chomphosy. I&#8217;ll see you again in a couple of 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:\"Mon, 29 Mar 2021 15:05:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Chloe Bringmann\";s: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:96:\"Gutenberg Times: New Gallery Block, Convert Blocks, Business News and more Weekend Edition #164\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://gutenbergtimes.com/?p=17347\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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://gutenbergtimes.com/gallery-block-convert-blocks-business-weekend-edition-164/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:21372:\"<p>Howdy, </p>\n\n\n\n<p>Despite the new spread of the coronavirus in Europe and the problems around vaccinations, I am quite hopeful to be able to travel again in the second half of the year and visit the homeland after two years. Patience is a virtue. </p>\n\n\n\n<p>Today, we have a full roster of content for developers, content creators, theme authors, implementers and contributors. Again I am awed by the astonishing creativity in the WordPress space! </p>\n\n\n\n<p>Remember, you don&#8217;t need to read it all in one sitting. It&#8217;ll keep the whole week! </p>\n\n\n\n<p><strong>Yours ?<br />Birgit </strong></p>\n\n\n\n\n\n<div class=\"wp-block-sortabrilliant-guidepost\"><ul><li><a href=\"https://gutenbergtimes.com/feed/#0-full-site-editing-themes\">Full-Site Editing + Themes</a><ul><li><a href=\"https://gutenbergtimes.com/feed/#1-refactor-of-the-gallery-block-using-image-blocks\">Refactor of the Gallery Block, using image blocks. </a></li></ul></li><li><a href=\"https://gutenbergtimes.com/feed/#2-block-editor-for-content-creators\">Block editor for content creators</a></li><li><a href=\"https://gutenbergtimes.com/feed/#3-should-you-switch-to-the-block-editor\">Should you switch to the block editor? </a></li><li><a href=\"https://gutenbergtimes.com/feed/#4-business-news-around-gutenberg\">Business News around Gutenberg</a><ul><li><a href=\"https://gutenbergtimes.com/feed/#5-extendify\">Extendify</a><ul><li><a href=\"https://gutenbergtimes.com/feed/#6-plugins-now-owned-by-extendify\">Plugins now owned by Extendify: </a></li><li><a href=\"https://gutenbergtimes.com/feed/#7-people-behind-extendify\">People behind Extendify</a></li></ul></li><li><a href=\"https://gutenbergtimes.com/feed/#8-go-daddy\">GoDaddy</a></li></ul></li><li><a href=\"https://gutenbergtimes.com/feed/#9-developing-for-the-block-editor\">Developing for the block editor</a></li><li><a href=\"https://gutenbergtimes.com/feed/#10-meta-charset-utf-8-word-press-events\">&lt;meta charset=&#8221;utf-8&#8243;>WordPress Events</a></li></ul></div>\n\n\n\n<h2 id=\"0-full-site-editing-themes\">Full-Site Editing + Themes</h2>\n\n\n\n<p>WPTavern has a podcast again! The WordPress Juke Box. For the inaugural episode host Nathan Wrigley interviewed. Among other things, <strong>Josepha Haden Chomphosy</strong> talked about her benchmark for the Go/NoGo decision to merge Full-Site Editing into core for the 5.8 release in July. Find additional thoughts in my post: <a href=\"https://gutenbergtimes.com/full-site-editing-mvp-can-i-build-a-landing-page/\"><strong>Full-site Editing MVP: Can I Build a Landing Page?</strong></a></p>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p><strong>Anne McCarthy</strong> posted the fourth call for testing: <strong><a href=\"https://make.wordpress.org/test/2021/03/25/fse-program-testing-call-4-building-a-restaurant-themed-header/\">Building a restaurant themed header</a></strong>, with instructions to use columns, navigation block and other features for the header template part. </p>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p>There is a lot of movement on the Gutenberg Repo and the Themes Team keeps a list of relevant issues and discussions for theme developers. <a href=\"https://twitter.com/one_maggie\"><strong>Maggie Cabrera</strong></a> published the round-up post <strong><a href=\"https://make.wordpress.org/themes/2021/03/26/gutenberg-themes-week-of-march-25-2021/\">Gutenberg + Themes: Week of March 25, 2021</a></strong>. It&#8217;s an excellent reading list if you need to dive deeper in the upcoming changes for your theme or your customer. One of the issues caught my eye: the discussion and work around block alignment settings for themes. The current way predates the revamp of the Inner Blocks. There is some work to be done, streamlining the styling for themes. <a href=\"https://github.com/WordPress/gutenberg/issues/29506\">Join the discussion on GitHub</a>. </p>\n\n\n\n\n<p><strong>&nbsp;<a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/\" target=\"_blank\" rel=\"noreferrer noopener\">&#8220;Keeping up with Gutenberg &#8211; Index&#8221;</a>&nbsp;</strong><br />A chronological list of the WordPress Make Blog posts from various teams involved in Gutenberg development: Design, Theme Review Team, Core Editor, Core JS, Core CSS, Test and Meta team from Jan. 2021 on. <a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/keeping-up-with-gutenberg-index-2020/\">The index 2020 is here</a></p>\n\n\n\n\n<h3 id=\"1-refactor-of-the-gallery-block-using-image-blocks\">Refactor of the Gallery Block, using image blocks. </h3>\n\n\n\n<p>If you love to take a sneak peek at the new version of the Gallery block, heed the call for testing by <a href=\"https://twitter.com/glendaviesnz\"><strong>Glen</strong></a><strong><a href=\"https://twitter.com/glendaviesnz\"> </a></strong><a href=\"https://twitter.com/glendaviesnz\"><strong>Davies</strong>:</a> <a href=\"https://make.wordpress.org/core/2021/03/23/gallery-block-update-call-for-testing/\"><strong>Gallery Block Update – Call for Testing</strong></a>. The refactored version is now using single image blocks inside the Gallery block. You can us all the great features: individual links per image, block styles, choices for size and editing capabilities. If you also use a plugin with your site, like CoBlocks, you can still apply the great filters and animations to your gallery block. In his post, Davies walks you through the few features and asked to test all the many facets of the new Gallery block. </p>\n\n\n\n<p>On the WPTavern, <strong>Justin Tadlock</strong> explains how this new change can make a lot of difference on how gallery layouts will be built. Among other ideas, he pictures that among images, a Pull Quote block could be added. <a href=\"https://wptavern.com/refactoring-gutenbergs-gallery-block-to-support-nested-images\">Refactoring Gutenberg’s Gallery Block To Support Nested Images</a>.</p>\n\n\n\n<p>I posted <a href=\"https://make.wordpress.org/core/2021/03/23/gallery-block-update-call-for-testing/#comment-40962\">my first impression as a comment</a> and created <a href=\"https://github.com/WordPress/gutenberg/issues/30250\">a bug report on GitHub</a> when my images lost all their styling when I added the gallery block to a group. I suggested making it possible to apply block styles to more than one image at a time, and that the gallery block / image block copies the respective Alt texts from the media library. Both suggestions made it into the <a href=\"https://github.com/WordPress/gutenberg/projects/56#card-57737540\">project board.</a></p>\n\n\n\n<h2 id=\"2-block-editor-for-content-creators\">Block editor for content creators</h2>\n\n\n\n<p><a href=\"https://twitter.com/liamdempsey\"><strong>Liam Dempsey</strong></a> asked his Twitter followers for recommendation of Block plugins. He collected all the suggestions in this blog post: <strong><a href=\"https://liamdempsey.com/community-recommendations-for-gutenberg-blocks-in-wordpress/\">Community Recommendations for Gutenberg Blocks in WordPress</a>.</strong> </p>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p><strong>Amie Suzan</strong> at at <a href=\"https://twitter.com/virfice\"><strong>Virfice</strong></a> reviewed the <strong>Blocksy Theme and gives 18 <a href=\"https://www.virfice.com/blocksy-wordpress-theme-review/\">Unavoidable Reasons to Build Sites With It</a></strong>. The theme received some attention after Chris Lema revamped his site using the block editor it <a href=\"https://chrislema.com/this-site-now-runs-on-the-blocksy-theme/\">now runs on the Blocksy theme</a>. Justin Tadlock at the WPTavern also found the <a href=\"https://wptavern.com/blocksy-wordpress-theme-provides-a-solid-block-editor-experience\">Blocksy theme to provide a solid block editor experience</a></p>\n\n\n\n<p>? <a href=\"https://wordpress.org/themes/blocksy/\">WPRepo</a> | <a href=\"https://creativethemes.com/blocksy/\">Website</a></p>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p><strong><a href=\"https://twitter.com/andersnoren\">Anders&nbsp;Norén</a></strong> published a new free theme in the WordPress Repository, named <strong>Eskell</strong>, inspired by the Swedish graphic designer&nbsp;Olle Eksell. In his <strong>introduction to the theme</strong>, Andres wrote: &#8220;(&#8230;) <em>the star of the show in Eksell is the archive page, which features a masonry grid of posts and a category filter that updates the grid with posts from the selected category without a hard reload.&#8221;</em> In includes full color settings and dark mode for devices that support it. He continues: <em>&#8220;The Blank Canvas Template hides everything on the page except the blocks you add to the Block Editor content. That gives users the freedom to create entirely custom pages, with whatever blocks they want. It feels like a little preview of what we’ll be able to do once Full Site Editing is merged into WordPress Core.&#8221;</em></p>\n\n\n\n<p> <strong>Justin Tadlock </strong>published a review <a href=\"https://wptavern.com/compatibility-is-not-enough-the-eksell-wordpress-theme-creates-art-with-blocks\">Eksell theme creates art with blocks</a> and <a href=\"https://wptavern.com/eksell-portfolio-theme-now-available-in-wordpress-themes-directory\">a follow-up article</a> on the WPTavern. </p>\n\n\n\n<p>? <a href=\"https://wordpress.org/themes/eksell/\">WPRepo</a> | <a href=\"https://www.andersnoren.se/teman/eksell-wordpress-theme/\">Website</a> | <a href=\"https://andersnoren.se/themes/eksell/\">Demo</a></p>\n\n\n\n<h2 id=\"3-should-you-switch-to-the-block-editor\">Should you switch to the block editor? </h2>\n\n\n\n<p><strong><a href=\"https://twitter.com/bfintal\">Benjamin Intal</a></strong> from Stackable posted <strong><a href=\"https://wpstackable.com/blog/why-you-should-switch-to-the-gutenberg-wordpress-editor/\">Why You Should Switch to the Gutenberg WordPress Editor</a></strong>. He wrote: <em>&#8220;In this article, we enumerate some reasons why the Gutenberg WordPress editor might be your new primary choice for page building. Read on, and we might just convince you to give Gutenberg another shot.&#8221;</em></p>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p>WordPressVIP post takes us <strong><a href=\"https://wpvip.com/case-studies/behind-the-scenes-of-news-uks-rampant-speed-to-value/\">Behind the scenes of News UK’s rampant speed to value</a></strong>. News UK is the powerhouse behind some of the UK’s most famous news, media, and lifestyle brands. Its reach ranges from the highly respected the London Times to the hugely popular Sun. In the more detailed case study, you&#8217;ll learn from the editor&#8217;s perspective how the usage of the block editor has streamlined content production, increased productivity and fosters a culture of innovation between teams. </p>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p>On the WPBuild podcast <strong>A-Z of WordPress</strong> this week, <strong>Nathan Wrigley </strong>and <strong>David Walmsley</strong> tackled the letter <a href=\"https://wpbuilds.com/2021/03/25/222-g-is-for-gutenberg/\"><strong>G &#8211; Gutenberg</strong></a>. If the early controversy in 2018 had you shy away from trying it out, but now you heard so much positive about it, this episode will give you an update on how people are using the block-editor now and what&#8217;s in store for 2021. </p>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p>Let <a href=\"https://twitter.com/allie_nimmons\"><strong>Allie Nimmons</strong></a> of WPBuffs tell you <strong><a href=\"https://wpbuffs.com/why-and-how-to-use-the-wordpress-block-editor/\">Why and How to use the WordPress block editor.</a> </strong> It&#8217;s an excellent introduction and tutorial with dozens of links to learn more. </p>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p>For those of us who are worried about migrating a ton of content from classic editor and short codes to block editor, <a href=\"https://twitter.com/_dsawardekar\"><strong>Darshan Sawardekar</strong></a>, lead web engineer at the web agency 10up, has good news. This week, he announced <a href=\"https://10up.com/blog/2021/convert-to-blocks/\"><strong>the release of the Convert to Blocks plugin.</strong></a> Convert to Blocks converts your content to blocks on the fly and those changes will be saved when you update the post. It&#8217;s not a Bulk Converter, it only converts content once it is opened in the block editor. </p>\n\n\n\n<p>? <a href=\"https://wordpress.org/plugins/convert-to-blocks/\">WPRepo</a> | <a href=\"https://github.com/10up/convert-to-blocks\">GitHub</a></p>\n\n\n\n<p>A couple of months ago, the WPTavern published the article <strong><a href=\"https://wptavern.com/ask-the-bartender-how-to-bulk-convert-classic-wordpress-posts-to-blocks\">How To Bulk Convert Classic WordPress Posts To Blocks?</a></strong>. Justin Tadlock listed two more plugins for the purpose: <a href=\"https://bulkconverttoblocks.com/\">Bulk Convert to Blocks</a> (still in development) and <a href=\"https://wordpress.org/plugins/bulk-block-converter/\">Bulk Block Converter</a>, last updated a year ago. We used it at a recent project and it worked very well. </p>\n\n\n\n<h2 id=\"4-business-news-around-gutenberg\">Business News around Gutenberg</h2>\n\n\n\n<h3 id=\"5-extendify\">Extendify</h3>\n\n\n\n<p><a href=\"https://wptavern.com/extendify-acquires-editor-plus-introduces-commercial-templates-in-its-plan-to-improve-block-editing\">WPTavern has the scoop: <em>Extendify</em> recently aquired plugin EditorPlus</a> and joined forces with Munir Kamal and his team around Gutenberg Hub. Back in November 2020, they also acquired Redux Framework, and hired its creator, <a href=\"https://twitter.com/dovyp\">Dōvy Paukstys</a>, part-time. </p>\n\n\n\n<h4 id=\"6-plugins-now-owned-by-extendify\">Plugins now owned by Extendify: </h4>\n\n\n\n<ul><li><a href=\"https://wordpress.org/plugins/editorplus/\">Editor Plus,</a></li><li><a href=\"https://wordpress.org/plugins/acf-blocks/\">ACF Blocks</a>,</li><li><a href=\"https://wordpress.org/plugins/forms-gutenberg/\">Gutenberg Forms</a>,</li><li><a href=\"https://wordpress.org/plugins/redux-framework/\">Redux Framework</a>,</li><li><a href=\"https://wordpress.org/plugins/ml-slider/\">MetaSlider</a>,&nbsp;</li><li><a href=\"https://wordpress.org/plugins/block-slider/\">Block Slider</a>. </li></ul>\n\n\n\n<h4 id=\"7-people-behind-extendify\">People behind Extendify</h4>\n\n\n\n<p><a href=\"https://twitter.com/chrislubkert\"><strong>Chris Lukbert</strong></a>&nbsp;and&nbsp;<a href=\"https://twitter.com/arturgrabo\"><strong>Artur Grabowski</strong></a>, co-founders of <a href=\"https://extendify.com/\">Extendify</a>, are former Automattic employees. So is <strong><a href=\"https://twitter.com/karmatosed\">Tammie Lister,</a></strong> Extendify&#8217;s Head of Design. Lister has been a major WordPress contributor on the Gutenberg block-editor as co-lead since the beginning in 2017. She participated in one of our first Live Q &amp; As in <a href=\"https://gutenbergtimes.com/episode-6-creating-gutenberg-live-q-a-w-leads-tammie-lister-joen-asmussen-and-matias-ventura/\">November 2018 </a>with her Gutenberg co-leads Joen Asmussen and Matias Ventura. You can also read more about Lister on <a href=\"https://heropress.com/essays/discovering-your-place/\">HeroPress: Discovering Your Place</a>. </p>\n\n\n\n<h3 id=\"8-go-daddy\">GoDaddy</h3>\n\n\n\n<p>GoDaddy is sponsoring <a href=\"https://twitter.com/Mamaduka\"><strong>George Mamadashvili</strong></a> to contribute on the WordPress Gutenberg project full-time. Mamadashvili was one of the developers behind the cool blocks published under the brand of SortaBrilliant in 2018 and 2019. Recently, he released <a href=\"https://wordpress.org/plugins/toggles/\">Toggles</a>, an accordion block for FAQs, and other use cases. You can also use it to hide spoilers in Movie or Book reviews. </p>\n\n\n\n<h2 id=\"9-developing-for-the-block-editor\">Developing for the block editor</h2>\n\n\n\n<p><strong><a href=\"https://twitter.com/mattwatsoncodes\">Matt Watson</a></strong> published his 5th tutorial <a href=\"https://wholesomecode.ltd/guides/create-customizer-panel-wordpress-gutenberg-components/\">Create a Customizer Panel using Gutenberg Components</a> for developers. You should read his previous posts before tackling this one. </p>\n\n\n\n<ul><li><a href=\"https://wholesomecode.ltd/guides/creating-plugin-wordpress-gutenberg/\">Creating a Plugin for the Block Editor</a></li><li><a href=\"https://wholesomecode.ltd/guides/options-settings-data-wordpress-gutenberg/\">Using Options to Store Data in the Block Editor</a>&nbsp;</li><li><a href=\"https://wholesomecode.ltd/guides/entry-points-wordpress-create-block-script/\">Add Entry Points to the Create-Block Script</a></li><li><a href=\"https://wholesomecode.ltd/guides/create-settings-page-wordpress-gutenberg-components/\">Create a Settings Page using Gutenberg Components</a></li></ul>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p>On <strong>WordPressTV</strong> you&#8217;ll find <strong>Chris van Patten</strong>&#8216;s <a href=\"https://wordpress.tv/2020/04/02/chris-van-patten-the-ultimate-beginners-guide-to-the-gutenberg-data-api/\">The Ultimate Beginner’s Guide to the Gutenberg Data&nbsp;API</a>. The Data API is how you get data in and out of Gutenberg, track changes across blocks, and execute events around the editor.</p>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p>The <strong>WordCamp India</strong> presentation by <strong><a href=\"https://twitter.com/gziolo\">Grzegorz &#8220;Greg&#8221; Ziółkowski</a> <a href=\"https://www.youtube.com/watch?v=YQwHsk27HMQ\">Block</a></strong><a href=\"https://www.youtube.com/watch?v=YQwHsk27HMQ\"><strong> Development with scaffolding</strong></a> helps you get started building a single block plugin with the <a href=\"https://www.npmjs.com/package/@wordpress/create-block\">create-block-script</a>. </p>\n\n\n\n<p></p>\n\n\n\n\n<p><strong><a href=\"https://gutenbergtimes.com/need-a-zip-from-master/\">Need a plugin .zip from Gutenberg&#8217;s master branch?</a></strong><br />Gutenberg Times provides daily build for testing and review. <br />Have you been using it? Hit reply and let me know.</p>\n\n\n\n<p><img alt=\"GitHub all releases\" src=\"https://img.shields.io/github/downloads/bph/gutenberg/total?style=for-the-badge\" /></p>\n\n\n\n\n<h2 id=\"10-meta-charset-utf-8-word-press-events\">WordPress Events</h2>\n\n\n\n<p><strong>April 6, 2021 9 am EDT / 14:00 UTC</strong><br /><a href=\"https://www.youtube.com/watch?v=jAIlY3lTAos\"><strong>WPCafe: Building the Twenty Twenty-One</strong> </a>with Caroline Nymark and Mel Dwan-Choyce, live on YouTube</p>\n\n\n\n<p><strong>April 6, 2021 9 am EDT / 14:00 UTC</strong><br /><a href=\"https://www.youtube.com/watch?v=jAIlY3lTAos\"><strong>WPCafe: Building the Twenty Twenty-One</strong> </a>with Caroline Nymark and Mel Dwan-Choyce, live on YouTube</p>\n\n\n\n<p><strong>April 15, 2021 6:30 pm EDT / 23:30 UTC</strong><br /><strong><a href=\"https://www.meetup.com/SF-WordPress-Users/events/277019024/\">South Florida Mega Meetup</a></strong> &#8220;New Site Builder Edition&#8221;</p>\n\n\n\n<p><strong>April 15 &#8211; 17, 2021</strong><br /><a href=\"https://centroamerica.wordcamp.org/2021/\" target=\"_blank\" rel=\"noreferrer noopener\">WordCamp Centroamérica 2021</a></p>\n\n\n\n<p><strong>April 27 and 28th</strong><br /><a href=\"https://www.godaddy.com/pro/expand\"><strong>Expand 2021</strong></a> &#8211;&nbsp;a virtual event hosted by GoDaddy that brings the web design and developer community together to share ideas and experiences, make connections and support each other.</p>\n\n\n\n<p><strong>May 24 &#8211; 27. 2021</strong><br /><strong><a href=\"https://wordsesh.com/\" target=\"_blank\" rel=\"noreferrer noopener\">WordSesh 2021</a> </strong><br /><a href=\"https://wordsesh.com/speak/\">Speaker submissions are </a>due on Monday! (March 29th)! </p>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" id=\"block-828c0dab-dbd1-4313-9d2c-1d1d3aa9bc87\" />\n\n\n\n<p id=\"block-7cb87457-965b-4235-ab43-168b3a78f4ee\">On the<a href=\"https://wpcalendar.io/online/\">&nbsp;<strong>Calendar for WordPress Online Events</strong></a> you&#8217;ll find a list of the upcoming WordPress Meetups, around the world, including WooCommerce, Elementor, Divi Builder and Beaver Builder meetups.</p>\n\n\n\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p class=\"has-text-align-left\"><strong>Don&#8217;t want to miss the next Weekend Edition? </strong></p>\n\n\n\n<form class=\"wp-block-newsletterglue-form ngl-form ngl-portrait\" action=\"https://gutenbergtimes.com/feed/\" method=\"post\"><div class=\"ngl-form-container\"><div class=\"ngl-form-field\"><label class=\"ngl-form-label\" for=\"ngl_email\"><br />Type in your Email address to subscribe.</label><div class=\"ngl-form-input\"><input type=\"email\" class=\"ngl-form-input-text\" name=\"ngl_email\" id=\"ngl_email\" /></div></div><button class=\"ngl-form-button\">Subscribe</button><p class=\"ngl-form-text\">We hate spam, too and won&#8217;t give your email address to anyone except Mailchimp to send out our Weekend Edition</p></div><div class=\"ngl-message-overlay\"><div class=\"ngl-message-svg-wrap\"></div><div class=\"ngl-message-overlay-text\">Thanks for subscribing.</div></div><input type=\"hidden\" name=\"ngl_list_id\" id=\"ngl_list_id\" value=\"26f81bd8ae\" /><input type=\"hidden\" name=\"ngl_double_optin\" id=\"ngl_double_optin\" value=\"yes\" /></form>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_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, 27 Mar 2021 20:30:55 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Birgit Pauli-Haack\";s: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:75:\"WPTavern: WordPress to Drop Support for IE11 in Upcoming 5.8 or 5.9 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:30:\"https://wptavern.com/?p=114416\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:195:\"https://wptavern.com/wordpress-to-drop-support-for-ie11-in-upcoming-5-8-or-5-9-release?utm_source=rss&utm_medium=rss&utm_campaign=wordpress-to-drop-support-for-ie11-in-upcoming-5-8-or-5-9-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:3258:\"<p>In early March, WordPress contributors began discussing the possibility of <a href=\"https://wptavern.com/wordpress-considers-dropping-support-for-ie-11-after-usage-falls-below-1\">dropping support for IE11</a> in the near future after usage fell below ~1%. This week, the discussion&rsquo;s facilitator, H&eacute;ctor Prieto, <a href=\"https://make.wordpress.org/core/2021/03/25/discussion-summary-dropping-support-for-ie11/\">confirmed</a> the majority of participants are in agreement to move forward and set a timeline for discontinuing support. Contributors are now considering either the 5.8. or 5.9 release.</p>\n\n\n\n<p>&ldquo;The argument for dropping in 5.8 is to realize the change and improvement quicker, while others are inclined to wait until 5.9 to provide a longer window between the official announcement and the effective date,&rdquo; Prieto said. The final call is up the the 5.8 release team, which has not yet been identified.</p>\n\n\n\n<p>The release scope and schedule hinges on whether or not the <a href=\"https://make.wordpress.org/updates/2021/03/12/full-site-editing-pre-merge-overview/\">April go/no-go conditions</a> are met for including full-site editing in the merge for 5.8 (July 2021) or 5.9 (December 2021). Teams for 5.8 will be finalized in April/May, and they will decide how to proceed for discontinuing IE11.</p>\n\n\n\n<p>Jb Audras suggested that if 5.8 release leads elect to drop support for IE11, he could work with other contributors to update the BrowseHappy notice in one of the upcoming minor versions.</p>\n\n\n\n<p>&ldquo;Even if the BrowseHappy notice can be updated independently from&nbsp;Core&nbsp;releases, I think it&rsquo;s better to update alongside a release, to give better visibility to this change,&rdquo; Audras said.</p>\n\n\n\n<p>Microsoft 365 apps and services will no longer support IE11 <a href=\"https://techcommunity.microsoft.com/t5/microsoft-365-blog/microsoft-365-apps-say-farewell-to-internet-explorer-11-and/ba-p/1591666\">beginning August 17, 2021</a>. Drupal recently went through a similar process of deciding to drop IE11 support with the upcoming Drupal 10 release, anticipated in June 2022. Those who have to use IE11 retain the option to remain on Drupal 9&rsquo;s LTS release until the end of 2023. Participants in the <a href=\"https://www.drupal.org/project/drupal/issues/3155358\">discussion</a> cited many of the same considerations now facing WordPress contributors.</p>\n\n\n\n<p>Matt Mullenweg <a href=\"https://make.wordpress.org/core/2021/03/04/discussion-dropping-support-for-ie11/#comment-40870\">commented</a> on the preliminary discussion to suggest giving IE11 users a path forward if they land on wp-admin using an unsupported browser: </p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>Supportive of dropping support, and if someone visits on an explicitly dropped browser like IE11 showing them a friendly message saying why wp-admin&nbsp;is not accessible and next steps they can take.</p></blockquote>\n\n\n\n<p>The technical implementation is being discussed in the <a href=\"https://core.trac.wordpress.org/ticket/48743\">ticket</a> Riad Benguella created to discourage IE11 usage and WordPress&rsquo; projects and teams will begin examining the practical implications of dropping support.</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, 26 Mar 2021 23:32:33 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:95:\"WPTavern: 10up Creates Classic Post Migration Route With Its Convert to Blocks WordPress Plugin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=114406\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:235:\"https://wptavern.com/10up-creates-classic-post-migration-route-with-its-convert-to-blocks-wordpress-plugin?utm_source=rss&utm_medium=rss&utm_campaign=10up-creates-classic-post-migration-route-with-its-convert-to-blocks-wordpress-plugin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3803:\"<p class=\"has-drop-cap\">Yesterday, 10up officially announced <a href=\"https://10up.com/blog/2021/convert-to-blocks/\">Convert to Blocks</a>, a WordPress plugin for transforming classic posts into blocks. The goal is to provide users with a safe migration route for old content while removing the burdens of other options in the space.</p>\n\n\n\n<p>I briefly mentioned this plugin in an <a href=\"https://wptavern.com/ask-the-bartender-how-to-bulk-convert-classic-wordpress-posts-to-blocks\">article covering bulk conversion</a> in the Ask the Bartender series. However, I could not recommend it to most users because it was <a href=\"https://github.com/10up/convert-to-blocks\">hosted on GitHub</a>, a site that is geared toward developers. With it now officially in the WordPress plugin directory, it is a much more user-friendly option.</p>\n\n\n\n<p>Most conversion options either convert posts in bulk or through a manual process, such as the user clicking a button. Bulk converters can be problematic at a large scale simply because there is no reliable way for users to check the success of each post&rsquo;s conversion to blocks. Of course, users could check these posts individually, but that is impractical when dealing with more than a few dozen posts.</p>\n\n\n\n<p>Bulk converters are also done so in conjunction with a database backup. It is sensible to do this when altering large amounts of content at once just to be on the safe side.</p>\n\n\n\n<p>&ldquo;We saw a space for a third way &mdash; a solution that eliminates editors stumbling upon Classic blocks and needing to know how to convert them, while also holding back on content transformation until content needs to be modified &mdash; at which point it is also, typically, checked again on the front end of the site,&rdquo; <a href=\"https://10up.com/blog/2021/convert-to-blocks/\">wrote Darshan Sawardekar</a>, a 10up lead web engineer, in the announcement.</p>\n\n\n\n<p>&ldquo;That&rsquo;s where the idea for Convert to Blocks came into play. It began as a creative engineering solution to mitigate risk and improve content mapping. Its success inspired the development and public release of the plugin to help others facilitate safe content migrations to the WordPress block editor.&rdquo;</p>\n\n\n\n<p>10up&rsquo;s solution is a bit of a middle ground. It only converts a post when a user enters the editing screen for it. From that point, the user can check whether the conversion looks correct, fix any problems if they arise, and save the post.</p>\n\n\n\n<img />Converted gallery post.\n\n\n\n<p>Essentially, it works the same as the default convert-to-blocks options in WordPress without the manual step.</p>\n\n\n\n<p>For many users, this is the ideal solution. Because classic content works the same as it always has on the front end, it is unnecessary to convert it unless the need to edit the post also arises.</p>\n\n\n\n<p>Convert to Blocks also adds a new column to the manage posts screen named &ldquo;Editor.&rdquo; It lists whether the post content was created with either the block or classic editor, providing users with an at-a-glance look without checking posts individually.</p>\n\n\n\n<img />Additional &ldquo;Editor&rdquo; column on the manage posts screen.\n\n\n\n<p>Like other plugins, Convert to Blocks uses the core transformation feature, which is an imperfect solution. Depending on the content of the post, the conversion will sometimes throw an error. That is why bulk solutions are often problematic. With this plugin, users will know immediately upon editing a post if there is an issue.</p>\n\n\n\n<p>Given the plugins available today for converting classic posts to blocks, this would be my top choice. It focuses on transforming to blocks where it matters &mdash; during the editing process &mdash; and removes some manual work for the user.</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, 26 Mar 2021 16:01:52 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Justin Tadlock\";s: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:103:\"WPTavern: Free Software Community Condemns Richard Stallman’s Reinstatement to FSF Board of Directors\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=114253\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:245:\"https://wptavern.com/free-software-community-condemns-richard-stallmans-reinstatement-to-fsf-board-of-directors?utm_source=rss&utm_medium=rss&utm_campaign=free-software-community-condemns-richard-stallmans-reinstatement-to-fsf-board-of-directors\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:7505:\"<p>GPL author Richard Stallman <a href=\"https://streamable.com/nzthxn\">announced</a> this week that he has rejoined the board of the Free Software Foundation (FSF), which he established in 1985, and is not planning to resign a second time:</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>&ldquo;I have an announcement to make. I&rsquo;m now on the Free Software Foundation Board of Directors once again. We were working on a video to announce this with, but that turned out to be difficult, we didn&rsquo;t have experience doing that sort of thing so it didn&rsquo;t get finished but here is the announcement. Some of you will be happy at this, and some might be disappointed, but who knows? In any case, that&rsquo;s how it is, and I&rsquo;m not planning to resign a second time.&rdquo;</p></blockquote>\n\n\n\n<p>In 2019, Stallman <a href=\"https://wptavern.com/gpl-author-richard-stallman-resigns-from-free-software-foundation\">resigned</a> as director of the board and president of the FSF, and was subsequently <a href=\"https://wptavern.com/gnu-project-maintainers-move-to-oust-richard-stallman-from-leadership\">ousted by GNU project maintainers</a> from his position as head of the project. Calls for his removal were precipitated by Stallman&rsquo;s controversial remarks on rape, assault, and child sex trafficking, along with two decades of <a href=\"https://geekfeminism.wikia.org/wiki/Richard_Stallman\">behaviors and statements</a> that many have found to be disturbing and offensive. His return came as a shock to the free software community, though some suspect he never really left.</p>\n\n\n\n<p>&ldquo;I did not support the decision to reinstate RMS,&rdquo; former FSF board member Kat Walsh <a href=\"https://twitter.com/mindspillage/status/1374448587388588037\">said</a> after resigning from the board yesterday. &ldquo;I made my arguments and placed my opposing vote; while I was glad I was able to do that I regret not being able to turn the decision the other way.</p>\n\n\n\n<p>&ldquo;I wish the organization well; my departure is not a rejection of the ideas of free software, only a belief that my role in the organization was no longer the best way to put them forward into the world.&rdquo;</p>\n\n\n\n<p>Stallman&rsquo;s reinstatement came with a staggering lack of transparency from FSF&rsquo;s board of directors and has triggered a cascade of condemnation from individuals and organizations across the tech industry. Among the many critical responsibilities it maintains, the FSF currently&nbsp;<a rel=\"noreferrer noopener\" href=\"https://en.wikipedia.org/wiki/Free_Software_Foundation#History\" target=\"_blank\">holds the copyrights to enforce the GPL</a>.</p>\n\n\n\n<p>The Open Source Initiative published a <a href=\"https://opensource.org/OSI_Response\">statement</a> this week, calling for Stallman&rsquo;s removal from FSF&rsquo;s leadership:</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>The Open Source Initiative calls upon the Free Software Foundation to hold Stallman responsible for past behavior, remove him from the organization&rsquo;s leadership and work to address the harm he caused to all those he has excluded: those he considers less worthy, and those he has hurt with his words and actions. We will not participate in any events that include Richard M. Stallman and we cannot collaborate with the Free Software Foundation until Stallman is removed from the organization&rsquo;s leadership. &nbsp;</p></blockquote>\n\n\n\n<p>Red Hat <a href=\"https://www.redhat.com/en/blog/red-hat-statement-about-richard-stallmans-return-free-software-foundation-board?sc_cid=701f2000000tyBjAAI\">announced</a> that it is suspending all funding of the FSF and any FSF-hosted events. Mozilla <a href=\"https://twitter.com/mozilla/status/1374513444838199304\">joined</a> the Open Source Diversity Community, Outreachy, and the Software Conservancy project in supporting an <a href=\"https://rms-open-letter.github.io/\">open letter</a> that calls for the removal of the entire Board of the Free Software Foundation, along with the removal of Stallman from all leadership positions, including the GNU Project. The letter states that the undersigned do not acknowledge Stallman&rsquo;s leadership of the FSF and do not condone his actions and opinions:</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>There has been enough tolerance of RMS&rsquo;s repugnant ideas and behavior. We cannot continue to let one person ruin the meaning of our work. Our communities have no space for people like Richard M. Stallman, and we will not continue suffering his behavior, giving him a leadership role, or otherwise holding him and his hurtful and dangerous ideology as acceptable.</p></blockquote>\n\n\n\n<p> The petition has been signed by more than 2400 free software advocates. Notable signatories include Molly de Blanc (Debian Project, GNOME Foundation), Elana Hashman (Debian Technical Committee Member, Open Source Initiative Director, Kubernetes SIG Instrumentation Chair), Neil McGovern (GNOME Foundation Executive Director, Former Debian Project Leader), and Luis Villa (Former Director of the Open Source Initiative and the GNOME Foundation; contributor to the GPL v3 drafting process).</p>\n\n\n\n<p>The Electronic Frontier Foundation (EFF) published a <a href=\"https://www.eff.org/deeplinks/2021/03/statement-re-election-richard-stallman-fsf-board\">statement</a> urging the voting members&nbsp;of the FSF board to call a special meeting to reconsider Stallman&rsquo;s reinstatement, in support of the &ldquo;long-term viability of the free software movement:&rdquo;</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>Free software is a vital component of an open and just technological society: its key institutions and individuals cannot place misguided feelings of loyalty above their commitment to that cause. The movement for digital freedom is larger than any one individual contributor, regardless of their role. Indeed, we hope that this moment can be an opportunity to bring in new leaders and new ideas to the free software movement.</p></blockquote>\n\n\n\n<p>Stallman still has many staunch supporters, as more than 2,000 people have signed an <a href=\"https://rms-support-letter.github.io/\">open letter</a> in support of him and his leadership. They contend that removing RMS &ldquo;will hurt FSF&rsquo;s image and will deal a significant blow to the momentum of the free software movement.&rdquo;</p>\n\n\n\n<p>Stallman is still listed among the <a href=\"https://www.fsf.org/about/staff-and-board\">FSF&rsquo;s board of directors</a>, but the board appears to be reorganizing. A preliminary <a href=\"https://www.fsf.org/news/preliminary-board-statement-on-fsf-governance\">statement</a> on upcoming changes to the board&rsquo;s governance said they are moving to adopt a transparent, formal process for identifying candidates and appointing new board members. The board intends to require existing board members to submit to this process as well &ldquo;to decide which of them remain on the board,&rdquo; with a deadline of 30 days to complete the changes.</p>\n\n\n\n<p>By allowing Stallman to resume his position, the FSF squandered the opportunity it had to redefine itself following his resignation in 2019. The organization missed the chance to carve out a new future that would be free from his damaging influence. If the board doesn&rsquo;t act in the best interests of the greater community, by remedying its lack of transparency and accountability, it may permanently resign the organization to irrelevance.</p>\n\n\n\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, 26 Mar 2021 05:46: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: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:67:\"Gutenberg Times: Full-site Editing MVP: Can I Build a Landing Page?\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://gutenbergtimes.com/?p=17337\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:76:\"https://gutenbergtimes.com/full-site-editing-mvp-can-i-build-a-landing-page/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:6562:\"<p><strong>Josepha Haden Chomphosy</strong> was the featured guest on the <a href=\"https://wptavern.com/podcast/1-josepha-haden-chomphosy-on-the-past-present-and-future-of-wordpress\">inaugural episode of the WPTavern Jukebox podcast</a>, hosted by <strong>Nathan Wrigley</strong>. In their conversation, they covered a lot of ground. The show is definitely worth your 40 minutes of listen. </p>\n\n\n\n<p>Around minute 23 of the audio they talked a bit more about Full-Site Editing and its merge into the core. Chomphosy said she knows &#8216;this summer&#8217; is an ambitions goal, and she also assured the listeners that the team won&#8217;t release something that&#8217;s not functional and usable. </p>\n\n\n\n<h2>Go/NoGo Mid to End of April</h2>\n\n\n\n<p>The Core release and Gutenberg teams will make the Go/NoGo decision to merge Full-Site Editing for the next WordPress release in July (5.8) on April 17 or on April 23. In other words, the state of Full Site editing in Gutenberg plugin version 10.4 and 10.5. If it doesn&#8217;t get merged into 5.8, Full-Site Editing will be merged in WordPress 5.9 to be released in December 2021</p>\n\n\n\n<p>Chomphosy also shared her &#8211; unofficial &#8211; benchmark of what should be possible with the prototype of the Site Editor by April: Can you &#8211; without writing code &#8211; create a landing page with Full-site editing tools. She calls it &#8220;the smallest viable sentence. The I-AM of websites.&#8221;</p>\n\n\n\n<h2>A Landing page is the smallest viable unit</h2>\n\n\n\n<p>This single web page consists of a header, a footer, a hero image with a button, some text, a form or a call to action. This narrows the focus of the MVP, the prototype, considerably. It also increases the probability that the first low-key, opt-in version of Full-Site editing might actually make it into the next WordPress version. A narrow scope will also help content creators, teachers and developers get started working on their discovery of the new WordPress feature. As soon as it is merged into WordPress core, plugin developer and theme builders can test their ideas against it and get familiar with the underlying concepts. </p>\n\n\n\n<p>It&#8217;s a good way to ease-in content creators, too. When you are not dealing with the header and footer of a big site, but just for a single page, it’s not so critical if you get lost on the way from content editing to template part (header, footer) editing and back again. It&#8217;s all on the same page, literally. </p>\n\n\n\n<p>This transition was one of the major causes of confusion during the <a href=\"https://make.wordpress.org/core/2021/03/16/high-level-feedback-from-the-fse-program-march/\">first few testing calls for the FSE outreach program</a> and the developers are working on making it less confusing. With this unofficial benchmark of a single landing page creation, the team will have additional time and input on how to better handle that switch between editing a template that is used for many pages and the content of a single post or page content.</p>\n\n\n\n<p>A very tangible goal, &#8220;Can I build a landing page with the tools available?&#8221; makes it straightforward for WordPress contributors who work on the parts that make that are not code, like documentation, marketing, training and testing.</p>\n\n\n\n<h2>Call For Testing: Create a Header</h2>\n\n\n\n<p>The <a href=\"https://make.wordpress.org/test/2021/03/25/fse-program-testing-call-4-building-a-restaurant-themed-header/\">4th call for testing</a> via the WordPress FSE-Outreach program asks you to<a href=\"https://make.wordpress.org/test/2021/03/25/fse-program-testing-call-4-building-a-restaurant-themed-header/\"> create a header for a Restaurant</a>. <strong>Anne McCarthy</strong> has detailed instructions for you as well as video if you are in a testing mood. Your input is definitely wanted!</p>\n\n\n\n<p>Chomphosy also added that Matias Ventura, the technical lead for Gutenberg, might have different benchmarks for the MVP. I am curious, and <a href=\"https://twitter.com/JosephaHaden/status/1371956586516606977\">answer Josepha&#8217;s call for questions</a> on Full-Site Editing for her next episode of the WPBriefing podcast when Matias will be her guest. </p>\n\n\n\n<p>Full-Side Editing project encompasses a lot more than the Site Editor with template parts. There are Global Styles, Widgets in Customizer, a new Navigation and Widget screen, block-based themes with a theme.json file and query block. Some of it will work its way into the MVP. We will see how far the team progresses on their journey, that will only begin once Full-Site editing comes to Millions of WordPress users. No Fear, though. It will all be opt-in. Nothing will break. </p>\n\n\n\n<p class=\"has-white-color has-secondary-background-color has-text-color has-background has-large-font-size\">&#8220;Given enough eyeballs, all bugs are shallow&#8221; &#8212; Eric Raymond&#8217;s Linus&#8217; Law</p>\n\n\n\n<div class=\"wp-block-group has-secondary-background-color has-background\"><div class=\"wp-block-group__inner-container\">\n<form class=\"wp-block-newsletterglue-form ngl-form ngl-portrait\" action=\"https://gutenbergtimes.com/feed/\" method=\"post\"><div class=\"ngl-form-container\"><div class=\"ngl-form-field\"><label class=\"ngl-form-label\" for=\"ngl_email\">Leave Your Email for our Weekend Edition</label><div class=\"ngl-form-input\"><input type=\"email\" class=\"ngl-form-input-text\" name=\"ngl_email\" id=\"ngl_email\" /></div></div><button class=\"ngl-form-button\">Subscribe</button><p class=\"ngl-form-text\">We hate spam, too. We only share your email address <br />with our Email provider Mailchimp</p></div><div class=\"ngl-message-overlay\"><div class=\"ngl-message-svg-wrap\"></div><div class=\"ngl-message-overlay-text\">Thanks for subscribing.</div></div><input type=\"hidden\" name=\"ngl_list_id\" id=\"ngl_list_id\" value=\"26f81bd8ae\" /><input type=\"hidden\" name=\"ngl_double_optin\" id=\"ngl_double_optin\" value=\"yes\" /></form>\n</div></div>\n\n\n\n<p></p>\n\n\n\n<div class=\"wp-block-cover alignfull has-background-dim\"><img /><div class=\"wp-block-cover__inner-container\">\n<p class=\"has-text-align-center has-large-font-size\">Take a deep dive into </p>\n\n\n\n<p class=\"has-text-align-center has-white-color has-text-color has-huge-font-size\"><a href=\"https://gutenbergtimes.com/full-site-editing/\">Full-Edit Editing </a></p>\n\n\n\n<div class=\"wp-block-buttons is-content-justification-center\">\n<div class=\"wp-block-button has-custom-width wp-block-button__width-50\"><a class=\"wp-block-button__link has-background\">Ultimate Resources List</a></div>\n</div>\n</div></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, 26 Mar 2021 04: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:18:\"Birgit Pauli-Haack\";s: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:110:\"WPTavern: Extendify Acquires Editor Plus, Introduces Commercial Templates in Its Plan To Improve Block Editing\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=114307\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:263:\"https://wptavern.com/extendify-acquires-editor-plus-introduces-commercial-templates-in-its-plan-to-improve-block-editing?utm_source=rss&utm_medium=rss&utm_campaign=extendify-acquires-editor-plus-introduces-commercial-templates-in-its-plan-to-improve-block-editing\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:6447:\"<p class=\"has-drop-cap\">With the release of <a href=\"https://wordpress.org/plugins/editorplus/\">Editor Plus 2.7</a> in recent weeks, <a href=\"https://extendify.com/\">Extendify</a> stamped its brand name on the plugin. The company officially acquired the plugin months ago. However, this was its first public outing as the new owner of a project that has seen a steady uptick in its popularity, recently surpassing 5,000 active installations.</p>\n\n\n\n<p>Extendify was busy in late 2020. The company quietly purchased the <a href=\"https://wordpress.org/plugins/redux-framework/\">Redux Framework</a> in November. D&#333;vy Paukstys, the creator, remained on board part-time with the financial backing needed to continue the project. In December, Extendify joined forces with Munir Kamal and his team behind Editor Plus and Gutenberg Hub.</p>\n\n\n\n<p>&ldquo;Our mission is to turn WordPress into a superpower for entrepreneurs around the world,&rdquo; said Extendify co-founder Chris Lubkert. &ldquo;As you know, despite its unrivaled popularity, many users still struggle to use WordPress to create the site they need. We see tremendous potential to empower WordPress users to create a Gutenberg-native website in a few clicks. By bringing together Redux, Editor Plus, and Gutenberg Hub, we have the foundational pieces to create a world-class onboarding and site-building experience.&rdquo;</p>\n\n\n\n<p>There are no plans to build a &ldquo;super&rdquo; plugin that combines Editor Plus and Redux. Gutenberg Hub will continue providing resources to help users leverage the block editor.</p>\n\n\n\n<p>&ldquo;Currently, the Redux template library and the library in Editor Plus are separate,&rdquo; said Lubkert. &ldquo;But we are heavily investing in making the Extendify library the best solution for users and eventually plan to introduce this to the Redux user base as well.&rdquo;</p>\n\n\n\n<p>Extendify&rsquo;s first public act as Editor Plus&rsquo;s owner was not to introduce new features in its recent major-release, version 2.7. Instead, users were presented with a limitation on features they previously had access to for free.</p>\n\n\n\n<p>Version 2.7 limits the template and pattern inserter, <a href=\"https://wptavern.com/editor-plus-2-6-adds-block-pattern-and-template-library\">introduced in 2.6</a>, to three imports. Beyond that, users must upgrade to one of the Extendify Pro paid tiers. The single-site option is $99 per year with an introductory rate of $49. The unlimited sites tier is $299, and it currently has a $149 limited-time offer.</p>\n\n\n\n<img />Template and pattern inserter.\n\n\n\n<p>At first glance, it seemed like a cash grab from new owners. There were no public announcements or explanations for the change outside of a minor note in the plugin&rsquo;s change log &mdash; just new ownership and upsells. Lubkert said he plans to rectify this by publishing an announcement post next week.</p>\n\n\n\n<p>Extendify had already been involved with new feature development for months. The API behind the template inserter was coming from their server in Editor Plus 2.6. It was the groundwork for Extendify Pro, but it was also still under development.</p>\n\n\n\n<p>&ldquo;We&rsquo;re a small, nimble team, and it was a development timing issue,&rdquo; said Lubkert. &ldquo;We finished the library approximately three weeks before we finished paid plans, and we certainly didn&rsquo;t want to delay users getting their hands on the library while we finished up work on Extendify Pro.&rdquo;</p>\n\n\n\n<p>Users will not lose any previously-imported templates. However, importing anything beyond three additional templates in Editor Plus 2.7 or newer will require a purchase of Extendify Pro for an API key.</p>\n\n\n\n<p>&ldquo;We are now offering an added layer of value for users who want to benefit from the power of Editor Plus but may not be in a position to use it to create their site from scratch,&rdquo; said Lubkert. &ldquo;For those users, we are creating the most beautiful and effective Gutenberg-native templates, built with Editor Plus, as part of the Extendify Pro template library. As you know, we launched the initial beta version a few weeks ago. A subscription is required for unlimited access to the library, but all users can import any three templates or patterns for free.&rdquo;</p>\n\n\n\n<p><em>With the launch of the template inserter in 2.6, there was no public mention of it being a beta version.</em></p>\n\n\n\n<p>Templates and patterns from Gutenberg Hub remain free. Users can still browse the site, copy a template code snippet, and paste it into the block editor.</p>\n\n\n\n<p>The team removed the custom blocks extension in Editor Plus 2.7.1, released earlier today. This feature allowed end-users to copy blocks from the Gutenberg Hub block library, paste them into the plugin, and save them for use on the site. Users could also add custom blocks via this settings screen.</p>\n\n\n\n<img />Removed custom block feature.\n\n\n\n<p>&ldquo;The custom block feature in Editor Plus was an experiment that was pretty cool, actually,&rdquo; said Lubkert. &ldquo;However, [Kamal] suggested removing it from Editor Plus since it is now very similar to the reusable block functionality in core. We want Editor Plus to push the envelope of what is possible with Gutenberg, and having a duplicate feature that is available in core doesn&rsquo;t add real, incremental value for our users.&rdquo;</p>\n\n\n\n<p>Updating to 2.7+ will also likely deactivate the plugin for end-users. The primary plugin filename changed from <code>index.php</code> to <code>editorplus.php</code>. Developers should generally avoid doing this because WordPress uses this filename to determine if a plugin is active.</p>\n\n\n\n<p>I remain optimistic about Editor Plus&rsquo;s future now that it has the financial backing it deserves. Having been an early supporter of the project, I knew this day would come. Nearly every time I spoke with Kamal in the past, I asked him about plans for monetizing the product. It had grown beyond what one developer could reasonably handle and scale without a business plan in place.</p>\n\n\n\n<p>&ldquo;We agree with your sentiment that WordPress projects need to generate revenue in order to fund the development of truly transformational experiences,&rdquo; said Lubkert. &ldquo;We have been investing in our team as well. Tammie Lister joined us as Head of Design. We&rsquo;ve also added engineering, support, and QA team members.&rdquo;</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, 25 Mar 2021 21:44: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:14:\"Justin Tadlock\";s: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:91:\"WordPress Foundation: 5 tips for organizing a successful online do_action charity hackathon\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"https://wordpressfoundation.org/?p=182733\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:107:\"https://wordpressfoundation.org/2021/5-tips-for-organizing-a-successful-online-do_action-charity-hackathon/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:6491:\"<p>In 2020, unfazed by the COVID-19 pandemic, <a href=\"https://wordpressfoundation.org/2020/charity-hackathons-august-2020-report/\">community organizers rallied together and worked hard to give a WordPress-powered web presence for charities</a> through <a href=\"https://doaction.org/\">online charity hackathons</a>. Our passionate and resilient community members are pulling out all stops this year to continue the good work. We already have two applications for do_action events in the queue, with more in the pipeline! This post aims to encourage all our zealous organizers with tips on how best to organize successful <a href=\"https://make.wordpress.org/community/handbook/meetup-organizer/event-formats/do_action-charity-hackathon/organising-an-online-do_action-event/\">online do_action charity hackathons</a>.</p>\n\n\n\n<ol><li><strong>Recruit a core team and prepare an event plan</strong><br />Enlist a team of 5-10 members to wrangle the event. Much like a WordCamp, organizers need to plan do_action events down to the last detail. Make sure you have a plan for the entire event lifecycle &#8211; including <a href=\"https://make.wordpress.org/community/handbook/meetup-organizer/event-formats/do_action-charity-hackathon/gathering-non-profits/\">selecting nonprofits</a>, <a href=\"https://make.wordpress.org/community/handbook/meetup-organizer/event-formats/do_action-charity-hackathon/getting-particpants/\">finding volunteers</a>, <a href=\"https://make.wordpress.org/community/handbook/meetup-organizer/event-formats/do_action-charity-hackathon/finding-sponsors/\">finding sponsors</a>, task management, and execution. For inspiration, check out how the <a href=\"https://github.com/doactionjp/do_action_guideline\">do_action Japan team came up with a plan for the event beforehand</a>! Having a solid communication strategy and setting deadlines is equally important. Finding answers to questions like: “<em>When do volunteer teams meet?”,  “How often should there be check-ins?”,  “How do we track tasks?”,  “How do we measure progress?” </em>and<em> “ What deadlines do we need to meet?” </em>for instance, will help in devising a strategy.</li><li><strong>Finding non-profits and volunteers </strong><br /><a href=\"https://make.wordpress.org/community/handbook/meetup-organizer/event-formats/do_action-charity-hackathon/gathering-non-profits/\">Finding eligible non-profits</a> for your event could be a challenge. When your event publishes the call for non-profits, share it widely on social media. Since this is a charitable event, we have noticed that getting PR from local news media outlets is a lot easier. You might also want to reach out to Non-profit organizations and offer assistance proactively. You can follow the same approach for volunteer recruitment too.</li><li><strong>Fix your collaboration tools and communication strategy<br /></strong>Since this will be an online event, you will need the right collaboration tools to make the event successful. <strong>Please note: A doaction.org G Suite/Google Workspace account will be provided to all do_action event organizers in 2021 and beyond! Feel free to use that account for all your needs. Check out </strong><a href=\"https://make.wordpress.org/community/handbook/meetup-organizer/event-formats/do_action-charity-hackathon/google-workspace-account-for-do_action-events/\"><strong>the handbook page for more information</strong></a><strong>.</strong> Here are some tools that you can use for your event:<ul><li>doaction.org website (call for nonprofits &amp; hackathon participants)</li><li>Slack (overall event prep, communication on the event days) &#8211; A free plan will be sufficient.</li><li>Zoom (event organizer &amp; inter-team meetings, opening/closing remarks) &#8211; <a href=\"https://make.wordpress.org/community/handbook/meetup-organizer/getting-started/special-virtual-events-zoom-request/\">WordPress Community zoom accounts</a> can be used. </li><li><a href=\"https://make.wordpress.org/community/handbook/meetup-organizer/event-formats/do_action-charity-hackathon/google-workspace-account-for-do_action-events/\">Google Workspace tools</a> (provided to all 2021 organizers in the <a href=\"mailto:location@doaction.org\">location@doaction.org</a> format) &#8211; Gmail (inquiries &amp; sponsor communication), Google Forms (call for organizers &amp; sponsors, post-event survey), Google Sheets (task &amp; data management), Google Docs (collaborative editing of documents, Google Drive (for storage needs),  and Google Slides (opening/closing remarks presentation)</li><li>WordPress.com P2 &#8211; for task management</li><li>Trello &#8211; for task management.</li><li>Figma (design)</li></ul></li><li><strong>Finding sponsors<br /></strong>For online do_action events, organizers need not worry about venue or catering expenses. Hence, sponsorship benefits for these events can be passed along directly to non-profits. Most WordPress companies are passionate about supporting non-profits, and providing product/service licenses is a cost-effective way for them to support the community. Consider reaching out to specific companies as per your needs. Sponsorship benefits that do_action events in 2020 had availed include:<ul><li>Free domain and web hosting for non-profits</li><li>Sponsored premium plugins and themes (Only 100% GPL Compliant themes and plugins are allowed)</li><li>Sponsored website services (backups, caching, security, optimization, etc.)</li></ul></li><li><strong>Find a way to offer post-event support for non-profit websites<br /></strong>Make sure that once the event is over, each non-profit is trained on how to use and update the site. Perhaps a few volunteers could provide post-event support for a short while (while ensuring that the right expectations are set on both sides). Offering post-event support as a sponsorship benefit could also be a solution to that problem.</li></ol>\n\n\n\n<p>Does all of this sound exciting? Would you like to support your local community by organizing a do_action event? <a href=\"https://make.wordpress.org/community/handbook/meetup-organizer/event-formats/do_action-charity-hackathon/do_action-event-application/\">Send in your application</a> right away! You can read more about do_action in the <a href=\"https://make.wordpress.org/community/handbook/meetup-organizer/event-formats/do_action-charity-hackathon/\">event handbook</a>. Thank you for all that you do to support the global community through 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, 25 Mar 2021 03:50: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:12:\"Hari Shanker\";s: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:102:\"WPTavern: Insert Font Awesome Icons Into the Block Editor via the JVM Gutenberg Rich Text Icons Plugin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=114315\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:249:\"https://wptavern.com/insert-font-awesome-icons-into-the-block-editor-via-the-jvm-gutenberg-rich-text-icons-plugin?utm_source=rss&utm_medium=rss&utm_campaign=insert-font-awesome-icons-into-the-block-editor-via-the-jvm-gutenberg-rich-text-icons-plugin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3071:\"<p class=\"has-drop-cap\">Joris van Montfort, a freelance WordPress developer, released the <a href=\"https://wordpress.org/plugins/jvm-rich-text-icons/\">JVM Gutenberg Rich Text Icons</a> plugin over the weekend. The goal was simple: allow users to insert icons nearly anywhere in the block editor at the click of a button.</p>\n\n\n\n<p>The plugin uses version 4.7 of the Font Awesome library out of the box. However, developers can modify this to include custom icon sets.</p>\n\n\n\n<p>Like many of the most useful plugins, it stays in its lane, performing a simple task and doing it well. The plugin presents users with a &ldquo;flag&rdquo; button in the editor toolbar whenever they edit a Rich Text field.</p>\n\n\n\n<img />Inserting an icon into a Heading block.\n\n\n\n<p>Rich Text is a block editor component for entering text. Anywhere users can type in the editor canvas is fair game for inserting an icon. This includes paragraphs, headings, image captions, and more. It also extends to blocks from other plugin developers. If they employ a Rich Text field anywhere, the &ldquo;flag&rdquo; button will appear, and users can plop an icon in it.</p>\n\n\n\n<p>Icons inserted through the plugin automatically inherit the surrounding text size. If you stick it in a Heading block, it will grow larger. If you stick it in a Button block, it will match up with the Button text. The same is true for the colors too.</p>\n\n\n\n<img />Inserting icons in various blocks at different sizes and colors.\n\n\n\n<p>Because it is impossible to match each theme&rsquo;s design perfectly, some minor spacing or alignment adjustments may be needed. For the most part, the icons looked good when I tested them with various themes. However, there were a couple of one-pixel-off issues and minor alignment miscues with some blocks. On the whole, I did not run into any design-breaking issues. The plugin displayed its icons as it should.</p>\n\n\n\n<p>One usability issue I encountered was being unable to delete an icon via the <code>Backspace</code> or <code>Delete</code> keys on my keyboard in use with the Buttons block. It worked well with other blocks. The solution for this was to click on the inserted icon. Then, select the &ldquo;flag&rdquo; icon in the toolbar to reopen the inserter. After choosing no replacement, the old one disappeared.</p>\n\n\n\n<p>The plugin developer provided filter hooks for third-party developers to implement icon sets other than Font Awesome via a custom JSON file. Instructions are outlined in the plugin&rsquo;s readme. There are also hooks for uploading or overwriting the stylesheet and classes.</p>\n\n\n\n<p>While I like the plugin&rsquo;s execution, I dislike that it loads its own Font Awesome stylesheet. If using another plugin or theme that does the same, its inclusion increases the page load size for end-users by loading multiple copies of the same code. This is not the fault of the plugin developer. It is a limitation created by WordPress&rsquo;s lack of a dependency system. However, users who give the plugin a try should be mindful of this potential issue.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 24 Mar 2021 23:07:30 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Justin Tadlock\";s: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:62:\"WPTavern: Chrome 90 to Use HTTPS by Default in the Address Bar\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=114269\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:169:\"https://wptavern.com/chrome-90-to-use-https-by-default-in-the-address-bar?utm_source=rss&utm_medium=rss&utm_campaign=chrome-90-to-use-https-by-default-in-the-address-bar\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2895:\"<p>Chrome&rsquo;s upcoming <a href=\"https://blog.chromium.org/2021/03/a-safer-default-for-navigation-https.html\">version 90</a> will use&nbsp;<em>https://</em>&nbsp;by default in the address bar, bringing a significant improvement to security and loading speed. HTTPS adoption has shot up significantly over the past six years after Google&nbsp;<a href=\"https://webmasters.googleblog.com/2014/08/https-as-ranking-signal.html\">announced</a>&nbsp;in 2014 that HTTPS would be used as a ranking signal in search results. </p>\n\n\n\n<p>In February 2021, W3Techs found that <a href=\"https://w3techs.com/blog/entry/fact_20210202\">82.2% of websites use a valid SSL certificate</a>. Today, more than <a href=\"https://transparencyreport.google.com/https/overview?hl=en\">98% of pages loaded in Chrome</a> use HTTPS as the default protocol, making this change to using HTTPS as the default for navigations long overdue. </p>\n\n\n\n<div class=\"wp-block-image\"><img /></div>\n\n\n\n<p>Firefox Telemetry charts HTTPS adoption at <a href=\"https://letsencrypt.org/stats/#percent-pageloads\">more than 84%</a> of web pages for all users and 92% for traffic originating in the USA.</p>\n\n\n\n<div class=\"wp-block-image\"><img /></div>\n\n\n\n<p>Currently, anytime a user puts a site into the address bar without specifying the protocol, such as &ldquo;example.com,&rdquo; Chrome uses HTTP by default and then has to retry for HTTPS. </p>\n\n\n\n<p>The update in Chrome 90 is good news for Chrome users, because it improves the loading speed for sites that support HTTPS by cutting out the redirection loop after the initial load. A gif on the Chromium blog illustrates this in a nice way: </p>\n\n\n\n<div class=\"wp-block-image\"><img /></div>\n\n\n\n<p>Those who are using Chrome Canary can access experiments to try it out ahead of the version 90 release. Navigate to the following URL to mark the experimental feature as enabled:</p>\n\n\n\n<p><strong><em>chrome://flags/#omnibox-default-typed-navigations-to-https</em></strong></p>\n\n\n\n<div class=\"wp-block-image\"><img /></div>\n\n\n\n<p>WordPress site owners will want to make sure their sites are using HTTPS in order to take advantage of the speed boost this change introduces. Fortunately, for those who haven&rsquo;t migrated over yet, the latest <a href=\"https://wptavern.com/wordpress-5-7-will-make-it-easier-to-migrate-from-http-to-https\">5.7 release makes it easy to update with the click of a button</a>. WordPress can detect if the site&rsquo;s hosting environment supports HTTPS and then offers a one-click update process via the Site Health screen. It even handles mixed content rewrites where possible, so site owners will not have to worry about having a bunch of broken links after migrating. </p>\n\n\n\n<p>Chrome 90 went into beta in mid-March. The stable release is <a href=\"https://www.chromestatus.com/features/schedule\">scheduled</a> for 20 days following beta on April 13, 2021.</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, 24 Mar 2021 17:28: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:\"\";}}}}}}}}}}}}}}}}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:\"Mon, 19 Apr 2021 11:59:40 GMT\";s:12:\"content-type\";s:8:\"text/xml\";s:4:\"vary\";s:15:\"Accept-Encoding\";s:13:\"last-modified\";s:29:\"Mon, 19 Apr 2021 11:45:09 GMT\";s:15:\"x-frame-options\";s:10:\"SAMEORIGIN\";s:4:\"x-nc\";s:9:\"HIT ord 1\";s:16:\"content-encoding\";s:4:\"gzip\";}}s:5:\"build\";s:14:\"20191014202409\";}','no'),(304,'_transient_timeout_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9','1618876778','no'),(305,'_transient_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9','1618833578','no'),(306,'_transient_timeout_dash_v2_88ae138922fe95674369b1cb3d215a2b','1618876778','no'),(307,'_transient_dash_v2_88ae138922fe95674369b1cb3d215a2b','<div class=\"rss-widget\"><ul><li><a class=\'rsswidget\' href=\'https://wordpress.org/news/2021/04/wordpress-5-7-1-security-and-maintenance-release/\'>WordPress 5.7.1 Security and Maintenance Release</a></li></ul></div><div class=\"rss-widget\"><ul><li><a class=\'rsswidget\' href=\'https://gutenbergtimes.com/page-template-editor-for-wordpress-5-8-videos-and-plugins-weekend-edition-166/\'>Gutenberg Times: Page Template Editor for WordPress 5.8, Videos and Plugins – Weekend Edition #166</a></li><li><a class=\'rsswidget\' href=\'https://wptavern.com/gutenberg-10-4-introduces-block-widgets-in-the-customizer?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=gutenberg-10-4-introduces-block-widgets-in-the-customizer\'>WPTavern: Gutenberg 10.4 Introduces Block Widgets in the Customizer</a></li><li><a class=\'rsswidget\' href=\'https://gutenbergtimes.com/video-full-site-editing-overview-with-anne-mccarthy/\'>Gutenberg Times: Video: Full-Site Editing Overview with Anne McCarthy</a></li></ul></div>','no');
/*!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 */;
/*!50503 SET character_set_client = utf8mb4 */;
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=13 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,3,'_wp_page_template','default'),(3,3,'_wp_trash_meta_status','draft'),(4,3,'_wp_trash_meta_time','1587040942'),(5,3,'_wp_desired_post_slug','privacy-policy'),(6,2,'_wp_trash_meta_status','publish'),(7,2,'_wp_trash_meta_time','1587040942'),(8,2,'_wp_desired_post_slug','sample-page'),(9,7,'_edit_lock','1587040945:1'),(10,8,'_edit_lock','1587041011:1'),(11,8,'_edit_last','1'),(12,8,'_yoast_wpseo_content_score','60');
/*!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 */;
/*!50503 SET character_set_client = utf8mb4 */;
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=10 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,'2020-04-16 12:30:48','2020-04-16 12:30:48','<!-- wp:paragraph -->\n<p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p>\n<!-- /wp:paragraph -->','Hello world!','','publish','open','open','','hello-world','','','2020-04-16 12:30:48','2020-04-16 12:30:48','',0,'http://localhost:5000/?p=1',0,'post','',1),(2,1,'2020-04-16 12:30:48','2020-04-16 12:30:48','<!-- wp:paragraph -->\n<p>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:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><p>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&#241;a coladas. (And gettin\' caught in the rain.)</p></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph -->\n<p>...or something like this:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><p>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.</p></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph -->\n<p>As a new WordPress user, you should go to <a href=\"http://localhost:5100/wp/wp-admin/\">your dashboard</a> to delete this page and create new pages for your content. Have fun!</p>\n<!-- /wp:paragraph -->','Sample Page','','trash','closed','open','','sample-page__trashed','','','2020-04-16 12:42:22','2020-04-16 12:42:22','',0,'http://localhost:5000/?page_id=2',0,'page','',0),(3,1,'2020-04-16 12:30:48','2020-04-16 12:30:48','<!-- wp:heading --><h2>Who we are</h2><!-- /wp:heading --><!-- wp:paragraph --><p>Our website address is: http://localhost:5000.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>What personal data we collect and why we collect it</h2><!-- /wp:heading --><!-- wp:heading {\"level\":3} --><h3>Comments</h3><!-- /wp:heading --><!-- wp:paragraph --><p>When visitors leave comments on the site we collect the data shown in the comments form, and also the visitor&#8217;s IP address and browser user agent string to help spam detection.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>An anonymized string created from your email address (also called a hash) may be provided to the Gravatar service to see if you are using it. The Gravatar service privacy policy is available here: https://automattic.com/privacy/. After approval of your comment, your profile picture is visible to the public in the context of your comment.</p><!-- /wp:paragraph --><!-- wp:heading {\"level\":3} --><h3>Media</h3><!-- /wp:heading --><!-- wp:paragraph --><p>If you upload images to the website, you should avoid uploading images with embedded location data (EXIF GPS) included. Visitors to the website can download and extract any location data from images on the website.</p><!-- /wp:paragraph --><!-- wp:heading {\"level\":3} --><h3>Contact forms</h3><!-- /wp:heading --><!-- wp:heading {\"level\":3} --><h3>Cookies</h3><!-- /wp:heading --><!-- wp:paragraph --><p>If you leave a comment on our site you may opt-in to saving your name, email address and website in cookies. These are for your convenience so that you do not have to fill in your details again when you leave another comment. These cookies will last for one year.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>If you visit our login page, we will set a temporary cookie to determine if your browser accepts cookies. This cookie contains no personal data and is discarded when you close your browser.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>When you log in, we will also set up several cookies to save your login information and your screen display choices. Login cookies last for two days, and screen options cookies last for a year. If you select &quot;Remember Me&quot;, your login will persist for two weeks. If you log out of your account, the login cookies will be removed.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>If you edit or publish an article, an additional cookie will be saved in your browser. This cookie includes no personal data and simply indicates the post ID of the article you just edited. It expires after 1 day.</p><!-- /wp:paragraph --><!-- wp:heading {\"level\":3} --><h3>Embedded content from other websites</h3><!-- /wp:heading --><!-- wp:paragraph --><p>Articles on this site may include embedded content (e.g. videos, images, articles, etc.). Embedded content from other websites behaves in the exact same way as if the visitor has visited the other website.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>These websites may collect data about you, use cookies, embed additional third-party tracking, and monitor your interaction with that embedded content, including tracking your interaction with the embedded content if you have an account and are logged in to that website.</p><!-- /wp:paragraph --><!-- wp:heading {\"level\":3} --><h3>Analytics</h3><!-- /wp:heading --><!-- wp:heading --><h2>Who we share your data with</h2><!-- /wp:heading --><!-- wp:heading --><h2>How long we retain your data</h2><!-- /wp:heading --><!-- wp:paragraph --><p>If you leave a comment, the comment and its metadata are retained indefinitely. This is so we can recognize and approve any follow-up comments automatically instead of holding them in a moderation queue.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>For users that register on our website (if any), we also store the personal information they provide in their user profile. All users can see, edit, or delete their personal information at any time (except they cannot change their username). Website administrators can also see and edit that information.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>What rights you have over your data</h2><!-- /wp:heading --><!-- wp:paragraph --><p>If you have an account on this site, or have left comments, you can request to receive an exported file of the personal data we hold about you, including any data you have provided to us. You can also request that we erase any personal data we hold about you. This does not include any data we are obliged to keep for administrative, legal, or security purposes.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Where we send your data</h2><!-- /wp:heading --><!-- wp:paragraph --><p>Visitor comments may be checked through an automated spam detection service.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Your contact information</h2><!-- /wp:heading --><!-- wp:heading --><h2>Additional information</h2><!-- /wp:heading --><!-- wp:heading {\"level\":3} --><h3>How we protect your data</h3><!-- /wp:heading --><!-- wp:heading {\"level\":3} --><h3>What data breach procedures we have in place</h3><!-- /wp:heading --><!-- wp:heading {\"level\":3} --><h3>What third parties we receive data from</h3><!-- /wp:heading --><!-- wp:heading {\"level\":3} --><h3>What automated decision making and/or profiling we do with user data</h3><!-- /wp:heading --><!-- wp:heading {\"level\":3} --><h3>Industry regulatory disclosure requirements</h3><!-- /wp:heading -->','Privacy Policy','','trash','closed','open','','privacy-policy__trashed','','','2020-04-16 12:42:22','2020-04-16 12:42:22','',0,'http://localhost:5000/?page_id=3',0,'page','',0),(4,1,'2020-04-16 12:31:02','0000-00-00 00:00:00','','Auto Draft','','auto-draft','open','open','','','','','2020-04-16 12:31:02','0000-00-00 00:00:00','',0,'http://localhost:5000/?p=4',0,'post','',0),(5,1,'2020-04-16 12:42:22','2020-04-16 12:42:22','<!-- wp:heading --><h2>Who we are</h2><!-- /wp:heading --><!-- wp:paragraph --><p>Our website address is: http://localhost:5000.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>What personal data we collect and why we collect it</h2><!-- /wp:heading --><!-- wp:heading {\"level\":3} --><h3>Comments</h3><!-- /wp:heading --><!-- wp:paragraph --><p>When visitors leave comments on the site we collect the data shown in the comments form, and also the visitor&#8217;s IP address and browser user agent string to help spam detection.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>An anonymized string created from your email address (also called a hash) may be provided to the Gravatar service to see if you are using it. The Gravatar service privacy policy is available here: https://automattic.com/privacy/. After approval of your comment, your profile picture is visible to the public in the context of your comment.</p><!-- /wp:paragraph --><!-- wp:heading {\"level\":3} --><h3>Media</h3><!-- /wp:heading --><!-- wp:paragraph --><p>If you upload images to the website, you should avoid uploading images with embedded location data (EXIF GPS) included. Visitors to the website can download and extract any location data from images on the website.</p><!-- /wp:paragraph --><!-- wp:heading {\"level\":3} --><h3>Contact forms</h3><!-- /wp:heading --><!-- wp:heading {\"level\":3} --><h3>Cookies</h3><!-- /wp:heading --><!-- wp:paragraph --><p>If you leave a comment on our site you may opt-in to saving your name, email address and website in cookies. These are for your convenience so that you do not have to fill in your details again when you leave another comment. These cookies will last for one year.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>If you visit our login page, we will set a temporary cookie to determine if your browser accepts cookies. This cookie contains no personal data and is discarded when you close your browser.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>When you log in, we will also set up several cookies to save your login information and your screen display choices. Login cookies last for two days, and screen options cookies last for a year. If you select &quot;Remember Me&quot;, your login will persist for two weeks. If you log out of your account, the login cookies will be removed.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>If you edit or publish an article, an additional cookie will be saved in your browser. This cookie includes no personal data and simply indicates the post ID of the article you just edited. It expires after 1 day.</p><!-- /wp:paragraph --><!-- wp:heading {\"level\":3} --><h3>Embedded content from other websites</h3><!-- /wp:heading --><!-- wp:paragraph --><p>Articles on this site may include embedded content (e.g. videos, images, articles, etc.). Embedded content from other websites behaves in the exact same way as if the visitor has visited the other website.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>These websites may collect data about you, use cookies, embed additional third-party tracking, and monitor your interaction with that embedded content, including tracking your interaction with the embedded content if you have an account and are logged in to that website.</p><!-- /wp:paragraph --><!-- wp:heading {\"level\":3} --><h3>Analytics</h3><!-- /wp:heading --><!-- wp:heading --><h2>Who we share your data with</h2><!-- /wp:heading --><!-- wp:heading --><h2>How long we retain your data</h2><!-- /wp:heading --><!-- wp:paragraph --><p>If you leave a comment, the comment and its metadata are retained indefinitely. This is so we can recognize and approve any follow-up comments automatically instead of holding them in a moderation queue.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>For users that register on our website (if any), we also store the personal information they provide in their user profile. All users can see, edit, or delete their personal information at any time (except they cannot change their username). Website administrators can also see and edit that information.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>What rights you have over your data</h2><!-- /wp:heading --><!-- wp:paragraph --><p>If you have an account on this site, or have left comments, you can request to receive an exported file of the personal data we hold about you, including any data you have provided to us. You can also request that we erase any personal data we hold about you. This does not include any data we are obliged to keep for administrative, legal, or security purposes.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Where we send your data</h2><!-- /wp:heading --><!-- wp:paragraph --><p>Visitor comments may be checked through an automated spam detection service.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Your contact information</h2><!-- /wp:heading --><!-- wp:heading --><h2>Additional information</h2><!-- /wp:heading --><!-- wp:heading {\"level\":3} --><h3>How we protect your data</h3><!-- /wp:heading --><!-- wp:heading {\"level\":3} --><h3>What data breach procedures we have in place</h3><!-- /wp:heading --><!-- wp:heading {\"level\":3} --><h3>What third parties we receive data from</h3><!-- /wp:heading --><!-- wp:heading {\"level\":3} --><h3>What automated decision making and/or profiling we do with user data</h3><!-- /wp:heading --><!-- wp:heading {\"level\":3} --><h3>Industry regulatory disclosure requirements</h3><!-- /wp:heading -->','Privacy Policy','','inherit','closed','closed','','3-revision-v1','','','2020-04-16 12:42:22','2020-04-16 12:42:22','',3,'http://localhost:5100/wp/3-revision-v1/',0,'revision','',0),(6,1,'2020-04-16 12:42:22','2020-04-16 12:42:22','<!-- wp:paragraph -->\n<p>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:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><p>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&#241;a coladas. (And gettin\' caught in the rain.)</p></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph -->\n<p>...or something like this:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><p>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.</p></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph -->\n<p>As a new WordPress user, you should go to <a href=\"http://localhost:5100/wp/wp-admin/\">your dashboard</a> to delete this page and create new pages for your content. Have fun!</p>\n<!-- /wp:paragraph -->','Sample Page','','inherit','closed','closed','','2-revision-v1','','','2020-04-16 12:42:22','2020-04-16 12:42:22','',2,'http://localhost:5100/wp/2-revision-v1/',0,'revision','',0),(7,1,'2020-04-16 12:42:25','0000-00-00 00:00:00','','Auto Draft','','auto-draft','closed','closed','','','','','2020-04-16 12:42:25','0000-00-00 00:00:00','',0,'http://localhost:5100/wp/?page_id=7',0,'page','',0),(8,1,'2020-04-16 12:43:26','2020-04-16 12:43:26','<!-- wp:vidda/header {\"minimal\":false,\"header_type\":\"header one\",\"static_header_type\":false} -->\n<p class=\"wp-block-vidda-header\">header one</p>\n<!-- /wp:vidda/header -->','Home','','publish','closed','closed','','home','','','2020-04-16 12:43:28','2020-04-16 12:43:28','',0,'http://localhost:5100/wp/?page_id=8',0,'page','',0),(9,1,'2020-04-16 12:43:26','2020-04-16 12:43:26','<!-- wp:vidda/header {\"minimal\":false,\"header_type\":\"header one\",\"static_header_type\":false} -->\n<p class=\"wp-block-vidda-header\">header one</p>\n<!-- /wp:vidda/header -->','Home','','inherit','closed','closed','','8-revision-v1','','','2020-04-16 12:43:26','2020-04-16 12:43:26','',8,'http://localhost:5100/wp/8-revision-v1/',0,'revision','',0);
/*!40000 ALTER TABLE `wp_posts` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_registration_log`
--
DROP TABLE IF EXISTS `wp_registration_log`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_registration_log` (
`ID` bigint(20) NOT NULL AUTO_INCREMENT,
`email` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`IP` varchar(30) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`blog_id` bigint(20) NOT NULL DEFAULT '0',
`date_registered` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
PRIMARY KEY (`ID`),
KEY `IP` (`IP`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_registration_log`
--
LOCK TABLES `wp_registration_log` WRITE;
/*!40000 ALTER TABLE `wp_registration_log` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_registration_log` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_relevanssi`
--
DROP TABLE IF EXISTS `wp_relevanssi`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_relevanssi` (
`doc` bigint(20) NOT NULL DEFAULT '0',
`term` varchar(50) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '0',
`term_reverse` varchar(50) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '0',
`content` mediumint(9) NOT NULL DEFAULT '0',
`title` mediumint(9) NOT NULL DEFAULT '0',
`comment` mediumint(9) NOT NULL DEFAULT '0',
`tag` mediumint(9) NOT NULL DEFAULT '0',
`link` mediumint(9) NOT NULL DEFAULT '0',
`author` mediumint(9) NOT NULL DEFAULT '0',
`category` mediumint(9) NOT NULL DEFAULT '0',
`excerpt` mediumint(9) NOT NULL DEFAULT '0',
`taxonomy` mediumint(9) NOT NULL DEFAULT '0',
`customfield` mediumint(9) NOT NULL DEFAULT '0',
`mysqlcolumn` mediumint(9) NOT NULL DEFAULT '0',
`taxonomy_detail` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
`customfield_detail` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
`mysqlcolumn_detail` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
`type` varchar(210) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'post',
`item` bigint(20) NOT NULL DEFAULT '0',
UNIQUE KEY `doctermitem` (`doc`,`term`,`item`),
KEY `terms` (`term`(20)),
KEY `relevanssi_term_reverse_idx` (`term_reverse`(10)),
KEY `docs` (`doc`),
KEY `typeitem` (`type`(190),`item`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_relevanssi`
--
LOCK TABLES `wp_relevanssi` WRITE;
/*!40000 ALTER TABLE `wp_relevanssi` DISABLE KEYS */;
INSERT INTO `wp_relevanssi` VALUES (8,'header','redaeh',1,0,0,0,0,0,0,0,0,0,0,'','','','post',0),(8,'home','emoh',0,1,0,0,0,0,0,0,0,0,0,'','','','post',0);
/*!40000 ALTER TABLE `wp_relevanssi` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_relevanssi_log`
--
DROP TABLE IF EXISTS `wp_relevanssi_log`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_relevanssi_log` (
`id` bigint(9) NOT NULL AUTO_INCREMENT,
`query` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL,
`hits` mediumint(9) NOT NULL DEFAULT '0',
`time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
`user_id` bigint(20) NOT NULL DEFAULT '0',
`ip` varchar(40) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
UNIQUE KEY `id` (`id`),
KEY `query` (`query`(190))
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_relevanssi_log`
--
LOCK TABLES `wp_relevanssi_log` WRITE;
/*!40000 ALTER TABLE `wp_relevanssi_log` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_relevanssi_log` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_relevanssi_stopwords`
--
DROP TABLE IF EXISTS `wp_relevanssi_stopwords`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_relevanssi_stopwords` (
`stopword` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL,
UNIQUE KEY `stopword` (`stopword`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_relevanssi_stopwords`
--
LOCK TABLES `wp_relevanssi_stopwords` WRITE;
/*!40000 ALTER TABLE `wp_relevanssi_stopwords` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_relevanssi_stopwords` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_signups`
--
DROP TABLE IF EXISTS `wp_signups`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_signups` (
`signup_id` bigint(20) NOT NULL AUTO_INCREMENT,
`domain` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`path` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`title` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
`user_login` varchar(60) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`user_email` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`registered` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`activated` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`active` tinyint(1) NOT NULL DEFAULT '0',
`activation_key` varchar(50) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`meta` longtext COLLATE utf8mb4_unicode_520_ci,
PRIMARY KEY (`signup_id`),
KEY `activation_key` (`activation_key`),
KEY `user_email` (`user_email`),
KEY `user_login_email` (`user_login`,`user_email`),
KEY `domain_path` (`domain`(140),`path`(51))
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_signups`
--
LOCK TABLES `wp_signups` WRITE;
/*!40000 ALTER TABLE `wp_signups` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_signups` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_site`
--
DROP TABLE IF EXISTS `wp_site`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_site` (
`id` bigint(20) NOT NULL AUTO_INCREMENT,
`domain` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`path` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
PRIMARY KEY (`id`),
KEY `domain` (`domain`(140),`path`(51))
) 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_site`
--
LOCK TABLES `wp_site` WRITE;
/*!40000 ALTER TABLE `wp_site` DISABLE KEYS */;
INSERT INTO `wp_site` VALUES (1,'localhost:5100','/');
/*!40000 ALTER TABLE `wp_site` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_sitemeta`
--
DROP TABLE IF EXISTS `wp_sitemeta`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_sitemeta` (
`meta_id` bigint(20) NOT NULL AUTO_INCREMENT,
`site_id` bigint(20) 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 `meta_key` (`meta_key`(191)),
KEY `site_id` (`site_id`)
) ENGINE=InnoDB AUTO_INCREMENT=75 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_sitemeta`
--
LOCK TABLES `wp_sitemeta` WRITE;
/*!40000 ALTER TABLE `wp_sitemeta` DISABLE KEYS */;
INSERT INTO `wp_sitemeta` VALUES (1,1,'site_name','My Website'),(2,1,'admin_email','info@example.com'),(3,1,'admin_user_id','1'),(4,1,'registration','none'),(5,1,'upload_filetypes','jpg jpeg png gif mov avi mpg 3gp 3g2 midi mid pdf doc ppt odt pptx docx pps ppsx xls xlsx key mp3 ogg flac m4a wav mp4 m4v webm ogv flv'),(6,1,'blog_upload_space','100'),(7,1,'fileupload_maxk','524288'),(8,1,'site_admins','a:1:{i:0;s:5:\"vidda\";}'),(9,1,'allowedthemes','a:2:{s:14:\"twentynineteen\";b:1;s:9:\"My Website\";b:1;}'),(10,1,'illegal_names','a:9:{i:0;s:3:\"www\";i:1;s:3:\"web\";i:2;s:4:\"root\";i:3;s:5:\"admin\";i:4;s:4:\"main\";i:5;s:6:\"invite\";i:6;s:13:\"administrator\";i:7;s:5:\"files\";i:8;s:4:\"blog\";}'),(11,1,'wpmu_upgrade_site','44719'),(12,1,'welcome_email','Howdy USERNAME,\r\n\r\nYour new SITE_NAME site has been successfully set up at:\r\nBLOG_URL\r\n\r\nYou can log in to the administrator account with the following information:\r\n\r\nUsername: USERNAME\r\nPassword: PASSWORD\r\nLog in here: BLOG_URLwp-login.php\r\n\r\nWe hope you enjoy your new site. Thanks!\r\n\r\n--The Team @ SITE_NAME'),(13,1,'first_post','Welcome to %s. This is your first post. Edit or delete it, then start writing!'),(14,1,'siteurl','http://localhost:5100/'),(15,1,'add_new_users','0'),(16,1,'upload_space_check_disabled','1'),(17,1,'subdomain_install',''),(18,1,'global_terms_enabled','0'),(19,1,'ms_files_rewriting','0'),(20,1,'initial_db_version','44719'),(21,1,'active_sitewide_plugins','a:0:{}'),(22,1,'WPLANG',''),(23,1,'nonce_key','P B3+Ui0^<a*_eW^.%FS3LCkoCxT)fHtl!hF[/V(mFvJ1FY?I_7^q]ep=(3LEE2U'),(24,1,'nonce_salt','jyA/a^.E.3bdg&onIMX/M~-M71+WkP32e4~L5d$-SuC(H7Hy(AT<E!PEoUQ,$jJ|'),(25,1,'auth_key','g@:V>E4 y)P&1xFb^aXw!6*:o`VS},x1j-C`=z=rBIQAnB?I#V4{/[8o`E*Tida;'),(26,1,'auth_salt',' #Kbi$q>ojVN2x|mfWFIuhZPr<<PY9Mh!)O3?iyyGQ@c#lwNZ27 sqXN`#rJ1}O9'),(27,1,'logged_in_key','X&glRjJpP,v1s3<uj pMulK6gBBTKH^=Z_Y~d6JP<U.0MUJg;BC;i}@/79kd)j> '),(28,1,'logged_in_salt','4<{IhFk^@]=)x)6k8)<eN*/zp,b_2lZ@0sUBy.9f>vi_ryaM]rIa8uo@d} +X_{u'),(29,1,'_site_transient_update_core','O:8:\"stdClass\":4:{s:7:\"updates\";a:7:{i:0;O:8:\"stdClass\":10:{s:8:\"response\";s:7:\"upgrade\";s:8:\"download\";s:59:\"https://downloads.wordpress.org/release/wordpress-5.7.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.7.1.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-5.7.1-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-5.7.1-new-bundled.zip\";s:7:\"partial\";b:0;s:8:\"rollback\";b:0;}s:7:\"current\";s:5:\"5.7.1\";s:7:\"version\";s:5:\"5.7.1\";s:11:\"php_version\";s:6:\"5.6.20\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"5.6\";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.7.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.7.1.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-5.7.1-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-5.7.1-new-bundled.zip\";s:7:\"partial\";b:0;s:8:\"rollback\";b:0;}s:7:\"current\";s:5:\"5.7.1\";s:7:\"version\";s:5:\"5.7.1\";s:11:\"php_version\";s:6:\"5.6.20\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"5.6\";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.6.3.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:59:\"https://downloads.wordpress.org/release/wordpress-5.6.3.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-5.6.3-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-5.6.3-new-bundled.zip\";s:7:\"partial\";b:0;s:8:\"rollback\";b:0;}s:7:\"current\";s:5:\"5.6.3\";s:7:\"version\";s:5:\"5.6.3\";s:11:\"php_version\";s:6:\"5.6.20\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"5.6\";s:15:\"partial_version\";s:0:\"\";s:9:\"new_files\";s:1:\"1\";}i:3;O:8:\"stdClass\":11:{s:8:\"response\";s:10:\"autoupdate\";s:8:\"download\";s:59:\"https://downloads.wordpress.org/release/wordpress-5.5.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.5.4.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-5.5.4-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-5.5.4-new-bundled.zip\";s:7:\"partial\";b:0;s:8:\"rollback\";b:0;}s:7:\"current\";s:5:\"5.5.4\";s:7:\"version\";s:5:\"5.5.4\";s:11:\"php_version\";s:6:\"5.6.20\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"5.6\";s:15:\"partial_version\";s:0:\"\";s:9:\"new_files\";s:1:\"1\";}i:4;O:8:\"stdClass\":11:{s:8:\"response\";s:10:\"autoupdate\";s:8:\"download\";s:59:\"https://downloads.wordpress.org/release/wordpress-5.4.5.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.4.5.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-5.4.5-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-5.4.5-new-bundled.zip\";s:7:\"partial\";b:0;s:8:\"rollback\";b:0;}s:7:\"current\";s:5:\"5.4.5\";s:7:\"version\";s:5:\"5.4.5\";s:11:\"php_version\";s:6:\"5.6.20\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"5.6\";s:15:\"partial_version\";s:0:\"\";s:9:\"new_files\";s:1:\"1\";}i:5;O:8:\"stdClass\":11:{s:8:\"response\";s:10:\"autoupdate\";s:8:\"download\";s:59:\"https://downloads.wordpress.org/release/wordpress-5.3.7.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.3.7.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-5.3.7-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-5.3.7-new-bundled.zip\";s:7:\"partial\";b:0;s:8:\"rollback\";b:0;}s:7:\"current\";s:5:\"5.3.7\";s:7:\"version\";s:5:\"5.3.7\";s:11:\"php_version\";s:6:\"5.6.20\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"5.6\";s:15:\"partial_version\";s:0:\"\";s:9:\"new_files\";s:1:\"1\";}i:6;O:8:\"stdClass\":11:{s:8:\"response\";s:10:\"autoupdate\";s:8:\"download\";s:60:\"https://downloads.wordpress.org/release/wordpress-5.2.10.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:60:\"https://downloads.wordpress.org/release/wordpress-5.2.10.zip\";s:10:\"no_content\";s:71:\"https://downloads.wordpress.org/release/wordpress-5.2.10-no-content.zip\";s:11:\"new_bundled\";s:72:\"https://downloads.wordpress.org/release/wordpress-5.2.10-new-bundled.zip\";s:7:\"partial\";s:70:\"https://downloads.wordpress.org/release/wordpress-5.2.10-partial-4.zip\";s:8:\"rollback\";s:71:\"https://downloads.wordpress.org/release/wordpress-5.2.10-rollback-4.zip\";}s:7:\"current\";s:6:\"5.2.10\";s:7:\"version\";s:6:\"5.2.10\";s:11:\"php_version\";s:6:\"5.6.20\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"5.6\";s:15:\"partial_version\";s:5:\"5.2.4\";s:9:\"new_files\";s:0:\"\";}}s:12:\"last_checked\";i:1618833565;s:15:\"version_checked\";s:5:\"5.2.4\";s:12:\"translations\";a:0:{}}'),(30,1,'_site_transient_update_plugins','O:8:\"stdClass\":4:{s:12:\"last_checked\";i:1618833565;s:8:\"response\";a:10:{s:41:\"acf-to-rest-api/class-acf-to-rest-api.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:29:\"w.org/plugins/acf-to-rest-api\";s:4:\"slug\";s:15:\"acf-to-rest-api\";s:6:\"plugin\";s:41:\"acf-to-rest-api/class-acf-to-rest-api.php\";s:11:\"new_version\";s:5:\"3.3.2\";s:3:\"url\";s:46:\"https://wordpress.org/plugins/acf-to-rest-api/\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/plugin/acf-to-rest-api.3.3.2.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:68:\"https://ps.w.org/acf-to-rest-api/assets/icon-256x256.jpg?rev=1752896\";s:2:\"1x\";s:68:\"https://ps.w.org/acf-to-rest-api/assets/icon-128x128.jpg?rev=1752896\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:71:\"https://ps.w.org/acf-to-rest-api/assets/banner-1544x500.jpg?rev=1752896\";s:2:\"1x\";s:70:\"https://ps.w.org/acf-to-rest-api/assets/banner-772x250.jpg?rev=1752896\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"5.4.5\";s:12:\"requires_php\";b:0;s:13:\"compatibility\";O:8:\"stdClass\":0:{}}s:37:\"breadcrumb-navxt/breadcrumb-navxt.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:30:\"w.org/plugins/breadcrumb-navxt\";s:4:\"slug\";s:16:\"breadcrumb-navxt\";s:6:\"plugin\";s:37:\"breadcrumb-navxt/breadcrumb-navxt.php\";s:11:\"new_version\";s:5:\"6.6.0\";s:3:\"url\";s:47:\"https://wordpress.org/plugins/breadcrumb-navxt/\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/plugin/breadcrumb-navxt.6.6.0.zip\";s:5:\"icons\";a:3:{s:2:\"2x\";s:69:\"https://ps.w.org/breadcrumb-navxt/assets/icon-256x256.png?rev=2410525\";s:2:\"1x\";s:61:\"https://ps.w.org/breadcrumb-navxt/assets/icon.svg?rev=1927103\";s:3:\"svg\";s:61:\"https://ps.w.org/breadcrumb-navxt/assets/icon.svg?rev=1927103\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:72:\"https://ps.w.org/breadcrumb-navxt/assets/banner-1544x500.png?rev=1927103\";s:2:\"1x\";s:71:\"https://ps.w.org/breadcrumb-navxt/assets/banner-772x250.png?rev=1927103\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"5.7.1\";s:12:\"requires_php\";s:3:\"5.5\";s:13:\"compatibility\";O:8:\"stdClass\":0:{}}s:27:\"image-sizes/image-sizes.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:25:\"w.org/plugins/image-sizes\";s:4:\"slug\";s:11:\"image-sizes\";s:6:\"plugin\";s:27:\"image-sizes/image-sizes.php\";s:11:\"new_version\";s:5:\"3.2.2\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/image-sizes/\";s:7:\"package\";s:54:\"https://downloads.wordpress.org/plugin/image-sizes.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:64:\"https://ps.w.org/image-sizes/assets/icon-256x256.png?rev=2500289\";s:2:\"1x\";s:64:\"https://ps.w.org/image-sizes/assets/icon-128x128.png?rev=2500289\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:66:\"https://ps.w.org/image-sizes/assets/banner-772x250.png?rev=2500291\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"5.6.3\";s:12:\"requires_php\";s:3:\"5.4\";s:13:\"compatibility\";O:8:\"stdClass\":0:{}}s:33:\"disable-embeds/disable-embeds.php\";O:8:\"stdClass\":13:{s:2:\"id\";s:28:\"w.org/plugins/disable-embeds\";s:4:\"slug\";s:14:\"disable-embeds\";s:6:\"plugin\";s:33:\"disable-embeds/disable-embeds.php\";s:11:\"new_version\";s:5:\"1.5.0\";s:3:\"url\";s:45:\"https://wordpress.org/plugins/disable-embeds/\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/plugin/disable-embeds.1.5.0.zip\";s:5:\"icons\";a:2:{s:2:\"1x\";s:59:\"https://ps.w.org/disable-embeds/assets/icon.svg?rev=1271646\";s:3:\"svg\";s:59:\"https://ps.w.org/disable-embeds/assets/icon.svg?rev=1271646\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:70:\"https://ps.w.org/disable-embeds/assets/banner-1544x500.png?rev=1271646\";s:2:\"1x\";s:69:\"https://ps.w.org/disable-embeds/assets/banner-772x250.png?rev=1271646\";}s:11:\"banners_rtl\";a:0:{}s:14:\"upgrade_notice\";s:80:\"<p>Updated against WordPress 5.7 to correctly remove block style variations.</p>\";s:6:\"tested\";s:5:\"5.7.1\";s:12:\"requires_php\";b:0;s:13:\"compatibility\";O:8:\"stdClass\":0:{}}s:63:\"limit-login-attempts-reloaded/limit-login-attempts-reloaded.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:43:\"w.org/plugins/limit-login-attempts-reloaded\";s:4:\"slug\";s:29:\"limit-login-attempts-reloaded\";s:6:\"plugin\";s:63:\"limit-login-attempts-reloaded/limit-login-attempts-reloaded.php\";s:11:\"new_version\";s:6:\"2.21.0\";s:3:\"url\";s:60:\"https://wordpress.org/plugins/limit-login-attempts-reloaded/\";s:7:\"package\";s:79:\"https://downloads.wordpress.org/plugin/limit-login-attempts-reloaded.2.21.0.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:82:\"https://ps.w.org/limit-login-attempts-reloaded/assets/icon-256x256.png?rev=2456910\";s:2:\"1x\";s:82:\"https://ps.w.org/limit-login-attempts-reloaded/assets/icon-128x128.png?rev=2456910\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:85:\"https://ps.w.org/limit-login-attempts-reloaded/assets/banner-1544x500.png?rev=2456910\";s:2:\"1x\";s:84:\"https://ps.w.org/limit-login-attempts-reloaded/assets/banner-772x250.png?rev=2456910\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"5.7.1\";s:12:\"requires_php\";b:0;s:13:\"compatibility\";O:8:\"stdClass\":0:{}}s:27:\"redirection/redirection.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:25:\"w.org/plugins/redirection\";s:4:\"slug\";s:11:\"redirection\";s:6:\"plugin\";s:27:\"redirection/redirection.php\";s:11:\"new_version\";s:5:\"5.1.1\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/redirection/\";s:7:\"package\";s:54:\"https://downloads.wordpress.org/plugin/redirection.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:63:\"https://ps.w.org/redirection/assets/icon-256x256.jpg?rev=983639\";s:2:\"1x\";s:63:\"https://ps.w.org/redirection/assets/icon-128x128.jpg?rev=983640\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:66:\"https://ps.w.org/redirection/assets/banner-1544x500.jpg?rev=983641\";s:2:\"1x\";s:65:\"https://ps.w.org/redirection/assets/banner-772x250.jpg?rev=983642\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"5.7.1\";s:12:\"requires_php\";s:3:\"5.6\";s:13:\"compatibility\";O:8:\"stdClass\":0:{}}s:25:\"relevanssi/relevanssi.php\";O:8:\"stdClass\":13:{s:2:\"id\";s:24:\"w.org/plugins/relevanssi\";s:4:\"slug\";s:10:\"relevanssi\";s:6:\"plugin\";s:25:\"relevanssi/relevanssi.php\";s:11:\"new_version\";s:6:\"4.12.5\";s:3:\"url\";s:41:\"https://wordpress.org/plugins/relevanssi/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/plugin/relevanssi.4.12.5.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:63:\"https://ps.w.org/relevanssi/assets/icon-256x256.png?rev=2025044\";s:2:\"1x\";s:63:\"https://ps.w.org/relevanssi/assets/icon-128x128.png?rev=2025044\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:66:\"https://ps.w.org/relevanssi/assets/banner-1544x500.jpg?rev=1647178\";s:2:\"1x\";s:65:\"https://ps.w.org/relevanssi/assets/banner-772x250.jpg?rev=1647180\";}s:11:\"banners_rtl\";a:0:{}s:14:\"upgrade_notice\";s:37:\"<ul>\n<li>Fixes minor bugs.</li>\n</ul>\";s:6:\"tested\";s:5:\"5.7.1\";s:12:\"requires_php\";s:3:\"7.0\";s:13:\"compatibility\";O:8:\"stdClass\":0:{}}s:21:\"safe-svg/safe-svg.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:22:\"w.org/plugins/safe-svg\";s:4:\"slug\";s:8:\"safe-svg\";s:6:\"plugin\";s:21:\"safe-svg/safe-svg.php\";s:11:\"new_version\";s:5:\"1.9.9\";s:3:\"url\";s:39:\"https://wordpress.org/plugins/safe-svg/\";s:7:\"package\";s:57:\"https://downloads.wordpress.org/plugin/safe-svg.1.9.9.zip\";s:5:\"icons\";a:3:{s:2:\"2x\";s:61:\"https://ps.w.org/safe-svg/assets/icon-256x256.png?rev=1706191\";s:2:\"1x\";s:53:\"https://ps.w.org/safe-svg/assets/icon.svg?rev=1706191\";s:3:\"svg\";s:53:\"https://ps.w.org/safe-svg/assets/icon.svg?rev=1706191\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:64:\"https://ps.w.org/safe-svg/assets/banner-1544x500.png?rev=1706191\";s:2:\"1x\";s:63:\"https://ps.w.org/safe-svg/assets/banner-772x250.png?rev=1706191\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"5.4.5\";s:12:\"requires_php\";s:3:\"5.6\";s:13:\"compatibility\";O:8:\"stdClass\":0:{}}s:53:\"simple-custom-post-order/simple-custom-post-order.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:38:\"w.org/plugins/simple-custom-post-order\";s:4:\"slug\";s:24:\"simple-custom-post-order\";s:6:\"plugin\";s:53:\"simple-custom-post-order/simple-custom-post-order.php\";s:11:\"new_version\";s:5:\"2.5.4\";s:3:\"url\";s:55:\"https://wordpress.org/plugins/simple-custom-post-order/\";s:7:\"package\";s:73:\"https://downloads.wordpress.org/plugin/simple-custom-post-order.2.5.4.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:77:\"https://ps.w.org/simple-custom-post-order/assets/icon-256x256.jpg?rev=1859717\";s:2:\"1x\";s:77:\"https://ps.w.org/simple-custom-post-order/assets/icon-256x256.jpg?rev=1859717\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:79:\"https://ps.w.org/simple-custom-post-order/assets/banner-772x250.jpg?rev=1859717\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"5.7.1\";s:12:\"requires_php\";s:3:\"5.6\";s:13:\"compatibility\";O:8:\"stdClass\":0:{}}s:34:\"advanced-custom-fields-pro/acf.php\";O:8:\"stdClass\":8:{s:4:\"slug\";s:26:\"advanced-custom-fields-pro\";s:6:\"plugin\";s:34:\"advanced-custom-fields-pro/acf.php\";s:11:\"new_version\";s:5:\"5.9.5\";s:3:\"url\";s:36:\"https://www.advancedcustomfields.com\";s:6:\"tested\";s:3:\"5.7\";s:7:\"package\";s:0:\"\";s:5:\"icons\";a:1:{s:7:\"default\";s:63:\"https://ps.w.org/advanced-custom-fields/assets/icon-256x256.png\";}s:7:\"banners\";a:2:{s:3:\"low\";s:77:\"https://ps.w.org/advanced-custom-fields/assets/banner-772x250.jpg?rev=1729102\";s:4:\"high\";s:78:\"https://ps.w.org/advanced-custom-fields/assets/banner-1544x500.jpg?rev=1729099\";}}}s:12:\"translations\";a:0:{}s:9:\"no_update\";a:8:{s:57:\"acf-content-analysis-for-yoast-seo/yoast-acf-analysis.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:48:\"w.org/plugins/acf-content-analysis-for-yoast-seo\";s:4:\"slug\";s:34:\"acf-content-analysis-for-yoast-seo\";s:6:\"plugin\";s:57:\"acf-content-analysis-for-yoast-seo/yoast-acf-analysis.php\";s:11:\"new_version\";s:5:\"3.0.1\";s:3:\"url\";s:65:\"https://wordpress.org/plugins/acf-content-analysis-for-yoast-seo/\";s:7:\"package\";s:83:\"https://downloads.wordpress.org/plugin/acf-content-analysis-for-yoast-seo.3.0.1.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:87:\"https://ps.w.org/acf-content-analysis-for-yoast-seo/assets/icon-256x256.png?rev=1717503\";s:2:\"1x\";s:87:\"https://ps.w.org/acf-content-analysis-for-yoast-seo/assets/icon-128x128.png?rev=1717503\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:90:\"https://ps.w.org/acf-content-analysis-for-yoast-seo/assets/banner-1544x500.png?rev=1717503\";s:2:\"1x\";s:89:\"https://ps.w.org/acf-content-analysis-for-yoast-seo/assets/banner-772x250.png?rev=1717503\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"5.7.1\";s:12:\"requires_php\";s:6:\"5.6.20\";s:13:\"compatibility\";a:0:{}}s:33:\"disable-emojis/disable-emojis.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:28:\"w.org/plugins/disable-emojis\";s:4:\"slug\";s:14:\"disable-emojis\";s:6:\"plugin\";s:33:\"disable-emojis/disable-emojis.php\";s:11:\"new_version\";s:5:\"1.7.2\";s:3:\"url\";s:45:\"https://wordpress.org/plugins/disable-emojis/\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/plugin/disable-emojis.1.7.2.zip\";s:5:\"icons\";a:1:{s:7:\"default\";s:65:\"https://s.w.org/plugins/geopattern-icon/disable-emojis_d3c7d6.svg\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:70:\"https://ps.w.org/disable-emojis/assets/banner-1544x500.png?rev=1145188\";s:2:\"1x\";s:69:\"https://ps.w.org/disable-emojis/assets/banner-772x250.png?rev=1145188\";}s:11:\"banners_rtl\";a:0:{}}s:45:\"ewww-image-optimizer/ewww-image-optimizer.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:34:\"w.org/plugins/ewww-image-optimizer\";s:4:\"slug\";s:20:\"ewww-image-optimizer\";s:6:\"plugin\";s:45:\"ewww-image-optimizer/ewww-image-optimizer.php\";s:11:\"new_version\";s:5:\"6.1.1\";s:3:\"url\";s:51:\"https://wordpress.org/plugins/ewww-image-optimizer/\";s:7:\"package\";s:69:\"https://downloads.wordpress.org/plugin/ewww-image-optimizer.6.1.1.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:73:\"https://ps.w.org/ewww-image-optimizer/assets/icon-256x256.png?rev=1582276\";s:2:\"1x\";s:73:\"https://ps.w.org/ewww-image-optimizer/assets/icon-128x128.png?rev=1582276\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:76:\"https://ps.w.org/ewww-image-optimizer/assets/banner-1544x500.jpg?rev=1582276\";s:2:\"1x\";s:75:\"https://ps.w.org/ewww-image-optimizer/assets/banner-772x250.jpg?rev=1582276\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"5.7.1\";s:12:\"requires_php\";s:3:\"7.1\";s:13:\"compatibility\";a:0:{}}s:23:\"gutenberg/gutenberg.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:23:\"w.org/plugins/gutenberg\";s:4:\"slug\";s:9:\"gutenberg\";s:6:\"plugin\";s:23:\"gutenberg/gutenberg.php\";s:11:\"new_version\";s:6:\"10.4.1\";s:3:\"url\";s:40:\"https://wordpress.org/plugins/gutenberg/\";s:7:\"package\";s:52:\"https://downloads.wordpress.org/plugin/gutenberg.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:62:\"https://ps.w.org/gutenberg/assets/icon-256x256.jpg?rev=1776042\";s:2:\"1x\";s:62:\"https://ps.w.org/gutenberg/assets/icon-128x128.jpg?rev=1776042\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:65:\"https://ps.w.org/gutenberg/assets/banner-1544x500.jpg?rev=1718710\";s:2:\"1x\";s:64:\"https://ps.w.org/gutenberg/assets/banner-772x250.jpg?rev=1718710\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"5.7.1\";s:12:\"requires_php\";s:3:\"5.6\";s:13:\"compatibility\";a:0:{}}s:43:\"remove-author-pages/remove-author-pages.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:33:\"w.org/plugins/remove-author-pages\";s:4:\"slug\";s:19:\"remove-author-pages\";s:6:\"plugin\";s:43:\"remove-author-pages/remove-author-pages.php\";s:11:\"new_version\";s:3:\"0.2\";s:3:\"url\";s:50:\"https://wordpress.org/plugins/remove-author-pages/\";s:7:\"package\";s:66:\"https://downloads.wordpress.org/plugin/remove-author-pages.0.2.zip\";s:5:\"icons\";a:1:{s:7:\"default\";s:63:\"https://s.w.org/plugins/geopattern-icon/remove-author-pages.svg\";}s:7:\"banners\";a:0:{}s:11:\"banners_rtl\";a:0:{}}s:49:\"sendgrid-email-delivery-simplified/wpsendgrid.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:48:\"w.org/plugins/sendgrid-email-delivery-simplified\";s:4:\"slug\";s:34:\"sendgrid-email-delivery-simplified\";s:6:\"plugin\";s:49:\"sendgrid-email-delivery-simplified/wpsendgrid.php\";s:11:\"new_version\";s:6:\"1.11.8\";s:3:\"url\";s:65:\"https://wordpress.org/plugins/sendgrid-email-delivery-simplified/\";s:7:\"package\";s:84:\"https://downloads.wordpress.org/plugin/sendgrid-email-delivery-simplified.1.11.9.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:87:\"https://ps.w.org/sendgrid-email-delivery-simplified/assets/icon-256x256.png?rev=1445523\";s:2:\"1x\";s:87:\"https://ps.w.org/sendgrid-email-delivery-simplified/assets/icon-128x128.png?rev=1445523\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:89:\"https://ps.w.org/sendgrid-email-delivery-simplified/assets/banner-772x250.jpg?rev=1445523\";}s:11:\"banners_rtl\";a:0:{}}s:29:\"wp-api-menus/wp-api-menus.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:26:\"w.org/plugins/wp-api-menus\";s:4:\"slug\";s:12:\"wp-api-menus\";s:6:\"plugin\";s:29:\"wp-api-menus/wp-api-menus.php\";s:11:\"new_version\";s:5:\"1.3.2\";s:3:\"url\";s:43:\"https://wordpress.org/plugins/wp-api-menus/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/plugin/wp-api-menus.1.3.2.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:65:\"https://ps.w.org/wp-api-menus/assets/icon-256x256.png?rev=1070279\";s:2:\"1x\";s:65:\"https://ps.w.org/wp-api-menus/assets/icon-128x128.png?rev=1070279\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:68:\"https://ps.w.org/wp-api-menus/assets/banner-1544x500.png?rev=1070279\";s:2:\"1x\";s:67:\"https://ps.w.org/wp-api-menus/assets/banner-772x250.png?rev=1070279\";}s:11:\"banners_rtl\";a:0:{}}s:24:\"wordpress-seo/wp-seo.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:27:\"w.org/plugins/wordpress-seo\";s:4:\"slug\";s:13:\"wordpress-seo\";s:6:\"plugin\";s:24:\"wordpress-seo/wp-seo.php\";s:11:\"new_version\";s:6:\"16.1.1\";s:3:\"url\";s:44:\"https://wordpress.org/plugins/wordpress-seo/\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/plugin/wordpress-seo.16.1.1.zip\";s:5:\"icons\";a:3:{s:2:\"2x\";s:66:\"https://ps.w.org/wordpress-seo/assets/icon-256x256.png?rev=2363699\";s:2:\"1x\";s:58:\"https://ps.w.org/wordpress-seo/assets/icon.svg?rev=2363699\";s:3:\"svg\";s:58:\"https://ps.w.org/wordpress-seo/assets/icon.svg?rev=2363699\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:69:\"https://ps.w.org/wordpress-seo/assets/banner-1544x500.png?rev=1843435\";s:2:\"1x\";s:68:\"https://ps.w.org/wordpress-seo/assets/banner-772x250.png?rev=1843435\";}s:11:\"banners_rtl\";a:2:{s:2:\"2x\";s:73:\"https://ps.w.org/wordpress-seo/assets/banner-1544x500-rtl.png?rev=1843435\";s:2:\"1x\";s:72:\"https://ps.w.org/wordpress-seo/assets/banner-772x250-rtl.png?rev=1843435\";}s:6:\"tested\";s:5:\"5.7.1\";s:12:\"requires_php\";s:6:\"5.6.20\";s:13:\"compatibility\";a:0:{}}}}'),(33,1,'_site_transient_update_themes','O:8:\"stdClass\":4:{s:12:\"last_checked\";i:1618833568;s:7:\"checked\";a:1:{s:9:\"My Website\";s:5:\"0.1.0\";}s:8:\"response\";a:0:{}s:12:\"translations\";a:0:{}}'),(34,1,'can_compress_scripts','1'),(35,1,'_site_transient_timeout_browser_7882d5a5641293bd72253bfbda0286f6','1587645381'),(36,1,'_site_transient_browser_7882d5a5641293bd72253bfbda0286f6','a:10:{s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:13:\"80.0.3987.163\";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;}'),(39,1,'_site_transient_timeout_community-events-bf177db4cdd8a3d4c99b4463854de2bd','1587083782'),(40,1,'_site_transient_community-events-bf177db4cdd8a3d4c99b4463854de2bd','a:3:{s:9:\"sandboxed\";b:0;s:8:\"location\";a:1:{s:2:\"ip\";s:10:\"172.19.0.0\";}s:6:\"events\";a:5:{i:0;a:8:{s:4:\"type\";s:6:\"meetup\";s:5:\"title\";s:25:\"WordPress Meetup Fryslân\";s:3:\"url\";s:65:\"https://www.meetup.com/WordPress-Meetup-Fryslan/events/269057668/\";s:6:\"meetup\";s:25:\"WordPress Meetup Fryslân\";s:10:\"meetup_url\";s:48:\"https://www.meetup.com/WordPress-Meetup-Fryslan/\";s:4:\"date\";s:19:\"2020-04-23 19:00:00\";s:8:\"end_date\";s:19:\"2020-04-23 21:00:00\";s:8:\"location\";a:4:{s:8:\"location\";s:23:\"Leeuwarden, Netherlands\";s:7:\"country\";s:2:\"nl\";s:8:\"latitude\";d:53.199237823486001;s:9:\"longitude\";d:5.7741169929504004;}}i:1;a:8:{s:4:\"type\";s:6:\"meetup\";s:5:\"title\";s:45:\"Wordpress Gouda - ONLINE Fly-in Meetup April!\";s:3:\"url\";s:55:\"https://www.meetup.com/wordpressgouda/events/269947732/\";s:6:\"meetup\";s:15:\"WordPress Gouda\";s:10:\"meetup_url\";s:38:\"https://www.meetup.com/wordpressgouda/\";s:4:\"date\";s:19:\"2020-04-25 14:00:00\";s:8:\"end_date\";s:19:\"2020-04-25 16:00:00\";s:8:\"location\";a:4:{s:8:\"location\";s:6:\"online\";s:7:\"country\";s:0:\"\";s:8:\"latitude\";d:52.020000457763999;s:9:\"longitude\";d:4.6999998092651003;}}i:2;a:8:{s:4:\"type\";s:6:\"meetup\";s:5:\"title\";s:37:\"WordPress Meetup Nijmegen 13 mei 2020\";s:3:\"url\";s:66:\"https://www.meetup.com/WordPress-Meetup-Nijmegen/events/267754330/\";s:6:\"meetup\";s:25:\"WordPress Meetup Nijmegen\";s:10:\"meetup_url\";s:49:\"https://www.meetup.com/WordPress-Meetup-Nijmegen/\";s:4:\"date\";s:19:\"2020-05-13 19:30:00\";s:8:\"end_date\";s:19:\"2020-05-13 22:30:00\";s:8:\"location\";a:4:{s:8:\"location\";s:21:\"Nijmegen, Netherlands\";s:7:\"country\";s:2:\"nl\";s:8:\"latitude\";d:51.847888946532997;s:9:\"longitude\";d:5.8683800697326998;}}i:3;a:8:{s:4:\"type\";s:6:\"meetup\";s:5:\"title\";s:23:\"WordPress Meetup Zwolle\";s:3:\"url\";s:68:\"https://www.meetup.com/Zwolle-WordPress-Meetup/events/nsmmmrybchbsb/\";s:6:\"meetup\";s:23:\"WordPress Meetup Zwolle\";s:10:\"meetup_url\";s:47:\"https://www.meetup.com/Zwolle-WordPress-Meetup/\";s:4:\"date\";s:19:\"2020-05-14 18:45:00\";s:8:\"end_date\";s:19:\"2020-05-14 20:55:00\";s:8:\"location\";a:4:{s:8:\"location\";s:19:\"Zwolle, Netherlands\";s:7:\"country\";s:2:\"nl\";s:8:\"latitude\";d:52.508583068847997;s:9:\"longitude\";d:6.0933017730712997;}}i:4;a:8:{s:4:\"type\";s:8:\"wordcamp\";s:5:\"title\";s:23:\"WordCamp Retreat Soltau\";s:3:\"url\";s:40:\"https://2020-soltau.retreat.wordcamp.org\";s:6:\"meetup\";N;s:10:\"meetup_url\";N;s:4:\"date\";s:19:\"2020-04-30 00:00:00\";s:8:\"end_date\";s:19:\"2020-05-03 00:00:00\";s:8:\"location\";a:4:{s:8:\"location\";s:6:\"Soltau\";s:7:\"country\";s:2:\"DE\";s:8:\"latitude\";d:53.001624700000001;s:9:\"longitude\";d:9.8596895999999994;}}}}'),(41,1,'site_meta_supported','1'),(42,1,'_site_transient_timeout_available_translations','1587051477'),(43,1,'_site_transient_available_translations','a:119:{s:2:\"af\";a:8:{s:8:\"language\";s:2:\"af\";s:7:\"version\";s:5:\"5.2.4\";s:7:\"updated\";s:19:\"2019-11-06 08:13:24\";s:12:\"english_name\";s:9:\"Afrikaans\";s:11:\"native_name\";s:9:\"Afrikaans\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/5.2.4/af.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"af\";i:2;s:3:\"afr\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"Gaan voort\";}}s:2:\"ar\";a:8:{s:8:\"language\";s:2:\"ar\";s:7:\"version\";s:5:\"5.2.4\";s:7:\"updated\";s:19:\"2019-10-22 22:33:28\";s:12:\"english_name\";s:6:\"Arabic\";s:11:\"native_name\";s:14:\"العربية\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/5.2.4/ar.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ar\";i:2;s:3:\"ara\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:16:\"المتابعة\";}}s:3:\"ary\";a:8:{s:8:\"language\";s:3:\"ary\";s:7:\"version\";s:5:\"4.7.7\";s:7:\"updated\";s:19:\"2017-01-26 15:42:35\";s:12:\"english_name\";s:15:\"Moroccan Arabic\";s:11:\"native_name\";s:31:\"العربية المغربية\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.7/ary.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ar\";i:3;s:3:\"ary\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:16:\"المتابعة\";}}s:2:\"as\";a:8:{s:8:\"language\";s:2:\"as\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-11-22 18:59:07\";s:12:\"english_name\";s:8:\"Assamese\";s:11:\"native_name\";s:21:\"অসমীয়া\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/as.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"as\";i:2;s:3:\"asm\";i:3;s:3:\"asm\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:2:\"az\";a:8:{s:8:\"language\";s:2:\"az\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-11-06 00:09:27\";s:12:\"english_name\";s:11:\"Azerbaijani\";s:11:\"native_name\";s:16:\"Azərbaycan dili\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/az.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"az\";i:2;s:3:\"aze\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:5:\"Davam\";}}s:3:\"azb\";a:8:{s:8:\"language\";s:3:\"azb\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-09-12 20:34:31\";s:12:\"english_name\";s:17:\"South Azerbaijani\";s:11:\"native_name\";s:29:\"گؤنئی آذربایجان\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/azb.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"az\";i:3;s:3:\"azb\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:3:\"bel\";a:8:{s:8:\"language\";s:3:\"bel\";s:7:\"version\";s:6:\"4.9.13\";s:7:\"updated\";s:19:\"2019-10-29 07:54:22\";s:12:\"english_name\";s:10:\"Belarusian\";s:11:\"native_name\";s:29:\"Беларуская мова\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/translation/core/4.9.13/bel.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"be\";i:2;s:3:\"bel\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:20:\"Працягнуць\";}}s:5:\"bg_BG\";a:8:{s:8:\"language\";s:5:\"bg_BG\";s:7:\"version\";s:5:\"5.2.4\";s:7:\"updated\";s:19:\"2019-11-09 13:59:01\";s:12:\"english_name\";s:9:\"Bulgarian\";s:11:\"native_name\";s:18:\"Български\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.2.4/bg_BG.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"bg\";i:2;s:3:\"bul\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:22:\"Продължение\";}}s:5:\"bn_BD\";a:8:{s:8:\"language\";s:5:\"bn_BD\";s:7:\"version\";s:6:\"4.8.12\";s:7:\"updated\";s:19:\"2017-10-01 12:57:10\";s:12:\"english_name\";s:20:\"Bengali (Bangladesh)\";s:11:\"native_name\";s:15:\"বাংলা\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/4.8.12/bn_BD.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"bn\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:23:\"এগিয়ে চল.\";}}s:2:\"bo\";a:8:{s:8:\"language\";s:2:\"bo\";s:7:\"version\";s:5:\"5.2.4\";s:7:\"updated\";s:19:\"2019-11-12 07:38:44\";s:12:\"english_name\";s:7:\"Tibetan\";s:11:\"native_name\";s:21:\"བོད་ཡིག\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/5.2.4/bo.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"bo\";i:2;s:3:\"tib\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:24:\"མུ་མཐུད།\";}}s:5:\"bs_BA\";a:8:{s:8:\"language\";s:5:\"bs_BA\";s:7:\"version\";s:5:\"5.2.4\";s:7:\"updated\";s:19:\"2019-10-25 20:23:36\";s:12:\"english_name\";s:7:\"Bosnian\";s:11:\"native_name\";s:8:\"Bosanski\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.2.4/bs_BA.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"bs\";i:2;s:3:\"bos\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:7:\"Nastavi\";}}s:2:\"ca\";a:8:{s:8:\"language\";s:2:\"ca\";s:7:\"version\";s:5:\"5.2.4\";s:7:\"updated\";s:19:\"2019-10-20 06:18:47\";s:12:\"english_name\";s:7:\"Catalan\";s:11:\"native_name\";s:7:\"Català\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/5.2.4/ca.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ca\";i:2;s:3:\"cat\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continua\";}}s:3:\"ceb\";a:8:{s:8:\"language\";s:3:\"ceb\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-03-02 17:25:51\";s:12:\"english_name\";s:7:\"Cebuano\";s:11:\"native_name\";s:7:\"Cebuano\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/ceb.zip\";s:3:\"iso\";a:2:{i:2;s:3:\"ceb\";i:3;s:3:\"ceb\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:7:\"Padayun\";}}s:5:\"cs_CZ\";a:8:{s:8:\"language\";s:5:\"cs_CZ\";s:7:\"version\";s:5:\"5.2.4\";s:7:\"updated\";s:19:\"2019-10-28 19:06:07\";s:12:\"english_name\";s:5:\"Czech\";s:11:\"native_name\";s:9:\"Čeština\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.2.4/cs_CZ.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"cs\";i:2;s:3:\"ces\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:11:\"Pokračovat\";}}s:2:\"cy\";a:8:{s:8:\"language\";s:2:\"cy\";s:7:\"version\";s:5:\"5.2.4\";s:7:\"updated\";s:19:\"2019-10-22 10:34:50\";s:12:\"english_name\";s:5:\"Welsh\";s:11:\"native_name\";s:7:\"Cymraeg\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/5.2.4/cy.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"cy\";i:2;s:3:\"cym\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Parhau\";}}s:5:\"da_DK\";a:8:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:5:\"5.2.4\";s:7:\"updated\";s:19:\"2019-11-06 07:19:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.2.4/da_DK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"da\";i:2;s:3:\"dan\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"Forts&#230;t\";}}s:5:\"de_DE\";a:8:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"5.2.4\";s:7:\"updated\";s:19:\"2019-10-19 15:09:43\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.2.4/de_DE.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"Fortfahren\";}}s:12:\"de_DE_formal\";a:8:{s:8:\"language\";s:12:\"de_DE_formal\";s:7:\"version\";s:5:\"5.2.4\";s:7:\"updated\";s:19:\"2019-10-19 15:10:06\";s:12:\"english_name\";s:15:\"German (Formal)\";s:11:\"native_name\";s:13:\"Deutsch (Sie)\";s:7:\"package\";s:71:\"https://downloads.wordpress.org/translation/core/5.2.4/de_DE_formal.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"Fortfahren\";}}s:5:\"de_CH\";a:8:{s:8:\"language\";s:5:\"de_CH\";s:7:\"version\";s:5:\"5.2.4\";s:7:\"updated\";s:19:\"2019-10-15 07:07:34\";s:12:\"english_name\";s:20:\"German (Switzerland)\";s:11:\"native_name\";s:17:\"Deutsch (Schweiz)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.2.4/de_CH.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"Fortfahren\";}}s:14:\"de_CH_informal\";a:8:{s:8:\"language\";s:14:\"de_CH_informal\";s:7:\"version\";s:5:\"5.2.4\";s:7:\"updated\";s:19:\"2019-10-15 07:08:52\";s:12:\"english_name\";s:30:\"German (Switzerland, Informal)\";s:11:\"native_name\";s:21:\"Deutsch (Schweiz, Du)\";s:7:\"package\";s:73:\"https://downloads.wordpress.org/translation/core/5.2.4/de_CH_informal.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Weiter\";}}s:5:\"de_AT\";a:8:{s:8:\"language\";s:5:\"de_AT\";s:7:\"version\";s:5:\"5.2.4\";s:7:\"updated\";s:19:\"2019-11-05 22:26:10\";s:12:\"english_name\";s:16:\"German (Austria)\";s:11:\"native_name\";s:21:\"Deutsch (Österreich)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.2.4/de_AT.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Weiter\";}}s:3:\"dzo\";a:8:{s:8:\"language\";s:3:\"dzo\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-06-29 08:59:03\";s:12:\"english_name\";s:8:\"Dzongkha\";s:11:\"native_name\";s:18:\"རྫོང་ཁ\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/dzo.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"dz\";i:2;s:3:\"dzo\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:2:\"el\";a:8:{s:8:\"language\";s:2:\"el\";s:7:\"version\";s:5:\"5.2.4\";s:7:\"updated\";s:19:\"2019-11-13 12:22:13\";s:12:\"english_name\";s:5:\"Greek\";s:11:\"native_name\";s:16:\"Ελληνικά\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/5.2.4/el.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"el\";i:2;s:3:\"ell\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:16:\"Συνέχεια\";}}s:5:\"en_NZ\";a:8:{s:8:\"language\";s:5:\"en_NZ\";s:7:\"version\";s:5:\"5.2.4\";s:7:\"updated\";s:19:\"2019-10-20 22:32:55\";s:12:\"english_name\";s:21:\"English (New Zealand)\";s:11:\"native_name\";s:21:\"English (New Zealand)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.2.4/en_NZ.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"en_GB\";a:8:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:5:\"5.2.4\";s:7:\"updated\";s:19:\"2019-10-19 14:36:29\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.2.4/en_GB.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"en_CA\";a:8:{s:8:\"language\";s:5:\"en_CA\";s:7:\"version\";s:5:\"5.2.4\";s:7:\"updated\";s:19:\"2019-10-20 22:33:08\";s:12:\"english_name\";s:16:\"English (Canada)\";s:11:\"native_name\";s:16:\"English (Canada)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.2.4/en_CA.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"en_AU\";a:8:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:5:\"5.2.4\";s:7:\"updated\";s:19:\"2019-10-20 00:26:02\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.2.4/en_AU.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"en_ZA\";a:8:{s:8:\"language\";s:5:\"en_ZA\";s:7:\"version\";s:5:\"5.1.4\";s:7:\"updated\";s:19:\"2019-06-06 15:48:01\";s:12:\"english_name\";s:22:\"English (South Africa)\";s:11:\"native_name\";s:22:\"English (South Africa)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.1.4/en_ZA.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:2:\"eo\";a:8:{s:8:\"language\";s:2:\"eo\";s:7:\"version\";s:5:\"5.2.3\";s:7:\"updated\";s:19:\"2019-06-20 20:46:03\";s:12:\"english_name\";s:9:\"Esperanto\";s:11:\"native_name\";s:9:\"Esperanto\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/5.2.3/eo.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"eo\";i:2;s:3:\"epo\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Daŭrigi\";}}s:5:\"es_VE\";a:8:{s:8:\"language\";s:5:\"es_VE\";s:7:\"version\";s:5:\"5.2.4\";s:7:\"updated\";s:19:\"2019-10-19 23:07:29\";s:12:\"english_name\";s:19:\"Spanish (Venezuela)\";s:11:\"native_name\";s:21:\"Español de Venezuela\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.2.4/es_VE.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_MX\";a:8:{s:8:\"language\";s:5:\"es_MX\";s:7:\"version\";s:5:\"5.2.4\";s:7:\"updated\";s:19:\"2019-12-06 15:26:29\";s:12:\"english_name\";s:16:\"Spanish (Mexico)\";s:11:\"native_name\";s:19:\"Español de México\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.2.4/es_MX.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_CL\";a:8:{s:8:\"language\";s:5:\"es_CL\";s:7:\"version\";s:5:\"5.2.4\";s:7:\"updated\";s:19:\"2019-12-07 04:01:34\";s:12:\"english_name\";s:15:\"Spanish (Chile)\";s:11:\"native_name\";s:17:\"Español de Chile\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.2.4/es_CL.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_AR\";a:8:{s:8:\"language\";s:5:\"es_AR\";s:7:\"version\";s:5:\"5.2.4\";s:7:\"updated\";s:19:\"2019-10-23 13:47:59\";s:12:\"english_name\";s:19:\"Spanish (Argentina)\";s:11:\"native_name\";s:21:\"Español de Argentina\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.2.4/es_AR.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_ES\";a:8:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"5.2.4\";s:7:\"updated\";s:19:\"2019-11-17 18:21:18\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.2.4/es_ES.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_GT\";a:8:{s:8:\"language\";s:5:\"es_GT\";s:7:\"version\";s:3:\"5.1\";s:7:\"updated\";s:19:\"2019-03-02 06:35:01\";s:12:\"english_name\";s:19:\"Spanish (Guatemala)\";s:11:\"native_name\";s:21:\"Español de Guatemala\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/5.1/es_GT.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_CR\";a:8:{s:8:\"language\";s:5:\"es_CR\";s:7:\"version\";s:3:\"5.0\";s:7:\"updated\";s:19:\"2018-12-06 21:26:01\";s:12:\"english_name\";s:20:\"Spanish (Costa Rica)\";s:11:\"native_name\";s:22:\"Español de Costa Rica\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/5.0/es_CR.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_CO\";a:8:{s:8:\"language\";s:5:\"es_CO\";s:7:\"version\";s:6:\"4.9.13\";s:7:\"updated\";s:19:\"2019-05-23 02:23:28\";s:12:\"english_name\";s:18:\"Spanish (Colombia)\";s:11:\"native_name\";s:20:\"Español de Colombia\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/4.9.13/es_CO.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_PE\";a:8:{s:8:\"language\";s:5:\"es_PE\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-09-09 09:36:22\";s:12:\"english_name\";s:14:\"Spanish (Peru)\";s:11:\"native_name\";s:17:\"Español de Perú\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/es_PE.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:2:\"et\";a:8:{s:8:\"language\";s:2:\"et\";s:7:\"version\";s:9:\"5.0-beta3\";s:7:\"updated\";s:19:\"2018-11-28 16:04:33\";s:12:\"english_name\";s:8:\"Estonian\";s:11:\"native_name\";s:5:\"Eesti\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/5.0-beta3/et.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"et\";i:2;s:3:\"est\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Jätka\";}}s:2:\"eu\";a:8:{s:8:\"language\";s:2:\"eu\";s:7:\"version\";s:5:\"4.9.2\";s:7:\"updated\";s:19:\"2017-12-09 21:12:23\";s:12:\"english_name\";s:6:\"Basque\";s:11:\"native_name\";s:7:\"Euskara\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.9.2/eu.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"eu\";i:2;s:3:\"eus\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Jarraitu\";}}s:5:\"fa_IR\";a:8:{s:8:\"language\";s:5:\"fa_IR\";s:7:\"version\";s:5:\"5.2.4\";s:7:\"updated\";s:19:\"2019-10-26 11:08:21\";s:12:\"english_name\";s:7:\"Persian\";s:11:\"native_name\";s:10:\"فارسی\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.2.4/fa_IR.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fa\";i:2;s:3:\"fas\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"ادامه\";}}s:2:\"fi\";a:8:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:5:\"5.2.4\";s:7:\"updated\";s:19:\"2019-10-22 14:09:21\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/5.2.4/fi.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fi\";i:2;s:3:\"fin\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:5:\"Jatka\";}}s:5:\"fr_CA\";a:8:{s:8:\"language\";s:5:\"fr_CA\";s:7:\"version\";s:5:\"5.2.4\";s:7:\"updated\";s:19:\"2019-11-12 15:46:57\";s:12:\"english_name\";s:15:\"French (Canada)\";s:11:\"native_name\";s:19:\"Français du Canada\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.2.4/fr_CA.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fr\";i:2;s:3:\"fra\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuer\";}}s:5:\"fr_BE\";a:8:{s:8:\"language\";s:5:\"fr_BE\";s:7:\"version\";s:5:\"4.9.5\";s:7:\"updated\";s:19:\"2018-01-31 11:16:06\";s:12:\"english_name\";s:16:\"French (Belgium)\";s:11:\"native_name\";s:21:\"Français de Belgique\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.9.5/fr_BE.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fr\";i:2;s:3:\"fra\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuer\";}}s:5:\"fr_FR\";a:8:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"5.2.4\";s:7:\"updated\";s:19:\"2019-11-13 10:59:12\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.2.4/fr_FR.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"fr\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuer\";}}s:3:\"fur\";a:8:{s:8:\"language\";s:3:\"fur\";s:7:\"version\";s:5:\"4.8.6\";s:7:\"updated\";s:19:\"2018-01-29 17:32:35\";s:12:\"english_name\";s:8:\"Friulian\";s:11:\"native_name\";s:8:\"Friulian\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.8.6/fur.zip\";s:3:\"iso\";a:2:{i:2;s:3:\"fur\";i:3;s:3:\"fur\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:2:\"gd\";a:8:{s:8:\"language\";s:2:\"gd\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-08-23 17:41:37\";s:12:\"english_name\";s:15:\"Scottish Gaelic\";s:11:\"native_name\";s:9:\"Gàidhlig\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/gd.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"gd\";i:2;s:3:\"gla\";i:3;s:3:\"gla\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:15:\"Lean air adhart\";}}s:5:\"gl_ES\";a:8:{s:8:\"language\";s:5:\"gl_ES\";s:7:\"version\";s:5:\"5.2.4\";s:7:\"updated\";s:19:\"2019-10-19 22:06:57\";s:12:\"english_name\";s:8:\"Galician\";s:11:\"native_name\";s:6:\"Galego\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.2.4/gl_ES.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"gl\";i:2;s:3:\"glg\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:2:\"gu\";a:8:{s:8:\"language\";s:2:\"gu\";s:7:\"version\";s:5:\"4.9.8\";s:7:\"updated\";s:19:\"2018-09-14 12:33:48\";s:12:\"english_name\";s:8:\"Gujarati\";s:11:\"native_name\";s:21:\"ગુજરાતી\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.9.8/gu.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"gu\";i:2;s:3:\"guj\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:31:\"ચાલુ રાખવું\";}}s:3:\"haz\";a:8:{s:8:\"language\";s:3:\"haz\";s:7:\"version\";s:5:\"4.4.2\";s:7:\"updated\";s:19:\"2015-12-05 00:59:09\";s:12:\"english_name\";s:8:\"Hazaragi\";s:11:\"native_name\";s:15:\"هزاره گی\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.4.2/haz.zip\";s:3:\"iso\";a:1:{i:3;s:3:\"haz\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"ادامه\";}}s:5:\"he_IL\";a:8:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"5.2.4\";s:7:\"updated\";s:19:\"2019-11-05 14:00:58\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.2.4/he_IL.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"he\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"להמשיך\";}}s:5:\"hi_IN\";a:8:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"4.9.7\";s:7:\"updated\";s:19:\"2018-06-17 09:33:44\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.9.7/hi_IN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"hi\";i:2;s:3:\"hin\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"जारी\";}}s:2:\"hr\";a:8:{s:8:\"language\";s:2:\"hr\";s:7:\"version\";s:5:\"5.2.4\";s:7:\"updated\";s:19:\"2019-10-28 08:31:37\";s:12:\"english_name\";s:8:\"Croatian\";s:11:\"native_name\";s:8:\"Hrvatski\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/5.2.4/hr.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"hr\";i:2;s:3:\"hrv\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:7:\"Nastavi\";}}s:3:\"hsb\";a:8:{s:8:\"language\";s:3:\"hsb\";s:7:\"version\";s:5:\"5.2.4\";s:7:\"updated\";s:19:\"2019-11-09 22:16:56\";s:12:\"english_name\";s:13:\"Upper Sorbian\";s:11:\"native_name\";s:17:\"Hornjoserbšćina\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/5.2.4/hsb.zip\";s:3:\"iso\";a:2:{i:2;s:3:\"hsb\";i:3;s:3:\"hsb\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:4:\"Dale\";}}s:5:\"hu_HU\";a:8:{s:8:\"language\";s:5:\"hu_HU\";s:7:\"version\";s:5:\"5.1.1\";s:7:\"updated\";s:19:\"2019-03-19 14:36:40\";s:12:\"english_name\";s:9:\"Hungarian\";s:11:\"native_name\";s:6:\"Magyar\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.1.1/hu_HU.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"hu\";i:2;s:3:\"hun\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:7:\"Tovább\";}}s:2:\"hy\";a:8:{s:8:\"language\";s:2:\"hy\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-12-03 16:21:10\";s:12:\"english_name\";s:8:\"Armenian\";s:11:\"native_name\";s:14:\"Հայերեն\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/hy.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"hy\";i:2;s:3:\"hye\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:20:\"Շարունակել\";}}s:5:\"id_ID\";a:8:{s:8:\"language\";s:5:\"id_ID\";s:7:\"version\";s:5:\"5.0.8\";s:7:\"updated\";s:19:\"2019-09-24 03:05:30\";s:12:\"english_name\";s:10:\"Indonesian\";s:11:\"native_name\";s:16:\"Bahasa Indonesia\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.0.8/id_ID.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"id\";i:2;s:3:\"ind\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Lanjutkan\";}}s:5:\"is_IS\";a:8:{s:8:\"language\";s:5:\"is_IS\";s:7:\"version\";s:6:\"4.7.11\";s:7:\"updated\";s:19:\"2018-09-20 11:13:37\";s:12:\"english_name\";s:9:\"Icelandic\";s:11:\"native_name\";s:9:\"Íslenska\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/4.7.11/is_IS.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"is\";i:2;s:3:\"isl\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Áfram\";}}s:5:\"it_IT\";a:8:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"5.2.4\";s:7:\"updated\";s:19:\"2019-10-27 08:31:31\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.2.4/it_IT.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"it\";i:2;s:3:\"ita\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continua\";}}s:2:\"ja\";a:8:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"5.2.4\";s:7:\"updated\";s:19:\"2019-11-12 03:38:48\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/5.2.4/ja.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"ja\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"続ける\";}}s:5:\"jv_ID\";a:8:{s:8:\"language\";s:5:\"jv_ID\";s:7:\"version\";s:5:\"4.9.5\";s:7:\"updated\";s:19:\"2018-03-24 13:53:29\";s:12:\"english_name\";s:8:\"Javanese\";s:11:\"native_name\";s:9:\"Basa Jawa\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.9.5/jv_ID.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"jv\";i:2;s:3:\"jav\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:7:\"Nutugne\";}}s:5:\"ka_GE\";a:8:{s:8:\"language\";s:5:\"ka_GE\";s:7:\"version\";s:5:\"5.1.4\";s:7:\"updated\";s:19:\"2019-11-04 08:57:25\";s:12:\"english_name\";s:8:\"Georgian\";s:11:\"native_name\";s:21:\"ქართული\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.1.4/ka_GE.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ka\";i:2;s:3:\"kat\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:30:\"გაგრძელება\";}}s:3:\"kab\";a:8:{s:8:\"language\";s:3:\"kab\";s:7:\"version\";s:5:\"4.9.8\";s:7:\"updated\";s:19:\"2018-09-21 14:15:57\";s:12:\"english_name\";s:6:\"Kabyle\";s:11:\"native_name\";s:9:\"Taqbaylit\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.9.8/kab.zip\";s:3:\"iso\";a:2:{i:2;s:3:\"kab\";i:3;s:3:\"kab\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuer\";}}s:2:\"kk\";a:8:{s:8:\"language\";s:2:\"kk\";s:7:\"version\";s:5:\"4.9.5\";s:7:\"updated\";s:19:\"2018-03-12 08:08:32\";s:12:\"english_name\";s:6:\"Kazakh\";s:11:\"native_name\";s:19:\"Қазақ тілі\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.9.5/kk.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"kk\";i:2;s:3:\"kaz\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:20:\"Жалғастыру\";}}s:2:\"km\";a:8:{s:8:\"language\";s:2:\"km\";s:7:\"version\";s:5:\"5.0.3\";s:7:\"updated\";s:19:\"2019-01-09 07:34:10\";s:12:\"english_name\";s:5:\"Khmer\";s:11:\"native_name\";s:27:\"ភាសាខ្មែរ\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/5.0.3/km.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"km\";i:2;s:3:\"khm\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"បន្ត\";}}s:2:\"kn\";a:8:{s:8:\"language\";s:2:\"kn\";s:7:\"version\";s:6:\"4.9.13\";s:7:\"updated\";s:19:\"2019-12-04 12:22:34\";s:12:\"english_name\";s:7:\"Kannada\";s:11:\"native_name\";s:15:\"ಕನ್ನಡ\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.9.13/kn.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"kn\";i:2;s:3:\"kan\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:30:\"ಮುಂದುವರೆಸಿ\";}}s:5:\"ko_KR\";a:8:{s:8:\"language\";s:5:\"ko_KR\";s:7:\"version\";s:5:\"5.2.4\";s:7:\"updated\";s:19:\"2019-11-05 01:54:57\";s:12:\"english_name\";s:6:\"Korean\";s:11:\"native_name\";s:9:\"한국어\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.2.4/ko_KR.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ko\";i:2;s:3:\"kor\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"계속\";}}s:3:\"ckb\";a:8:{s:8:\"language\";s:3:\"ckb\";s:7:\"version\";s:5:\"4.9.9\";s:7:\"updated\";s:19:\"2018-12-18 14:32:44\";s:12:\"english_name\";s:16:\"Kurdish (Sorani)\";s:11:\"native_name\";s:13:\"كوردی‎\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.9.9/ckb.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ku\";i:3;s:3:\"ckb\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:30:\"به‌رده‌وام به‌\";}}s:2:\"lo\";a:8:{s:8:\"language\";s:2:\"lo\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-11-12 09:59:23\";s:12:\"english_name\";s:3:\"Lao\";s:11:\"native_name\";s:21:\"ພາສາລາວ\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/lo.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"lo\";i:2;s:3:\"lao\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"ຕໍ່\";}}s:5:\"lt_LT\";a:8:{s:8:\"language\";s:5:\"lt_LT\";s:7:\"version\";s:5:\"5.2.4\";s:7:\"updated\";s:19:\"2019-10-19 19:23:46\";s:12:\"english_name\";s:10:\"Lithuanian\";s:11:\"native_name\";s:15:\"Lietuvių kalba\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.2.4/lt_LT.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"lt\";i:2;s:3:\"lit\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Tęsti\";}}s:2:\"lv\";a:8:{s:8:\"language\";s:2:\"lv\";s:7:\"version\";s:6:\"4.7.15\";s:7:\"updated\";s:19:\"2019-05-10 10:24:08\";s:12:\"english_name\";s:7:\"Latvian\";s:11:\"native_name\";s:16:\"Latviešu valoda\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.15/lv.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"lv\";i:2;s:3:\"lav\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Turpināt\";}}s:5:\"mk_MK\";a:8:{s:8:\"language\";s:5:\"mk_MK\";s:7:\"version\";s:5:\"5.2.3\";s:7:\"updated\";s:19:\"2019-09-08 12:57:25\";s:12:\"english_name\";s:10:\"Macedonian\";s:11:\"native_name\";s:31:\"Македонски јазик\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.2.3/mk_MK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"mk\";i:2;s:3:\"mkd\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:16:\"Продолжи\";}}s:5:\"ml_IN\";a:8:{s:8:\"language\";s:5:\"ml_IN\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-27 03:43:32\";s:12:\"english_name\";s:9:\"Malayalam\";s:11:\"native_name\";s:18:\"മലയാളം\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/ml_IN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ml\";i:2;s:3:\"mal\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:18:\"തുടരുക\";}}s:2:\"mn\";a:8:{s:8:\"language\";s:2:\"mn\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-12 07:29:35\";s:12:\"english_name\";s:9:\"Mongolian\";s:11:\"native_name\";s:12:\"Монгол\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/mn.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"mn\";i:2;s:3:\"mon\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:24:\"Үргэлжлүүлэх\";}}s:2:\"mr\";a:8:{s:8:\"language\";s:2:\"mr\";s:7:\"version\";s:6:\"4.8.12\";s:7:\"updated\";s:19:\"2018-02-13 07:38:55\";s:12:\"english_name\";s:7:\"Marathi\";s:11:\"native_name\";s:15:\"मराठी\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.8.12/mr.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"mr\";i:2;s:3:\"mar\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:25:\"सुरु ठेवा\";}}s:5:\"ms_MY\";a:8:{s:8:\"language\";s:5:\"ms_MY\";s:7:\"version\";s:5:\"4.9.8\";s:7:\"updated\";s:19:\"2018-08-30 20:27:25\";s:12:\"english_name\";s:5:\"Malay\";s:11:\"native_name\";s:13:\"Bahasa Melayu\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.9.8/ms_MY.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ms\";i:2;s:3:\"msa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Teruskan\";}}s:5:\"my_MM\";a:8:{s:8:\"language\";s:5:\"my_MM\";s:7:\"version\";s:6:\"4.1.20\";s:7:\"updated\";s:19:\"2015-03-26 15:57:42\";s:12:\"english_name\";s:17:\"Myanmar (Burmese)\";s:11:\"native_name\";s:15:\"ဗမာစာ\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/4.1.20/my_MM.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"my\";i:2;s:3:\"mya\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:54:\"ဆက်လက်လုပ်ေဆာင်ပါ။\";}}s:5:\"nb_NO\";a:8:{s:8:\"language\";s:5:\"nb_NO\";s:7:\"version\";s:5:\"5.2.4\";s:7:\"updated\";s:19:\"2019-12-12 16:55:35\";s:12:\"english_name\";s:19:\"Norwegian (Bokmål)\";s:11:\"native_name\";s:13:\"Norsk bokmål\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.2.4/nb_NO.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"nb\";i:2;s:3:\"nob\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Fortsett\";}}s:5:\"ne_NP\";a:8:{s:8:\"language\";s:5:\"ne_NP\";s:7:\"version\";s:5:\"4.9.5\";s:7:\"updated\";s:19:\"2018-03-27 10:30:26\";s:12:\"english_name\";s:6:\"Nepali\";s:11:\"native_name\";s:18:\"नेपाली\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.9.5/ne_NP.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ne\";i:2;s:3:\"nep\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:31:\"जारीराख्नु \";}}s:5:\"nl_BE\";a:8:{s:8:\"language\";s:5:\"nl_BE\";s:7:\"version\";s:5:\"5.2.4\";s:7:\"updated\";s:19:\"2019-10-27 08:50:23\";s:12:\"english_name\";s:15:\"Dutch (Belgium)\";s:11:\"native_name\";s:20:\"Nederlands (België)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.2.4/nl_BE.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"nl\";i:2;s:3:\"nld\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Doorgaan\";}}s:12:\"nl_NL_formal\";a:8:{s:8:\"language\";s:12:\"nl_NL_formal\";s:7:\"version\";s:5:\"5.2.4\";s:7:\"updated\";s:19:\"2019-10-25 09:26:04\";s:12:\"english_name\";s:14:\"Dutch (Formal)\";s:11:\"native_name\";s:20:\"Nederlands (Formeel)\";s:7:\"package\";s:71:\"https://downloads.wordpress.org/translation/core/5.2.4/nl_NL_formal.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"nl\";i:2;s:3:\"nld\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Doorgaan\";}}s:5:\"nl_NL\";a:8:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"5.2.4\";s:7:\"updated\";s:19:\"2019-10-25 09:24:54\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.2.4/nl_NL.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"nl\";i:2;s:3:\"nld\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Doorgaan\";}}s:5:\"nn_NO\";a:8:{s:8:\"language\";s:5:\"nn_NO\";s:7:\"version\";s:5:\"5.2.4\";s:7:\"updated\";s:19:\"2019-10-24 08:39:27\";s:12:\"english_name\";s:19:\"Norwegian (Nynorsk)\";s:11:\"native_name\";s:13:\"Norsk nynorsk\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.2.4/nn_NO.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"nn\";i:2;s:3:\"nno\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Hald fram\";}}s:3:\"oci\";a:8:{s:8:\"language\";s:3:\"oci\";s:7:\"version\";s:5:\"4.8.3\";s:7:\"updated\";s:19:\"2017-08-25 10:03:08\";s:12:\"english_name\";s:7:\"Occitan\";s:11:\"native_name\";s:7:\"Occitan\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.8.3/oci.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"oc\";i:2;s:3:\"oci\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Contunhar\";}}s:5:\"pa_IN\";a:8:{s:8:\"language\";s:5:\"pa_IN\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-16 05:19:43\";s:12:\"english_name\";s:7:\"Punjabi\";s:11:\"native_name\";s:18:\"ਪੰਜਾਬੀ\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/pa_IN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"pa\";i:2;s:3:\"pan\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:25:\"ਜਾਰੀ ਰੱਖੋ\";}}s:5:\"pl_PL\";a:8:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"5.2.4\";s:7:\"updated\";s:19:\"2019-10-29 19:02:29\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.2.4/pl_PL.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"pl\";i:2;s:3:\"pol\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Kontynuuj\";}}s:2:\"ps\";a:8:{s:8:\"language\";s:2:\"ps\";s:7:\"version\";s:6:\"4.1.20\";s:7:\"updated\";s:19:\"2015-03-29 22:19:48\";s:12:\"english_name\";s:6:\"Pashto\";s:11:\"native_name\";s:8:\"پښتو\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.1.20/ps.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ps\";i:2;s:3:\"pus\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"دوام\";}}s:5:\"pt_AO\";a:8:{s:8:\"language\";s:5:\"pt_AO\";s:7:\"version\";s:5:\"5.2.4\";s:7:\"updated\";s:19:\"2019-10-20 09:41:26\";s:12:\"english_name\";s:19:\"Portuguese (Angola)\";s:11:\"native_name\";s:20:\"Português de Angola\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.2.4/pt_AO.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"pt\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"pt_PT\";a:8:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"5.2.4\";s:7:\"updated\";s:19:\"2019-12-12 19:54:51\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.2.4/pt_PT.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"pt\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:10:\"pt_PT_ao90\";a:8:{s:8:\"language\";s:10:\"pt_PT_ao90\";s:7:\"version\";s:5:\"5.2.3\";s:7:\"updated\";s:19:\"2019-07-02 07:58:03\";s:12:\"english_name\";s:27:\"Portuguese (Portugal, AO90)\";s:11:\"native_name\";s:17:\"Português (AO90)\";s:7:\"package\";s:69:\"https://downloads.wordpress.org/translation/core/5.2.3/pt_PT_ao90.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"pt\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"pt_BR\";a:8:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"5.2.4\";s:7:\"updated\";s:19:\"2019-10-19 15:13:04\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.2.4/pt_BR.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"pt\";i:2;s:3:\"por\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:3:\"rhg\";a:8:{s:8:\"language\";s:3:\"rhg\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-03-16 13:03:18\";s:12:\"english_name\";s:8:\"Rohingya\";s:11:\"native_name\";s:8:\"Ruáinga\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/rhg.zip\";s:3:\"iso\";a:1:{i:3;s:3:\"rhg\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"ro_RO\";a:8:{s:8:\"language\";s:5:\"ro_RO\";s:7:\"version\";s:5:\"5.2.4\";s:7:\"updated\";s:19:\"2019-11-22 09:34:18\";s:12:\"english_name\";s:8:\"Romanian\";s:11:\"native_name\";s:8:\"Română\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.2.4/ro_RO.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ro\";i:2;s:3:\"ron\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuă\";}}s:5:\"ru_RU\";a:8:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"5.2.4\";s:7:\"updated\";s:19:\"2019-10-19 14:39:35\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.2.4/ru_RU.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ru\";i:2;s:3:\"rus\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:20:\"Продолжить\";}}s:3:\"sah\";a:8:{s:8:\"language\";s:3:\"sah\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-21 02:06:41\";s:12:\"english_name\";s:5:\"Sakha\";s:11:\"native_name\";s:14:\"Сахалыы\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/sah.zip\";s:3:\"iso\";a:2:{i:2;s:3:\"sah\";i:3;s:3:\"sah\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"Салҕаа\";}}s:5:\"si_LK\";a:8:{s:8:\"language\";s:5:\"si_LK\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-11-12 06:00:52\";s:12:\"english_name\";s:7:\"Sinhala\";s:11:\"native_name\";s:15:\"සිංහල\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/si_LK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"si\";i:2;s:3:\"sin\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:44:\"දිගටම කරගෙන යන්න\";}}s:5:\"sk_SK\";a:8:{s:8:\"language\";s:5:\"sk_SK\";s:7:\"version\";s:5:\"5.2.4\";s:7:\"updated\";s:19:\"2019-11-15 09:18:40\";s:12:\"english_name\";s:6:\"Slovak\";s:11:\"native_name\";s:11:\"Slovenčina\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.2.4/sk_SK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sk\";i:2;s:3:\"slk\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"Pokračovať\";}}s:3:\"skr\";a:8:{s:8:\"language\";s:3:\"skr\";s:7:\"version\";s:5:\"5.2.3\";s:7:\"updated\";s:19:\"2019-06-26 11:40:37\";s:12:\"english_name\";s:7:\"Saraiki\";s:11:\"native_name\";s:14:\"سرائیکی\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/5.2.3/skr.zip\";s:3:\"iso\";a:1:{i:3;s:3:\"skr\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:17:\"جاری رکھو\";}}s:5:\"sl_SI\";a:8:{s:8:\"language\";s:5:\"sl_SI\";s:7:\"version\";s:5:\"4.9.2\";s:7:\"updated\";s:19:\"2018-01-04 13:33:13\";s:12:\"english_name\";s:9:\"Slovenian\";s:11:\"native_name\";s:13:\"Slovenščina\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.9.2/sl_SI.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sl\";i:2;s:3:\"slv\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"Nadaljujte\";}}s:2:\"sq\";a:8:{s:8:\"language\";s:2:\"sq\";s:7:\"version\";s:5:\"5.2.4\";s:7:\"updated\";s:19:\"2019-10-20 12:34:38\";s:12:\"english_name\";s:8:\"Albanian\";s:11:\"native_name\";s:5:\"Shqip\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/5.2.4/sq.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sq\";i:2;s:3:\"sqi\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Vazhdo\";}}s:5:\"sr_RS\";a:8:{s:8:\"language\";s:5:\"sr_RS\";s:7:\"version\";s:5:\"5.2.4\";s:7:\"updated\";s:19:\"2019-10-15 10:03:57\";s:12:\"english_name\";s:7:\"Serbian\";s:11:\"native_name\";s:23:\"Српски језик\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.2.4/sr_RS.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sr\";i:2;s:3:\"srp\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:14:\"Настави\";}}s:5:\"sv_SE\";a:8:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"5.2.4\";s:7:\"updated\";s:19:\"2019-10-19 13:41:32\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.2.4/sv_SE.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sv\";i:2;s:3:\"swe\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Fortsätt\";}}s:2:\"sw\";a:8:{s:8:\"language\";s:2:\"sw\";s:7:\"version\";s:5:\"5.2.4\";s:7:\"updated\";s:19:\"2019-10-22 00:19:41\";s:12:\"english_name\";s:7:\"Swahili\";s:11:\"native_name\";s:9:\"Kiswahili\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/5.2.4/sw.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sw\";i:2;s:3:\"swa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:7:\"Endelea\";}}s:3:\"szl\";a:8:{s:8:\"language\";s:3:\"szl\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-09-24 19:58:14\";s:12:\"english_name\";s:8:\"Silesian\";s:11:\"native_name\";s:17:\"Ślōnskŏ gŏdka\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/szl.zip\";s:3:\"iso\";a:1:{i:3;s:3:\"szl\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:13:\"Kōntynuować\";}}s:5:\"ta_IN\";a:8:{s:8:\"language\";s:5:\"ta_IN\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-27 03:22:47\";s:12:\"english_name\";s:5:\"Tamil\";s:11:\"native_name\";s:15:\"தமிழ்\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/ta_IN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ta\";i:2;s:3:\"tam\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:24:\"தொடரவும்\";}}s:2:\"te\";a:8:{s:8:\"language\";s:2:\"te\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-26 15:47:39\";s:12:\"english_name\";s:6:\"Telugu\";s:11:\"native_name\";s:18:\"తెలుగు\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/te.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"te\";i:2;s:3:\"tel\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:30:\"కొనసాగించు\";}}s:2:\"th\";a:8:{s:8:\"language\";s:2:\"th\";s:7:\"version\";s:5:\"5.2.4\";s:7:\"updated\";s:19:\"2019-10-19 08:19:37\";s:12:\"english_name\";s:4:\"Thai\";s:11:\"native_name\";s:9:\"ไทย\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/5.2.4/th.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"th\";i:2;s:3:\"tha\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:15:\"ต่อไป\";}}s:2:\"tl\";a:8:{s:8:\"language\";s:2:\"tl\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-12-30 02:38:08\";s:12:\"english_name\";s:7:\"Tagalog\";s:11:\"native_name\";s:7:\"Tagalog\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/tl.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"tl\";i:2;s:3:\"tgl\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"Magpatuloy\";}}s:5:\"tr_TR\";a:8:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"5.2.4\";s:7:\"updated\";s:19:\"2019-11-04 12:32:04\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.2.4/tr_TR.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"tr\";i:2;s:3:\"tur\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:5:\"Devam\";}}s:5:\"tt_RU\";a:8:{s:8:\"language\";s:5:\"tt_RU\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-11-20 20:20:50\";s:12:\"english_name\";s:5:\"Tatar\";s:11:\"native_name\";s:19:\"Татар теле\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/tt_RU.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"tt\";i:2;s:3:\"tat\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:17:\"дәвам итү\";}}s:3:\"tah\";a:8:{s:8:\"language\";s:3:\"tah\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-03-06 18:39:39\";s:12:\"english_name\";s:8:\"Tahitian\";s:11:\"native_name\";s:10:\"Reo Tahiti\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/tah.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"ty\";i:2;s:3:\"tah\";i:3;s:3:\"tah\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"ug_CN\";a:8:{s:8:\"language\";s:5:\"ug_CN\";s:7:\"version\";s:5:\"4.9.5\";s:7:\"updated\";s:19:\"2018-04-12 12:31:53\";s:12:\"english_name\";s:6:\"Uighur\";s:11:\"native_name\";s:16:\"ئۇيغۇرچە\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.9.5/ug_CN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ug\";i:2;s:3:\"uig\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:26:\"داۋاملاشتۇرۇش\";}}s:2:\"uk\";a:8:{s:8:\"language\";s:2:\"uk\";s:7:\"version\";s:5:\"5.2.4\";s:7:\"updated\";s:19:\"2019-10-16 10:31:10\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/5.2.4/uk.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"uk\";i:2;s:3:\"ukr\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:20:\"Продовжити\";}}s:2:\"ur\";a:8:{s:8:\"language\";s:2:\"ur\";s:7:\"version\";s:5:\"5.1.4\";s:7:\"updated\";s:19:\"2020-04-09 10:48:08\";s:12:\"english_name\";s:4:\"Urdu\";s:11:\"native_name\";s:8:\"اردو\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/5.1.4/ur.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ur\";i:2;s:3:\"urd\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:19:\"جاری رکھیں\";}}s:5:\"uz_UZ\";a:8:{s:8:\"language\";s:5:\"uz_UZ\";s:7:\"version\";s:5:\"5.0.8\";s:7:\"updated\";s:19:\"2019-01-23 12:32:40\";s:12:\"english_name\";s:5:\"Uzbek\";s:11:\"native_name\";s:11:\"O‘zbekcha\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.0.8/uz_UZ.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"uz\";i:2;s:3:\"uzb\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:20:\"Продолжить\";}}s:2:\"vi\";a:8:{s:8:\"language\";s:2:\"vi\";s:7:\"version\";s:5:\"5.2.4\";s:7:\"updated\";s:19:\"2019-10-23 07:14:52\";s:12:\"english_name\";s:10:\"Vietnamese\";s:11:\"native_name\";s:14:\"Tiếng Việt\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/5.2.4/vi.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"vi\";i:2;s:3:\"vie\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"Tiếp tục\";}}s:5:\"zh_HK\";a:8:{s:8:\"language\";s:5:\"zh_HK\";s:7:\"version\";s:5:\"5.2.4\";s:7:\"updated\";s:19:\"2019-10-01 15:59:49\";s:12:\"english_name\";s:19:\"Chinese (Hong Kong)\";s:11:\"native_name\";s:16:\"香港中文版 \";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.2.4/zh_HK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"zh\";i:2;s:3:\"zho\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"繼續\";}}s:5:\"zh_TW\";a:8:{s:8:\"language\";s:5:\"zh_TW\";s:7:\"version\";s:5:\"5.2.4\";s:7:\"updated\";s:19:\"2019-12-05 18:52:27\";s:12:\"english_name\";s:16:\"Chinese (Taiwan)\";s:11:\"native_name\";s:12:\"繁體中文\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.2.4/zh_TW.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"zh\";i:2;s:3:\"zho\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"繼續\";}}s:5:\"zh_CN\";a:8:{s:8:\"language\";s:5:\"zh_CN\";s:7:\"version\";s:5:\"5.2.4\";s:7:\"updated\";s:19:\"2019-11-14 00:33:57\";s:12:\"english_name\";s:15:\"Chinese (China)\";s:11:\"native_name\";s:12:\"简体中文\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.2.4/zh_CN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"zh\";i:2;s:3:\"zho\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"继续\";}}}'),(44,1,'registrationnotification','yes'),(45,1,'welcome_user_email','Howdy USERNAME,\r\n\r\nYour new account is set up.\r\n\r\nYou can log in with the following information:\r\nUsername: USERNAME\r\nPassword: PASSWORD\r\nLOGINLINK\r\n\r\nThanks!\r\n\r\n--The Team @ SITE_NAME'),(46,1,'menu_items','a:0:{}'),(47,1,'first_page',''),(48,1,'first_comment',''),(49,1,'first_comment_url',''),(50,1,'first_comment_author',''),(51,1,'limited_email_domains',''),(52,1,'banned_email_domains',''),(53,1,'new_admin_email','info@example.com'),(54,1,'first_comment_email',''),(55,1,'wpseo_ms','a:10:{s:6:\"access\";s:5:\"admin\";s:11:\"defaultblog\";s:0:\"\";s:26:\"allow_disableadvanced_meta\";b:1;s:25:\"allow_onpage_indexability\";b:1;s:29:\"allow_content_analysis_active\";b:1;s:29:\"allow_keyword_analysis_active\";b:1;s:27:\"allow_enable_admin_bar_menu\";b:1;s:32:\"allow_enable_cornerstone_content\";b:1;s:24:\"allow_enable_xml_sitemap\";b:1;s:30:\"allow_enable_text_link_counter\";b:1;}'),(56,1,'ewww_image_optimizer_metadata_remove','1'),(57,1,'ewww_image_optimizer_jpg_level','10'),(58,1,'ewww_image_optimizer_png_level','10'),(59,1,'ewww_image_optimizer_gif_level','10'),(60,1,'ewww_image_optimizer_pdf_level','0'),(61,1,'ewww_image_optimizer_disable_pngout','1'),(62,1,'ewww_image_optimizer_optipng_level','2'),(63,1,'ewww_image_optimizer_pngout_level','2'),(64,1,'exactdn_all_the_things','1'),(65,1,'exactdn_lossy','1'),(66,1,'ewww_image_optimizer_review_time','1587645770'),(67,1,'_site_transient_timeout_theme_roots','1618835367'),(68,1,'_site_transient_theme_roots','a:1:{s:9:\"My Website\";s:7:\"/themes\";}'),(69,1,'_site_transient_timeout_browser_43cb75c6ebdc32b138c2620e4d9863d1','1619438368'),(70,1,'_site_transient_browser_43cb75c6ebdc32b138c2620e4d9863d1','a:10:{s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:12:\"90.0.4430.72\";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;}'),(71,1,'_site_transient_timeout_php_check_a0c594a1902efeb727acf2a7ff080644','1619438369'),(72,1,'_site_transient_php_check_a0c594a1902efeb727acf2a7ff080644','a:5:{s:19:\"recommended_version\";s:3:\"7.4\";s:15:\"minimum_version\";s:6:\"5.6.20\";s:12:\"is_supported\";b:0;s:9:\"is_secure\";b:1;s:13:\"is_acceptable\";b:1;}'),(73,1,'_site_transient_timeout_community-events-03439e947169b36a93ee8c20324432d6','1618876776'),(74,1,'_site_transient_community-events-03439e947169b36a93ee8c20324432d6','a:4:{s:9:\"sandboxed\";b:0;s:5:\"error\";N;s:8:\"location\";a:1:{s:2:\"ip\";s:10:\"172.20.0.0\";}s:6:\"events\";a:6:{i:0;a:10:{s:4:\"type\";s:8:\"wordcamp\";s:5:\"title\";s:15:\"WordCamp Europe\";s:3:\"url\";s:33:\"https://europe.wordcamp.org/2021/\";s:6:\"meetup\";s:0:\"\";s:10:\"meetup_url\";s:0:\"\";s:4:\"date\";s:19:\"2021-06-07 00:00:00\";s:8:\"end_date\";s:19:\"2021-06-10 00:00:00\";s:20:\"start_unix_timestamp\";i:1623020400;s:18:\"end_unix_timestamp\";i:1623279600;s:8:\"location\";a:4:{s:8:\"location\";s:6:\"Online\";s:7:\"country\";s:2:\"PT\";s:8:\"latitude\";d:41.162202200000003;s:9:\"longitude\";d:-8.6570587999999997;}}i:1;a:10:{s:4:\"type\";s:6:\"meetup\";s:5:\"title\";s:23:\"WordPress Meetup Zwolle\";s:3:\"url\";s:68:\"https://www.meetup.com/Zwolle-WordPress-Meetup/events/nsmmmrycchbrb/\";s:6:\"meetup\";s:23:\"WordPress Meetup Zwolle\";s:10:\"meetup_url\";s:47:\"https://www.meetup.com/Zwolle-WordPress-Meetup/\";s:4:\"date\";s:19:\"2021-05-13 19:00:00\";s:8:\"end_date\";s:19:\"2021-05-13 20:30:00\";s:20:\"start_unix_timestamp\";i:1620925200;s:18:\"end_unix_timestamp\";i:1620930600;s:8:\"location\";a:4:{s:8:\"location\";s:6:\"Online\";s:7:\"country\";s:2:\"NL\";s:8:\"latitude\";d:52.520000457763999;s:9:\"longitude\";d:6.0900001525879004;}}i:2;a:10:{s:4:\"type\";s:6:\"meetup\";s:5:\"title\";s:23:\"WordPress Meetup Zwolle\";s:3:\"url\";s:68:\"https://www.meetup.com/Zwolle-WordPress-Meetup/events/nsmmmryccjbnb/\";s:6:\"meetup\";s:23:\"WordPress Meetup Zwolle\";s:10:\"meetup_url\";s:47:\"https://www.meetup.com/Zwolle-WordPress-Meetup/\";s:4:\"date\";s:19:\"2021-06-10 18:45:00\";s:8:\"end_date\";s:19:\"2021-06-10 20:55:00\";s:20:\"start_unix_timestamp\";i:1623343500;s:18:\"end_unix_timestamp\";i:1623351300;s:8:\"location\";a:4:{s:8:\"location\";s:19:\"Zwolle, Netherlands\";s:7:\"country\";s:2:\"nl\";s:8:\"latitude\";d:52.508583068847997;s:9:\"longitude\";d:6.0933017730712997;}}i:3;a:10:{s:4:\"type\";s:6:\"meetup\";s:5:\"title\";s:43:\"WordPress Meetup Nijmegen: To be announced.\";s:3:\"url\";s:66:\"https://www.meetup.com/WordPress-Meetup-Nijmegen/events/277572569/\";s:6:\"meetup\";s:25:\"WordPress Meetup Nijmegen\";s:10:\"meetup_url\";s:49:\"https://www.meetup.com/WordPress-Meetup-Nijmegen/\";s:4:\"date\";s:19:\"2021-06-16 20:00:00\";s:8:\"end_date\";s:19:\"2021-06-16 22:00:00\";s:20:\"start_unix_timestamp\";i:1623866400;s:18:\"end_unix_timestamp\";i:1623873600;s:8:\"location\";a:4:{s:8:\"location\";s:6:\"Online\";s:7:\"country\";s:2:\"NL\";s:8:\"latitude\";d:51.840000152587997;s:9:\"longitude\";d:5.8499999046326003;}}i:4;a:10:{s:4:\"type\";s:6:\"meetup\";s:5:\"title\";s:23:\"WordPress Meetup Zwolle\";s:3:\"url\";s:68:\"https://www.meetup.com/Zwolle-WordPress-Meetup/events/nsmmmrycckblb/\";s:6:\"meetup\";s:23:\"WordPress Meetup Zwolle\";s:10:\"meetup_url\";s:47:\"https://www.meetup.com/Zwolle-WordPress-Meetup/\";s:4:\"date\";s:19:\"2021-07-08 18:45:00\";s:8:\"end_date\";s:19:\"2021-07-08 20:55:00\";s:20:\"start_unix_timestamp\";i:1625762700;s:18:\"end_unix_timestamp\";i:1625770500;s:8:\"location\";a:4:{s:8:\"location\";s:19:\"Zwolle, Netherlands\";s:7:\"country\";s:2:\"nl\";s:8:\"latitude\";d:52.508583068847997;s:9:\"longitude\";d:6.0933017730712997;}}i:5;a:10:{s:4:\"type\";s:6:\"meetup\";s:5:\"title\";s:23:\"WordPress Meetup Zwolle\";s:3:\"url\";s:68:\"https://www.meetup.com/Zwolle-WordPress-Meetup/events/nsmmmrycclbqb/\";s:6:\"meetup\";s:23:\"WordPress Meetup Zwolle\";s:10:\"meetup_url\";s:47:\"https://www.meetup.com/Zwolle-WordPress-Meetup/\";s:4:\"date\";s:19:\"2021-08-12 18:45:00\";s:8:\"end_date\";s:19:\"2021-08-12 20:55:00\";s:20:\"start_unix_timestamp\";i:1628786700;s:18:\"end_unix_timestamp\";i:1628794500;s:8:\"location\";a:4:{s:8:\"location\";s:19:\"Zwolle, Netherlands\";s:7:\"country\";s:2:\"nl\";s:8:\"latitude\";d:52.508583068847997;s:9:\"longitude\";d:6.0933017730712997;}}}}');
/*!40000 ALTER TABLE `wp_sitemeta` 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 */;
/*!50503 SET character_set_client = utf8mb4 */;
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 */;
/*!50503 SET character_set_client = utf8mb4 */;
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=5 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),(2,2,'nav_menu','',0,0),(3,3,'nav_menu','',0,0),(4,4,'nav_menu','',0,0);
/*!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 */;
/*!50503 SET character_set_client = utf8mb4 */;
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 */;
/*!50503 SET character_set_client = utf8mb4 */;
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',
`term_order` int(4) DEFAULT '0',
PRIMARY KEY (`term_id`),
KEY `slug` (`slug`(191)),
KEY `name` (`name`(191))
) ENGINE=InnoDB AUTO_INCREMENT=5 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,0),(2,'Main','main',0,0),(3,'Footer','footer',0,0),(4,'Copyright','copyright',0,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 */;
/*!50503 SET character_set_client = utf8mb4 */;
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=27 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','vidda'),(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',''),(15,1,'show_welcome_panel','1'),(16,1,'session_tokens','a:1:{s:64:\"39392dc25bc921ed4e6c5362b62af1eab3beccc21ef1ae620d8b90cb4d5af468\";a:4:{s:10:\"expiration\";i:1619006362;s:2:\"ip\";s:10:\"172.20.0.1\";s:2:\"ua\";s:114:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.72 Safari/537.36\";s:5:\"login\";i:1618833562;}}'),(17,1,'wp_user-settings','editor=tinymce&libraryContent=browse'),(18,1,'wp_user-settings-time','1587040257'),(19,1,'wp_dashboard_quick_press_last_post_id','4'),(20,1,'community-events-location','a:1:{s:2:\"ip\";s:10:\"172.20.0.0\";}'),(21,1,'source_domain','localhost:5100'),(22,1,'primary_blog','1'),(23,1,'wp_yoast_notifications','a:3:{i:0;a:2:{s:7:\"message\";s:1060:\"We\'ve noticed you\'ve been using Yoast SEO for some time now; we hope you love it! We\'d be thrilled if you could <a href=\"https://yoa.st/rate-yoast-seo?php_version=7.2&platform=wordpress&platform_version=5.2.4&software=free&software_version=10.1.2&days_active=>30\">give us a 5 stars rating on WordPress.org</a>!\n\nIf you are experiencing issues, <a href=\"https://yoa.st/bugreport?php_version=7.2&platform=wordpress&platform_version=5.2.4&software=free&software_version=10.1.2&days_active=>30\">please file a bug report</a> and we\'ll do our best to help you out.\n\nBy the way, did you know we also have a <a href=\'https://yoa.st/premium-notification?php_version=7.2&platform=wordpress&platform_version=5.2.4&software=free&software_version=10.1.2&days_active=>30\'>Premium plugin</a>? It offers advanced features, like a redirect manager and support for multiple keyphrases. It also comes with 24/7 personal support.\n\n<a class=\"button\" href=\"http://localhost:5100/wp-admin/?page=wpseo_dashboard&yoast_dismiss=upsell\">Please don\'t show me this notification anymore</a>\";s:7:\"options\";a:9:{s:4:\"type\";s:7:\"warning\";s:2:\"id\";s:19:\"wpseo-upsell-notice\";s:5:\"nonce\";N;s:8:\"priority\";d:0.80000000000000004;s:9:\"data_json\";a:0:{}s:13:\"dismissal_key\";N;s:12:\"capabilities\";s:20:\"wpseo_manage_options\";s:16:\"capability_check\";s:3:\"all\";s:14:\"yoast_branding\";b:0;}}i:1;a:2:{s:7:\"message\";s:164:\"Don\'t miss your crawl errors: <a href=\"http://localhost:5100/wp-admin/admin.php?page=wpseo_search_console&tab=settings\">connect with Google Search Console here</a>.\";s:7:\"options\";a:9:{s:4:\"type\";s:7:\"warning\";s:2:\"id\";s:17:\"wpseo-dismiss-gsc\";s:5:\"nonce\";N;s:8:\"priority\";d:0.5;s:9:\"data_json\";a:0:{}s:13:\"dismissal_key\";N;s:12:\"capabilities\";s:20:\"wpseo_manage_options\";s:16:\"capability_check\";s:3:\"all\";s:14:\"yoast_branding\";b:0;}}i:2;a:2:{s:7:\"message\";s:218:\"<strong>Huge SEO Issue: You\'re blocking access to robots.</strong> You must <a href=\"http://localhost:5100/wp-admin/options-reading.php\">go to your Reading Settings</a> and uncheck the box for Search Engine Visibility.\";s:7:\"options\";a:9:{s:4:\"type\";s:5:\"error\";s:2:\"id\";s:32:\"wpseo-dismiss-blog-public-notice\";s:5:\"nonce\";N;s:8:\"priority\";i:1;s:9:\"data_json\";a:0:{}s:13:\"dismissal_key\";N;s:12:\"capabilities\";s:20:\"wpseo_manage_options\";s:16:\"capability_check\";s:3:\"all\";s:14:\"yoast_branding\";b:0;}}}'),(24,1,'managenav-menuscolumnshidden','a:5:{i:0;s:11:\"link-target\";i:1;s:11:\"css-classes\";i:2;s:3:\
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment