-- MariaDB dump 10.19  Distrib 10.5.20-MariaDB, for Linux (x86_64)
--
-- Host: localhost    Database: thefis6_ss504
-- ------------------------------------------------------
-- Server version	10.5.20-MariaDB-log

/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8mb4 */;
/*!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 `usass5u_commentmeta`
--

DROP TABLE IF EXISTS `usass5u_commentmeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `usass5u_commentmeta` (
  `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `comment_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `meta_key` varchar(255) DEFAULT NULL,
  `meta_value` longtext DEFAULT NULL,
  PRIMARY KEY (`meta_id`),
  KEY `comment_id` (`comment_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `usass5u_commentmeta`
--

LOCK TABLES `usass5u_commentmeta` WRITE;
/*!40000 ALTER TABLE `usass5u_commentmeta` DISABLE KEYS */;
/*!40000 ALTER TABLE `usass5u_commentmeta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `usass5u_comments`
--

DROP TABLE IF EXISTS `usass5u_comments`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `usass5u_comments` (
  `comment_ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `comment_post_ID` bigint(20) unsigned NOT NULL DEFAULT 0,
  `comment_author` tinytext NOT NULL,
  `comment_author_email` varchar(100) NOT NULL DEFAULT '',
  `comment_author_url` varchar(200) NOT NULL DEFAULT '',
  `comment_author_IP` varchar(100) NOT NULL DEFAULT '',
  `comment_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `comment_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `comment_content` text NOT NULL,
  `comment_karma` int(11) NOT NULL DEFAULT 0,
  `comment_approved` varchar(20) NOT NULL DEFAULT '1',
  `comment_agent` varchar(255) NOT NULL DEFAULT '',
  `comment_type` varchar(20) NOT NULL DEFAULT 'comment',
  `comment_parent` bigint(20) unsigned NOT NULL DEFAULT 0,
  `user_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  PRIMARY KEY (`comment_ID`),
  KEY `comment_post_ID` (`comment_post_ID`),
  KEY `comment_approved_date_gmt` (`comment_approved`,`comment_date_gmt`),
  KEY `comment_date_gmt` (`comment_date_gmt`),
  KEY `comment_parent` (`comment_parent`),
  KEY `comment_author_email` (`comment_author_email`(10))
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `usass5u_comments`
--

LOCK TABLES `usass5u_comments` WRITE;
/*!40000 ALTER TABLE `usass5u_comments` DISABLE KEYS */;
INSERT INTO `usass5u_comments` VALUES (1,1,'A WordPress Commenter','wapuu@wordpress.example','https://wordpress.org/','','2023-06-08 16:33:35','2023-06-08 16:33:35','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://en.gravatar.com/\">Gravatar</a>.',0,'1','','comment',0,0);
/*!40000 ALTER TABLE `usass5u_comments` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `usass5u_links`
--

DROP TABLE IF EXISTS `usass5u_links`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `usass5u_links` (
  `link_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `link_url` varchar(255) NOT NULL DEFAULT '',
  `link_name` varchar(255) NOT NULL DEFAULT '',
  `link_image` varchar(255) NOT NULL DEFAULT '',
  `link_target` varchar(25) NOT NULL DEFAULT '',
  `link_description` varchar(255) NOT NULL DEFAULT '',
  `link_visible` varchar(20) NOT NULL DEFAULT 'Y',
  `link_owner` bigint(20) unsigned NOT NULL DEFAULT 1,
  `link_rating` int(11) NOT NULL DEFAULT 0,
  `link_updated` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `link_rel` varchar(255) NOT NULL DEFAULT '',
  `link_notes` mediumtext NOT NULL,
  `link_rss` varchar(255) NOT NULL DEFAULT '',
  PRIMARY KEY (`link_id`),
  KEY `link_visible` (`link_visible`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `usass5u_links`
--

LOCK TABLES `usass5u_links` WRITE;
/*!40000 ALTER TABLE `usass5u_links` DISABLE KEYS */;
/*!40000 ALTER TABLE `usass5u_links` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `usass5u_loginizer_logs`
--

DROP TABLE IF EXISTS `usass5u_loginizer_logs`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `usass5u_loginizer_logs` (
  `username` varchar(255) NOT NULL DEFAULT '',
  `time` int(10) NOT NULL DEFAULT 0,
  `count` int(10) NOT NULL DEFAULT 0,
  `lockout` int(10) NOT NULL DEFAULT 0,
  `ip` varchar(255) NOT NULL DEFAULT '',
  `url` varchar(255) NOT NULL DEFAULT '',
  UNIQUE KEY `ip` (`ip`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `usass5u_loginizer_logs`
--

LOCK TABLES `usass5u_loginizer_logs` WRITE;
/*!40000 ALTER TABLE `usass5u_loginizer_logs` DISABLE KEYS */;
/*!40000 ALTER TABLE `usass5u_loginizer_logs` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `usass5u_options`
--

DROP TABLE IF EXISTS `usass5u_options`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `usass5u_options` (
  `option_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `option_name` varchar(191) NOT NULL DEFAULT '',
  `option_value` longtext NOT NULL,
  `autoload` varchar(20) NOT NULL DEFAULT 'yes',
  PRIMARY KEY (`option_id`),
  UNIQUE KEY `option_name` (`option_name`),
  KEY `autoload` (`autoload`)
) ENGINE=MyISAM AUTO_INCREMENT=368 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `usass5u_options`
--

LOCK TABLES `usass5u_options` WRITE;
/*!40000 ALTER TABLE `usass5u_options` DISABLE KEYS */;
INSERT INTO `usass5u_options` VALUES (1,'siteurl','https://usaslalomskateboarding.com','yes'),(2,'home','https://usaslalomskateboarding.com','yes'),(3,'blogname','USA Slalom Skateboarding','yes'),(4,'blogdescription','USA Slalom Skateboarding','yes'),(5,'users_can_register','0','yes'),(6,'admin_email','Michael@firstcallequtiy.com','yes'),(7,'start_of_week','1','yes'),(8,'use_balanceTags','0','yes'),(9,'use_smilies','1','yes'),(10,'require_name_email','1','yes'),(11,'comments_notify','1','yes'),(12,'posts_per_rss','10','yes'),(13,'rss_use_excerpt','0','yes'),(14,'mailserver_url','mail.example.com','yes'),(15,'mailserver_login','login@example.com','yes'),(16,'mailserver_pass','password','yes'),(17,'mailserver_port','110','yes'),(18,'default_category','1','yes'),(19,'default_comment_status','open','yes'),(20,'default_ping_status','open','yes'),(21,'default_pingback_flag','1','yes'),(22,'posts_per_page','10','yes'),(23,'date_format','F j, Y','yes'),(24,'time_format','g:i a','yes'),(25,'links_updated_date_format','F j, Y g:i a','yes'),(26,'comment_moderation','0','yes'),(27,'moderation_notify','1','yes'),(28,'permalink_structure','/%postname%/','yes'),(29,'rewrite_rules','a:163:{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:39:\"index.php?yoast-sitemap-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:17:\"^wp-sitemap\\.xml$\";s:23:\"index.php?sitemap=index\";s:17:\"^wp-sitemap\\.xsl$\";s:36:\"index.php?sitemap-stylesheet=sitemap\";s:23:\"^wp-sitemap-index\\.xsl$\";s:34:\"index.php?sitemap-stylesheet=index\";s:48:\"^wp-sitemap-([a-z]+?)-([a-z\\d_-]+?)-(\\d+?)\\.xml$\";s:75:\"index.php?sitemap=$matches[1]&sitemap-subtype=$matches[2]&paged=$matches[3]\";s:34:\"^wp-sitemap-([a-z]+?)-(\\d+?)\\.xml$\";s:47:\"index.php?sitemap=$matches[1]&paged=$matches[2]\";s:47:\"category/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:42:\"category/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:23:\"category/(.+?)/embed/?$\";s:46:\"index.php?category_name=$matches[1]&embed=true\";s:35:\"category/(.+?)/page/?([0-9]{1,})/?$\";s:53:\"index.php?category_name=$matches[1]&paged=$matches[2]\";s:17:\"category/(.+?)/?$\";s:35:\"index.php?category_name=$matches[1]\";s:44:\"tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:39:\"tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:20:\"tag/([^/]+)/embed/?$\";s:36:\"index.php?tag=$matches[1]&embed=true\";s:32:\"tag/([^/]+)/page/?([0-9]{1,})/?$\";s:43:\"index.php?tag=$matches[1]&paged=$matches[2]\";s:14:\"tag/([^/]+)/?$\";s:25:\"index.php?tag=$matches[1]\";s:45:\"type/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:40:\"type/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:21:\"type/([^/]+)/embed/?$\";s:44:\"index.php?post_format=$matches[1]&embed=true\";s:33:\"type/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?post_format=$matches[1]&paged=$matches[2]\";s:15:\"type/([^/]+)/?$\";s:33:\"index.php?post_format=$matches[1]\";s:39:\"home_slider/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:49:\"home_slider/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:69:\"home_slider/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:64:\"home_slider/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:64:\"home_slider/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:45:\"home_slider/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:28:\"home_slider/([^/]+)/embed/?$\";s:44:\"index.php?home_slider=$matches[1]&embed=true\";s:32:\"home_slider/([^/]+)/trackback/?$\";s:38:\"index.php?home_slider=$matches[1]&tb=1\";s:40:\"home_slider/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?home_slider=$matches[1]&paged=$matches[2]\";s:47:\"home_slider/([^/]+)/comment-page-([0-9]{1,})/?$\";s:51:\"index.php?home_slider=$matches[1]&cpage=$matches[2]\";s:36:\"home_slider/([^/]+)(?:/([0-9]+))?/?$\";s:50:\"index.php?home_slider=$matches[1]&page=$matches[2]\";s:28:\"home_slider/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:38:\"home_slider/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:58:\"home_slider/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:53:\"home_slider/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:53:\"home_slider/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:34:\"home_slider/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:41:\"nectar_slider/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:51:\"nectar_slider/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:71:\"nectar_slider/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:66:\"nectar_slider/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:66:\"nectar_slider/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:47:\"nectar_slider/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:30:\"nectar_slider/([^/]+)/embed/?$\";s:46:\"index.php?nectar_slider=$matches[1]&embed=true\";s:34:\"nectar_slider/([^/]+)/trackback/?$\";s:40:\"index.php?nectar_slider=$matches[1]&tb=1\";s:42:\"nectar_slider/([^/]+)/page/?([0-9]{1,})/?$\";s:53:\"index.php?nectar_slider=$matches[1]&paged=$matches[2]\";s:49:\"nectar_slider/([^/]+)/comment-page-([0-9]{1,})/?$\";s:53:\"index.php?nectar_slider=$matches[1]&cpage=$matches[2]\";s:38:\"nectar_slider/([^/]+)(?:/([0-9]+))?/?$\";s:52:\"index.php?nectar_slider=$matches[1]&page=$matches[2]\";s:30:\"nectar_slider/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:40:\"nectar_slider/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:60:\"nectar_slider/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:55:\"nectar_slider/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:55:\"nectar_slider/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:36:\"nectar_slider/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:57:\"slider-locations/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:69:\"index.php?taxonomy=slider-locations&term=$matches[1]&feed=$matches[2]\";s:52:\"slider-locations/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:69:\"index.php?taxonomy=slider-locations&term=$matches[1]&feed=$matches[2]\";s:33:\"slider-locations/([^/]+)/embed/?$\";s:63:\"index.php?taxonomy=slider-locations&term=$matches[1]&embed=true\";s:45:\"slider-locations/([^/]+)/page/?([0-9]{1,})/?$\";s:70:\"index.php?taxonomy=slider-locations&term=$matches[1]&paged=$matches[2]\";s:27:\"slider-locations/([^/]+)/?$\";s:52:\"index.php?taxonomy=slider-locations&term=$matches[1]\";s:37:\"portfolio/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:47:\"portfolio/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:67:\"portfolio/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:62:\"portfolio/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:62:\"portfolio/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:43:\"portfolio/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:26:\"portfolio/([^/]+)/embed/?$\";s:42:\"index.php?portfolio=$matches[1]&embed=true\";s:30:\"portfolio/([^/]+)/trackback/?$\";s:36:\"index.php?portfolio=$matches[1]&tb=1\";s:38:\"portfolio/([^/]+)/page/?([0-9]{1,})/?$\";s:49:\"index.php?portfolio=$matches[1]&paged=$matches[2]\";s:45:\"portfolio/([^/]+)/comment-page-([0-9]{1,})/?$\";s:49:\"index.php?portfolio=$matches[1]&cpage=$matches[2]\";s:34:\"portfolio/([^/]+)(?:/([0-9]+))?/?$\";s:48:\"index.php?portfolio=$matches[1]&page=$matches[2]\";s:26:\"portfolio/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:36:\"portfolio/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:56:\"portfolio/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:51:\"portfolio/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:51:\"portfolio/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:32:\"portfolio/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:53:\"project-type/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:51:\"index.php?project-type=$matches[1]&feed=$matches[2]\";s:48:\"project-type/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:51:\"index.php?project-type=$matches[1]&feed=$matches[2]\";s:29:\"project-type/([^/]+)/embed/?$\";s:45:\"index.php?project-type=$matches[1]&embed=true\";s:41:\"project-type/([^/]+)/page/?([0-9]{1,})/?$\";s:52:\"index.php?project-type=$matches[1]&paged=$matches[2]\";s:23:\"project-type/([^/]+)/?$\";s:34:\"index.php?project-type=$matches[1]\";s:59:\"project-attributes/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:57:\"index.php?project-attributes=$matches[1]&feed=$matches[2]\";s:54:\"project-attributes/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:57:\"index.php?project-attributes=$matches[1]&feed=$matches[2]\";s:35:\"project-attributes/([^/]+)/embed/?$\";s:51:\"index.php?project-attributes=$matches[1]&embed=true\";s:47:\"project-attributes/([^/]+)/page/?([0-9]{1,})/?$\";s:58:\"index.php?project-attributes=$matches[1]&paged=$matches[2]\";s:29:\"project-attributes/([^/]+)/?$\";s:40:\"index.php?project-attributes=$matches[1]\";s:12:\"robots\\.txt$\";s:18:\"index.php?robots=1\";s:13:\"favicon\\.ico$\";s:19:\"index.php?favicon=1\";s:48:\".*wp-(atom|rdf|rss|rss2|feed|commentsrss2)\\.php$\";s:18:\"index.php?feed=old\";s:20:\".*wp-app\\.php(/.*)?$\";s:19:\"index.php?error=403\";s:18:\".*wp-register.php$\";s:23:\"index.php?register=true\";s:32:\"feed/(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:27:\"(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:8:\"embed/?$\";s:21:\"index.php?&embed=true\";s:20:\"page/?([0-9]{1,})/?$\";s:28:\"index.php?&paged=$matches[1]\";s:27:\"comment-page-([0-9]{1,})/?$\";s:38:\"index.php?&page_id=2&cpage=$matches[1]\";s:41:\"comments/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:36:\"comments/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:17:\"comments/embed/?$\";s:21:\"index.php?&embed=true\";s:44:\"search/(.+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:39:\"search/(.+)/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:20:\"search/(.+)/embed/?$\";s:34:\"index.php?s=$matches[1]&embed=true\";s:32:\"search/(.+)/page/?([0-9]{1,})/?$\";s:41:\"index.php?s=$matches[1]&paged=$matches[2]\";s:14:\"search/(.+)/?$\";s:23:\"index.php?s=$matches[1]\";s:47:\"author/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:42:\"author/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:23:\"author/([^/]+)/embed/?$\";s:44:\"index.php?author_name=$matches[1]&embed=true\";s:35:\"author/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?author_name=$matches[1]&paged=$matches[2]\";s:17:\"author/([^/]+)/?$\";s:33:\"index.php?author_name=$matches[1]\";s:69:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:45:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/embed/?$\";s:74:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&embed=true\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&paged=$matches[4]\";s:39:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/?$\";s:63:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]\";s:56:\"([0-9]{4})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:51:\"([0-9]{4})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:32:\"([0-9]{4})/([0-9]{1,2})/embed/?$\";s:58:\"index.php?year=$matches[1]&monthnum=$matches[2]&embed=true\";s:44:\"([0-9]{4})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&paged=$matches[3]\";s:26:\"([0-9]{4})/([0-9]{1,2})/?$\";s:47:\"index.php?year=$matches[1]&monthnum=$matches[2]\";s:43:\"([0-9]{4})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:38:\"([0-9]{4})/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:19:\"([0-9]{4})/embed/?$\";s:37:\"index.php?year=$matches[1]&embed=true\";s:31:\"([0-9]{4})/page/?([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&paged=$matches[2]\";s:13:\"([0-9]{4})/?$\";s:26:\"index.php?year=$matches[1]\";s:27:\".?.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\".?.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\".?.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\".?.+?/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:16:\"(.?.+?)/embed/?$\";s:41:\"index.php?pagename=$matches[1]&embed=true\";s:20:\"(.?.+?)/trackback/?$\";s:35:\"index.php?pagename=$matches[1]&tb=1\";s:40:\"(.?.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:35:\"(.?.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:28:\"(.?.+?)/page/?([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&paged=$matches[2]\";s:35:\"(.?.+?)/comment-page-([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&cpage=$matches[2]\";s:24:\"(.?.+?)(?:/([0-9]+))?/?$\";s:47:\"index.php?pagename=$matches[1]&page=$matches[2]\";s:27:\"[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\"[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\"[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\"[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\"[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\"[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:16:\"([^/]+)/embed/?$\";s:37:\"index.php?name=$matches[1]&embed=true\";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]\";s:22:\"[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";}','yes'),(30,'hack_file','0','yes'),(31,'blog_charset','UTF-8','yes'),(32,'moderation_keys','','no'),(33,'active_plugins','a:21:{i:0;s:19:\"akismet/akismet.php\";i:1;s:21:\"backuply/backuply.php\";i:2;s:51:\"boldgrid-backup-premium/boldgrid-backup-premium.php\";i:3;s:35:\"boldgrid-backup/boldgrid-backup.php\";i:4;s:43:\"branda-white-labeling/ultimate-branding.php\";i:5;s:33:\"duplicate-post/duplicate-post.php\";i:6;s:35:\"google-site-kit/google-site-kit.php\";i:7;s:19:\"jetpack/jetpack.php\";i:8;s:35:\"js_composer_salient/js_composer.php\";i:9;s:23:\"loginizer/loginizer.php\";i:10;s:23:\"salient-core/plugin.php\";i:11;s:32:\"salient-demo-importer/plugin.php\";i:12;s:30:\"salient-home-slider/plugin.php\";i:13;s:32:\"salient-nectar-slider/plugin.php\";i:14;s:28:\"salient-portfolio/plugin.php\";i:15;s:29:\"salient-shortcodes/plugin.php\";i:16;s:25:\"salient-social/plugin.php\";i:17;s:26:\"salient-widgets/plugin.php\";i:18;s:27:\"svg-support/svg-support.php\";i:19;s:24:\"wordpress-seo/wp-seo.php\";i:20;s:23:\"wp-smushit/wp-smush.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','salient','yes'),(41,'stylesheet','salient-child','yes'),(42,'comment_registration','0','yes'),(43,'html_type','text/html','yes'),(44,'use_trackback','0','yes'),(45,'default_role','subscriber','yes'),(46,'db_version','53496','yes'),(47,'uploads_use_yearmonth_folders','1','yes'),(48,'upload_path','','yes'),(49,'blog_public','1','yes'),(50,'default_link_category','2','yes'),(51,'show_on_front','page','yes'),(52,'tag_base','','yes'),(53,'show_avatars','1','yes'),(54,'avatar_rating','G','yes'),(55,'upload_url_path','','yes'),(56,'thumbnail_size_w','150','yes'),(57,'thumbnail_size_h','150','yes'),(58,'thumbnail_crop','1','yes'),(59,'medium_size_w','300','yes'),(60,'medium_size_h','300','yes'),(61,'avatar_default','mystery','yes'),(62,'large_size_w','1024','yes'),(63,'large_size_h','1024','yes'),(64,'image_default_link_type','none','yes'),(65,'image_default_size','','yes'),(66,'image_default_align','','yes'),(67,'close_comments_for_old_posts','0','yes'),(68,'close_comments_days_old','14','yes'),(69,'thread_comments','1','yes'),(70,'thread_comments_depth','5','yes'),(71,'page_comments','0','yes'),(72,'comments_per_page','50','yes'),(73,'default_comments_page','newest','yes'),(74,'comment_order','asc','yes'),(75,'sticky_posts','a:0:{}','yes'),(76,'widget_categories','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(77,'widget_text','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(78,'widget_rss','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(79,'uninstall_plugins','a:4:{s:21:\"backuply/backuply.php\";s:21:\"backuply_deactivation\";s:23:\"loginizer/loginizer.php\";s:22:\"loginizer_deactivation\";s:43:\"branda-white-labeling/ultimate-branding.php\";s:30:\"branda_register_uninstall_hook\";s:24:\"wordpress-seo/wp-seo.php\";s:14:\"__return_false\";}','no'),(80,'timezone_string','America/Los_Angeles','yes'),(81,'page_for_posts','0','yes'),(82,'page_on_front','2','yes'),(83,'default_post_format','0','yes'),(84,'link_manager_enabled','0','yes'),(85,'finished_splitting_shared_terms','1','yes'),(86,'site_icon','0','yes'),(87,'medium_large_size_w','768','yes'),(88,'medium_large_size_h','0','yes'),(89,'wp_page_for_privacy_policy','3','yes'),(90,'show_comments_cookies_opt_in','1','yes'),(91,'admin_email_lifespan','1701794015','yes'),(92,'disallowed_keys','','no'),(93,'comment_previously_approved','1','yes'),(94,'auto_plugin_theme_update_emails','a:0:{}','no'),(95,'auto_update_core_dev','enabled','yes'),(96,'auto_update_core_minor','enabled','yes'),(97,'auto_update_core_major','enabled','yes'),(98,'wp_force_deactivated_plugins','a:0:{}','yes'),(99,'initial_db_version','53496','yes'),(100,'usass5u_user_roles','a:7:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:63:{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:10:\"copy_posts\";b:1;}}s:6:\"editor\";a:2:{s:4:\"name\";s:6:\"Editor\";s:12:\"capabilities\";a:37:{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:15:\"wpseo_bulk_edit\";b:1;s:28:\"wpseo_edit_advanced_metadata\";b:1;s:10:\"copy_posts\";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:39:{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:15:\"wpseo_bulk_edit\";b:1;s:28:\"wpseo_edit_advanced_metadata\";b:1;s:20:\"wpseo_manage_options\";b:1;s:23:\"view_site_health_checks\";b:1;s:10:\"copy_posts\";b:1;}}s:12:\"wpseo_editor\";a:2:{s:4:\"name\";s:10:\"SEO Editor\";s:12:\"capabilities\";a:37:{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:15:\"wpseo_bulk_edit\";b:1;s:28:\"wpseo_edit_advanced_metadata\";b:1;s:10:\"copy_posts\";b:1;}}}','yes'),(101,'fresh_site','0','yes'),(102,'user_count','2','no'),(103,'widget_block','a:6:{i:2;a:1:{s:7:\"content\";s:19:\"<!-- wp:search /-->\";}i:3;a:1:{s:7:\"content\";s:154:\"<!-- wp:group --><div class=\"wp-block-group\"><!-- wp:heading --><h2>Recent Posts</h2><!-- /wp:heading --><!-- wp:latest-posts /--></div><!-- /wp:group -->\";}i:4;a:1:{s:7:\"content\";s:227:\"<!-- wp:group --><div class=\"wp-block-group\"><!-- wp:heading --><h2>Recent Comments</h2><!-- /wp:heading --><!-- wp:latest-comments {\"displayAvatar\":false,\"displayDate\":false,\"displayExcerpt\":false} /--></div><!-- /wp:group -->\";}i:5;a:1:{s:7:\"content\";s:146:\"<!-- wp:group --><div class=\"wp-block-group\"><!-- wp:heading --><h2>Archives</h2><!-- /wp:heading --><!-- wp:archives /--></div><!-- /wp:group -->\";}i:6;a:1:{s:7:\"content\";s:150:\"<!-- wp:group --><div class=\"wp-block-group\"><!-- wp:heading --><h2>Categories</h2><!-- /wp:heading --><!-- wp:categories /--></div><!-- /wp:group -->\";}s:12:\"_multiwidget\";i:1;}','yes'),(104,'sidebars_widgets','a:11:{s:19:\"wp_inactive_widgets\";a:0:{}s:12:\"blog-sidebar\";a:3:{i:0;s:7:\"block-2\";i:1;s:7:\"block-3\";i:2;s:7:\"block-4\";}s:12:\"page-sidebar\";a:2:{i:0;s:7:\"block-5\";i:1;s:7:\"block-6\";}s:19:\"woocommerce-sidebar\";a:0:{}s:20:\"nectar-extra-sidebar\";a:0:{}s:13:\"footer-area-1\";a:0:{}s:13:\"footer-area-2\";a:0:{}s:13:\"footer-area-3\";a:0:{}s:13:\"footer-area-4\";a:0:{}s:21:\"slide-out-widget-area\";a:0:{}s:13:\"array_version\";i:3;}','yes'),(105,'cron','a:14:{i:1686249217;a:1:{s:34:\"wp_privacy_delete_old_export_files\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1686249236;a:1:{s:20:\"jetpack_clean_nonces\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1686253856;a:1:{s:26:\"upgrader_scheduled_cleanup\";a:1:{s:32:\"686c8315be36c96dc00d0d7ed3656b43\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;i:6;}}}}i:1686253875;a:1:{s:26:\"upgrader_scheduled_cleanup\";a:1:{s:32:\"d63aca0b7e6237c7964320bd7fc95644\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;i:7;}}}}i:1686268800;a:1:{s:22:\"wdev_logger_clear_logs\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1686285215;a:4:{s:18:\"wp_https_detection\";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_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:1686285237;a:1:{s:21:\"wp_update_user_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:1686289962;a:1:{s:41:\"googlesitekit_cron_update_remote_features\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1686328415;a:2:{s:30:\"wp_site_health_scheduled_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}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;}}}i:1686328436;a:1:{s:20:\"jetpack_v2_heartbeat\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1686328437;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:1686328440;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:1686333161;a:2:{s:13:\"wpseo-reindex\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s:31:\"wpseo_permalink_structure_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}s:7:\"version\";i:2;}','yes'),(106,'widget_pages','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(107,'widget_calendar','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(108,'widget_archives','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(109,'widget_media_audio','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(110,'widget_media_image','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(111,'widget_media_gallery','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(112,'widget_media_video','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(113,'widget_meta','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(114,'widget_search','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(115,'widget_recent-posts','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(116,'widget_recent-comments','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(117,'widget_tag_cloud','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(118,'widget_nav_menu','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(119,'widget_custom_html','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(120,'recovery_keys','a:0:{}','yes'),(121,'theme_mods_twentytwentythree','a:2:{s:18:\"custom_css_post_id\";i:-1;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1686246681;s:4:\"data\";a:3:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:3:{i:0;s:7:\"block-2\";i:1;s:7:\"block-3\";i:2;s:7:\"block-4\";}s:9:\"sidebar-2\";a:2:{i:0;s:7:\"block-5\";i:1;s:7:\"block-6\";}}}}','yes'),(122,'backuply_version','1.1.2','yes'),(123,'backuply_hide_holiday','1686242017','yes'),(124,'backuply_promo_time','1686242017','yes'),(125,'loginizer_version','1.7.9','yes'),(126,'loginizer_options','a:0:{}','yes'),(127,'loginizer_last_reset','1686242017','yes'),(128,'loginizer_whitelist','a:0:{}','yes'),(129,'loginizer_blacklist','a:0:{}','yes'),(130,'loginizer_2fa_whitelist','a:0:{}','yes'),(131,'loginizer_ins_time','1686242017','yes'),(132,'loginizer_promo_time','1686242017','yes'),(133,'loginizer_backuply_promo_time','1686242017','yes'),(134,'loginizer_csrf_promo_time','1686242017','yes'),(136,'https_detection_errors','a:0:{}','yes'),(137,'_site_transient_update_core','O:8:\"stdClass\":4:{s:7:\"updates\";a:1:{i:0;O:8:\"stdClass\":10:{s:8:\"response\";s:6:\"latest\";s:8:\"download\";s:59:\"https://downloads.wordpress.org/release/wordpress-6.2.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-6.2.2.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-6.2.2-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-6.2.2-new-bundled.zip\";s:7:\"partial\";s:0:\"\";s:8:\"rollback\";s:0:\"\";}s:7:\"current\";s:5:\"6.2.2\";s:7:\"version\";s:5:\"6.2.2\";s:11:\"php_version\";s:6:\"5.6.20\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"6.1\";s:15:\"partial_version\";s:0:\"\";}}s:12:\"last_checked\";i:1686246722;s:15:\"version_checked\";s:5:\"6.2.2\";s:12:\"translations\";a:0:{}}','no'),(156,'jetpack_sync_settings_disable','0','yes'),(157,'jetpack_connection_active_plugins','a:1:{s:7:\"jetpack\";a:1:{s:4:\"name\";s:7:\"Jetpack\";}}','yes'),(163,'_transient_jetpack_autoloader_plugin_paths','a:1:{i:0;s:25:\"{{WP_PLUGIN_DIR}}/jetpack\";}','yes'),(159,'boldgrid_backup_environment','a:3:{s:8:\"hostname\";s:26:\"biz251.inmotionhosting.com\";s:10:\"phpversion\";s:6:\"8.1.18\";s:9:\"wpversion\";s:5:\"6.2.2\";}','yes'),(160,'jetpack_options','a:3:{s:7:\"version\";s:19:\"11.2-a.5:1686242037\";s:11:\"old_version\";s:19:\"11.2-a.5:1686242037\";s:14:\"last_heartbeat\";i:1686242050;}','yes'),(161,'jetpack_sync_https_history_home_url','a:5:{i:0;s:5:\"https\";i:1;s:5:\"https\";i:2;s:5:\"https\";i:3;s:5:\"https\";i:4;s:5:\"https\";}','yes'),(162,'jetpack_sync_https_history_site_url','a:5:{i:0;s:5:\"https\";i:1;s:5:\"https\";i:2;s:5:\"https\";i:3;s:5:\"https\";i:4;s:5:\"https\";}','yes'),(206,'_site_transient_timeout_theme_roots','1686248475','no'),(207,'_site_transient_theme_roots','a:5:{s:13:\"salient-child\";s:7:\"/themes\";s:7:\"salient\";s:7:\"/themes\";s:15:\"twentytwentyone\";s:7:\"/themes\";s:17:\"twentytwentythree\";s:7:\"/themes\";s:15:\"twentytwentytwo\";s:7:\"/themes\";}','no'),(200,'jetpack_dismissed_connection_banner','1','yes'),(143,'boldgrid_settings','a:2:{s:7:\"library\";a:1:{s:35:\"boldgrid-backup/boldgrid-backup.php\";s:8:\"2.13.7.0\";}s:15:\"plugins_checked\";a:2:{s:35:\"boldgrid-backup/boldgrid-backup.php\";a:1:{s:6:\"1.15.2\";i:1686242036;}s:51:\"boldgrid-backup-premium/boldgrid-backup-premium.php\";a:1:{s:5:\"1.5.9\";i:1686242036;}}}','yes'),(226,'current_theme','Salient Child Theme','yes'),(227,'theme_mods_salient-child','a:3:{i:0;b:0;s:18:\"nav_menu_locations\";a:0:{}s:18:\"custom_css_post_id\";i:-1;}','yes'),(228,'theme_switched','','yes'),(229,'shop_catalog_image_size','a:3:{s:5:\"width\";s:3:\"375\";s:6:\"height\";s:3:\"400\";s:4:\"crop\";i:1;}','yes'),(147,'boldgrid_backup_id','c26dfb60','no'),(148,'boldgrid_backup_settings','a:14:{s:8:\"schedule\";a:10:{s:10:\"dow_sunday\";i:0;s:10:\"dow_monday\";i:0;s:11:\"dow_tuesday\";i:0;s:13:\"dow_wednesday\";i:0;s:12:\"dow_thursday\";i:0;s:10:\"dow_friday\";i:0;s:12:\"dow_saturday\";i:0;s:5:\"tod_h\";i:3;s:5:\"tod_m\";s:2:\"02\";s:5:\"tod_a\";s:2:\"AM\";}s:15:\"retention_count\";i:5;s:18:\"notification_email\";s:27:\"Michael@firstcallequtiy.com\";s:13:\"notifications\";a:3:{s:6:\"backup\";i:1;s:7:\"restore\";i:1;s:10:\"site_check\";b:1;}s:11:\"auto_backup\";i:1;s:13:\"auto_rollback\";i:1;s:6:\"remote\";a:1:{s:5:\"local\";a:1:{s:7:\"enabled\";b:1;}}s:14:\"exclude_tables\";a:0:{}s:24:\"folder_exclusion_include\";s:18:\"WPCORE,/wp-content\";s:24:\"folder_exclusion_exclude\";s:17:\".git,node_modules\";s:10:\"site_check\";a:4:{s:7:\"enabled\";b:1;s:6:\"logger\";b:1;s:13:\"auto_recovery\";b:0;s:8:\"interval\";i:15;}s:10:\"encrypt_db\";b:0;s:11:\"auto_update\";a:3:{s:4:\"days\";i:0;s:7:\"plugins\";a:1:{s:7:\"default\";s:1:\"0\";}s:6:\"themes\";a:1:{s:7:\"default\";s:1:\"0\";}}s:16:\"backup_directory\";s:29:\"/home/thefis6/boldgrid_backup\";}','no'),(149,'_transient_timeout_boldgrid_backup_system_zip_test','1686328436','no'),(150,'_transient_boldgrid_backup_system_zip_test','1','no'),(151,'_transient_timeout_boldgrid_backup_is_functional','1686334279','no'),(152,'_transient_boldgrid_backup_is_functional','1','no'),(153,'_transient_timeout_jetpack_file_data_11.2-a.5','1688747636','no'),(154,'_transient_jetpack_file_data_11.2-a.5','a:1:{s:32:\"3fd340ad52927afb3bbb9e98575eccfd\";a:15:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:24:\"requires_user_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";s:12:\"plan_classes\";s:0:\"\";}}','no'),(155,'jetpack_available_modules','a:1:{s:8:\"11.2-a.5\";a:44:{s:8:\"carousel\";s:3:\"1.5\";s:13:\"comment-likes\";s:3:\"5.1\";s:8:\"comments\";s:3:\"1.4\";s:12:\"contact-form\";s:3:\"1.3\";s:9:\"copy-post\";s:3:\"7.0\";s:20:\"custom-content-types\";s:3:\"3.1\";s:10:\"custom-css\";s:3:\"1.7\";s:21:\"enhanced-distribution\";s:3:\"1.2\";s:16:\"google-analytics\";s:3:\"4.5\";s:12:\"google-fonts\";s:6:\"10.8.0\";s:19:\"gravatar-hovercards\";s:3:\"1.1\";s:15:\"infinite-scroll\";s:3:\"2.0\";s:8:\"json-api\";s:3:\"1.9\";s:5:\"latex\";s:3:\"1.1\";s:11:\"lazy-images\";s:5:\"5.6.0\";s:5:\"likes\";s:3:\"2.2\";s:8:\"markdown\";s:3:\"2.8\";s:9:\"masterbar\";s:3:\"4.8\";s:7:\"monitor\";s:3:\"2.6\";s:5:\"notes\";s:3:\"1.9\";s:10:\"photon-cdn\";s:3:\"6.6\";s:6:\"photon\";s:3:\"2.0\";s:13:\"post-by-email\";s:3:\"2.0\";s:7:\"protect\";s:3:\"3.4\";s:9:\"publicize\";s:3:\"2.0\";s:13:\"related-posts\";s:3:\"2.9\";s:6:\"search\";s:3:\"5.0\";s:9:\"seo-tools\";s:3:\"4.4\";s:10:\"sharedaddy\";s:3:\"1.1\";s:10:\"shortcodes\";s:3:\"1.1\";s:10:\"shortlinks\";s:3:\"1.1\";s:8:\"sitemaps\";s:3:\"3.9\";s:3:\"sso\";s:3:\"2.6\";s:5:\"stats\";s:3:\"1.1\";s:13:\"subscriptions\";s:3:\"1.2\";s:13:\"tiled-gallery\";s:3:\"2.1\";s:10:\"vaultpress\";s:5:\"0:1.2\";s:18:\"verification-tools\";s:3:\"3.0\";s:10:\"videopress\";s:3:\"2.5\";s:3:\"waf\";s:4:\"10.9\";s:17:\"widget-visibility\";s:3:\"2.4\";s:7:\"widgets\";s:3:\"1.2\";s:21:\"woocommerce-analytics\";s:3:\"8.4\";s:7:\"wordads\";s:5:\"4.5.0\";}}','yes'),(165,'do_activate','0','yes'),(166,'jetpack_activated','2','yes'),(167,'_transient_timeout_jetpack_https_test','1686328437','no'),(168,'_transient_jetpack_https_test','1','no'),(169,'_transient_timeout_jetpack_https_test_message','1686328437','no'),(170,'_transient_jetpack_https_test_message','','no'),(171,'_site_transient_timeout_browser_4ea2d477d7ef319e60b2c4c4fe40ca30','1686846837','no'),(172,'_site_transient_browser_4ea2d477d7ef319e60b2c4c4fe40ca30','a:10:{s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:9:\"114.0.0.0\";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'),(173,'_site_transient_timeout_php_check_6a93f292d9a273c004fc36e1f86d97b3','1686846838','no'),(174,'_site_transient_php_check_6a93f292d9a273c004fc36e1f86d97b3','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:0;s:13:\"is_acceptable\";b:0;}','no'),(179,'finished_updating_comment_type','1','yes'),(176,'can_compress_scripts','1','no'),(184,'_site_transient_browser_f90fccba99565780b100fb8e9e1406ce','a:10:{s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:9:\"113.0.0.0\";s:8:\"platform\";s:9:\"Macintosh\";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'),(182,'loginizer_login_attempt_stats','a:1:{i:1686243600;a:1:{i:1;i:1;}}','no'),(183,'_site_transient_timeout_browser_f90fccba99565780b100fb8e9e1406ce','1686850984','no'),(185,'_site_transient_timeout_community-events-89503c485fe7d4e7e07782c001a50c08','1686289389','no'),(186,'_site_transient_community-events-89503c485fe7d4e7e07782c001a50c08','a:4:{s:9:\"sandboxed\";b:0;s:5:\"error\";N;s:8:\"location\";a:1:{s:2:\"ip\";s:12:\"136.58.113.0\";}s:6:\"events\";a:0:{}}','no'),(187,'_transient_timeout_feed_9bbd59226dc36b9b26cd43f15694c5c3','1686289389','no'),(188,'_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:52:\"\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:4:{s:0:\"\";a:8:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"WordPress News\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:26:\"https://wordpress.org/news\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"The latest news about WordPress and the WordPress 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:\"\";}}s:13:\"lastBuildDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 06 Jun 2023 10:15:56 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"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=6.3-alpha-55899\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:5:\"image\";a:1:{i:0;a:6:{s:4:\"data\";s:11:\"\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:5:{s:3:\"url\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://s.w.org/favicon.ico?2\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"WordPress News\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:26:\"https://wordpress.org/news\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:5:\"width\";a:1:{i:0;a:5:{s:4:\"data\";s:2:\"32\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:6:\"height\";a:1:{i:0;a:5:{s:4:\"data\";s:2:\"32\";s:7:\"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:35:\"The Month in WordPress – May 2023\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:67:\"https://wordpress.org/news/2023/06/the-month-in-wordpress-may-2023/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_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 Jun 2023 10:15:56 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s: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:\"\";}i:1;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=15100\";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:350:\"May has been a month of celebrating WordPress and the open source community that makes it possible. In honor of the project’s 20th anniversary, WordPress Executive Director Josepha Haden Chomphosy reflected on this journey and the opportunity to build a better future for those who come after: The more our community invests in itself and [&#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:15:\"Reyes Martínez\";s: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:16957:\"\n<p>May has been a month of celebrating WordPress and the open source community that makes it possible. In honor of the project’s 20th anniversary, WordPress Executive Director <a href=\"https://profiles.wordpress.org/chanthaboune/\">Josepha Haden Chomphosy</a> reflected on <a href=\"https://wordpress.org/news/2023/05/celebrating-20-years-of-wordpress/\">this journey</a> and the opportunity to build a better future for those who come after:</p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p>The more our community invests in itself and supports one another, the stronger WordPress and the open source software movement become.</p>\n<cite>Josepha Haden Chomphosy in <a href=\"https://wordpress.org/news/2023/05/celebrating-20-years-of-wordpress/\">Celebrating 20 Years of WordPress</a>.</cite></blockquote>\n\n\n\n<p>Read on for highlights of this milestone and the latest updates in the WordPress space.</p>\n\n\n\n<div style=\"height:3px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"wp-block-heading\">WordPress at 20</h2>\n\n\n\n<p><strong>May 27, 2023, marked the 20th anniversary of WordPress’ first release</strong>. Since its inception by <a href=\"https://ma.tt/2023/05/wp20-audrey-scholars/\">Matt Mullenweg</a> and <a href=\"https://twitter.com/mikelittlezed1/status/1662013891856027649\">Mike Little</a> in 2003, the project has transformed the digital publishing landscape and enabled millions of people to craft their stories.</p>\n\n\n\n<p>WordPress enthusiasts from all over the world gathered at more than <strong>130 events</strong> to celebrate this important milestone. WP20’s commemorative book, <a href=\"https://wordpress.org/book/\"><strong>Building Blocks: The Evolution of WordPress</strong></a>, was published in tandem and documents some of the most significant moments and changes of the last decade of the project.</p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" width=\"1024\" height=\"576\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/06/wp20-celebrate-desktop-1.png?resize=1024%2C576&#038;ssl=1\" alt=\"3D wallpaper of a number 20 formed by words in commemoration of the 20th anniversary of WordPress.\" class=\"wp-image-15106\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/06/wp20-celebrate-desktop-1.png?resize=1024%2C576&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2023/06/wp20-celebrate-desktop-1.png?resize=300%2C169&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2023/06/wp20-celebrate-desktop-1.png?resize=768%2C432&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2023/06/wp20-celebrate-desktop-1.png?resize=1536%2C864&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2023/06/wp20-celebrate-desktop-1.png?resize=2048%2C1152&amp;ssl=1 2048w, https://i0.wp.com/wordpress.org/news/files/2023/06/wp20-celebrate-desktop-1.png?w=3000&amp;ssl=1 3000w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /><figcaption class=\"wp-element-caption\"><a href=\"https://wp20.wordpress.net/download-3d-wp20-themed-media/\">Download the new WP20 wallpapers made in 3D</a>.<br></figcaption></figure>\n\n\n\n<p>The anniversary date may have passed, but the <a href=\"https://wp20.wordpress.net/news/\">festivities and fun aren&#8217;t over</a>. You can still <a href=\"https://wp20.wordpress.net/\">join a meetup</a>, sign the #WP20 From Blogs to Blocks campaign <a href=\"https://make.wordpress.org/marketing/2023/05/27/day-20-wp20-from-blogs-to-blocks/\">birthday card</a>, or participate in #WP20 social celebrations.</p>\n\n\n\n<blockquote class=\"wp-block-quote has-extra-large-font-size\">\n<p>Join Josepha Haden Chomphosy in <a href=\"https://wordpress.org/news/2023/05/episode-55-happy-anniversary-wordpress/\">Episode 55 of WP Briefing</a> as she looks back at the 20 years of WordPress and how the community made WordPress what it is today.</p>\n</blockquote>\n\n\n\n<div style=\"height:3px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"wp-block-heading\">WordPress 6.3 is expected on August 8</h2>\n\n\n\n<p>Work on WordPress 6.3 officially kicked off with the <a href=\"https://make.wordpress.org/core/2023/05/18/wordpress-6-3-planning-roundup/\">announcement of its development cycle and release squad</a>. <strong>Set for release on August 8, 2023</strong>, this version will be the second major update of WordPress in 2023 and will mark the end of Phase 2 of the project’s <a href=\"https://wordpress.org/about/roadmap/\">development roadmap</a>.</p>\n\n\n\n<p>WordPress 6.3 aims to bring a cohesive site editing experience by introducing expanded functionality, richer interfaces, and a dedicated focus on refinement.</p>\n\n\n\n<blockquote class=\"wp-block-quote has-extra-large-font-size\">\n<p><a href=\"https://make.wordpress.org/core/2023/05/18/roadmap-to-6-3/\">Check out the 6.3 roadmap post</a> for a tentative preview of anticipated features.</p>\n</blockquote>\n\n\n\n<div style=\"height:3px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"wp-block-heading\">WordPress 6.2.2 security release</h2>\n\n\n\n<p><strong><a href=\"https://wordpress.org/news/2023/05/wordpress-6-2-2-security-release/\">WordPress 6.2.2</a> became available for download on May 20, 2023</strong>. This release was a quick response to resolve a regression introduced in <a href=\"https://wordpress.org/news/2023/05/wordpress-6-2-1-maintenance-security-release/\">6.2.1</a>, specifically with shortcode support in block templates, and to further patch a vulnerability already addressed in the previous version.</p>\n\n\n\n<blockquote class=\"wp-block-quote has-extra-large-font-size\">\n<p><a href=\"https://make.wordpress.org/core/2023/02/01/core-editor-improvement-strengthening-style-options/\"></a><a href=\"https://make.wordpress.org/core/2023/04/25/the-benefits-of-prioritizing-and-measuring-performance-in-wordpress-6-2/\"></a><a href=\"https://wordpress.org/news/2023/05/wordpress-6-2-2-security-release/\">Update your site if you haven’t yet</a>.</p>\n</blockquote>\n\n\n\n<div style=\"height:3px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"wp-block-heading\">New in the Gutenberg plugin</h2>\n\n\n\n<p>Three new versions of Gutenberg have shipped in the last month:</p>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/05/04/whats-new-in-gutenberg-15-7-03-may/\"><strong>Gutenberg 15.7</strong></a>, released on May 3, 2023, brings a new direct option to upload and replace a site&#8217;s logo from the block settings sidebar. Other enhancements include easier access to duotone filter controls via the style settings sidebar and an update to fluid typography to refine responsiveness.</li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/05/20/whats-new-in-gutenberg-15-8-may-17/\"><strong>Gutenberg 15.8</strong></a> shipped on May 17, 2023, and includes a new &#8220;Pages&#8221; item in the Site Editor sidebar to edit pages without leaving the interface. Moreover, this version brings the ability to navigate through revisions in the global styles interface and to preview block themes inside the Site Editor.</li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/05/31/whats-new-in-gutenberg-15-9-31-may/\"><strong>Gutenberg 15.9</strong></a> is ready for download as of May 31, 2023. The latest Gutenberg release comes with a new command tool and several enhancements to the Site Editor experience, including a more intuitive drag-and-drop function for moving blocks.</li>\n</ul>\n\n\n\n<blockquote class=\"wp-block-quote has-extra-large-font-size\">\n<p><a href=\"https://make.wordpress.org/core/2023/02/01/core-editor-improvement-strengthening-style-options/\"></a>The latest <a href=\"https://make.wordpress.org/core/2023/05/22/core-editor-improvement-smoother-site-editing/\">Core Editor Improvement post</a> highlights features such as revisions and the ability to preview block themes, and how they enable a smoother site editing experience.</p>\n</blockquote>\n\n\n\n<div style=\"height:3px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"wp-block-heading\">Team updates: Next-generation WordCamps, proposal for a Sustainability Team, and more</h2>\n\n\n\n<ul>\n<li>The Community Team proposed <a href=\"https://make.wordpress.org/community/2023/05/08/the-next-generation-of-wordcamps/\">broadening the purpose of WordPress events</a> to &#8220;spark innovation and adoption by way of accessible training and networking.&#8221; This opens the door to organizing a more diverse range of formats focused on specific topics and audiences.</li>\n\n\n\n<li>WordPress contributors suggested <a href=\"https://make.wordpress.org/project/2023/05/30/proposal-establishment-of-a-formal-wordpress-sustainability-team/\">creating an official Sustainability Team</a>.</li>\n\n\n\n<li>The Polyglots Team rebranded the WP Translation Playground tool as Translate Live and <a href=\"https://make.wordpress.org/polyglots/2023/05/08/translate-live-updates-to-the-translation-playground/\">announced improvements</a> that make translating plugins and themes easier.</li>\n\n\n\n<li>The new<strong> </strong><a href=\"https://make.wordpress.org/project/2023/05/17/wordpress-contributor-mentorship-program-pilot-program-proposal/\">WordPress Contributor Mentorship Program pilot</a> aims to provide cohort-based and 1:1 mentorship to prepare new and aspiring contributors for success.</li>\n\n\n\n<li><a href=\"https://wordpress.org/news/2023/05/2022-annual-survey-results-next-steps/\">Results of the 2022 WordPress Annual Survey</a> were announced last month.</li>\n\n\n\n<li>The Training Team published a new course on <a href=\"https://learn.wordpress.org/course/creating-a-4-page-business-website/\">Creating a 4-page business website</a>. See <a href=\"https://make.wordpress.org/updates/2023/06/02/whats-new-on-learn-wordpress-in-may-2023/\">What’s new on Learn WordPress in May 2023</a> for the latest learning resources.</li>\n\n\n\n<li><a href=\"https://make.wordpress.org/themes/2023/05/04/stacks-the-first-community-theme/\">Meet Stacks</a>—the first community theme born from the <a href=\"https://make.wordpress.org/themes/2023/03/03/hallway-hangout-community-themes-initiative/\">Community Themes initiative</a>. This theme is designed for creating slide decks that can be used for a presentation.</li>\n\n\n\n<li>This Core proposal explores ways to <a href=\"https://make.wordpress.org/core/2023/05/16/proposal-retiring-older-default-themes/\">reduce the maintenance of older default WordPress themes</a> and retire them.</li>\n\n\n\n<li>The May 2023 issues of <a href=\"https://developer.wordpress.org/news/2023/05/whats-new-for-developers-may-2023/\">What’s New for Developers?</a>, the <a href=\"https://make.wordpress.org/polyglots/2023/05/10/polyglots-monthly-newsletter-may-2023/\">Polyglots monthly newsletter</a>, and the&nbsp;<a href=\"https://make.wordpress.org/community/2023/05/18/meetup-organizer-newsletter-may-2023/\">Meetup Organizer newsletter</a>&nbsp;are available for reading.</li>\n\n\n\n<li>Find out how WordPress and its global community of contributors made a difference in Stefano Cassone&#8217;s life in the <a href=\"https://wordpress.org/news/2023/05/people-of-wordpress-stefano-cassone/\">latest edition of People of WordPress</a>.</li>\n</ul>\n\n\n\n<blockquote class=\"wp-block-quote has-extra-large-font-size\">\n<p>What is WordPress Playground, and why it matters? <a href=\"https://wordpress.org/news/2023/05/episode-56-what-to-know-about-wordpress-playground/\">WP Briefing Episode 56</a> discusses the benefits and potential of this tool with special guests Rich Tabor and Adam Zielinski.</p>\n</blockquote>\n\n\n\n<div style=\"height:3px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"wp-block-heading\">Feedback &amp; testing requests</h2>\n\n\n\n<ul>\n<li>Core Team members seek <a href=\"https://make.wordpress.org/core/2023/05/17/command-center-request-for-feedback/\">feedback on the new command tool</a> introduced in the Gutenberg plugin and its API.</li>\n\n\n\n<li>The latest <a href=\"https://make.wordpress.org/test/2023/05/18/fse-program-testing-call-23-rapid-revamp/\">call of the Full Site Editing (FSE) Outreach Program</a> invites you to test some features being worked on to upgrade and polish the experience of using the Site Editor. Share your thoughts by June 8, 2023.</li>\n\n\n\n<li><a href=\"https://make.wordpress.org/updates/2023/05/31/mobile-team-update-may-31st-2/\">Version 22.5</a> of the WordPress mobile app for iOS and Android is ready for testing.</li>\n</ul>\n\n\n\n<blockquote class=\"wp-block-quote has-extra-large-font-size\">\n<p>Which next generation of WordPress events would you like to see? <a href=\"https://make.wordpress.org/community/2023/05/24/idea-generation-next-gen-wordcamps/\">Share your ideas</a> and <a href=\"https://make.wordpress.org/community/2023/06/01/next-gen-wordcamp-talking-points-share-your-ideas-for-a-new-event-format-and-make-it-happen/\">start exploring</a> new event formats this year.</p>\n</blockquote>\n\n\n\n<div style=\"height:3px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"wp-block-heading\">WordPress events updates</h2>\n\n\n\n<ul>\n<li><a href=\"https://europe.wordcamp.org/2023/\">Get ready for WordCamp Europe 2023</a> from June 8-10 in Athens, Greece! The event will start with <a href=\"https://europe.wordcamp.org/2023/contributor-day/\">Contributor Day</a> on June 8, followed by two days of presentations and workshops. Attendees can join a <a href=\"https://europe.wordcamp.org/2023/welness-track-activities/\">wellness track</a> and a <a href=\"https://europe.wordcamp.org/2023/wp-connect/\">dedicated space</a> to connect, among many other initiatives.</li>\n\n\n\n<li>The WordCamp US organizing team is <a href=\"https://us.wordcamp.org/2023/wordcamp-us-2023-call-for-volunteers-open/\">calling for volunteers</a>.</li>\n\n\n\n<li>For another year, the <a href=\"https://wordpressfoundation.org/news/2023/kim-parsell-memorial-scholarship-for-wordcamp-us-2023/\">WordPress Foundation&#8217;s Kim Parsell Memorial Scholarship</a> will award funding for a woman-identifying contributor to attend WordCamp US 2023. Applications are open through June 12, 2023.</li>\n\n\n\n<li><a href=\"https://sylhet.wordcamp.org/2023/\">WordCamp Sylhet 2023</a>, the second ever WordCamp in Bangladesh, was successfully held on May 19-20 with its first <a href=\"https://make.wordpress.org/design/2023/05/23/wordcamp-sylhet-2023-contributor-day-recap/\">Contributor Day</a>.</li>\n\n\n\n<li>Join #WPDiversity with a free online workshop on <a href=\"https://www.eventbrite.com/e/how-to-own-your-expertise-start-speaking-at-wordpress-events-apac-tickets-648295107117\">How to Own Your Expertise &amp; Start Speaking at WordPress Events APAC</a>. The event will take place on July 2, 2023.</li>\n\n\n\n<li>Don’t miss these other upcoming WordCamps:\n<ul>\n<li><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f1ea-1f1f8.png\" alt=\"🇪🇸\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> <a href=\"https://cartagena.wordcamp.org/2023/\">WordCamp Cartagena</a>, Spain on June 10-11, 2023</li>\n\n\n\n<li><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f1fa-1f1f8.png\" alt=\"🇺🇸\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> <a href=\"https://montclair.wordcamp.org/2023/\">WordCamp Montclair</a>, NJ, USA on June 24, 2023</li>\n</ul>\n</li>\n</ul>\n\n\n\n<blockquote class=\"wp-block-quote has-extra-large-font-size\">\n<p>Join WordPress project leadership on June 10 at WordCamp Europe 2023 to hear about the latest developments and what’s next for WordPress. <a href=\"https://europe.wordcamp.org/2023/schedule/\">Check out the schedule for details</a>.</p>\n</blockquote>\n\n\n\n<div style=\"height:3px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<hr class=\"wp-block-separator has-text-color has-light-grey-color has-alpha-channel-opacity has-light-grey-background-color has-background\" />\n\n\n\n<p><strong><em><strong><em><strong><em>Have a story we should include in the next issue of The Month in WordPress? <strong><em>Fill out </em></strong><a href=\"https://make.wordpress.org/community/month-in-wordpress-submissions/\"><strong><em>this quick form</em></strong></a><strong><em> to let us know.</em></strong></em></strong></em></strong></em></strong></p>\n\n\n\n<p><em><em>The following folks contributed to this Month in WordPress: <a href=\'https://profiles.wordpress.org/rmartinezduque/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>rmartinezduque</a>, <a href=\'https://profiles.wordpress.org/nahidsharifkomol/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>nahidsharifkomol</a>, <a href=\'https://profiles.wordpress.org/chaion07/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>chaion07</a>, <a href=\'https://profiles.wordpress.org/devinmaeztri/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>devinmaeztri</a>, <a href=\'https://profiles.wordpress.org/bsanevans/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>bsanevans</a></em></em>, <em><em><a href=\'https://profiles.wordpress.org/ninianepress/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>ninianepress</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:\"15100\";s: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: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:58:\"WP Briefing: Episode 57: The Power of WordPress Mentorship\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:80:\"https://wordpress.org/news/2023/06/episode-57-the-power-of-wordpress-mentorship/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_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 Jun 2023 13:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:7:\"Podcast\";s: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=15089\";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:215:\"Join WordPress Executive Director Josepha Haden Chomphosy in the 57th episode of the WordPress Briefing as she discusses the Contributor Mentorship Program to help increase the success of new contributors over time.\";s: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/2023/06/WP-Briefing-057.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:14:\"Brett McSherry\";s: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:7743:\"\n<p>Join WordPress Executive Director Josepha Haden Chomphosy in the 57th episode of the WordPress Briefing as she discusses the Contributor Mentorship Program to help increase the success of new contributors over time.</p>\n\n\n\n<p><em><strong>Have a question you’d like answered? You can submit them to&nbsp;<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 class=\"wp-block-heading\">Credits</h2>\n\n\n\n<p>Editor:&nbsp;<a href=\"https://profiles.wordpress.org/dustinhartzler/\">Dustin Hartzler</a><br>Logo:&nbsp;<a href=\"https://profiles.wordpress.org/javiarce/\">Javier Arce</a><br>Production:&nbsp;<a href=\"https://profiles.wordpress.org/bjmcsherry/\">Brett McSherry</a><br>Song: Fearless First by Kevin MacLeod</p>\n\n\n\n<h2 class=\"wp-block-heading\">Show Notes</h2>\n\n\n\n<ul>\n<li><a href=\"https://europe.wordcamp.org/2023/\">WordCamp Europe 2023</a>, Athens, Greece. This event includes a <a href=\"https://europe.wordcamp.org/2023/session/matt-mullenweg/\">special Keynote from Matt Mullenweg, Josepha Haden Chomposy, and Matías Ventura</a>. </li>\n\n\n\n<li>&nbsp;<a rel=\"noreferrer noopener\" href=\"https://make.wordpress.org/project/2023/05/17/wordpress-contributor-mentorship-program-pilot-program-proposal/\" target=\"_blank\">WordPress Contributor Mentorship Program: Pilot Program Proposal</a>&nbsp;</li>\n\n\n\n<li>Make WordPress Community: <a rel=\"noreferrer noopener\" href=\"https://make.wordpress.org/community/2023/05/24/idea-generation-next-gen-wordcamps/\" target=\"_blank\">Idea generation: Next Gen WordCamps!</a></li>\n\n\n\n<li>WordPress &#8216;Milestones&#8217; volume two book <a rel=\"noreferrer noopener\" href=\"https://wordpress.org/book/\" target=\"_blank\">Building Blocks: The Evolution of WordPress</a> is available in <a rel=\"noreferrer noopener\" href=\"https://github.com/WordPress/wp20-book/tree/trunk/Formats\" target=\"_blank\">several formats for download on GitHub</a>.</li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">Transcript</h2>\n\n\n<a class=\"wp-block-read-more\" href=\"https://wordpress.org/news/2023/06/episode-57-the-power-of-wordpress-mentorship/\" target=\"_self\">Read more<span class=\"screen-reader-text\">: Episode 57: The Power of WordPress Mentorship</span></a>\n\n\n<p>[Josepha Haden Chomphosy 00:00:00]&nbsp;</p>\n\n\n\n<p>(Intro music)</p>\n\n\n\n<p>Hello everyone, and welcome to the WordPress Briefing, the podcast where you can catch quick explanations of the ideas behind the WordPress open source project, some insight into the community that supports it, and get a small list of big things coming up in the next two weeks.&nbsp;</p>\n\n\n\n<p>I&#8217;m your host, Joseph Hayden Chomphosy. Here we go!</p>\n\n\n\n<p>(Intro music)</p>\n\n\n\n<p>[Josepha Haden Chomphosy 00:00:40]&nbsp;</p>\n\n\n\n<p>Over the course of this year, there has been a lot of research and examination of the contributor funnel in the WordPress community. That research confirms some assumptions about what most contributor stories have in common: the hurdles, the general paths taken, and the way that problem-solving was done. Then in February of this year, Hari Shanker published a proposal for a mentorship program for WordPress.&nbsp;</p>\n\n\n\n<p>And now we&#8217;ve got a pilot program that&#8217;s been defined and is waiting for your feedback. If you&#8217;ve not read the post about the contributor mentorship program, for one do it. But if you would rather hear a synopsis from me, don&#8217;t worry, I&#8217;m about to give you a 10-cent tour.&nbsp;</p>\n\n\n\n<p>[Josepha Haden Chomphosy 00:01:22]&nbsp;</p>\n\n\n\n<p>First up, who is doing this? This pilot program has been outlined by a community working group. We often have working groups in WordPress, and they almost always have specific projects around events or programs, or code updates. Since this working group is focused on a project-wide program, there is project-wide representation in it. All the names are at the bottom of the post, which you can find in our show notes. But it&#8217;s got folks who contribute with code or contribute with time or contribute with design folks who are self-sponsored or corporately sponsored, just a nice mix of people. The program as a whole, though, is being stewarded by Hari Shankar, a longtime supporter of and contributor to WordPress. </p>\n\n\n\n<p>[Josepha Haden Chomphosy 00:02:06]&nbsp;</p>\n\n\n\n<p>So next, what is this for? There are a few goals for the program. But the overarching goal is to increase the success of new contributors over time. We can all agree that if we were to have 1000s of new contributors every day, but they couldn&#8217;t find their way to impactful contributions or meaningful connections quickly, then we would have done them a disservice. And they probably won&#8217;t continue to be part of the community without a bit more effort.&nbsp;</p>\n\n\n\n<p>The when and the where are essentially “right now and right here,” so that brings us finally to Why. Why are we doing this mentorship program? Apart from to help people who want to contribute have an easier path to success – which frankly is enough of a reason anyway – the why is wrapped up in our overall philosophies in the project. If we believe that good ideas can come from anywhere and that contributions of any size matter. And that open source is an idea that can change our generation and that we are democratizing publishing, then bringing new people brings new ideas, and beginner contributions can grow over time. We can maintain this idea, this concept of open source, into the next generation and to future generations. And always keep our sights on the open web. To learn more about this and other project-wide initiatives, swing by make.wordpress.org/project or check the links in today&#8217;s show notes on wordpress.org/news/podcast.</p>\n\n\n\n<p>[Josepha Haden Chomphosy 00:03:53]&nbsp;</p>\n\n\n\n<p>Which brings us now to our small list of big things.&nbsp;</p>\n\n\n\n<p>[Josepha Haden Chomphosy 00:03:56]&nbsp;</p>\n\n\n\n<p>First on the list is WordCamp Europe. That&#8217;s coming up at the end of the week on June 8 through 10th in Athens, Greece. There will be a major update from Matt and friends, so even if you aren&#8217;t there in person, keep an eye out for those recordings. But for those who are there and you&#8217;re curious about the mentorship program or anything else to do with WordPress and contributing to the project, you can come find me or Angela Jin, Hari will also be there, Chloé will be there, Héctor will be there, lots of people, and we want to hear your thoughts and answer your questions.&nbsp;</p>\n\n\n\n<p>[Josepha Haden Chomphosy 00:04:27]&nbsp;</p>\n\n\n\n<p>Second is a call for brainpower! A call for your brainstorms! On the subject of the next generation, we&#8217;ve got a discussion going on about the next generation of WordCamps. We&#8217;ve been discussing what new types and varieties might be available, and that might make sense for people as we get back to in-person events. So if you&#8217;ve got a kind of WordCamp that you&#8217;ve been desperately wanting to try, now&#8217;s the time to let folks know about it. </p>\n\n\n\n<p>[Josepha Haden Chomphosy 00:04:54]</p>\n\n\n\n<p>And the final thing is the second volume of The WordPress history book called Building Blocks: The Evolution of WordPress is now available for download in several formats as well as on GitHub. Stop buy, give it a read, and relive some of the highlights of the past ten years of the WordPress project.&nbsp;</p>\n\n\n\n<p>&nbsp;[Josepha Haden Chomphosy 00:05:12]</p>\n\n\n\n<p>And that, my friends, is your smallest of big things. Thanks for tuning in today for the WordPress Briefing. I&#8217;m your host Josepha Haden Chomposy, and 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:\"15089\";s: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:69:\"\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:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"People of WordPress: Stefano Cassone\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"https://wordpress.org/news/2023/05/people-of-wordpress-stefano-cassone/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_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 May 2023 20:48:58 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:5:{i:0;a:5:{s:4:\"data\";s:9:\"Community\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"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: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: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:4;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:35:\"https://wordpress.org/news/?p=15030\";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:125:\"The People of WordPress feature series goes to Italy to interview web designer, photographer and translator Stefano Cassone. \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Abha Thakor\";s: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:15969:\"\n<p><strong>With <a href=\"https://europe.wordcamp.org/2023/\">WordCamp Europe 2023</a> in June, we feature Stefano Cassone, a web designer, photographer and volunteer translator, who believes his life has been transformed through WordPress and its community.</strong></p>\n\n\n\n<p><strong>The&nbsp;<em>People of WordPress</em>&nbsp;series shares inspiring stories of how people’s lives can change for the better through WordPress and its global community of contributors.</strong></p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" width=\"1024\" height=\"535\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/05/stefano-featured-img.jpg?resize=1024%2C535&#038;ssl=1\" alt=\"Stefano with a laptop covered in WordPress event stickers\" class=\"wp-image-15027\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/05/stefano-featured-img.jpg?resize=1024%2C535&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2023/05/stefano-featured-img.jpg?resize=300%2C157&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2023/05/stefano-featured-img.jpg?resize=768%2C401&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2023/05/stefano-featured-img.jpg?w=1200&amp;ssl=1 1200w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /><figcaption class=\"wp-element-caption\">Stefano with a laptop covered in WordPress event stickers</figcaption></figure>\n\n\n\n<p>Stefano has always been fascinated by the internet. His initial learning in the 1990s was through joining friends at a local pub where they could explore how websites were structured and learn to use chat software.</p>\n\n\n\n<p>This led to Stefano creating websites for fun in 1998, and his first paid job was for the shop where he bought comics. He turned to content management systems (CMS) to speed up the creation process for sites, but found he needed more documentation to really understand their capabilities. Then he read a magazine article about WordPress, a CMS which was being used to make incredible blog sites, and was supported by an international community and documentation. Over time, Stefano started using that documentation to work on websites in Italian.</p>\n\n\n\n<h2 class=\"wp-block-heading\">WordPress provides a life-changing turning point&nbsp;</h2>\n\n\n\n<p>Stefano describes himself as an introvert. He found that WordPress helped him to work from home, to develop his skills and the quality of what he could produce, as well as build his self-confidence.&nbsp;</p>\n\n\n\n<p>A catalyst for the turning point in his life and career was the discovery of an area for events on the WordPress dashboard. On this page, he found a forthcoming local meetup in Rome.&nbsp;</p>\n\n\n\n<p>In November 2017, Stefano took the step to go along to this event, led by a curiosity of what he might discover and intrigued by how a software could be supported by a vast community. The topic at the event was on <a href=\"https://make.wordpress.org/cli/\">WP-CLI</a>, a command line interface for WordPress. He recalled that he felt outside his comfort zone as he did not regard himself as a developer and at that point, had only used the software for simple jobs. He wondered whether using the software as his only CMS was going to be a long term option and if these meetups were suitable for him.</p>\n\n\n\n<p>At the meetup, people were talking about a forthcoming event, called WordCamp Rome. Through his research, he saw that there was a lot of enthusiasm for this event. This intrigued him and he wondered if it would show him that he could have a career using the software after all.</p>\n\n\n\n<p>Unfamiliar with WordCamps, Stefano found it difficult at first to know what he could go to and how to get involved, but he persevered and attended the event.</p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p>&#8220;The WordCamp was a great discovery: talks at all levels from basic to those for developers, advanced and very advanced. I was immediately struck by the enthusiasm of the volunteers. It was an environment where I felt very comfortable, so much so, that I asked myself how I could participate in some WordCamps.&#8221;</p>\n<cite>Stefano Cassone</cite></blockquote>\n\n\n\n<p>From this event, Stefano was encouraged by those he met to consider applying as a volunteer for a future WordCamp.</p>\n\n\n\n<p>There was also much talk at the event about ‘Slack’. It was new to Stefano, but with help from those attending, he signed up for the messaging tool Slack, used by the WordPress community. He was still unsure how he could contribute, and if he would be welcome.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Joining thousands of volunteer translators of WordPress</h3>\n\n\n\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" width=\"800\" height=\"600\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/05/stefano-wc-italia-2022.jpg?resize=800%2C600&#038;ssl=1\" alt=\"Italian General Translation Editors at WordPress Italia 2022\" class=\"wp-image-15028\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/05/stefano-wc-italia-2022.jpg?w=800&amp;ssl=1 800w, https://i0.wp.com/wordpress.org/news/files/2023/05/stefano-wc-italia-2022.jpg?resize=300%2C225&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2023/05/stefano-wc-italia-2022.jpg?resize=768%2C576&amp;ssl=1 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" data-recalc-dims=\"1\" /><figcaption class=\"wp-element-caption\">Italian General Translation Editors at WordPress Italia 2022</figcaption></figure>\n\n\n\n<p>Stefano took the plunge and was excited to find there was a team called Polyglots. In this team, people from across the world<a href=\"https://make.wordpress.org/polyglots/\"> translate the WordPress software into many different languages</a>. He started with translating a theme he was using in his work. Little by little he became more interested in plugins and attended meetings with other translators. He offered his skills to translate into Italian themes and plugins in general and as his experience grew, he took on the volunteer role of a General Translation Editor. He also took care of the translation into Italian of the WordPress Core. More recently he has joined the group of translators for the <a href=\"https://make.wordpress.org/docs/handbook/helphub/\">HelpHub</a>, which is part of the <a href=\"https://make.wordpress.org/docs/\">WordPress documentation</a> system.</p>\n\n\n\n<p>He said: “Participating in the WordPress Slack has helped me enormously: I’ve met a lot of people who I now call friends. Moreover, by translating, I learned a lot about how themes and plugins work.</p>\n\n\n\n<p>“It&#8217;s a great way to contribute to WordPress, especially for someone like me who is not a developer. Translating also allows me to fully understand how WordPress works.&#8221; </p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p>&#8220;I always say that translating themes, plugins, and the Core software is the best way to learn WordPress, better than any course or book.”</p>\n<cite>Stefano Cassone</cite></blockquote>\n\n\n\n<h3 class=\"wp-block-heading\">Sharing skills to support Open Source WordPress</h3>\n\n\n\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" loading=\"lazy\" width=\"667\" height=\"500\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/05/stefano-at-WC-2019.jpg?resize=667%2C500&#038;ssl=1\" alt=\"Stefano volunteering as a photographer at a WordCamp in 2019 with other contributors.\" class=\"wp-image-15026\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/05/stefano-at-WC-2019.jpg?w=667&amp;ssl=1 667w, https://i0.wp.com/wordpress.org/news/files/2023/05/stefano-at-WC-2019.jpg?resize=300%2C225&amp;ssl=1 300w\" sizes=\"(max-width: 667px) 100vw, 667px\" data-recalc-dims=\"1\" /><figcaption class=\"wp-element-caption\">Stefano volunteering as a photographer at a WordCamp in 2019 with other contributors.</figcaption></figure>\n\n\n\n<p>Stefano’s growing commitment to the open source WordPress project was further boosted through his volunteering. He was a volunteer at WordCamp Rome 2018 and participated there in his first Contributor Day where he had the opportunity to translate the software with others.&nbsp;</p>\n\n\n\n<p>He was also able to bring his own hobbies and skills to help the project grow and reach others. One example was his passion for photography, and he volunteered as a photographer for many other events in Italy organized by the WordPress community. He said: “This commitment to the community also allows me to have fun: being a photographer means having the opportunity to walk around the halls and capture moments of the life of a WordCamp.” The more WordCamps he attended, the more he wanted to be part of and keep contributing to the wider WordPress community.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Contribution to WordPress is inspiring</h2>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" loading=\"lazy\" width=\"1024\" height=\"683\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/05/stefano-at-the-support-table-contributor-day.jpg?resize=1024%2C683&#038;ssl=1\" alt=\"Stefano at the Support Table at a WordPress Contributor Day\" class=\"wp-image-15025\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/05/stefano-at-the-support-table-contributor-day.jpg?resize=1024%2C683&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2023/05/stefano-at-the-support-table-contributor-day.jpg?resize=300%2C200&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2023/05/stefano-at-the-support-table-contributor-day.jpg?resize=768%2C512&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2023/05/stefano-at-the-support-table-contributor-day.jpg?w=1200&amp;ssl=1 1200w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /><figcaption class=\"wp-element-caption\">Stefano at the Support Table at a WordPress Contributor Day</figcaption></figure>\n\n\n\n<p>When Stefano was asked to become an organizer for the WordPress meetup in Rome in October 2019, he knew he wanted to be part of reaching and supporting more people in his area. He faced challenges with finding venues, but a greater issue was to come: the Covid-19 pandemic.&nbsp;</p>\n\n\n\n<p>Spurred on by the <a href=\"https://it.wordpress.org/\">Italian WordPress community</a> as a whole, he was determined that the meetup was still needed. The regular event was transformed into an online meeting. He was able to gain help from people he had met as a volunteer to share their expertise with meetup attendees.&nbsp;</p>\n\n\n\n<p>The community in Italy also worked together to put on WordCamp Italia online. It brought together the organizers of previous meetups and WordCamps, and new contributors too. Stefano volunteered in both online editions of this camp, including being part of the social and communication team. He found it to not only be a fun experience but also one that helped him grow professionally and learn from so many others.</p>\n\n\n\n<p>He went onto help restart the <a href=\"https://www.meetup.com/romawordpress/\">Rome WordPress meetup</a> in-person meetings in May 2022, was an organizer for the third WordCamp Italy, and has been volunteering for camps in 2023.</p>\n\n\n\n<h3 class=\"wp-block-heading\">What will WordPress bring you?</h3>\n\n\n\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" loading=\"lazy\" width=\"533\" height=\"800\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/05/stefano-at-a-wc.jpg?resize=533%2C800&#038;ssl=1\" alt=\"Stefano inspired by his journey at WordCamps asks what will WordPress bring you?\" class=\"wp-image-15024\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/05/stefano-at-a-wc.jpg?w=533&amp;ssl=1 533w, https://i0.wp.com/wordpress.org/news/files/2023/05/stefano-at-a-wc.jpg?resize=200%2C300&amp;ssl=1 200w\" sizes=\"(max-width: 533px) 100vw, 533px\" data-recalc-dims=\"1\" /><figcaption class=\"wp-element-caption\">Stefano inspired by his journey at WordCamps asks what will WordPress bring you?</figcaption></figure>\n\n\n\n<p>“Persona and professional growth and friendship” are some of the things they have brought Stefano. Contributing boosted his confidence and willingness to try new opportunities in his work.&nbsp;</p>\n\n\n\n<p>He said: “The best thing I got out of joining the WordPress community was the chance to collaborate with some people on a working basis and, I have to say, that was incredible. Being with many of them you have an incredible opportunity to grow in knowledge, you just have to be ready to learn. With WordPress you never stop learning.”</p>\n\n\n\n<p>His top recommendation is: “Join your local meetup or think about organizing one, it will introduce you to an amazing world. Don’t be afraid to meet people at WordCamps and Contributor Days, because you will learn more there than in dozens of courses. Talk to people at those events and don’t worry. The WordPress community is inclusive so you’ll always feel welcome, and you will see enthusiasm like you’ve never seen at other IT events. Sign-up and get involved.”</p>\n\n\n\n<h2 class=\"wp-block-heading\">Share the stories</h2>\n\n\n\n<p>Help share these stories of open source contributors and continue to grow the community.&nbsp;Meet more WordPressers in the <a href=\"https://wordpress.org/news/category/newsletter/interviews/\">People of WordPress series</a>.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Contributors</h2>\n\n\n\n<p>Thanks to Stefano Cassone (<a href=\'https://profiles.wordpress.org/deadpool76/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>deadpool76</a>)&nbsp;for sharing about his adventures in WordPress.</p>\n\n\n\n<p>Thank you to Abha Thakor (<a href=\'https://profiles.wordpress.org/webcommsat/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>webcommsat</a>), the late Surendra Thakor (<a href=\'https://profiles.wordpress.org/sthakor/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>sthakor</a>) and Meher Bala (<a href=\'https://profiles.wordpress.org/meher/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>meher</a>) for interviews, writing the feature and collaborating on images, to Chloe Bringmann (<a href=\'https://profiles.wordpress.org/cbringmann/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>cbringmann</a>), Mark Smallman (<a href=\'https://profiles.wordpress.org/marks99/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>marks99</a>), Nalini Thakor (<a href=\'https://profiles.wordpress.org/nalininonstopnewsuk/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>nalininonstopnewsuk</a>), Mary Baum (<a href=\'https://profiles.wordpress.org/marybaum/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>marybaum</a>), and Maja Loncar (<a href=\'https://profiles.wordpress.org/majaloncar/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>majaloncar</a>) for help with reviews.</p>\n\n\n\n<p>The&nbsp;<em>People of WordPress</em>&nbsp;series thanks Josepha Haden (<a href=\'https://profiles.wordpress.org/chanthaboune/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>chanthaboune</a>) and Topher DeRosia (<a href=\'https://profiles.wordpress.org/topher1kenobe/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>topher1kenobe</a>) for their support.</p>\n\n\n\n<div class=\"wp-block-media-text is-stacked-on-mobile is-vertically-aligned-center\" style=\"grid-template-columns:29% auto\"><figure class=\"wp-block-media-text__media\"><img decoding=\"async\" loading=\"lazy\" width=\"180\" height=\"135\" src=\"https://i0.wp.com/wordpress.org/news/files/2020/03/heropress_logo_180.png?resize=180%2C135&#038;ssl=1\" alt=\"HeroPress logo\" class=\"wp-image-8409 size-full\" data-recalc-dims=\"1\" /></figure><div class=\"wp-block-media-text__content\">\n<p class=\"has-small-font-size\"><em>This People of WordPress feature is inspired by an essay originally published on </em><a href=\"https://heropress.com/\"><em>HeroPress.com</em></a><em>, a community initiative created by Topher DeRosia. It highlights people in the WordPress community who have overcome barriers and whose stories might otherwise go unheard. </em>#HeroPress </p>\n</div></div>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"15030\";s: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: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:33:\"Celebrating 20 Years 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:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"https://wordpress.org/news/2023/05/celebrating-20-years-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:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 27 May 2023 05:27:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:3:{i:0;a:5:{s:4:\"data\";s: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:6:\"Events\";s: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:4:\"WP20\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=14981\";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:244:\"May 27, 2023, marks exactly 20 years since Matt Mullenweg and Mike Little forked b2/cafelog to create WordPress Version 0.70. Quite a bit has taken place in the past 20 years, and imagine how much more we can accomplish together in the next 20!\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}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:5405:\"\n<p>You did it and I think congratulations are in order! You, dear WordPress enthusiast, have helped WordPress thrive for the past 20 years. It’s an incredible accomplishment, and I couldn’t be more thankful.</p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p>Did you know: WordPress is thirteen years older than TikTok (<a href=\"https://en.wikipedia.org/wiki/TikTok\">2016</a>), came four years before Tumblr (<a href=\"https://en.wikipedia.org/wiki/Tumblr\">2007</a>) and the first iPhone (<a href=\"https://en.wikipedia.org/wiki/IPhone_(1st_generation)\">2007</a>), beat Facebook to market by about a year (<a href=\"https://en.wikipedia.org/wiki/Facebook\">2004</a>), and is about five weeks older than Tesla (<a href=\"https://en.wikipedia.org/wiki/Tesla,_Inc.\">July 2003</a>).</p>\n</blockquote>\n\n\n\n<p>May 27, 2023, marks exactly 20 years since Matt Mullenweg and Mike Little <a href=\"https://wordpress.org/about/\">forked b2/cafelog</a> to create <a href=\"https://wordpress.org/documentation/wordpress-version/version-0-70/\">WordPress Version 0.70</a>. Quite a bit has taken place in the past 20 years, and imagine how much more we can accomplish together in the next 20!</p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p><em>You can read about the first 20 years of WordPress in two parts:</em><br><a href=\"https://wordpress.org/book/milestones/\">Milestones: The Story of WordPress (2003 &#8211; 2013)</a><br><a href=\"https://wordpress.org/book/\">Building Blocks: The Evolution of WordPress (2013 &#8211; 2023)</a></p>\n</blockquote>\n\n\n\n<p>Whether you celebrate at one of the <a href=\"https://wp20.wordpress.net\">100+ meetup</a> events, are strutting your stuff in some <a href=\"https://mercantile.wordpress.org/product-category/wp20/\">limited edition WP20 swag</a>, or joining in a collective <a href=\"https://wp20.wordpress.net/live/\">reflection on WordPress</a> in your unique way on social media, WP20 is a celebration of you – the WordPress community.</p>\n\n\n\n<h2 class=\"wp-block-heading\">A Common Legacy</h2>\n\n\n\n<p>As I scroll through the amazing photos and memories shared on social media of past WordCamps and meetups, I think about the people who got WordPress to where it is today. The thousands of contributors who patched bugs and tested new features; organized events and fostered community; or wrote documentation and translated strings — how those contributions paved the road we travel today. A road that allows more people across the globe to use WordPress and contribute to WordPress, advancing the mission of democratizing publishing and giving us a little more freedom in the world. To the giants on whose shoulders we stand, those unsung, tireless, and passionate committers working through long nights and longer weekends: all of WordPress thanks you!</p>\n\n\n\n<p>The dedication to and support of open source software has and will continue to ensure that WordPress endures for another 20 years and beyond.</p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p>the freedom to build.<br>the freedom to change.<br>the freedom to share.</p>\n</blockquote>\n\n\n\n<p>The more our community invests in itself and supports one another, the stronger WordPress and the open source software movement becomes. And WordPress benefits, not just the present community, but future generations of contributors, entrepreneurs, educators, and enterprises large and small alike.</p>\n\n\n\n<h2 class=\"wp-block-heading\">A Shared Future</h2>\n\n\n\n<p>If the last two decades are any indication of what lies ahead, then wow, the opportunity to innovate, lead, and sustain a versatile publishing platform will be profound!</p>\n\n\n\n<p>Looking ahead at the next few years, our community will navigate <a href=\"https://wordpress.org/about/roadmap/\">Gutenberg Phases 3 and 4</a> together, delivering features that bring easy collaboration and multillingual support directly into the software. These next steps for WordPress will ensure our legacy of creating useful, relevant, and reliable software remains strong while keeping in mind the core elements of our mission regarding accessibility, performance, and stability.</p>\n\n\n\n<p>By renewing our emphasis on the <a href=\"https://wordpress.org/five-for-the-future/\">Five for the Future</a> program, and continuing to elevate our standing, we can make WordPress the household name it deserves to be. We can be more recognizable in known growth markets such as the enterprise and education sectors, but also every community beyond the open source and developer communities. Opportunity abounds!</p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p>When a great ship is in harbor and moored, it is safe, there can be no doubt. But that is not what great ships are built for. </p>\n<cite>Clarissa Pinkola Estes</cite></blockquote>\n\n\n\n<p>There is no time like the present to invest in the future of WordPress. The community is the greatest asset within the WordPress ecosystem. This means every WordPress user, from casual bloggers to enterprise extenders, is invited to rediscover all that our community means and does, and how each one of us can further our positive impact.</p>\n\n\n\n<p>Through all our planning, both short- and long-term, we can ensure that WordPress never loses sight of its user. Each one of us individually, and together, can do our part to make WordPress better, just as we have done each day for the past <a href=\"https://howlongagogo.com/date/2003/may/27\">7,305 days</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:\"14981\";s: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: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:64:\"WP Briefing: Episode 56: What to Know About WordPress Playground\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:86:\"https://wordpress.org/news/2023/05/episode-56-what-to-know-about-wordpress-playground/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_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, 22 May 2023 12: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:2:{i:0;a:5:{s:4:\"data\";s:7:\"Podcast\";s: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=14968\";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:257:\"Join guest host Rich Tabor and WordPress Playground innovator Adam Zielinski as they discuss the capabilities and promise of WP Playground in episode 56 of the WordPress Briefing. Stay tuned for your small list of big things coming up in the next two weeks.\";s: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/2023/05/WP-Briefing-056.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:17:\"Nicholas Garofalo\";s: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:16949:\"\n<p>Join guest host Rich Tabor and WordPress Playground innovator Adam Zielinski as they discuss the capabilities and promise of WP Playground in episode 56 of the WordPress Briefing. Stay tuned for your small list of big things coming up in the next two weeks.</p>\n\n\n\n<p><em><strong>Have a question you’d like answered? You can submit them to&nbsp;<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 class=\"wp-block-heading\">Credits</h2>\n\n\n\n<p>Host: <a href=\"https://profiles.wordpress.org/chanthaboune/\">Josepha Haden Chomphosy</a><br>Guests: <a href=\"https://profiles.wordpress.org/richtabor/\">Rich Tabor</a> and <a href=\"https://profiles.wordpress.org/zieladam/\">Adam Zielinski</a><br>Editor:&nbsp;<a href=\"https://profiles.wordpress.org/dustinhartzler/\">Dustin Hartzler</a><br>Logo:&nbsp;<a href=\"https://profiles.wordpress.org/javiarce/\">Javier Arce</a><br>Production:&nbsp;<a href=\"https://profiles.wordpress.org/bjmcsherry/\">Brett McSherry</a> and <a href=\"https://profiles.wordpress.org/eidolonnight/\">Nicholas Garofalo</a><br>Song: Fearless First by Kevin MacLeod</p>\n\n\n\n<h2 class=\"wp-block-heading\">Show Notes</h2>\n\n\n\n<ul>\n<li><a href=\"https://developer.wordpress.org/playground/\">WordPress Playground</a> and the <a href=\"https://github.com/WordPress/wordpress-playground\">Playground Github repo</a></li>\n\n\n\n<li><a href=\"https://gliwice.wordcamp.org/2023/\">WordCamp Gliwice</a> </li>\n\n\n\n<li><a href=\"https://europe.wordcamp.org/2023/\">WordCamp Europe 2023</a>, <a href=\"https://europe.wordcamp.org/2023/contributor-day/\">Contributor Day,</a> and <a href=\"https://europe.wordcamp.org/2023/presenting-wp-connect/\">WP Connect</a></li>\n\n\n\n<li><a href=\"https://wordpress.slack.com/archives/C04EWKGDJ0K\">#meta-playground</a> in the <a href=\"https://make.wordpress.org/chat/\">Making WordPress Slack</a></li>\n\n\n\n<li><a href=\"https://chat.openai.com/\">ChatGPT</a></li>\n\n\n\n<li><a href=\"https://woocommerce.com/\">WooCommerce</a></li>\n\n\n\n<li><a href=\"https://www.cloudfest.com/\">CloudFest</a> and <a href=\"https://profiles.wordpress.org/danielbachhuber/\">Daniel Bachhuber</a></li>\n\n\n\n<li>The <a href=\"blank\">Kim Parsell Memorial Scholarship</a> for travel to WordCamp US 2023</li>\n\n\n\n<li>Find your closest location for a <a href=\"https://wp20.wordpress.net/\">WordPress 20th Anniversary celebration</a></li>\n\n\n\n<li><a href=\"https://us.wordcamp.org/2023/wordcamp-us-2023-programming-team-announcement/\">Changes to the WCUS event for 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">Transcript</h2>\n\n\n\n<span id=\"more-14968\"></span>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:00:00]</strong></p>\n\n\n\n<p>(Intro music)</p>\n\n\n\n<p>Hello everyone, and welcome to the WordPress Briefing, the podcast where you can catch quick explanations of the ideas behind the WordPress Open Source project, some insight into the community that supports it, and 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>(Intro continues)</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:00:40]</strong></p>\n\n\n\n<p>Today we&#8217;re gonna spend a little time talking about WP Playground. This is a project that debuted at State of the Word in December 2022, but it was demoed for me about a month prior in November.</p>\n\n\n\n<p>I was, and remain, absolutely floored by the potential future applications, as well as the innovative thinking behind it. So I&#8217;ve invited a couple of excellent WordPress futurists to the show today so that we can listen in on their conversation.</p>\n\n\n\n<p>Welcome guys.</p>\n\n\n\n<p><strong>[Rich Tabor 00:01:07]</strong></p>\n\n\n\n<p>Hey everyone, I&#8217;m Rich Tabor, and I&#8217;m here today with Adam Zielinski to talk about WordPress Playground. So for those of you who don&#8217;t know what WordPress Playground is, can you tell us a little bit more about it, Adam?</p>\n\n\n\n<p><strong>[Adam Zielinski 00:01:18]</strong></p>\n\n\n\n<p>Absolutely. WordPress Playground is WordPress that works in your browser like there&#8217;s no server with PHP or database like there&#8217;s just your browser and JavaScript, and you can run it in so many more places that we’ll all get to. For example, I just came back from WordCamp Gliwice, where on a Contributor Day, a couple of developers got set up with WordPress in just a couple of minutes, whereas normally, it can take hours to do that.</p>\n\n\n\n<p><strong>[Rich Tabor 00:01:44]</strong></p>\n\n\n\n<p>Yeah, that&#8217;s, that&#8217;s pretty impressive. Do you think that, particularly for WordCamps and other demo-type areas, this would be something that&#8217;s very useful? Or what do you think would be the other problems that could be solved with WordPress Playground?</p>\n\n\n\n<p><strong>[Adam Zielinski 00:01:55]</strong></p>\n\n\n\n<p>Playground solves one primary problem, and that is WordPress is pretty difficult to get started with. I&#8217;m not even talking about creating your website, but let&#8217;s say, someone told you there&#8217;s this WordPress thing that you should try. Well, you Google for it, and you find installation instructions, and there&#8217;s like three hours of work for you there.</p>\n\n\n\n<p>So then maybe you&#8217;ll find a hosting company, and you have to pay some money. So with WordPress Playground, you can actually try it for free because there&#8217;s no cost to run it. It just runs on your device. If you&#8217;re a developer, and you want to start learning WordPress, normally you have to go through quite an extensive setup process, and there are some tools to make it easier, but maybe there&#8217;s still friction like you have to even own a computer, like a PC device or a Mac. Playground can run on your phone, and it can power interactive tutorials that you can use and just start learning there and there with zero setup.</p>\n\n\n\n<p>Like if you work on a product team and someone asks you to test a code change, with Playground you can just click a link and test it with no infrastructure behind it. And if you&#8217;re a company creating a plugin, you can just show your plugin in a live demo to people. And this isn&#8217;t something many plugins are doing because it&#8217;s quite hard to get a live demo set up.</p>\n\n\n\n<p><strong>[Rich Tabor 00:03:12]</strong></p>\n\n\n\n<p>Ah, that&#8217;s pretty impressive. So, you know, amongst like tutorials, code changes for developer environments, the mobile application running, do you think that, since there&#8217;s such a wide brevity of ideas that WordPress Playground can kind of plug into, would this be more of a developer tool?</p>\n\n\n\n<p>Is that right? Or is Playground more of a like a click and play-type application that can run anywhere and demo anything?</p>\n\n\n\n<p><strong>[Adam Zielinski 00:03:36]</strong></p>\n\n\n\n<p>I&#8217;d say it&#8217;s both, but it&#8217;s more transparent for the users. So there are a whole lot of things you can do with Playground as a developer, as I just mentioned. But who are you doing these things for? Well, some of them are for the users, as in live demos, or there&#8217;s a WordCamp Europe coming, and I know some people are doing workshops there. They are going to use Playground to get everyone set up. So now that&#8217;s, well, maybe a workshop that teaches you how to build a theme, for example, right? Now you can just get started without any setup process. So there&#8217;s both, it&#8217;s very useful for development teams, and it&#8217;s very useful for them to build stuff for the final users.</p>\n\n\n\n<p><strong>[Rich Tabor 00:04:21]</strong></p>\n\n\n\n<p>That&#8217;s great. I know you, and I have probably both been in the same scenario at WordCamps when you&#8217;re trying to get dev environments set up, and it takes, you know, the better half of the workshop to get to step one. So this is really gonna be interesting to see it, especially at WordCamp Europe, and to see it getting into action.</p>\n\n\n\n<p>Are you planning on going to WordCamp Europe this year?</p>\n\n\n\n<p><strong>[Adam Zielinski 00:04:39]</strong></p>\n\n\n\n<p>Absolutely, I will have a table at Contributor Day, a WordPress Playground table. So yeah, everyone&#8217;s invited to come over. I&#8217;ll show you a lot of cool stuff. And then at WP Connect on Saturday at 10:00 AM, there will be a WordPress Playground session where you&#8217;ll be able to learn more and see some cool demos.</p>\n\n\n\n<p>And this will be a conversational format, so we&#8217;ll just have a nice chat.</p>\n\n\n\n<p><strong>[Rich Tabor 00:05:01]</strong></p>\n\n\n\n<p>Super cool. So how else can people find out a little bit more info about Playground and perhaps even get involved and contribute to the project?</p>\n\n\n\n<p><strong>[Adam Zielinski 00:05:08]</strong></p>\n\n\n\n<p>There&#8217;s a developer.WordPress.org/playground website. There&#8217;s a link in a show notes where you&#8217;ll be able, like this is the perfect entry point to the entire rabbit hole of WordPress Playground.</p>\n\n\n\n<p>There&#8217;s a quite a few projects under the WordPress Playground umbrella, and they all live in a single GitHub repository where you can just find any issue that interests if you want to contribute and just start contributing. Also, there&#8217;s a Slack channel in WordPress org space called #meta-playground, and I highly encourage everyone interested in coming over to say hi.</p>\n\n\n\n<p>And probably one of the best places to ask questions and get acquainted with the community.</p>\n\n\n\n<p><strong>[Rich Tabor 00:05:54]</strong></p>\n\n\n\n<p>Oh, that&#8217;s great; I&#8217;m very intrigued about the project overall. I think that there&#8217;s an immense amount of potential, for WordPress Playground. Just last question here, like, where do you see the future of this project going? What is the most interesting application that hasn&#8217;t been done yet, or the things that are really gonna be the next level in unlocking Playground for everyone?</p>\n\n\n\n<p><strong>[Adam Zielinski 00:06:12]</strong></p>\n\n\n\n<p>There&#8217;s quite a few. Imagine being able to go to WordPress.org and have a WordPress demo right then and there without having to download anything. Then you customize it, and you have a button to host your website anywhere or just to download it.</p>\n\n\n\n<p>Imagine having a live preview for all the themes and plugins in the directory and even in WordPress core, but these are sooner than later. Maybe like, let&#8217;s talk more grandiose, shall we? So there&#8217;s this term, 1 billion new users coming online in the next, like in the nearest future, and plenty of them doesn&#8217;t even own a desktop device. Maybe they have a mobile phone, maybe they have a tablet, maybe we&#8217;re talking about a young, prospective developer somewhere. And currently, if you don&#8217;t own a desktop device, you cannot contribute to the WordPress plugin ecosystem at all.</p>\n\n\n\n<p>Like, we&#8217;re seeing more and more of creating themes with no code, which is really exciting. But you cannot build the plugin, really. Well, with WordPress Playground. Suddenly you can do development on a mobile device. So development tools and code editors and just the entire suite of things we use as the developers on our desktop of devices like this may come online and be available in your browser.</p>\n\n\n\n<p>And if you&#8217;re on a train and you just have a phone with you, but you still want to learn, how to build a plugin, well, you&#8217;ll be able to do that. Furthermore, there&#8217;s a lot of exciting opportunities with ChatGPT, as in, well, here&#8217;s a WordPress running entirely on your device. So maybe if that&#8217;s connected to ChatGPT, you&#8217;ll be able to say, well, I like fish, or like, I want two columns and a photo of a racing car on top of it.</p>\n\n\n\n<p>And because ChatGPT can output HTML, we connect the two, and suddenly, you can build a website entirely in your browser using natural language.</p>\n\n\n\n<p><strong>[Rich Tabor 00:08:20]</strong></p>\n\n\n\n<p>Man, that&#8217;s, that&#8217;s really interesting. It really does unlock the next, potentially the next like, wave of innovation in the WordPress experience, especially removing all the complications of getting set up and actually seeing what&#8217;s there. I think that it really could, be huge for users every day.</p>\n\n\n\n<p><strong>[Adam Zielinski 00:08:38]</strong></p>\n\n\n\n<p>Oh, here&#8217;s one more. So, edge computing is big lately, and it&#8217;s going to be bigger in the future. WordPress Playground runs on this new technology called Web Assembly, and it just happened so that a bunch of edge computing providers allows you to run web assembly on their gear. So imagine having WordPress running entirely in edge infrastructure with no centralized server.</p>\n\n\n\n<p>Truly decentralized WordPress. It could be big for a well cost of operating, but also for speed, but also even further down in the future. Imagine downloading the actual, you know, even WordPress around time to your device and having the entire website on your phone. So then you know, you&#8217;re on a train, you enter a tunnel, but you can still browse that WooCommerce store and add things to your cart even though there is no range at all.</p>\n\n\n\n<p><strong>[Rich Tabor 00:09:32]</strong></p>\n\n\n\n<p>Wow, that&#8217;s, that&#8217;s pretty crazy. How far out there do you think something like that is?</p>\n\n\n\n<p><strong>[Adam Zielinski 00:09:37]</strong></p>\n\n\n\n<p>It&#8217;s hard to tell. I mean, technically, it is possible. There are a lot of challenges with regard to privacy, right? And data security for the edge computing case specifically. As for the development tools, there was a Cloud Fest hackathon earlier this year where I was with Daniel Bachhuber, also from Automattic, and we led this exciting project that brought the WordPress development environment into the browser using a couple of editors that are out there, and this is too much of an MVP for actual production use yet, but we got it working, and we build an actual plugin on a phone without internet access.</p>\n\n\n\n<p><strong>[Rich Tabor 00:10:19]</strong></p>\n\n\n\n<p>Wow. And that was just a hackathon, just hacking at it to see what you can get.</p>\n\n\n\n<p><strong>[Adam Zielinski 00:10:23]</strong></p>\n\n\n\n<p>Yeah, it was two and a half days.</p>\n\n\n\n<p><strong>[Rich Tabor 00:10:25]</strong></p>\n\n\n\n<p>Oh, that&#8217;s awesome. That&#8217;s really cool, man. Well, this has been quite a pleasure. Thanks, Adam, for chatting all about WordPress Playground. Folks, just be sure to check out developer.WordPress.org/playground to explore, experiment, and play with WordPress Playground.</p>\n\n\n\n<p>This has been awesome, Adam.</p>\n\n\n\n<p><strong>[Adam Zielinski 00:10:43]</strong></p>\n\n\n\n<p>Thank you so much for having me, Rich.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:10:45]</strong></p>\n\n\n\n<p>What a remarkable new way of working with and experiencing WordPress. I would love to be able to find ways across the project and ecosystem to help folks see what they&#8217;re getting into before they get into it, but also, who knows what the future holds for that project. Keep an eye on it.</p>\n\n\n\n<p>(Musical interlude)</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:11:10]</strong></p>\n\n\n\n<p>That brings us to our small list of big things happening right now in the WordPress project. The first one is that the Kim Parel Memorial Scholarship for WordCamp US 2023 is open, and applications for it are the WordPress Foundation will once again be offering that scholarship for Travel to WordCamp US.</p>\n\n\n\n<p>It is for specifically for women in technology, women in the WordPress space. I&#8217;ll include a link to that in the show notes.</p>\n\n\n\n<p>The second thing is WordPress&#8217; 20th anniversary is still coming, as we heard in the last podcast.</p>\n\n\n\n<p>So we have reached over 100 events that are scheduled on or around May 27th, which is WordPress’ launch date. There is still time to find your closest location and attend one of those events. And probably, there&#8217;s also time to pull together an event of your own. Head on over to wp20.WordPress.net if you would like to see events in your area.</p>\n\n\n\n<p>And the third thing is WordCamp US 2023. I realize WordCamp Europe comes before that, but the programming team actually has a really interesting thing that they&#8217;re doing this year. They have some changes to the way that they are organizing the event and finding speakers for the event. But as always, they are working very hard to make sure it is an attendee-focused event.</p>\n\n\n\n<p>I&#8217;m gonna include a link or two to some announcements that are really worthwhile there. Head on over to the podcast page to see those. And that, my friends, is your small list of big things. Thank you for tuning in today for the WordPress Briefing. I&#8217;m your host, Josepha Haden Chomphosy. Thanks again to my guests, and I&#8217;ll see y&#8217;all in a couple of weeks.&nbsp;</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:\"14968\";s: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: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:32:\"WordPress 6.2.2 Security Release\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:68:\"https://wordpress.org/news/2023/05/wordpress-6-2-2-security-release/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 20 May 2023 04:09: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: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=14974\";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:\"WordPress 6.2.2 is now available!\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:19:\"Jonathan Desrosiers\";s: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:5451:\"\n<h2 class=\"wp-block-heading\">WordPress 6.2.2 is now available!</h2>\n\n\n\n<p>The 6.2.2 minor release addresses <a href=\"https://core.trac.wordpress.org/query?milestone=6.2.2&amp;col=id&amp;col=summary&amp;col=status&amp;col=owner&amp;col=type&amp;col=priority&amp;col=milestone&amp;order=priority\">1 bug</a> and 1 security issue. Because this is a security release, it is recommended that you update your sites immediately. All versions since WordPress 5.9 have also been updated.</p>\n\n\n\n<p>WordPress 6.2.2 is a rapid response release to address a regression in 6.2.1 and further patch a vulnerability addressed in 6.2.1. The next major release will be<a href=\"https://make.wordpress.org/core/6-3/\"> version 6.3</a> planned for August 2023.</p>\n\n\n\n<p>The update process will begin automatically if you have sites that support automatic background updates.</p>\n\n\n\n<p>You can <a href=\"https://wordpress.org/wordpress-6.2.2.zip\">download WordPress 6.2.2 from WordPress.org</a> or visit your WordPress Dashboard, click “Updates,” and click “Update Now.”</p>\n\n\n\n<p>For more information on this release, please <a href=\"https://wordpress.org/support/wordpress-version/version-6-2-2\">visit the HelpHub site</a>.</p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Security updates included in this release</strong></h2>\n\n\n\n<p>The security team would like to thank the following people for responsibly reporting vulnerabilities and allowing them to be fixed in this release.&nbsp;</p>\n\n\n\n<ul>\n<li>Block themes parsing shortcodes in user-generated data; thanks to Liam Gladdy of<a href=\"https://wpengine.com/\"> WP Engine</a> for reporting this issue.</li>\n</ul>\n\n\n\n<p>The issue above was originally patched in the 6.2.1 release, but needed further hardening here in 6.2.2. The Core team is thankful for the community in their response to 6.2.1 and collaboration on finding the best path forward for proper resolution in 6.2.2. The folks who worked on 6.2.2 are especially appreciative for everyone’s understanding while they worked asynchronously to get this out the door as quickly as possible.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Thank you to these WordPress contributors</h2>\n\n\n\n<p>This release was led by <a href=\"https://profiles.wordpress.org/desrosj/\">Jonathan Desrosiers</a>.</p>\n\n\n\n<p>WordPress 6.2.2 would not have been possible without the contributions of the following people. Their asynchronous coordination to deliver security fixes into a stable release is a testament to the power and capability of the WordPress community.</p>\n\n\n\n<p><a href=\"https://profiles.wordpress.org/jorbin/\">Aaron Jorbin</a>, <a href=\"https://profiles.wordpress.org/xknown/\">Alex Concha</a>, <a href=\"https://profiles.wordpress.org/antpb/\">Anthony Burchell</a>, <a href=\"https://profiles.wordpress.org/cbringmann/\">Chloé Bringmann</a>, <a href=\"https://profiles.wordpress.org/chriscct7/\">chriscct7</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/ehtis/\">Ehtisham S.</a>, <a href=\"https://profiles.wordpress.org/gziolo/\">Greg Ziółkowski</a>, <a href=\"https://profiles.wordpress.org/priethor/\">Héctor Prieto</a>, <a href=\"https://profiles.wordpress.org/isabel_brison/\">Isabel Brison</a>, <a href=\"https://profiles.wordpress.org/audrasjb/\">Jb Audras</a>, <a href=\"https://profiles.wordpress.org/jeffpaul/\">Jeffrey Paul</a>, <a href=\"https://profiles.wordpress.org/johnbillion/\">John Blackbourn</a>, <a href=\"https://profiles.wordpress.org/desrosj/\">Jonathan Desrosiers</a>, <a href=\"https://profiles.wordpress.org/chanthaboune/\">Josepha</a>, <a href=\"https://profiles.wordpress.org/Clorith/\">Marius L. J.</a>, <a href=\"https://profiles.wordpress.org/matveb/\">Matias Ventura</a>, <a href=\"https://profiles.wordpress.org/mikeschroder/\">Mike Schroder</a>, <a href=\"https://profiles.wordpress.org/peterwilsoncc/\">Peter Wilson</a>, <a href=\"https://profiles.wordpress.org/youknowriad/\">Riad Benguella</a>, <a href=\"https://profiles.wordpress.org/noisysocks/\">Robert Anderson</a>, <a href=\"https://profiles.wordpress.org/rmccue/\">Ryan McCue</a>, <a href=\"https://profiles.wordpress.org/Otto42/\">Samuel Wood (Otto)</a>, <a href=\"https://profiles.wordpress.org/coffee2code/\">Scott Reilly</a>, and <a href=\"https://profiles.wordpress.org/timothyblynjacobs/\">Timothy Jacobs</a></p>\n\n\n\n<h2 class=\"wp-block-heading\">How to contribute</h2>\n\n\n\n<p>To get involved in WordPress core development, head over to Trac, <a href=\"https://core.trac.wordpress.org/report/6\">pick a ticket</a>, and join the conversation in the <a href=\"https://wordpress.slack.com/archives/C02RQBWTW\">#core</a> and <a href=\"https://wordpress.slack.com/archives/C051Z1SKBDZ\">#6-3-release-leads</a> channels. Need help? Check out the <a href=\"https://make.wordpress.org/core/handbook/\">Core Contributor Handbook</a>.</p>\n\n\n\n<p><em>Thanks to <a href=\'https://profiles.wordpress.org/cbringmann/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>cbringmann</a>, <a href=\'https://profiles.wordpress.org/davidbaumwald/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>davidbaumwald</a>, <a href=\'https://profiles.wordpress.org/chanthaboune/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>chanthaboune</a>, <a href=\'https://profiles.wordpress.org/jeffpaul/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>jeffpaul</a> for proofreading.</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:\"14974\";s: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: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:50:\"WordPress 6.2.1 Maintenance &amp; Security Release\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:80:\"https://wordpress.org/news/2023/05/wordpress-6-2-1-maintenance-security-release/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 16 May 2023 18:32:21 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s: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=14955\";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:339:\"WordPress 6.2.1 is now available! This minor release features 20 bug fixes in Core and 10 bug fixes for the block editor. You can review a summary of the maintenance updates in this release by reading the Release Candidate announcement. This release also features several security fixes. Because this is a security release, it is [&#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:9:\"Jb Audras\";s: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:7600:\"\n<h2 class=\"wp-block-heading\">WordPress 6.2.1 is now available!</h2>\n\n\n\n<p>This minor release features <a href=\"https://core.trac.wordpress.org/query?milestone=6.2.1&amp;group=component&amp;col=id&amp;col=summary&amp;col=status&amp;col=owner&amp;col=type&amp;col=priority&amp;col=milestone&amp;order=priority\">20 bug fixes in Core</a> and <a href=\"https://github.com/orgs/WordPress/projects/88\">10 bug fixes for the block editor</a>. You can review a summary of the maintenance updates in this release by reading the <a href=\"https://make.wordpress.org/core/2023/05/09/wordpress-6-2-1-rc1-is-now-available/\">Release Candidate announcement</a>.</p>\n\n\n\n<p>This release also features several security fixes. Because this is a security release, it is recommended that you update your sites immediately. All versions since WordPress 4.1 have also been updated.</p>\n\n\n\n<p>WordPress 6.2.1 is a short-cycle release. The next major release will be <a href=\"https://make.wordpress.org/core/6-3/\">version 6.3</a> planned for August 2023.</p>\n\n\n\n<p>If you have sites that support automatic background updates, the update process will begin automatically.</p>\n\n\n\n<p>You can <a href=\"https://wordpress.org/wordpress-6.2.1.zip\">download WordPress 6.2.1 from WordPress.org</a>, or visit your WordPress Dashboard, click “Updates”, and then click “Update Now”.</p>\n\n\n\n<p>For more information on this release, please <a href=\"https://wordpress.org/support/wordpress-version/version-6-2-1\">visit the HelpHub site</a>.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Security updates included in this release</h2>\n\n\n\n<p>The security team would like to thank the following people for responsibly reporting vulnerabilities, and allowing them to be fixed in this release.</p>\n\n\n\n<ul>\n<li>Block themes parsing shortcodes in user generated data; thanks to Liam Gladdy of <a href=\"https://wpengine.com/\">WP Engine</a> for reporting this issue</li>\n\n\n\n<li>A CSRF issue updating attachment thumbnails; reported by <a href=\"https://johnblackbourn.com/\">John Blackbourn</a> of the WordPress security team</li>\n\n\n\n<li>A flaw allowing XSS via open embed auto discovery; reported independently by Jakub Żoczek of <a href=\"https://research.securitum.com/\">Securitum</a> and during a third party security audit</li>\n\n\n\n<li>Bypassing of KSES sanitization in block attributes for low privileged users; discovered during a third party security audit.</li>\n\n\n\n<li>A path traversal issue via translation files; reported independently by Ramuel Gall &amp; Matt Rusnak at Wordfence, and during a third party security audit.</li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">Thank you to these WordPress contributors</h2>\n\n\n\n<p>This release was led by <a href=\"https://profiles.wordpress.org/audrasjb\">Jb Audras</a>, <a href=\"https://profiles.wordpress.org/mamaduka/\">George Mamadashvili</a>, <a href=\"https://profiles.wordpress.org/SergeyBiryukov\">Sergey Biryukov</a> and <a href=\"https://profiles.wordpress.org/peterwilsoncc\">Peter Wilson</a>.</p>\n\n\n\n<p>WordPress 6.2.1 would not have been possible without the contributions of the following people. Their asynchronous coordination to deliver maintenance and security fixes into a stable release is a testament to the power and capability of the WordPress community.</p>\n\n\n\n<p class=\"is-style-wporg-props-long\"><a href=\"https://profiles.wordpress.org/adamsilverstein/\">Adam Silverstein</a>, <a href=\"https://profiles.wordpress.org/wildworks/\">Aki Hamano</a>, <a href=\"https://profiles.wordpress.org/amin7/\">amin</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/oandregal/\">André</a>, <a href=\"https://profiles.wordpress.org/aristath/\">Ari Stathopoulos</a>, <a href=\"https://profiles.wordpress.org/bph/\">Birgit Pauli-Haack</a>, <a href=\"https://profiles.wordpress.org/chiragrathod103/\">Chirag Rathod</a>, <a href=\"https://profiles.wordpress.org/costdev/\">Colin Stewart</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/davidbinda/\">David Biňovec</a>, <a href=\"https://profiles.wordpress.org/dmsnell/\">Dennis Snell</a>, <a href=\"https://profiles.wordpress.org/shagors/\">devshagor</a>, <a href=\"https://profiles.wordpress.org/dhrumilk/\">Dhrumil Kumbhani</a>, <a href=\"https://profiles.wordpress.org/ocean90/\">Dominik Schilling</a>, <a href=\"https://profiles.wordpress.org/ellatrix/\">Ella</a>, <a href=\"https://profiles.wordpress.org/mamaduka/\">George Mamadashvili</a>, <a href=\"https://profiles.wordpress.org/isabel_brison/\">Isabel Brison</a>, <a href=\"https://profiles.wordpress.org/audrasjb/\">Jb Audras</a>, <a href=\"https://profiles.wordpress.org/joedolson/\">Joe Dolson</a>, <a href=\"https://profiles.wordpress.org/joen/\">Joen A.</a>, <a href=\"https://profiles.wordpress.org/johnbillion/\">John Blackbourn</a>, <a href=\"https://profiles.wordpress.org/desrosj/\">Jonathan Desrosiers</a>, <a href=\"https://profiles.wordpress.org/juanmaguitar/\">JuanMa Garrido</a>, <a href=\"https://profiles.wordpress.org/jrf/\">Juliette Reinders Folmer</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/mdxfr/\">Marc</a>, <a href=\"https://profiles.wordpress.org/marineevain/\">Marine EVAIN</a>, <a href=\"https://profiles.wordpress.org/mattwiebe/\">Matt Wiebe</a>, <a href=\"https://profiles.wordpress.org/mukesh27/\">Mukesh Panchal</a>, <a href=\"https://profiles.wordpress.org/nendeb55/\">nendeb</a>, <a href=\"https://profiles.wordpress.org/ndiego/\">Nick Diego</a>, <a href=\"https://profiles.wordpress.org/nickpap/\">nickpap</a>, <a href=\"https://profiles.wordpress.org/ntsekouras/\">Nik Tsekouras</a>, <a href=\"https://profiles.wordpress.org/pavanpatil1/\">Pavan Patil</a>, <a href=\"https://profiles.wordpress.org/peterwilsoncc/\">Peter Wilson</a>, <a href=\"https://profiles.wordpress.org/pouicpouic/\">pouicpouic</a>, <a href=\"https://profiles.wordpress.org/youknowriad/\">Riad Benguella</a>, <a href=\"https://profiles.wordpress.org/welcher/\">Ryan Welcher</a>, <a href=\"https://profiles.wordpress.org/coffee2code/\">Scott Reilly</a>, <a href=\"https://profiles.wordpress.org/sergeybiryukov/\">Sergey Biryukov</a>, <a href=\"https://profiles.wordpress.org/sabernhardt/\">Stephen Bernhardt</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/ugyensupport/\">Ugyen Dorji</a>, <a href=\"https://profiles.wordpress.org/westonruter/\">Weston Ruter</a>, and <a href=\"https://profiles.wordpress.org/zieladam/\">zieladam</a>.</p>\n\n\n\n<h2 class=\"wp-block-heading\">How to contribute</h2>\n\n\n\n<p>To get involved in WordPress core development, head over to Trac, <a href=\"https://core.trac.wordpress.org/report/6\">pick a ticket</a>, and join the conversation in the <a href=\"https://wordpress.slack.com/archives/C02RQBWTW\">#core</a> and <a href=\"https://wordpress.slack.com/archives/C051Z1SKBDZ\">#6-3-release-leads channels</a>. Need help? Check out the <a href=\"https://make.wordpress.org/core/handbook/\">Core Contributor Handbook</a>.</p>\n\n\n\n<p class=\"has-text-align-right\"><em>Thanks to <a href=\'https://profiles.wordpress.org/sergeybiryukov/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>sergeybiryukov</a> for proofreading.</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:\"14955\";s: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: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:54:\"WP Briefing: Episode 55: Happy Anniversary, 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:74:\"https://wordpress.org/news/2023/05/episode-55-happy-anniversary-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, 08 May 2023 14: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:2:{i:0;a:5:{s:4:\"data\";s:7:\"Podcast\";s: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=14949\";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:217:\"Join WordPress Executive Director Josepha Haden Chomphosy in the 55th episode of the WordPress Briefing as she looks back at the 20 years of WordPress and how the open source community made WordPress what it is today.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s: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/2023/05/WP-Briefing-055.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:14:\"Brett McSherry\";s: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:15017:\"\n<p>Join WordPress Executive Director Josepha Haden Chomphosy in the 55th episode of the WordPress Briefing as she looks back at the 20 years of WordPress and how the open source community made WordPress what it is today.</p>\n\n\n\n<p><em><strong>Have a question you’d like answered? You can submit them to&nbsp;<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 class=\"wp-block-heading\">Credits</h2>\n\n\n\n<p>Editor:&nbsp;<a href=\"https://profiles.wordpress.org/dustinhartzler/\">Dustin Hartzler</a><br>Logo:&nbsp;<a href=\"https://profiles.wordpress.org/javiarce/\">Javier Arce</a><br>Production:&nbsp;<a href=\"https://profiles.wordpress.org/bjmcsherry/\">Brett McSherry</a><br>Song: Fearless First by Kevin MacLeod</p>\n\n\n\n<h2 class=\"wp-block-heading\">Show Notes</h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/04/25/the-benefits-of-prioritizing-and-measuring-performance-in-wordpress-6-2/\">The benefits of prioritizing and measuring performance in WordPress 6.2</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/04/14/wordpress-6-3-planning-proposal-call-for-volunteers/\">WordPress 6.3 Planning Proposal &amp; Call for Volunteers</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/04/07/preparing-for-the-next-women-nonbinary-release-squad/\">Preparing for the Next Women &amp; Nonbinary Release Squad</a></li>\n\n\n\n<li>WordCamp Europe: \n<ul>\n<li><a href=\"https://europe.wordcamp.org/2023/call-for-volunteers/\">Call for volunteers</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/test/2023/04/24/table-leads-needed-for-wceu-2023-contributor-day/\">Table Leads Needed for WCEU 2023 Contributor Day</a></li>\n</ul>\n</li>\n\n\n\n<li><a href=\"https://make.wordpress.org/polyglots/2023/04/24/defining-the-polyglots-contributor-ladder/\">Defining the Polyglots contributor ladder</a><br></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">Transcript</h2>\n\n\n\n<span id=\"more-14949\"></span>\n\n\n\n<p>[Josepha Haden Chomphosy 00:00:00]&nbsp;</p>\n\n\n\n<p>Hello everyone, and welcome to the WordPress Briefing, the podcast where you can catch quick explanations of the ideas behind the WordPress Open Source project, some insight into the community that supports it, and get a smallest of big things coming up in the next two weeks.</p>\n\n\n\n<p>I&#8217;m your host, Josepha Haden Chomphosy. Here we go.</p>\n\n\n\n<p>[Josepha Haden Chomphosy 00:00:40]&nbsp;</p>\n\n\n\n<p>In case you hadn&#8217;t heard yet. WordPress is celebrating its 20th anniversary on May 27th.&nbsp;</p>\n\n\n\n<p>There are a lot of celebrations and parties happening all across the world, hopefully with cake, because we all know that a party without cake is just a meeting and no one wants a year-long meeting about how old you are.</p>\n\n\n\n<p>[Josepha Haden Chomphosy 00:00:59]&nbsp;</p>\n\n\n\n<p>But if you&#8217;ve not yet joined the celebrations, there&#8217;s still time to share your favorite WordPress merch, your favorite WordCamp memory, host a whole dang party if you want to, or share a video to post on wp20.wordpress.net. I&#8217;ve got links to everything you need in the show notes. So if you haven&#8217;t done it yet, you can do that while you listen to today&#8217;s episode.</p>\n\n\n\n<p>[Josepha Haden Chomphosy 00:01:14]&nbsp;</p>\n\n\n\n<p>I&#8217;ve got links to everything you need in the show notes. So if you haven&#8217;t done it yet, you can do that while you listen to today&#8217;s episode.</p>\n\n\n\n<p>[Josepha Haden Chomphosy 00:01:22]&nbsp;</p>\n\n\n\n<p>Today, WordPress is the leading CMS in the market. And according to W3Tech&#8217;s it powers 43% of the web. And that&#8217;s like 35% of the top 10,000 sites that are built using this software. And sometimes, that&#8217;s as a website, sometimes as a framework, but always as a way for people and businesses to find a space on the web to call their own.&nbsp;</p>\n\n\n\n<p>[Josepha Haden Chomphosy 00:01:45]&nbsp;</p>\n\n\n\n<p>In 2021. The first-ever study on the WordPress ecosystem gave us an idea of just how large our ecosystem is. We already kind of had a sense that millions of people make a living through WordPress because we know that we are supporting small business owners and freelancers all the way out to agencies and content creators.&nbsp;</p>\n\n\n\n<p>[Josepha Haden Chomphosy 00:02:06]&nbsp;</p>\n\n\n\n<p>But according to that study, WordPress at the time was powering 82 million websites and enabled an estimated economy of $597 billion. The success of an economy like this and various other alternative economies hinges on the success of invisible open source software that powers the web, just like WordPress, that has a tonne of growth and a lot of wins since that first Cafe Log fork way back in 2003.&nbsp;</p>\n\n\n\n<p>[Josepha Haden Chomphosy 00:02:37]&nbsp;</p>\n\n\n\n<p>And WordPress could just say pencils down, everybody. Good job, team, and just kind of watch what comes next. But I&#8217;ve never met a word processor, emboldened as we are by our belief in open source freedoms, who stepped away from a challenge worth facing the recognition that everyone should have those freedoms whether they know they exist or not. Because I know that no one cares as much about open source freedoms as open source maintainers. But the recognition that everyone has the right to them anyway is built into the foundations of what WordPress is and who WordPress is.&nbsp;</p>\n\n\n\n<p>[Josepha Haden Chomphosy 00:03:13]</p>\n\n\n\n<p>There are big plans for WordPress future, many of which are grounded in the promise of a new block editor within WordPress that aims to lower the barriers to entry for people at any point in their learning curve. So let&#8217;s take a look at what this means for WordPress, the software, and follow up about what it means for the WordPress community.&nbsp;</p>\n\n\n\n<p>&nbsp;[Josepha Haden Chomphosy 00:03:31]</p>\n\n\n\n<p>Firstly, the software right at the end of 2018, the Gutenberg editor was merged into WordPress Core. And it&#8217;s subverted the way that people had always managed their content. It brought with it this new concept of site building that focused on blocks as the primary mode of creation. It was modular and required very little code knowledge.&nbsp;</p>\n\n\n\n<p>[Josepha Haden Chomphosy 00:03:53]</p>\n\n\n\n<p>Arguably also very little skill with design. Although if you&#8217;ve ever seen me tried to design something with blocks, you will know it takes some skill. But still, the ultimate goal was to make those fundamental user interactions of managing the block and apply them in any place you could manage your site using WordPress.&nbsp;</p>\n\n\n\n<p>[Josepha Haden Chomphosy 00:03:53]</p>\n\n\n\n<p>And if you think about the possibility to create media-rich content without having to work with shortcode, without having to know HTML workarounds, it opens the opportunity for many of us in the WordPress community to own our digital presence. In case it wasn&#8217;t already clear, this, my friends, is an audacious project, and it&#8217;s even more so if you remember that we have this existing and massive ecosystem that is enabled and empowered by our software.&nbsp;</p>\n\n\n\n<p>[Josepha Haden Chomphosy 00:04:42]</p>\n\n\n\n<p>And as we look forward to the third phase of the Gutenberg Project, collaborative editing inside a WordPress installation will soon be a reality, which if you are like me and you never work on a website alone, you&#8217;re probably just dying to have. I say all this not to toot the horn have WordPress or belabor our success but rather to emphasize the importance of what I&#8217;m going to say next, which is how this CMS got to where it is, namely through the work of the community.&nbsp;</p>\n\n\n\n<p>[Josepha Haden Chomphosy 00:05:12]</p>\n\n\n\n<p>WordPress has survived, and I would dare to say thrived through decades of constant economic, cultural, and technological shifts. And I believe that the thing that keeps us innovating fast enough to stay relevant but slow enough to be ethical, is how the community actively engages with the open source project.&nbsp;</p>\n\n\n\n<p>[Josepha Haden Chomphosy 00:05:32]</p>\n\n\n\n<p>We know that our strength is directly tied to the resilience of our contributors. And we know that the software we ship is shaped by the people who are willing to tell us what they love, what they hate, and what they hope to see. When the WordPress project started, we mainly had code contributions as a way to give back, but over time, the project has grown to include contributions to learning, community building, and translations, among other things, but all of that exists alongside the CMS-focused contributions.&nbsp;</p>\n\n\n\n<p>[Josepha Haden Chomphosy 00:06:03]</p>\n\n\n\n<p>Because WordPress as an organization understands that it is an integral part of an ecosystem of 1000s of global companies and millions of individual people who are building careers, starting businesses, learning new skills, and becoming part of something meaningful. I know that I talk just all the time about the greatness of WordPress as a software and community, which makes sense.&nbsp;</p>\n\n\n\n<p>[Josepha Haden Chomphosy 00:06:29]</p>\n\n\n\n<p>I really do love the work I do with you all. But I am equally in awe of this open-hearted journey of disruption that WordPress represents as an open source project. WordPress and its community is part of a long line of disruptors; blogs made publishing available to everyone, which maybe doesn&#8217;t sound like a big deal right now because you&#8217;ve been around blogging forever.&nbsp;</p>\n\n\n\n<p>[Josepha Haden Chomphosy 00:06:51]</p>\n\n\n\n<p>You&#8217;ve been able to just put your thoughts on the internet with almost no effort for as long as you have known the internet existed, but WordPress, at the time, was and honestly remains the low code open source CMS of choice. It has been for years. And so, let me backtrack you through the 10,000-foot milestones of our journey here.&nbsp;</p>\n\n\n\n<p>[Josepha Haden Chomphosy 00:07:14]</p>\n\n\n\n<p>Gutenberg has been around since 2013. It&#8217;s 10 years. I know, don&#8217;t get scared, we&#8217;re celebrating 20 years. So it&#8217;s been around for half of our time as a concept. Open source as a concept was formalized in the 1980s. Though it definitely has been around longer than that as a concept and a way of working.&nbsp;</p>\n\n\n\n<p>[Josepha Haden Chomphosy 00:07:34]</p>\n\n\n\n<p>And this low-code, no-code movement that we hear about from time to time that has been around since the 1970s, and just because we first became aware of it in the 1970s doesn&#8217;t mean that that&#8217;s when it actually first was discussed or thought about or used. Which means that you are in this moment, decades deep into projects that changed our entire understanding of the web.&nbsp;</p>\n\n\n\n<p>[Josepha Haden Chomphosy 00:07:59]</p>\n\n\n\n<p>So grab a slice of cake, and raise a glass to 20 great years of WordPress, and I am going to raise a glass to 20 more years of continuing our journey together.</p>\n\n\n\n<p>[Josepha Haden Chomphosy 00:08:17]</p>\n\n\n\n<p>Which brings us effervescently to the small list of big things. Yeah, I said effervescently.&nbsp;</p>\n\n\n\n<p>[Josepha Haden Chomphosy 00:08:24]</p>\n\n\n\n<p>So there are a lot of things happening in the WordPress project over the next couple of weeks. There is a lot of testing going on. There are a lot of releases that are getting underway. There are events and things. So here&#8217;s my rundown of stuff you should take a look at.&nbsp;</p>\n\n\n\n<p>[Josepha Haden Chomphosy 00:08:38]</p>\n\n\n\n<p>So firstly, there is a post out about performance improvements from 6.2. That is just inviting an open discussion so that we can get more of those improvements in better shape to get into the 6.3 release. And speaking of the 6.3 release that is coming, just last week, we announced the release squad that we have.&nbsp;</p>\n\n\n\n<p>[Josepha Haden Chomphosy 00:08:58]</p>\n\n\n\n<p>It is an extra heavy release squad because we also are working toward the 6.4 release just at the same time. So there&#8217;s the folks who are running the 6.3 release, and they have committed to working openly and in public channels as much as possible so that the 6.4 folks have a chance to really take a look at what goes into a release, the questions that we ask, the philosophies we believe in, and then that 6.4 release oil pick up probably, my guess is August-ish, mid-August or so.&nbsp;</p>\n\n\n\n<p>[Josepha Haden Chomphosy 00:09:32]</p>\n\n\n\n<p>That 6.4 release is specifically going to be made up entirely of diverse genders. People that we historically see are underrepresented in technology, but as always, we accept contributions from everyone for all releases.&nbsp;</p>\n\n\n\n<p>[Josepha Haden Chomphosy 00:09:48]</p>\n\n\n\n<p>The third thing is that we have WordCamp Europe coming up, that is June 8 and 10th. So a little bit past the two-week mark.&nbsp;</p>\n\n\n\n<p>[Josepha Haden Chomphosy 00:09:54]</p>\n\n\n\n<p>However, there is a final call for volunteers for anyone who wants to be able to help at the event. I personally have always enjoyed doing that kind of volunteer work. It helps you get to know your community even a bit better. And I don&#8217;t know; I&#8217;m just kind of an extroverted people person. So, of course, I always want to volunteer, but that call is still open. And they&#8217;re in the last phases of that.&nbsp;</p>\n\n\n\n<p>[Josepha Haden Chomphosy 00:10:17]</p>\n\n\n\n<p>There is also a team or two that needs some help with getting leads for the contributor day that happens leading up to WordCamp. Europe, I know that the testing team needs a lead for the table, and so if you enjoy the process of triaging or testing or helping people get their environment set up, that is a great opportunity.&nbsp;</p>\n\n\n\n<p>[Josepha Haden Chomphosy 00:10:37]</p>\n\n\n\n<p>And the final thing on my small, my big small list of big things is that we have a kind of a review of the currently defined contributor ladder for the Polyglots team. There are a number of posts over the years where we talk about the ways that people move through being a contributor.&nbsp;</p>\n\n\n\n<p>[Josepha Haden Chomphosy 00:10:57]</p>\n\n\n\n<p>One of the things that we know about almost all contributor ladders is that there&#8217;s no time requirement between the steps, but in general, it functions like a ladder. So you do have to have, like, rung one. And then, rung two, if you try to skip from rung one to rung three, you will have a lot of difficulty.&nbsp;</p>\n\n\n\n<p>[Josepha Haden Chomphosy 00:11:17]</p>\n\n\n\n<p>Not impossible, but it&#8217;s harder than going 1, 2, 3 In the normal sequential order. And so that&#8217;s a whole discussion that&#8217;s happening over there. There&#8217;s a link to all of these things in the show notes.&nbsp;</p>\n\n\n\n<p>[Josepha Haden Chomphosy 00:11:28]</p>\n\n\n\n<p>And that, my friends, is your small list of big things. Thank you for tuning in today for the WordPress Briefing. I&#8217;m your host, Josepha Haden Chomphosy,  and 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:\"14949\";s: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: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:43:\"2022 Annual Survey Results &amp; Next Steps\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"https://wordpress.org/news/2023/05/2022-annual-survey-results-next-steps/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_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, 04 May 2023 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:2:{i:0;a:5:{s:4:\"data\";s:7:\"General\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:6:\"survey\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=14923\";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:373:\"Each year, members of the WordPress community (users, site builders, extenders, and contributors) provide valuable feedback through an annual survey. For 2022, the survey received a comprehensive update, the first in six years. The total number of questions was reduced to 29 from nearly 100, socio-economic questions were mostly removed, and the Likert scale was [&#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: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:4920:\"\n<p>Each year, members of the WordPress community (users, site builders, extenders, and contributors) provide valuable feedback through an annual survey. For 2022, the survey received a comprehensive update, the first in six years. The total number of questions was reduced to 29 from nearly 100, socio-economic questions were mostly removed, and the Likert scale was introduced. These updates were intended to increase the completion rate of the survey, enable a more efficient and structured analysis of these data, and position the survey to best gauge the topics that matter most to the WordPress community.</p>\n\n\n\n<p>My goal is that the input received via the survey helps inform initiatives and focus areas for WordPress in the near term, along with other signals, such as conversations in the community, the Making WordPress blogs, and events. Such data play a key role in shaping the direction and strategy of the project and measuring progress in focus areas.</p>\n\n\n\n<h1 class=\"wp-block-heading\">2022 Highlights</h1>\n\n\n\n<p>The 2022 edition of the survey experienced a 26% increase in completion rate, however, submissions decreased by 56% to roughly 3400, including about 800 contributors. For the 2023 survey, promotion will be increased, hopefully counteracting the declining submissions.</p>\n\n\n\n<p>Here are some key takeaways:</p>\n\n\n\n<ul>\n<li>The survey shows an increased usage of blocks and the new site editor (versus the classic editor), which shouldn’t come as a surprise since the default theme is now a block theme.&nbsp;</li>\n\n\n\n<li>22% of respondents have only used WordPress for a year or less. Those responding to the survey are also getting a bit older, with fewer responses from those under 40 than in prior years.</li>\n\n\n\n<li>1 in 5 respondents learned about WordPress from a coworker, and about the same percentage from using a search engine.&nbsp;</li>\n\n\n\n<li>In 2022, WordPressers continued to learn about WordPress (68%), taught others about WP (48%), and built sites for others (55%).</li>\n\n\n\n<li>WordPressers choose the CMS platform because it’s open source (62%), flexible (47%), low risk (45%), cost-effective (45%), and has a positive reputation (41%).</li>\n\n\n\n<li>57% of survey participants obtained news and training directly from <a href=\"http://wordpress.org\">WordPress.org</a>. While that is the primary source, other sites remain very important: search engines (46%), YouTube (40%), other WordPress communities (35%), and social media (30%)</li>\n\n\n\n<li>The overwhelming majority of respondents don’t regularly use other CMS platforms, and 21% of respondents use none of the top 20 WordPress plugins.&nbsp;</li>\n\n\n\n<li>Respondents continue to state that “WordPress is as good as or better than other CMS platforms,” with 68% agreeing. Elements that respondents feel are the best aspects of WordPress include “ease of use,” “flexibility,” and/or “plugin options,” all about 30% each. When asked about the most frustrating elements of WordPress, 1 in 5 said, “nothing,” while approximately 30% referenced difficulties with site editing / Gutenberg.</li>\n\n\n\n<li>The overall contributor experience remains positive and something I continue to care about deeply. 64% shared they had a positive experience, and 24% viewed their experience as “neutral.” Contributors also feel welcome at the same percentages (64% agree and 24% are neutral).</li>\n</ul>\n\n\n\n<h1 class=\"wp-block-heading\">What’s Planned for 2023</h1>\n\n\n\n<p>In the next iteration of the survey, the plan is to improve the language options for completing the survey and continue investing in refining the questions and how they are asked. It is important to be mindful that completing a survey takes time, so we want to make sure community members are being asked questions that help WordPress the most.&nbsp;</p>\n\n\n\n<p>The tentative plan is to launch the 2023 edition in August. This will set up an opportunity for the 2023 results and, most importantly, your input to inform planning for 2024’s key initiatives and focus areas. The community’s feedback is vitally important to the success and direction of the project. Moving the survey to earlier in the year can positively affect planning and dialogue.</p>\n\n\n\n<p><a href=\"https://wordpress.org/news/files/2023/05/2022-Annual-Survey-Final.pdf\">View the 2022 Slide Deck</a></p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<p><em>Big thank you to <a href=\'https://profiles.wordpress.org/dansoschin/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>dansoschin</a> for the analysis and editorial support. Thanks also to <a href=\'https://profiles.wordpress.org/angelasjin/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>angelasjin</a>, and <a href=\'https://profiles.wordpress.org/cbringmann/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>cbringmann</a> for their reviews and final edits.</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:\"14923\";s: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: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:37:\"The Month in WordPress – April 2023\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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/2023/05/the-month-in-wordpress-april-2023/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_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, 04 May 2023 10:08:35 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{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:\"\";}i:1;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=14926\";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:374:\"With preparations for the next major releases already underway, the community is gearing up to celebrate WordPress’ 20th anniversary, which is just around the corner. This month has also seen some major highlights, such as WordPress 6.2’s performance wins and the launch of WP Translation Playground. Read on to find out what&#8217;s new. Forthcoming WordPress [&#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:15:\"Reyes Martínez\";s: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:15437:\"\n<p>With preparations for the next major releases already underway, the community is gearing up to celebrate WordPress’ 20th anniversary, which is just around the corner. This month has also seen some major highlights, such as WordPress 6.2’s performance wins and the launch of WP Translation Playground. Read on to find out what&#8217;s new.</p>\n\n\n\n<div style=\"height:3px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"wp-block-heading\">Forthcoming WordPress releases</h2>\n\n\n\n<p>Following the successful release of <a href=\"https://wordpress.org/news/2023/03/dolphy/\">WordPress 6.2</a> “Dolphy,” which has garnered over <a href=\"https://wordpress.org/download/counter/\">31 million downloads</a> (and counting), contributors across all teams are already planning future major releases, including versions 6.3 and 6.4.</p>\n\n\n\n<p>While WordPress 6.3 will focus on refinements to the site editing experience, <a href=\"https://make.wordpress.org/core/2023/04/07/preparing-for-the-next-women-nonbinary-release-squad/\"><strong>6.4 will reprise the underrepresented gender release initiative</strong></a> introduced in WordPress 5.6 &#8220;Simone.&#8221; If you&#8217;re interested in contributing, now is the perfect time to get involved.</p>\n\n\n\n<blockquote class=\"wp-block-quote has-extra-large-font-size\">\n<p><a href=\"https://make.wordpress.org/core/2023/04/14/wordpress-6-3-planning-proposal-call-for-volunteers/\">Check out the WordPress 6.3 proposed schedule and call for volunteers</a>.</p>\n</blockquote>\n\n\n\n<div style=\"height:3px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"wp-block-heading\">WP20 is just around the corner</h2>\n\n\n\n<p><strong>Mark your calendars for May 27 and join the community for a day filled with exciting parties and activities!</strong></p>\n\n\n\n<p>With a refreshed look, the WP20 website offers a <a href=\"https://wp20.wordpress.net/\">list of events to join</a>, <a href=\"https://mercantile.wordpress.org/product-category/wp20/\">swag to show your WordPress pride</a>, and <a href=\"https://wp20.wordpress.net/download-selfie-props-for-wp20-meetup-celebrations/\">downloadable “selfie props”</a> to add fun to your celebrations.</p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" loading=\"lazy\" width=\"1024\" height=\"768\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/05/WP20-Tokyo-3.jpg?resize=1024%2C768&#038;ssl=1\" alt=\"Cake decorated with WordPress anniversary-themed motifs shared at a recent meetup in Tokyo, Japan.\" class=\"wp-image-14927\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/05/WP20-Tokyo-3.jpg?resize=1024%2C768&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2023/05/WP20-Tokyo-3.jpg?resize=300%2C225&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2023/05/WP20-Tokyo-3.jpg?resize=768%2C576&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2023/05/WP20-Tokyo-3.jpg?w=1280&amp;ssl=1 1280w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /><figcaption class=\"wp-element-caption\"><em>Cake decorated with WordPress anniversary-themed motifs shared at a recent meetup in Japan.</em></figcaption></figure>\n\n\n\n<p>The Marketing Team has also launched <a href=\"https://make.wordpress.org/marketing/2023/05/02/20-days-to-celebrate-20-years-of-wordpress-from-blogs-to-blocks/\">#WP20 From Blogs to Blocks</a>, a community-focused initiative that encourages you to take a small daily WordPress-focused action for 20 days leading up to the anniversary date.</p>\n\n\n\n<p>On the other hand, details are being finalized for the 20th anniversary commemorative book, <a href=\"https://make.wordpress.org/project/2023/04/13/wordpress-at-20-in-print/\">Building Blocks: The Evolution of WordPress 2013-2023</a>. This volume will span the history and most meaningful moments of the last decade of WordPress.</p>\n\n\n\n<blockquote class=\"wp-block-quote has-extra-large-font-size\">\n<p><a href=\"https://wp20.wordpress.net/share-your-favorite-wordpress-swag-youve-collected-over-the-years/\">What’s your favorite WordPress swag</a>? Do you have a <a href=\"https://wp20.wordpress.net/whats-your-favorite-wordpress-moment/\">special memory from a WordCamp or meetup</a>? Share them with the community and join the #WP20 fun on social media.</p>\n</blockquote>\n\n\n\n<div style=\"height:3px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"wp-block-heading\">WordPress 6.2 performance</h2>\n\n\n\n<p>WordPress 6.2 reiterates the platform&#8217;s commitment to optimizing website performance with <a href=\"https://make.wordpress.org/core/2023/04/05/wordpress-6-2-performance-improvements-for-all-themes/\">significant improvements</a>. <strong>Load times are 14 to 18% faster for block themes and 2 to 5% for classic themes</strong>. Server-side performance is also seeing a big boost, with an increase of 17 to 23% for block themes and 3 to 5% for classic themes.</p>\n\n\n\n<blockquote class=\"wp-block-quote has-extra-large-font-size\">\n<p><a href=\"https://make.wordpress.org/core/2023/02/01/core-editor-improvement-strengthening-style-options/\"></a><a href=\"https://make.wordpress.org/core/2023/04/25/the-benefits-of-prioritizing-and-measuring-performance-in-wordpress-6-2/\">Learn more about the performance wins in 6.2</a>, including a retrospective from the Performance Core Team on the efforts that made it happen.</p>\n</blockquote>\n\n\n\n<div style=\"height:3px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"wp-block-heading\">New in the Gutenberg plugin</h2>\n\n\n\n<p>Two new versions of the Gutenberg plugin have shipped in the last month:</p>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/04/05/whats-new-in-gutenberg-15-5-05-april/\"><strong>Gutenberg 15.5</strong></a><strong> </strong>shipped on April 5, 2023, with many user-facing features to improve the creation experience. Enhancements include caption style customization, theme-defined template patterns when adding a new template, and experimental support for grid layouts in the Group block.</li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/04/19/whats-new-in-gutenberg-15-6-19-april/\"><strong>Gutenberg 15.6</strong></a> is available for download as of April 19, 2023. This version introduces an experimental Details block to expand and toggle the visibility of hidden content, and more presets for core block spacing and border controls, among other highlights.</li>\n</ul>\n\n\n\n<blockquote class=\"wp-block-quote has-extra-large-font-size\">\n<p><a href=\"https://make.wordpress.org/core/2023/02/01/core-editor-improvement-strengthening-style-options/\"></a>Follow the “<a href=\"https://make.wordpress.org/core/tag/gutenberg-new/\">What’s new in Gutenberg</a>” posts to stay on top of the latest enhancements.</p>\n</blockquote>\n\n\n\n<div style=\"height:3px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"wp-block-heading\">Team updates: WP Translation Playground, WordPress.org redesign next steps, and more </h2>\n\n\n\n<ul>\n<li>The Polyglots Team launched <a href=\"https://make.wordpress.org/polyglots/2023/04/19/wp-translation-playground/\">WP Translation Playground</a>, an innovative tool that combines Local GlotPress with WordPress Playground to translate plugins and themes in context—without having to set up anything.</li>\n\n\n\n<li>Wondering what’s next in the WordPress.org redesign project? <a href=\"https://make.wordpress.org/meta/2023/04/10/wordpress-org-redesign-update-2/\">Learn about the latest updates and how to get involved</a>.</li>\n\n\n\n<li>This Community Team post discusses ways to <a href=\"https://make.wordpress.org/community/2023/04/19/cultivating-more-effective-contributing-on-contributor-days/\">make WordCamp Contributor Days more effective</a>.</li>\n\n\n\n<li>Explore <a href=\"https://make.wordpress.org/updates/2023/05/01/whats-new-on-learn-wordpress-in-april-2023/\">what&#8217;s new on Learn WordPress in April 2023</a>, including the latest content on the platform and the projects the Training Team has been working on.</li>\n\n\n\n<li><a href=\"https://developer.wordpress.org/playground/\">WordPress Playground</a> was used in a hackathon to prototype different ways to build plugins with minimal setup, right in the browser. <a href=\"https://make.wordpress.org/core/2023/04/13/in-browser-wordpress-tech-demos-wordpress-development-with-wordpress-playground/\">See it in action in these tech demos</a>.</li>\n\n\n\n<li>Members of the Marketing Team suggested improvements to submission guidelines to <a href=\"https://make.wordpress.org/marketing/2023/04/19/showcase-submission-guidelines/\">revitalize the WordPress.org Showcase</a>.</li>\n\n\n\n<li>Most of the work to refocus the WordPress mobile app on core features is complete. <a href=\"https://make.wordpress.org/mobile/2023/04/11/contribute-to-the-future-of-the-wordpress-app/\">Find out how to help shape its future</a> with contributions opportunities for developers, writers, translators, and more.</li>\n\n\n\n<li>Keep up with the latest enhancements and development updates you need to build on top of WordPress in last month&#8217;s edition of <a href=\"https://developer.wordpress.org/news/2023/04/whats-new-for-developers-april-2023/\">What’s new for developers?</a></li>\n\n\n\n<li>The latest issue of the <a href=\"https://make.wordpress.org/community/2023/04/20/meetup-organizer-newsletter-april-2023/\">Meetup Organizer Newsletter</a> shares tips and inspiring ideas to help you plan successful community events.</li>\n\n\n\n<li>Find out how WordPress and its global community of contributors positively impacted Monika Rao&#8217;s web career in <a href=\"https://wordpress.org/news/2023/04/people-of-wordpress-monika-rao/\">April&#8217;s edition of People of WordPress</a>.</li>\n</ul>\n\n\n\n<blockquote class=\"wp-block-quote has-extra-large-font-size\">\n<p>Join Josepha Haden Chomphosy in <a href=\"https://wordpress.org/news/2023/04/episode-54-open-webs-bill-of-rights/\">Episode 54 of WP Briefing</a> as she explores the concept of the four freedoms of open source and their likeness to today’s Bill of Rights for the open web.</p>\n</blockquote>\n\n\n\n<div style=\"height:3px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"wp-block-heading\">Feedback &amp; testing requests</h2>\n\n\n\n<ul>\n<li>The latest <a href=\"https://make.wordpress.org/test/2023/04/17/fse-program-testing-call-21-front-page-fun/\">Full Site Editing (FSE) Outreach Program testing opportunity</a> invites feedback on the features included in WordPress 6.2 and those remaining in Gutenberg Phase 2. Share your thoughts by May 8, 2023.</li>\n\n\n\n<li>This <a href=\"https://make.wordpress.org/core/2023/04/25/wp-feature-notifications-2023-status-update/\">update on the WP Feature Notifications project</a> explains the progress towards a modern WordPress user notification system and how you can get involved.</li>\n\n\n\n<li>Help test the latest version of the <a href=\"https://make.wordpress.org/core/2023/04/03/preferred-languages-help-test-the-latest-version/\">Preferred Languages feature plugin</a>.</li>\n\n\n\n<li><a href=\"https://make.wordpress.org/updates/2023/04/19/mobile-team-update-april-19th-2/\">Version 22.2</a> of the WordPress mobile app for iOS and Android is ready for testing.</li>\n</ul>\n\n\n\n<blockquote class=\"wp-block-quote has-extra-large-font-size\">\n<p><a href=\"https://make.wordpress.org/core/2023/05/02/lets-talk-wordpress-core-artificial-intelligence/\">This discussion post</a> welcomes ideas and questions about how Artificial Intelligence (AI) can be integrated into the WordPress experience.</p>\n</blockquote>\n\n\n\n<div style=\"height:3px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"wp-block-heading\">WordPress events updates</h2>\n\n\n\n<ul>\n<li>WordCamp Europe 2023 is fast approaching! The organizing team introduced the <a href=\"https://europe.wordcamp.org/2023/introducing-our-first-group-of-speakers/\">first confirmed speakers</a>.</li>\n\n\n\n<li>WordCamp US 2023 announced <a href=\"https://us.wordcamp.org/2023/wordcamp-us-2023-programming-team-announcement/\">updates on the programming</a> for the upcoming event, for which <a href=\"https://us.wordcamp.org/2023/tickets-on-sale/\">tickets are now on sale</a>. Organizers are also <a href=\"https://us.wordcamp.org/2023/call-for-sponsors/\">calling for sponsors</a>.</li>\n\n\n\n<li>The 2023 Community Summit will provide a valuable opportunity for in-person discussions across contributor teams. <a href=\"https://communitysummit.wordcamp.org/2023/topics/\">Submit your topics</a> if you haven’t yet.</li>\n\n\n\n<li>Don’t miss these upcoming WordCamps:\n<ul>\n<li><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f1ea-1f1f8.png\" alt=\"🇪🇸\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> <a href=\"https://barcelona.wordcamp.org/2023/\">WordCamp Barcelona</a>, Spain on May 5-6, 2023</li>\n\n\n\n<li><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f1fa-1f1f8.png\" alt=\"🇺🇸\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> <a href=\"https://buffalo.wordcamp.org/2023/\">WordCamp Buffalo</a>, NY, USA on May 6, 2023</li>\n\n\n\n<li><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f1f5-1f1f1.png\" alt=\"🇵🇱\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> <a href=\"https://gliwice.wordcamp.org/2023/\">WordCamp Gliwice</a>, Poland on May 12-14, 2023</li>\n\n\n\n<li><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f1e7-1f1e9.png\" alt=\"🇧🇩\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> <a href=\"https://sylhet.wordcamp.org/2023/\">WordCamp Sylhet</a>, Bangladesh on May 19-20, 2023</li>\n\n\n\n<li><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f1f5-1f1f9.png\" alt=\"🇵🇹\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> <a href=\"https://lisboa.wordcamp.org/2023/\">WordCamp Lisboa</a>, Portugal on May 19-20, 2023</li>\n\n\n\n<li><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f1f7-1f1f8.png\" alt=\"🇷🇸\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> <a href=\"https://apatin.wordcamp.org/2023/\">WordCamp Apatin</a>, Serbia on May 27-28, 2023</li>\n</ul>\n</li>\n</ul>\n\n\n\n<blockquote class=\"wp-block-quote has-extra-large-font-size\">\n<p>Join #WPDiversity with a free online workshop on <a href=\"https://www.eventbrite.com/e/organizing-diverse-inclusive-wordpress-events-apac-tickets-618469688487\">Organizing Diverse &amp; Inclusive WordPress Events APAC</a> on May 13, 2023.</p>\n</blockquote>\n\n\n\n<div style=\"height:3px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<hr class=\"wp-block-separator has-text-color has-light-grey-color has-alpha-channel-opacity has-light-grey-background-color has-background\" />\n\n\n\n<p><strong><em><strong><em><strong><em>Have a story we should include in the next issue of The Month in WordPress? <strong><em>Fill out </em></strong><a href=\"https://make.wordpress.org/community/month-in-wordpress-submissions/\"><strong><em>this quick form</em></strong></a><strong><em> to let us know.</em></strong></em></strong></em></strong></em></strong></p>\n\n\n\n<p><em>The following folks contributed to this Month in WordPress: <a href=\'https://profiles.wordpress.org/sereedmedia/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>sereedmedia</a>, <a href=\'https://profiles.wordpress.org/ninianepress/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>ninianepress</a>, <a href=\'https://profiles.wordpress.org/rmartinezduque/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>rmartinezduque</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:5:\"14926\";s: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:48:\"WpOrg\\Requests\\Utility\\CaseInsensitiveDictionary\":1:{s:7:\"\0*\0data\";a:11:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Thu, 08 Jun 2023 17:43:09 GMT\";s:12:\"content-type\";s:34:\"application/rss+xml; charset=UTF-8\";s:4:\"vary\";s:15:\"Accept-Encoding\";s:25:\"strict-transport-security\";s:12:\"max-age=3600\";s:6:\"x-olaf\";s:3:\"⛄\";s:13:\"last-modified\";s:29:\"Tue, 06 Jun 2023 10:15:56 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:16:\"content-encoding\";s:2:\"br\";s:4:\"x-nc\";s:9:\"HIT ord 2\";}}s:5:\"build\";s:14:\"20211220193300\";}','no'),(189,'_transient_timeout_feed_mod_9bbd59226dc36b9b26cd43f15694c5c3','1686289389','no'),(190,'_transient_feed_mod_9bbd59226dc36b9b26cd43f15694c5c3','1686246189','no'),(191,'_transient_timeout_feed_d117b5738fbd35bd8c0391cda1f2b5d9','1686289389','no'),(192,'_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:59:\"Do The Woo Community: The Future of the WordPress 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:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"https://dothewoo.io/?p=75235\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:54:\"https://dothewoo.io/future-of-the-wordpress-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:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:407:\"<p>When I shared 20 years of WordPress community at WordCamp Lisboa, I touched on the future of the community. Today I elaborate on that part.</p>\n<p>&gt;&gt; The post <a rel=\"nofollow\" href=\"https://dothewoo.io/future-of-the-wordpress-community/\">The Future of the WordPress Community</a> appeared first on <a rel=\"nofollow\" href=\"https://dothewoo.io\">Do the Woo - a WooCommerce Builder Community</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 Jun 2023 03: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:5:\"BobWP\";s: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:24:\"Matt: WordPress &amp; AI\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=86874\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://ma.tt/2023/06/wordpress-ai/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:199:\"<p>I did an interview with <a href=\"https://www.pootlepress.com/author/jamie-marsland/\">Jamie Marsland</a> where we talked a fair amount about AI.</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 Jun 2023 19:35:21 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s: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: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:31:\"HeroPress: Because 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:56:\"https://heropress.com/?post_type=heropress-essays&p=5613\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:114:\"https://heropress.com/essays/because-of-wordpress/#utm_source=rss&utm_medium=rss&utm_campaign=because-of-wordpress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:9226:\"<img width=\"1024\" height=\"512\" src=\"https://heropress.com/wp-content/uploads/2024/06/060623-min.jpg\" class=\"attachment-large size-large wp-post-image\" alt=\"Pull Quote: The tech industry needs more boss ladies.\" />\nListen to Amy read her own story.\n\n\n\n\n\n\n<p>When we choose a spouse, we choose someone who matches our values. When we choose a home we choose a space that matches our needs. We look for all the green flags, all the boxes to be checked, and we don’t accept red flags. We say no to cockroaches, no to cheaters, no to leaky plumbing.&nbsp;</p>\n\n\n\n<p>When it comes to a job, though, we take what we can get. We fear losing, we let red flags slide and when it’s bad, we still stick around and hope it gets better. We tell ourselves it’s the only option we have.</p>\n\n\n\n<p>We don’t imagine that there could be real fulfillment. We believe this is it: the 9 to 5, the endless grind. Work for the man and hope you end up with a retirement plan, at best. Hold on to that job &#8211; you never know how far and how hard you could fall without it.</p>\n\n\n\n<p>A space without hierarchy, a space where everyone has a voice, a space where inclusion and diversity are virtues seems like a smoke dream.&nbsp;</p>\n\n\n\n<p>Until you discover WordPress.</p>\n\n\n\n<p>And so it went for me. Deep in the work, sleep, die cycle. Thinking this was it. I kissed my dreams goodbye, succumbed to being a slave to my paycheck because after all, I have a family to feed. Priorities, Amy. Priorities.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Discovering WordPress</h2>\n\n\n\n<p>Sometimes you aren’t even looking and you trip over something, not knowing what you’ve stumbled into. Then suddenly five years have passed and you have lasting friendships and a whole a$$ career. Your kids are fed, your bills are paid and you are happy.</p>\n\n\n\n<p>And that’s how it happened for me. I did what I had to, grabbed what job I could, worked hard and then got shoved face first into the lap of WordPress, without a clue what I was getting into. Without a clue that my life had just changed. I was actually quite angry. I was supposed to be promoted from my wildly underpaid tech support job to a wildly underpaid live chat supervisor job. How DARE they change their minds and pigeonhole me as a WordPress Tech!!?</p>\n\n\n\n<p>But the reality unfolded rather quickly after that. That when it comes to WordPress, there are only green flags. There is only a match in values. There is only a world where people&#8217;s human needs are met.</p>\n\n\n\n<p>The need for community, the need to be part of something bigger than you, the need for connection, the need to learn, to grow, to watch something else grow. The need for one step to lead to the next, where paths are abundant and there are no dead ends. I had no idea what I had just been shoved into.</p>\n\n\n\n<p>I made the best of it. I helped form a new WordPress dedicated support team. I fixed websites, I trained other agents, I determined policies and practices, and I started going to WordPress.org team meetings. At first I thought that I was just supporting the endeavors of my employer, but the truth is, it was much more than that.</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-finding-the-community\">Finding the Community</h2>\n\n\n\n<p>My first meeting was with the Hosting team. I hopped on Zoom unaware that I would already know every face in the room. Unaware that I would be going to these meetings every week for the next five years. Unaware that I’d become a Team Rep and get my fingerprints all over the Open Source Project. Unaware that I would find friends, learn so much, build skills and be offered jobs. Unaware that there were 30,000 people on the other end of the keyboard, and 400 million opportunities.</p>\n\n\n\n<p>I stayed in that job for years, and I extended myself way beyond my technical support role. I had ideas for how to support WordPress users and brought them to the leadership team. They were interested, though not completely onboard, but still gave me the greenlight to go ahead and try.&nbsp;</p>\n\n\n\n<p>I started offering developer services to their enterprise WordPress customers, instead of turning them away saying “we don’t do that here”. The customers were into it. They wanted and they needed that type of support. I stumbled upon more and more customers that needed developer help and offered them that help. I got my teammates involved. We were seeing results and the results were good.&nbsp;</p>\n\n\n\n<p>Happy customers, new streams of revenue and increased customer retention. Instead of being angry and at a loss, tech support customers had real options for resolution. They were willing to pay extra and they kept coming back for more. They praised us and our work.&nbsp;</p>\n\n\n\n<p>The VP of product and the CEO started noticing. They decided to mentor me and trained me in product development, agile software development and leadership. I started to flush out user journeys, product packages and made a two-year strategy for the growth of the developer service that is now a full blown product offering. After the first year they had me do a win loss report, and we found that the service had earned revenue just through word of mouth, before it was even established. Boom.</p>\n\n\n\n<p>And yet I was struggling to buy food. I was living under the poverty line. I was being praised, but not paid. Business owners take heed, this is how you lose good employees.</p>\n\n\n\n<p>I was a tech support agent who was helping run a team, fixing customer problems, developing a product, pushing code, creating business strategies and making revenue for the org. All while starving. All while witnessing my developer friends at the same company make six figures. I became disgruntled, I became more vocal about it, and I lost the favor of leadership by complaining &#8211; despite the fact that my complaints were valid. Lesson learned. After a while, I was just too unhappy with what I was paid for my numerous roles and quit out of frustration.</p>\n\n\n\n<p>I had no idea what was going to happen next. I started studying code and blogging. I was elected into a Team Rep position on the WordPress Open Source Project. I practiced making WordPress themes and plug-ins. I learned Symfony, I learned some Javascript and Python, I learned how to have faith in myself and how to acquire clients outside of the stream of tech support. I became a Meetups organizer and got involved in WordCamps. I started sharing skills that I had learned and had used to survive in the tech field.</p>\n\n\n\n<p>I never wanted to be a freelancer or a web developer though. I actually prefer doing system administration over web development &#8211; so I kept looking for a full-time gig. After a few months, I landed a job as a WordPress Tech Lead. I got to work with design and development and build out pipelines, work with servers, clients and code.</p>\n\n\n\n<p>Then Covid happened, and I think everyone can agree what a nightmare that was. I got hit with the first strain of Covid and was so, so sick. I couldn’t move for three months. I lost my job and I was too sick to care. I was blessed that my colleagues in the WordPress community cared, though. They supported me and some of them even prayed for my recovery. One of my hosting teammates suggested applying to a job with his employer. I said “alright whatever”, found an easy tech-support role that I definitely could do and applied.&nbsp;</p>\n\n\n\n<p>They interviewed me and turned me away, saying I was overqualified. Bummer. Then a few weeks later, I got a phone call from them offering me an interview for a different position. A job as a Web Development Manager. I liked the idea despite my wicked imposter syndrome, and after some rounds of interviews, they offered me the job. I was there for two years and I loved my team. I was working with designers and developers, leadership and marketers. I got to work with servers, various tech stacks, DevOps pipelines, design systems, accessibility and SEO.</p>\n\n\n\n<p>From there, I was recruited into a Solutions Architect position. Then I was recruited again for a Developer role. I didn’t apply anywhere, I wasn’t looking and all I did was work hard, invest in my skills, be open to options and oh yeah &#8211; get involved with WordPress.</p>\n\n\n\n<p>Now I keep picking up clients and I have more work than I can realistically handle. I’m going to have to start hiring other people to help me out soon. Maybe I&#8217;ll file for an LLC and take all that knowledge and experience, all that momentum and roll it up into one big future as a boss lady. Bring the WordPress values I feel so aligned with to the table on MY terms. The tech industry needs more boss ladies.</p>\n\n\n\n<p>I don’t honestly know what’s coming next, but I know I don’t need to worry because I have the right community, the right skills, the right resources and endless opportunities.</p>\n\n\n\n<p>All because of one little package of code. All because of the amazing people behind it. All because of WordPress.</p>\n<p>The post <a rel=\"nofollow\" href=\"https://heropress.com/essays/because-of-wordpress/\">Because of WordPress</a> appeared first on <a rel=\"nofollow\" href=\"https://heropress.com\">HeroPress</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 07 Jun 2023 12:37: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:10:\"Amy Kamala\";s: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:103:\"Post Status: Improving Visa Support • Event Tooling • WP-CLI Updates • Block Inspector Sub-groups\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://poststatus.com/?p=149581\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:102:\"https://poststatus.com/improving-visa-support-event-tooling-wp-cli-updates-block-inspector-sub-groups/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:20116:\"<h2 class=\"wp-block-heading\" id=\"h-this-week-at-wordpress-org-april-3-2023\">This Week at WordPress.org (June 5, 2023)</h2>\n\n\n<div class=\"has-background has-theme-palette-8-background-color wp-block-post-excerpt\"><p class=\"wp-block-post-excerpt__excerpt\">Community team is considering tooling around the building and using the WordCamp websites, in addition to the naming of events.  To help speakers attend WordCamps, additional lead time for visas is requested as well. Share your thoughts now.<br /> <br />WP-CLI has released 2 updates. Get a look at what new features are available. <br /><br />See the dev blog for more ways to use the block inspector.  </p></div>\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<div class=\"wp-block-kadence-infobox kt-info-box_94d1bd-77\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-left kt-info-halign-left\"><div class=\"kt-blocks-info-box-media-container\"><div class=\"kt-blocks-info-box-media kt-info-media-animate-none\"><div class=\"kadence-info-box-icon-container kt-info-icon-animate-none\"><div class=\"kadence-info-box-icon-inner-container\"><span class=\"kb-svg-icon-wrap kb-svg-icon-fe_userPlus kt-info-svg-icon\"></span></div></div></div></div><div class=\"kt-infobox-textcontent\"><h2 class=\"kt-blocks-info-box-title\">Improving Visa Support • Event Tooling • WP-CLI Updates • Block Inspector Sub-groups</h2><p class=\"kt-blocks-info-box-text\"><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f6c2.png\" alt=\"🛂\" class=\"wp-smiley\" /> <a href=\"https://make.wordpress.org/community/2023/06/01/early-speaker-and-volunteer-selection/\">Early Speaker and Volunteer Selection and Improved Visa Support</a><br /><br /><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f4c6.png\" alt=\"📆\" class=\"wp-smiley\" /> <a href=\"https://make.wordpress.org/community/2023/06/06/discussion-next-generation-event-tooling/\">Discussion: Next Generation Event Tooling </a> <br />> <a href=\"https://make.wordpress.org/cli/2023/06/05/wp-cli-v2-8-1-release-notes/\">WP-CLI v2.8.1 Release Notes</a> &amp; <a href=\"https://make.wordpress.org/cli/2023/05/31/wp-cli-v2-8-0-release-notes/\">WP-CLI v2.8.0 Release Notes</a><br /><br /><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f5d2.png\" alt=\"🗒\" class=\"wp-smiley\" /> <a href=\"https://developer.wordpress.org/news/2023/06/using-block-inspector-sidebar-groups/\">Using block inspector sidebar groups</a><br />><br /></a><br /><br />><br /></a><br /><br /></p></div></div></div>\n\n\n\n<div class=\"wp-block-kadence-spacer aligncenter kt-block-spacer-_b57166-6e\"><div class=\"kt-block-spacer kt-block-spacer-halign-center\"><hr class=\"kt-divider\" /></div></div>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-news\"><a href=\"https://wordpress.org/news\">News</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://wordpress.org/news/2023/06/the-month-in-wordpress-may-2023/\">The Month in WordPress – May 2023</a></li>\n\n\n\n<li><a href=\"https://wordpress.org/news/2023/06/episode-57-the-power-of-wordpress-mentorship/\">WP Briefing: Episode 57: The Power of WordPress Mentorship</a></li>\n\n\n\n<li><a href=\"https://wordpress.org/news/2023/05/people-of-wordpress-stefano-cassone/\">People of WordPress: Stefano Cassone</a></li>\n</ul>\n\n\n\n<div class=\"wp-block-kadence-spacer aligncenter kt-block-spacer-_8f6276-eb\"><div class=\"kt-block-spacer kt-block-spacer-halign-center\"><hr class=\"kt-divider\" /></div></div>\n\n\n\n<div class=\"wp-block-columns is-layout-flex wp-container-2\">\n<div class=\"wp-block-column is-layout-flow\">\n<h2 class=\"wp-block-heading\">WordPress 6.3</h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/design/2023/05/25/wordpress-6-3-design-kickoff/\">WordPress 6.3 design kickoff</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/05/25/bug-scrub-schedule-for-6-3/\">Bug Scrub Schedule for WordPress 6.3</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/05/18/wordpress-6-3-planning-roundup/\">WordPress 6.3 Planning Roundup</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/05/18/roadmap-to-6-3/\">Roadmap to 6.3</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">WordPress 6.4</h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/06/05/wordpress-6-4-development-cycle/\">WordPress 6.4 Development Cycle</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\"><a href=\"https://make.wordpress.org/accessibility\">Accessibility</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/accessibility/2023/06/07/contribute-to-accessibility-at-wordcamp-europe-contributor-day/\">Contribute to Accessibility at WordCamp Europe Contributor Day</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">CLI</h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/cli/2023/06/05/wp-cli-v2-8-1-release-notes/\">WP-CLI v2.8.1 Release Notes</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/cli/2023/05/31/wp-cli-v2-8-0-release-notes/\">WP-CLI v2.8.0 Release Notes</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-community\"><a href=\"https://make.wordpress.org/community\">Community</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/community/2023/06/06/updates-to-the-community-team-mentor-program/\">Updates to the Community Team Mentor Program</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/community/2023/06/06/what-happens-when-a-wordcamp-doesnt-provide-a-transparency-report/\">What happens when a WordCamp doesn’t provide a transparency report</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/community/2023/06/06/discussion-next-generation-event-tooling/\">Discussion: Next Generation Event Tooling </a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/community/2023/06/02/wceu-2023-contributor-day-community-team-topics-focus/\">WCEU 2023 Contributor Day – Community Team topics/focus</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/community/2023/06/01/early-speaker-and-volunteer-selection/\">Early Speaker and Volunteer Selection and Improved Visa Support</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/community/2023/06/01/wordcamp-mentors-june-check-in/\">WordCamp Mentors’ June check-in!</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/community/2023/06/01/next-gen-wordcamp-talking-points-share-your-ideas-for-a-new-event-format-and-make-it-happen/\">Next Gen of WordPress Event Talking Points – Share Your Ideas for a New Event Format and Make It Happen!</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/community/2023/05/31/community-team-meeting-agenda-for-1-june-2023/\">Community Team Meeting Agenda for 1 June, 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-core\"><a href=\"https://make.wordpress.org/core\">Core</a> </h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/06/07/wp-feature-notifications-at-wordcamp-europe-contributor-day/\">WP Feature Notifications at WordCamp Europe Contributor Day</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/06/02/contribute-to-core-at-wordcamp-europe-contributor-day-2023/\">Contribute to Core at WordCamp Europe Contributor Day 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/06/02/gutenberg-15-9-1-is-now-available/\">Gutenberg 15.9.1 is now available</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/05/17/command-center-request-for-feedback/\">Command Center: Request for feedback</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/05/16/proposal-retiring-older-default-themes/\">Proposal: Retiring Older Default Themes</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/05/22/core-editor-improvement-smoother-site-editing/\">Core Editor Improvement: Smoother Site Editing</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-developer-blog\"><a href=\"https://developer.wordpress.org/news/\">Developer Blog</a></h3>\n\n\n\n<ul>\n<li><a href=\"https://developer.wordpress.org/news/2023/06/using-block-inspector-sidebar-groups/\">Using block inspector sidebar groups</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/06/02/developer-blog-editorial-meeting-01-june-2023/\">Developer Blog Editorial Meeting – 01 June 2023</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-meetings\">Meetings</h3>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/06/06/dev-chat-agenda-june-7-2023/\">Dev Chat agenda, June 7, 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/06/06/editor-chat-agenda-june-7th-2023/\">Editor Chat Agenda: June 7th 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">Design</h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/design/2023/05/25/wordpress-6-3-design-kickoff/\">WordPress 6.3 design kickoff</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/design/2023/06/06/design-share-may-22-jun-2/\">Design Share: May 22–Jun 2</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-hosting\"><a href=\"https://make.wordpress.org/hosting\">Hosting</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/hosting/2023/05/15/is-wordpress-compatible-with-php-8/\">Is WordPress compatible with PHP 8?</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\"><a href=\"https://make.wordpress.org/meta\">Meta</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/meta/2023/06/02/matrix-chat-summary-june-1-2023/\">Matrix chat Summary – June 1, 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/meta/2023/06/02/meta-at-wceu-2023-contributor-day/\">Meta at WCEU 2023 Contributor Day</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-mobile\"><a href=\"https://make.wordpress.org/mobile\">Mobile</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/mobile/2023/04/11/contribute-to-the-future-of-the-wordpress-app/\">Contribute to the Future of the WordPress App</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/updates/2023/05/31/mobile-team-update-may-31st-2/\">Mobile Team Update – May 31st</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-openverse\"><a href=\"https://make.wordpress.org/openverse\">Openverse</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/openverse/2023/06/06/community-meeting-recap-2023-06-06/\">Community Meeting Recap (2023-06-06)</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/openverse/2023/06/05/last-week-openverse-2023-05-29-2023-06-05/\">A week in Openverse: 2023-05-29 – 2023-06-05</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-performance\"><a href=\"https://make.wordpress.org/performance/\">Performance</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/06/06/performance-chat-summary-06-june-2023/\">Performance Chat Summary: 6 June 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-plugins\"><a href=\"https://make.wordpress.org/plugins\">Plugins</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/plugins/2023/05/17/plugin-review-team-update/\">Plugin Review Team Update</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/plugins/2023/03/21/use-of-code-generators-must-remain-gpl-compatible/\">Use of Code Generators Must Remain GPL Compatible</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/plugins/2023/03/10/advance-notice-of-retirement/\">Advance Notice of Retirement</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-polyglots\"><a href=\"https://make.wordpress.org/polyglots\">Polyglots</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/polyglots/2023/06/06/experiment-translation-review-assistance-from-chatgpt/\">Experiment: Translation Review Assistance from ChatGPT</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/polyglots/2023/06/05/xpost-come-join-the-training-team-as-a-translation-coordinator-faculty-role/\">Come join the Training Team as a Translation Coordinator (Faculty role)</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-project\">Project</h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/project/2023/05/30/proposal-establishment-of-a-formal-wordpress-sustainability-team/\">Proposal: establishment of a formal WordPress Sustainability Team</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/project/2023/05/17/wordpress-contributor-mentorship-program-pilot-program-proposal/\">WordPress Contributor Mentorship Program: Pilot Program Proposal</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">Support</h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/support/2023/05/suggested-stance-on-the-use-of-ai-tooling/\">Suggested stance on the use of AI-tooling</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/support/2023/06/summary-for-june-1st-support-team-meeting/\">Summary for June 1st Support Team Meeting</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/updates/2023/06/02/support-team-meeting-updates-for-june-1st-2/\">Support Team Meeting Updates for June 1st</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-test\"><a href=\"https://make.wordpress.org/test\">Test</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/test/2023/05/18/fse-program-testing-call-23-rapid-revamp/\">FSE Program Testing Call #23: Rapid Revamp</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/updates/2023/06/05/test-team-update-5-june-2023/\">Test Team Update: 5 June 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-theme\"><a href=\"https://make.wordpress.org/theme\">Theme</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/themes/2023/06/06/themes-team-at-wordcamp-europe-2023/\">Themes team at WordCamp Europe 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/updates/2023/06/06/themes-team-update-june-6-2023/\">Themes team update June 6, 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-training\"><a href=\"https://make.wordpress.org/training\">Training</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://learn.wordpress.org/learn-wordpress-june-2023-newsletter/\">Learn WordPress June 2023 Newsletter</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/updates/2023/06/02/whats-new-on-learn-wordpress-in-may-2023/\">What’s new on Learn WordPress in May 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/training/2023/06/07/information-sources-for-6-3/\"><a href=\"https://make.wordpress.org/training/2023/06/07/information-sources-for-6-3/\">Information Sources for 6.3</a></a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/training/2023/06/05/training-team-meeting-recap-30-may-2023/\">Training Team Meeting Recap – 30 May, 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/training/2023/06/05/come-join-the-training-team-as-a-translation-coordinator-faculty-role/\">Come join the Training Team as a Translation Coordinator (Faculty role)</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/training/2023/06/05/announcing-github-updates-for-subject-matter-experts-and-content-translators/\">Announcing GitHub updates for Subject Matter Experts and Content Translators</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/training/2023/06/03/recap-and-next-steps-training-team-onboarding/\">Recap and Next Steps: Training Team Onboarding</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/training/2023/06/02/wordcamp-europe-2023-contributor-day/\">WordCamp Europe 2023 Contributor Day</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/training/2023/05/30/analysis-of-the-individual-learner-survey-results/\">Analysis and results of the Individual Learner Survey</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-tutorials\"><a href=\"https://learn.wordpress.org/tutorials\">Tutorials</a></h3>\n\n\n\n<ul>\n<li><a href=\"https://learn.wordpress.org/tutorial/templates/\">Using Page Templates</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/tutorial/how-to-switch-from-a-classic-to-a-block-theme/\">How to switch from a classic to a block theme</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-online-workshops\">Online Workshops</h3>\n\n\n\n<ul>\n<li><a href=\"https://learn.wordpress.org/?meeting=wp-dev-livestream-sendig-block-theme-5\">WP dev livestream: Sendig block theme</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=new-to-wordpress-getting-to-know-the-dashboard\">New to WordPress? Getting to know the Dashboard</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=the-wide-world-of-wordpress-events-3\">The Wide World of WordPress Events</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=rescheduled-event-create-a-four-page-wordpress-website-create-effective-pages\">[Rescheduled Event] Create a four page WordPress website: Create effective pages</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-courses\"><a href=\"https://learn.wordpress.org/courses\">Courses</a></h3>\n\n\n\n<ul>\n<li><a href=\"https://learn.wordpress.org/course/creating-a-4-page-business-website/\">Creating a 4-page business website</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-wptv\">WPTV</h2>\n\n\n\n<ul>\n<li><a href=\"https://wordpress.tv/category/year/2022/\">Latest WordPress TV videos</a></li>\n</ul>\n</div>\n</div>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-related-news\">Related News:</h2>\n\n\n\n<ul>\n<li><a href=\"https://blog.jquery.com/2023/05/11/jquery-3-7-0-released-staying-in-order/\">jQuery 3.7.0</a></li>\n\n\n\n<li><a href=\"https://nodejs.org/en/blog/release/v20.2.0\">Node v20.2.0 released</a></li>\n\n\n\n<li><a href=\"https://www.php.net/archive/2023.php#2023-04-13-1\"></a><a href=\"https://www.php.net/archive/2023.php#2023-05-11-1\">PHP 8.2.6 Released!</a></li>\n\n\n\n<li><a href=\"https://www.php.net/archive/2023.php#2023-05-11-2\">PHP 8.1.19 Released!</a></li>\n\n\n\n<li><a href=\"https://262.ecma-international.org/13.0/\">TC39</a></li>\n\n\n\n<li><a href=\"https://github.com/composer/composer/releases/tag/2.5.5\">Composer 2.5.5</a></li>\n</ul>\n\n\n\n<p class=\"has-theme-palette-7-background-color has-background\">Thanks for reading our WP dot .org roundup! Each week we are highlighting the news and discussions coming from the good folks making WordPress possible. If you or your company create products or services that use WordPress, you need to be engaged with them and their work. Be sure to share this resource with your product and project managers. <br /><br /><strong>Are you interested in giving back and contributing your time and skills to WordPress.org?</strong> <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f64f.png\" alt=\"🙏\" class=\"wp-smiley\" /> <a href=\"https://wordpress.org/support/article/contributing-to-wordpress/\">Start Here ›</a><br /><br /><strong>Get our weekly WordPress community news digest</strong> — Post Status&#8217; <a href=\"https://poststatus.com/news/week-in-review/\">Week in Review</a> — covering the WP/Woo news plus significant writing and podcasts. It&#8217;s also available in <a href=\"https://poststatus.com/newsletter\">our newsletter</a>. <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f48c.png\" alt=\"💌\" class=\"wp-smiley\" /></p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<div class=\"wp-block-media-text alignwide is-stacked-on-mobile has-background\"><a href=\"https://poststatus.com/\"><img src=\"https://poststatus.com/wp-content/uploads/2021/09/vertical-post-status-logo-250.png\" alt=\"Post Status\" class=\"wp-image-85823 size-full\" /></a><div class=\"wp-block-media-text__content\">\n<p class=\"has-text-align-left has-normal-font-size\" id=\"h-get-ready-for-remote-work\">You — and <a href=\"https://poststatus.com/#Agency\">your whole team</a> can <a href=\"https://poststatus.com/#choose-membership\">Join Post Status</a> too!</p>\n\n\n\n<p class=\"has-text-align-left has-small-font-size\"><strong>Build your network. Learn with others. Find your next job — or your next hire.</strong> Read the <strong>Post Status</strong> <a href=\"https://poststatus.com/newsletter/\">newsletter</a>. <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/2709.png\" alt=\"✉\" class=\"wp-smiley\" /> Listen to <a href=\"https://poststatus.com/podcasts/\">podcasts</a>. <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f399.png\" alt=\"🎙\" class=\"wp-smiley\" /> Follow <a href=\"https://twitter.com/post_status/\">@Post_Status</a> <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f426.png\" alt=\"🐦\" class=\"wp-smiley\" /> and <a href=\"https://www.linkedin.com/company/post-status-llc/\">LinkedIn</a>. <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f4bc.png\" alt=\"💼\" class=\"wp-smiley\" /></p>\n</div></div>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n<p>This article was published at Post Status — the community for WordPress professionals.</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 Jun 2023 10:47: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:18:\"Courtney Robertson\";s: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:34:\"Matt: Apple Journals &amp; Day One\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=86717\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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://ma.tt/2023/06/apple-journals-day-one/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1458:\"<p>Apple almost never fails to wow, and they had <a href=\"https://www.youtube.com/watch?v=GYkq9Rgoj8E\">a lot of cool announcements at WWDC yesterday</a>. Apple&#8217;s previously favorite (app of the year!) journaling app was <a href=\"https://dayoneapp.com/\">Day One</a>, one of <a href=\"https://automattic.com/\">Automattic&#8217;s</a> products, but they <a href=\"https://www.theverge.com/2023/6/5/23738869/apple-journal-app-ios-iphone-wwdc-2023\">announced their own Journal app</a>. One nice thing about competing with Apple is they only really interoperate with their own devices, and they&#8217;re usually not good at social. Day One is launching Shared Journals soon, a social feature so you can have fully end-to-end encrypted shared private journals with friends and family. It&#8217;s been the thing I&#8217;ve been most excited about since we bought the app. (<a href=\"https://twitter.com/paulmayne\">Paul</a> can attest how much I ask him about it!)</p>\n\n\n\n<p>That complements <a href=\"https://dayoneapp.com/blog/apples-journal-app-and-day-ones-evolution/\">another advantage Day One has</a>, which is being cross-platform. If you have a family member on Android, you don&#8217;t want to ostracize them from your Shared Journal. Apple doesn&#8217;t care, their priority is getting everyone on the Apple ecosystem. You care, and Day One/Automattic does too, that&#8217;s why it works great on all Apple devices, Android devices, and the web itself.</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 Jun 2023 20:47:26 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"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: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:95:\"Do The Woo Community: Blocks, Full-site Editing, Performance and more DevChat with Sean Conklin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"https://dothewoo.io/?p=75271\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:60:\"https://dothewoo.io/woocommerce-developer-chat-sean-conklin/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:405:\"<p>Carl, Zach and Sean cover a lot of WooCommerce developer ground in this show. And I mean a lot.</p>\n<p>&gt;&gt; The post <a rel=\"nofollow\" href=\"https://dothewoo.io/woocommerce-developer-chat-sean-conklin/\">Blocks, Full-site Editing, Performance and more DevChat with Sean Conklin</a> appeared first on <a rel=\"nofollow\" href=\"https://dothewoo.io\">Do the Woo - a WooCommerce Builder Community</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, 06 Jun 2023 10:17: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:5:\"BobWP\";s: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:55:\"WordPress.org blog: The Month in WordPress – May 2023\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=15100\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:67:\"https://wordpress.org/news/2023/06/the-month-in-wordpress-may-2023/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:15705:\"<p>May has been a month of celebrating WordPress and the open source community that makes it possible. In honor of the project’s 20th anniversary, WordPress Executive Director <a href=\"https://profiles.wordpress.org/chanthaboune/\">Josepha Haden Chomphosy</a> reflected on <a href=\"https://wordpress.org/news/2023/05/celebrating-20-years-of-wordpress/\">this journey</a> and the opportunity to build a better future for those who come after:</p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p>The more our community invests in itself and supports one another, the stronger WordPress and the open source software movement become.</p>\n<cite>Josepha Haden Chomphosy in <a href=\"https://wordpress.org/news/2023/05/celebrating-20-years-of-wordpress/\">Celebrating 20 Years of WordPress</a>.</cite></blockquote>\n\n\n\n<p>Read on for highlights of this milestone and the latest updates in the WordPress space.</p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"wp-block-heading\">WordPress at 20</h2>\n\n\n\n<p><strong>May 27, 2023, marked the 20th anniversary of WordPress’ first release</strong>. Since its inception by <a href=\"https://ma.tt/2023/05/wp20-audrey-scholars/\">Matt Mullenweg</a> and <a href=\"https://twitter.com/mikelittlezed1/status/1662013891856027649\">Mike Little</a> in 2003, the project has transformed the digital publishing landscape and enabled millions of people to craft their stories.</p>\n\n\n\n<p>WordPress enthusiasts from all over the world gathered at more than <strong>130 events</strong> to celebrate this important milestone. WP20’s commemorative book, <a href=\"https://wordpress.org/book/\"><strong>Building Blocks: The Evolution of WordPress</strong></a>, was published in tandem and documents some of the most significant moments and changes of the last decade of the project.</p>\n\n\n\n<img width=\"1024\" height=\"576\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/06/wp20-celebrate-desktop-1.png?resize=1024%2C576&ssl=1\" alt=\"3D wallpaper of a number 20 formed by words in commemoration of the 20th anniversary of WordPress.\" class=\"wp-image-15106\" /><a href=\"https://wp20.wordpress.net/download-3d-wp20-themed-media/\">Download the new WP20 wallpapers made in 3D</a>.<br />\n\n\n\n<p>The anniversary date may have passed, but the <a href=\"https://wp20.wordpress.net/news/\">festivities and fun aren&#8217;t over</a>. You can still <a href=\"https://wp20.wordpress.net/\">join a meetup</a>, sign the #WP20 From Blogs to Blocks campaign <a href=\"https://make.wordpress.org/marketing/2023/05/27/day-20-wp20-from-blogs-to-blocks/\">birthday card</a>, or participate in #WP20 social celebrations.</p>\n\n\n\n<blockquote class=\"wp-block-quote has-extra-large-font-size\">\n<p>Join Josepha Haden Chomphosy in <a href=\"https://wordpress.org/news/2023/05/episode-55-happy-anniversary-wordpress/\">Episode 55 of WP Briefing</a> as she looks back at the 20 years of WordPress and how the community made WordPress what it is today.</p>\n</blockquote>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"wp-block-heading\">WordPress 6.3 is expected on August 8</h2>\n\n\n\n<p>Work on WordPress 6.3 officially kicked off with the <a href=\"https://make.wordpress.org/core/2023/05/18/wordpress-6-3-planning-roundup/\">announcement of its development cycle and release squad</a>. <strong>Set for release on August 8, 2023</strong>, this version will be the second major update of WordPress in 2023 and will mark the end of Phase 2 of the project’s <a href=\"https://wordpress.org/about/roadmap/\">development roadmap</a>.</p>\n\n\n\n<p>WordPress 6.3 aims to bring a cohesive site editing experience by introducing expanded functionality, richer interfaces, and a dedicated focus on refinement.</p>\n\n\n\n<blockquote class=\"wp-block-quote has-extra-large-font-size\">\n<p><a href=\"https://make.wordpress.org/core/2023/05/18/roadmap-to-6-3/\">Check out the 6.3 roadmap post</a> for a tentative preview of anticipated features.</p>\n</blockquote>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"wp-block-heading\">WordPress 6.2.2 security release</h2>\n\n\n\n<p><strong><a href=\"https://wordpress.org/news/2023/05/wordpress-6-2-2-security-release/\">WordPress 6.2.2</a> became available for download on May 20, 2023</strong>. This release was a quick response to resolve a regression introduced in <a href=\"https://wordpress.org/news/2023/05/wordpress-6-2-1-maintenance-security-release/\">6.2.1</a>, specifically with shortcode support in block templates, and to further patch a vulnerability already addressed in the previous version.</p>\n\n\n\n<blockquote class=\"wp-block-quote has-extra-large-font-size\">\n<p><a href=\"https://make.wordpress.org/core/2023/02/01/core-editor-improvement-strengthening-style-options/\"></a><a href=\"https://make.wordpress.org/core/2023/04/25/the-benefits-of-prioritizing-and-measuring-performance-in-wordpress-6-2/\"></a><a href=\"https://wordpress.org/news/2023/05/wordpress-6-2-2-security-release/\">Update your site if you haven’t yet</a>.</p>\n</blockquote>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"wp-block-heading\">New in the Gutenberg plugin</h2>\n\n\n\n<p>Three new versions of Gutenberg have shipped in the last month:</p>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/05/04/whats-new-in-gutenberg-15-7-03-may/\"><strong>Gutenberg 15.7</strong></a>, released on May 3, 2023, brings a new direct option to upload and replace a site&#8217;s logo from the block settings sidebar. Other enhancements include easier access to duotone filter controls via the style settings sidebar and an update to fluid typography to refine responsiveness.</li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/05/20/whats-new-in-gutenberg-15-8-may-17/\"><strong>Gutenberg 15.8</strong></a> shipped on May 17, 2023, and includes a new &#8220;Pages&#8221; item in the Site Editor sidebar to edit pages without leaving the interface. Moreover, this version brings the ability to navigate through revisions in the global styles interface and to preview block themes inside the Site Editor.</li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/05/31/whats-new-in-gutenberg-15-9-31-may/\"><strong>Gutenberg 15.9</strong></a> is ready for download as of May 31, 2023. The latest Gutenberg release comes with a new command tool and several enhancements to the Site Editor experience, including a more intuitive drag-and-drop function for moving blocks.</li>\n</ul>\n\n\n\n<blockquote class=\"wp-block-quote has-extra-large-font-size\">\n<p><a href=\"https://make.wordpress.org/core/2023/02/01/core-editor-improvement-strengthening-style-options/\"></a>The latest <a href=\"https://make.wordpress.org/core/2023/05/22/core-editor-improvement-smoother-site-editing/\">Core Editor Improvement post</a> highlights features such as revisions and the ability to preview block themes, and how they enable a smoother site editing experience.</p>\n</blockquote>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"wp-block-heading\">Team updates: Next-generation WordCamps, proposal for a Sustainability Team, and more</h2>\n\n\n\n<ul>\n<li>The Community Team proposed <a href=\"https://make.wordpress.org/community/2023/05/08/the-next-generation-of-wordcamps/\">broadening the purpose of WordPress events</a> to &#8220;spark innovation and adoption by way of accessible training and networking.&#8221; This opens the door to organizing a more diverse range of formats focused on specific topics and audiences.</li>\n\n\n\n<li>WordPress contributors suggested <a href=\"https://make.wordpress.org/project/2023/05/30/proposal-establishment-of-a-formal-wordpress-sustainability-team/\">creating an official Sustainability Team</a>.</li>\n\n\n\n<li>The Polyglots Team rebranded the WP Translation Playground tool as Translate Live and <a href=\"https://make.wordpress.org/polyglots/2023/05/08/translate-live-updates-to-the-translation-playground/\">announced improvements</a> that make translating plugins and themes easier.</li>\n\n\n\n<li>The new<strong> </strong><a href=\"https://make.wordpress.org/project/2023/05/17/wordpress-contributor-mentorship-program-pilot-program-proposal/\">WordPress Contributor Mentorship Program pilot</a> aims to provide cohort-based and 1:1 mentorship to prepare new and aspiring contributors for success.</li>\n\n\n\n<li><a href=\"https://wordpress.org/news/2023/05/2022-annual-survey-results-next-steps/\">Results of the 2022 WordPress Annual Survey</a> were announced last month.</li>\n\n\n\n<li>The Training Team published a new course on <a href=\"https://learn.wordpress.org/course/creating-a-4-page-business-website/\">Creating a 4-page business website</a>. See <a href=\"https://make.wordpress.org/updates/2023/06/02/whats-new-on-learn-wordpress-in-may-2023/\">What’s new on Learn WordPress in May 2023</a> for the latest learning resources.</li>\n\n\n\n<li><a href=\"https://make.wordpress.org/themes/2023/05/04/stacks-the-first-community-theme/\">Meet Stacks</a>—the first community theme born from the <a href=\"https://make.wordpress.org/themes/2023/03/03/hallway-hangout-community-themes-initiative/\">Community Themes initiative</a>. This theme is designed for creating slide decks that can be used for a presentation.</li>\n\n\n\n<li>This Core proposal explores ways to <a href=\"https://make.wordpress.org/core/2023/05/16/proposal-retiring-older-default-themes/\">reduce the maintenance of older default WordPress themes</a> and retire them.</li>\n\n\n\n<li>The May 2023 issues of <a href=\"https://developer.wordpress.org/news/2023/05/whats-new-for-developers-may-2023/\">What’s New for Developers?</a>, the <a href=\"https://make.wordpress.org/polyglots/2023/05/10/polyglots-monthly-newsletter-may-2023/\">Polyglots monthly newsletter</a>, and the&nbsp;<a href=\"https://make.wordpress.org/community/2023/05/18/meetup-organizer-newsletter-may-2023/\">Meetup Organizer newsletter</a>&nbsp;are available for reading.</li>\n\n\n\n<li>Find out how WordPress and its global community of contributors made a difference in Stefano Cassone&#8217;s life in the <a href=\"https://wordpress.org/news/2023/05/people-of-wordpress-stefano-cassone/\">latest edition of People of WordPress</a>.</li>\n</ul>\n\n\n\n<blockquote class=\"wp-block-quote has-extra-large-font-size\">\n<p>What is WordPress Playground, and why it matters? <a href=\"https://wordpress.org/news/2023/05/episode-56-what-to-know-about-wordpress-playground/\">WP Briefing Episode 56</a> discusses the benefits and potential of this tool with special guests Rich Tabor and Adam Zielinski.</p>\n</blockquote>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"wp-block-heading\">Feedback &amp; testing requests</h2>\n\n\n\n<ul>\n<li>Core Team members seek <a href=\"https://make.wordpress.org/core/2023/05/17/command-center-request-for-feedback/\">feedback on the new command tool</a> introduced in the Gutenberg plugin and its API.</li>\n\n\n\n<li>The latest <a href=\"https://make.wordpress.org/test/2023/05/18/fse-program-testing-call-23-rapid-revamp/\">call of the Full Site Editing (FSE) Outreach Program</a> invites you to test some features being worked on to upgrade and polish the experience of using the Site Editor. Share your thoughts by June 8, 2023.</li>\n\n\n\n<li><a href=\"https://make.wordpress.org/updates/2023/05/31/mobile-team-update-may-31st-2/\">Version 22.5</a> of the WordPress mobile app for iOS and Android is ready for testing.</li>\n</ul>\n\n\n\n<blockquote class=\"wp-block-quote has-extra-large-font-size\">\n<p>Which next generation of WordPress events would you like to see? <a href=\"https://make.wordpress.org/community/2023/05/24/idea-generation-next-gen-wordcamps/\">Share your ideas</a> and <a href=\"https://make.wordpress.org/community/2023/06/01/next-gen-wordcamp-talking-points-share-your-ideas-for-a-new-event-format-and-make-it-happen/\">start exploring</a> new event formats this year.</p>\n</blockquote>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"wp-block-heading\">WordPress events updates</h2>\n\n\n\n<ul>\n<li><a href=\"https://europe.wordcamp.org/2023/\">Get ready for WordCamp Europe 2023</a> from June 8-10 in Athens, Greece! The event will start with <a href=\"https://europe.wordcamp.org/2023/contributor-day/\">Contributor Day</a> on June 8, followed by two days of presentations and workshops. Attendees can join a <a href=\"https://europe.wordcamp.org/2023/welness-track-activities/\">wellness track</a> and a <a href=\"https://europe.wordcamp.org/2023/wp-connect/\">dedicated space</a> to connect, among many other initiatives.</li>\n\n\n\n<li>The WordCamp US organizing team is <a href=\"https://us.wordcamp.org/2023/wordcamp-us-2023-call-for-volunteers-open/\">calling for volunteers</a>.</li>\n\n\n\n<li>For another year, the <a href=\"https://wordpressfoundation.org/news/2023/kim-parsell-memorial-scholarship-for-wordcamp-us-2023/\">WordPress Foundation&#8217;s Kim Parsell Memorial Scholarship</a> will award funding for a woman-identifying contributor to attend WordCamp US 2023. Applications are open through June 12, 2023.</li>\n\n\n\n<li><a href=\"https://sylhet.wordcamp.org/2023/\">WordCamp Sylhet 2023</a>, the second ever WordCamp in Bangladesh, was successfully held on May 19-20 with its first <a href=\"https://make.wordpress.org/design/2023/05/23/wordcamp-sylhet-2023-contributor-day-recap/\">Contributor Day</a>.</li>\n\n\n\n<li>Join #WPDiversity with a free online workshop on <a href=\"https://www.eventbrite.com/e/how-to-own-your-expertise-start-speaking-at-wordpress-events-apac-tickets-648295107117\">How to Own Your Expertise &amp; Start Speaking at WordPress Events APAC</a>. The event will take place on July 2, 2023.</li>\n\n\n\n<li>Don’t miss these other upcoming WordCamps:\n<ul>\n<li><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f1ea-1f1f8.png\" alt=\"🇪🇸\" class=\"wp-smiley\" /> <a href=\"https://cartagena.wordcamp.org/2023/\">WordCamp Cartagena</a>, Spain on June 10-11, 2023</li>\n\n\n\n<li><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f1fa-1f1f8.png\" alt=\"🇺🇸\" class=\"wp-smiley\" /> <a href=\"https://montclair.wordcamp.org/2023/\">WordCamp Montclair</a>, NJ, USA on June 24, 2023</li>\n</ul>\n</li>\n</ul>\n\n\n\n<blockquote class=\"wp-block-quote has-extra-large-font-size\">\n<p>Join WordPress project leadership on June 10 at WordCamp Europe 2023 to hear about the latest developments and what’s next for WordPress. <a href=\"https://europe.wordcamp.org/2023/schedule/\">Check out the schedule for details</a>.</p>\n</blockquote>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<hr class=\"wp-block-separator has-text-color has-light-grey-color has-alpha-channel-opacity has-light-grey-background-color has-background\" />\n\n\n\n<p><strong><em><strong><em><strong><em>Have a story we should include in the next issue of The Month in WordPress? <strong><em>Fill out </em></strong><a href=\"https://make.wordpress.org/community/month-in-wordpress-submissions/\"><strong><em>this quick form</em></strong></a><strong><em> to let us know.</em></strong></em></strong></em></strong></em></strong></p>\n\n\n\n<p><em><em>The following folks contributed to this Month in WordPress: <a href=\"https://profiles.wordpress.org/rmartinezduque/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>rmartinezduque</a>, <a href=\"https://profiles.wordpress.org/nahidsharifkomol/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>nahidsharifkomol</a>, <a href=\"https://profiles.wordpress.org/chaion07/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>chaion07</a>, <a href=\"https://profiles.wordpress.org/devinmaeztri/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>devinmaeztri</a>, <a href=\"https://profiles.wordpress.org/bsanevans/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>bsanevans</a></em></em>, <em><em><a href=\"https://profiles.wordpress.org/ninianepress/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>ninianepress</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:\"Tue, 06 Jun 2023 10:15:56 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Reyes Martínez\";s: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:78:\"WordPress.org blog: WP Briefing: Episode 57: The Power of WordPress Mentorship\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=15089\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:80:\"https://wordpress.org/news/2023/06/episode-57-the-power-of-wordpress-mentorship/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:7747:\"<p>Join WordPress Executive Director Josepha Haden Chomphosy in the 57th episode of the WordPress Briefing as she discusses the Contributor Mentorship Program to help increase the success of new contributors over time.</p>\n\n\n\n<p><em><strong>Have a question you’d like answered? You can submit them to&nbsp;<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 class=\"wp-block-heading\">Credits</h2>\n\n\n\n<p>Editor:&nbsp;<a href=\"https://profiles.wordpress.org/dustinhartzler/\">Dustin Hartzler</a><br />Logo:&nbsp;<a href=\"https://profiles.wordpress.org/javiarce/\">Javier Arce</a><br />Production:&nbsp;<a href=\"https://profiles.wordpress.org/bjmcsherry/\">Brett McSherry</a><br />Song: Fearless First by Kevin MacLeod</p>\n\n\n\n<h2 class=\"wp-block-heading\">Show Notes</h2>\n\n\n\n<ul>\n<li><a href=\"https://europe.wordcamp.org/2023/\">WordCamp Europe 2023</a>, Athens, Greece. This event includes a <a href=\"https://europe.wordcamp.org/2023/session/matt-mullenweg/\">special Keynote from Matt Mullenweg, Josepha Haden Chomposy, and Matías Ventura</a>. </li>\n\n\n\n<li>&nbsp;<a rel=\"noreferrer noopener\" href=\"https://make.wordpress.org/project/2023/05/17/wordpress-contributor-mentorship-program-pilot-program-proposal/\" target=\"_blank\">WordPress Contributor Mentorship Program: Pilot Program Proposal</a>&nbsp;</li>\n\n\n\n<li>Make WordPress Community: <a rel=\"noreferrer noopener\" href=\"https://make.wordpress.org/community/2023/05/24/idea-generation-next-gen-wordcamps/\" target=\"_blank\">Idea generation: Next Gen WordCamps!</a></li>\n\n\n\n<li>WordPress &#8216;Milestones&#8217; volume two book <a rel=\"noreferrer noopener\" href=\"https://wordpress.org/book/\" target=\"_blank\">Building Blocks: The Evolution of WordPress</a> is available in <a rel=\"noreferrer noopener\" href=\"https://github.com/WordPress/wp20-book/tree/trunk/Formats\" target=\"_blank\">several formats for download on GitHub</a>.</li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">Transcript</h2>\n\n\n<a class=\"wp-block-read-more\" href=\"https://wordpress.org/news/2023/06/episode-57-the-power-of-wordpress-mentorship/\" target=\"_self\">Read more<span class=\"screen-reader-text\">: Episode 57: The Power of WordPress Mentorship</span></a>\n\n\n<p>[Josepha Haden Chomphosy 00:00:00]&nbsp;</p>\n\n\n\n<p>(Intro music)</p>\n\n\n\n<p>Hello everyone, and welcome to the WordPress Briefing, the podcast where you can catch quick explanations of the ideas behind the WordPress open source project, some insight into the community that supports it, and get a small list of big things coming up in the next two weeks.&nbsp;</p>\n\n\n\n<p>I&#8217;m your host, Joseph Hayden Chomphosy. Here we go!</p>\n\n\n\n<p>(Intro music)</p>\n\n\n\n<p>[Josepha Haden Chomphosy 00:00:40]&nbsp;</p>\n\n\n\n<p>Over the course of this year, there has been a lot of research and examination of the contributor funnel in the WordPress community. That research confirms some assumptions about what most contributor stories have in common: the hurdles, the general paths taken, and the way that problem-solving was done. Then in February of this year, Hari Shanker published a proposal for a mentorship program for WordPress.&nbsp;</p>\n\n\n\n<p>And now we&#8217;ve got a pilot program that&#8217;s been defined and is waiting for your feedback. If you&#8217;ve not read the post about the contributor mentorship program, for one do it. But if you would rather hear a synopsis from me, don&#8217;t worry, I&#8217;m about to give you a 10-cent tour.&nbsp;</p>\n\n\n\n<p>[Josepha Haden Chomphosy 00:01:22]&nbsp;</p>\n\n\n\n<p>First up, who is doing this? This pilot program has been outlined by a community working group. We often have working groups in WordPress, and they almost always have specific projects around events or programs, or code updates. Since this working group is focused on a project-wide program, there is project-wide representation in it. All the names are at the bottom of the post, which you can find in our show notes. But it&#8217;s got folks who contribute with code or contribute with time or contribute with design folks who are self-sponsored or corporately sponsored, just a nice mix of people. The program as a whole, though, is being stewarded by Hari Shankar, a longtime supporter of and contributor to WordPress. </p>\n\n\n\n<p>[Josepha Haden Chomphosy 00:02:06]&nbsp;</p>\n\n\n\n<p>So next, what is this for? There are a few goals for the program. But the overarching goal is to increase the success of new contributors over time. We can all agree that if we were to have 1000s of new contributors every day, but they couldn&#8217;t find their way to impactful contributions or meaningful connections quickly, then we would have done them a disservice. And they probably won&#8217;t continue to be part of the community without a bit more effort.&nbsp;</p>\n\n\n\n<p>The when and the where are essentially “right now and right here,” so that brings us finally to Why. Why are we doing this mentorship program? Apart from to help people who want to contribute have an easier path to success – which frankly is enough of a reason anyway – the why is wrapped up in our overall philosophies in the project. If we believe that good ideas can come from anywhere and that contributions of any size matter. And that open source is an idea that can change our generation and that we are democratizing publishing, then bringing new people brings new ideas, and beginner contributions can grow over time. We can maintain this idea, this concept of open source, into the next generation and to future generations. And always keep our sights on the open web. To learn more about this and other project-wide initiatives, swing by make.wordpress.org/project or check the links in today&#8217;s show notes on wordpress.org/news/podcast.</p>\n\n\n\n<p>[Josepha Haden Chomphosy 00:03:53]&nbsp;</p>\n\n\n\n<p>Which brings us now to our small list of big things.&nbsp;</p>\n\n\n\n<p>[Josepha Haden Chomphosy 00:03:56]&nbsp;</p>\n\n\n\n<p>First on the list is WordCamp Europe. That&#8217;s coming up at the end of the week on June 8 through 10th in Athens, Greece. There will be a major update from Matt and friends, so even if you aren&#8217;t there in person, keep an eye out for those recordings. But for those who are there and you&#8217;re curious about the mentorship program or anything else to do with WordPress and contributing to the project, you can come find me or Angela Jin, Hari will also be there, Chloé will be there, Héctor will be there, lots of people, and we want to hear your thoughts and answer your questions.&nbsp;</p>\n\n\n\n<p>[Josepha Haden Chomphosy 00:04:27]&nbsp;</p>\n\n\n\n<p>Second is a call for brainpower! A call for your brainstorms! On the subject of the next generation, we&#8217;ve got a discussion going on about the next generation of WordCamps. We&#8217;ve been discussing what new types and varieties might be available, and that might make sense for people as we get back to in-person events. So if you&#8217;ve got a kind of WordCamp that you&#8217;ve been desperately wanting to try, now&#8217;s the time to let folks know about it. </p>\n\n\n\n<p>[Josepha Haden Chomphosy 00:04:54]</p>\n\n\n\n<p>And the final thing is the second volume of The WordPress history book called Building Blocks: The Evolution of WordPress is now available for download in several formats as well as on GitHub. Stop buy, give it a read, and relive some of the highlights of the past ten years of the WordPress project.&nbsp;</p>\n\n\n\n<p>&nbsp;[Josepha Haden Chomphosy 00:05:12]</p>\n\n\n\n<p>And that, my friends, is your smallest of big things. Thanks for tuning in today for the WordPress Briefing. I&#8217;m your host Josepha Haden Chomposy, and 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, 05 Jun 2023 13:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Brett McSherry\";s: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:25:\"Matt: Coltrane and Dolphy\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=86465\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:43:\"https://ma.tt/2023/06/coltrane-and-dolphin/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:303:\"<p>Check out this <a href=\"https://www.npr.org/2023/05/31/1179098682/john-coltrane-eric-dolphy-village-gate-1961-lost-album\">great article on an exciting discovery of John Coltrane and Eric Dolphy playing together</a>. The album comes out July 14<sup>th</sup>. <cite>Hat tip: Aaron Wieczorek</cite>.</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 Jun 2023 08:31:16 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s: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: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:121:\"Gutenberg Times: Block themes are the future, bibliography block, a dynamic block with AI and more –Weekend Edition 256\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=24348\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:127:\"https://gutenbergtimes.com/block-themes-are-the-future-bibliography-block-a-dynamic-block-with-ai-and-more-weekend-edition-256/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:17676:\"<p>Howdy, </p>\n\n\n\n<p>Before, I got the reward of seeing my WordPress buddies, friends, and colleagues in Athens, I had to work hard with the moving company to get our furniture organized in our new flat. I wasn&#8217;t hopeful, if I will find the packed lanyard with all my pins in time for WordCamp Europe, so I will start a new one. Get ready sponsors, I will hunt for swag again 😎</p>\n\n\n\n<p>Have a fantastic weekend! </p>\n\n\n\n<p>Yours, 💕<br /><em>Birgit</em></p>\n\n\n\n\n\n\n<div class=\"wp-block-group has-light-background-background-color has-background is-layout-flow wp-block-group-is-layout-flow\"><div class=\"wp-block-group__inner-container\">\n<p><strong>Table of Contents</strong></p>\n\n\n\n<div class=\"wp-block-sortabrilliant-guidepost\"><ul><li><a href=\"https://gutenbergtimes.com/feed/#0-word-press-release-information\">Developing Gutenberg and WordPress</a></li><li><a href=\"https://gutenbergtimes.com/feed/#1-plugins-themes-and-tools-for-nocode-site-builders-and-owners\">Plugins, Themes, and Tools for #nocode site builders and owners</a><ul><li><a href=\"https://gutenbergtimes.com/feed/#2-icymi-new-tutorials-on-learn-word-press-for-users-br\">New tutorials on Learn.WordPress</a></li></ul></li><li><a href=\"https://gutenbergtimes.com/feed/#2-word-press-6-0-1-and-6-1-scheduled\">Theme Development for Full Site Editing and Blocks</a></li><li><a href=\"https://gutenbergtimes.com/feed/#3-building-themes-for-fse-and-word-press\">Building Blocks and Tools for the Block editor. </a></li></ul></div>\n</div></div>\n\n\n\n\n<h2 class=\"wp-block-heading\" id=\"0-word-press-release-information\">Developing Gutenberg and WordPress</h2>\n\n\n\n<p>Release lead, <strong><a href=\"https://twitter.com/c4rl0sbr4v0\">Carlos Bravo</a></strong>, published <strong><a href=\"https://make.wordpress.org/core/2023/05/31/whats-new-in-gutenberg-15-9-31-may/\">What’s new in Gutenberg 15.9? (31 May)</a> </strong>. the release included 171 PRs by 56 contributors, eight of them new. Congrats to all. </p>\n\n\n\n<p>The highlights: </p>\n\n\n\n<ul>\n<li>The command center  (working title: Wayfinder) is now out of experiments, and needs further testing and feedback. You can find details in Riad Benguella&#8217;s post <a href=\"https://make.wordpress.org/core/2023/05/17/command-center-request-for-feedback/\">Command Center: Request for feedback</a></li>\n\n\n\n<li>More enhancements to the Site Editor experience: resize your site editor window, improved drag and drop (🐉 💧), simplified switching between different styles and menus and so much more</li>\n</ul>\n\n\n\n<div class=\"wp-block-group has-light-background-background-color has-background is-layout-flow wp-block-group-is-layout-flow\"><div class=\"wp-block-group__inner-container\">\n<p><strong>🎙️ </strong> New episode:  <a href=\"https://gutenbergtimes.com/podcast/gutenberg-changelog-83-wordpress-gutenberg-experiments/\">Gutenberg Changelog #83 – WordPress 6.2.1, Gutenberg 15.7, 15.8 and experiments</a> with special guest, Fabian Kägy and host Birgit Pauli-Haack</p>\n</div></div>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"1-plugins-themes-and-tools-for-nocode-site-builders-and-owners\">Plugins, Themes, and Tools for #nocode site builders and owners</h2>\n\n\n\n<p><strong>Nick Schäferhoff</strong> published for the Torque Magazine: <a href=\"https://torquemag.io/2023/06/gutenberg-vs-classic-editor/\"><strong>Gutenberg vs Classic Editor: 29 Reasons to Switch (Or Stay Put)</strong></a>. &#8220;You might be one of those people asking yourself whether you should switch from the Classic Editor to Gutenberg or stick with what you know. To help you make an informed decision, this post looks at key differences and features of the two editors and offer advice on which one is right for your website. Whether you’re a novice or experienced developer, by the end you’ll have all the information you need to decide which editor to stick with.&#8221; He wrote. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Ryan Welcher</strong> released a new version of his <a href=\"https://wordpress.org/plugins/advanced-query-loop/\"><strong>Advanced Query Loop plugin</strong></a>.  With this version, you can now inherit the default query and still control the post count and sorting options! </p>\n\n\n\n<p>If you want to <strong>connect with Ryan Welcher at WordCamp Europe</strong>, he made his calendar public, too. He <a href=\"https://twitter.com/ryanwelcher/status/1663218595118174208\">tweeted</a>: I&#8217;m going to be attending WCEU 2023 and would love to chat with you! If you&#8217;re interested, please grab some time <a href=\"https://calendly.com/ryan-welcher/wceu-athens-2023\"><strong>on my Calendly link</strong></a>!</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Sarah Snow</strong> just published a short tutorial on <strong><a href=\"https://learn.wordpress.org/tutorial/how-to-switch-from-a-classic-to-a-block-theme/\">How to switch from a classic to a block&nbsp;theme</a></strong> on Learn.WordPress. &#8220;Are you curious about the process of how to switch from a classic theme to a block theme? If so, this tutorial is for you! Watch to discover what you can expect when you switch from a classic to a block theme, learn the recommended steps to switch a site safely, and find additional resources to get you started in a block theme’s site editor.&#8221; </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><a href=\"https://twitter.com/hluehrsen\"><strong>Hendrik Lührsen</strong></a> <a href=\"https://twitter.com/hluehrsen/status/1659549030337196033\">tweeted</a> about his new plugin:  <a href=\"https://github.com/luehrsenheinrich/wpm-citations\"><strong>Citations for WordPress</strong></a> (GitHub). Make sure you download the zip-file from the release, and not the source code. If you use proper HTML &lt; a /&gt; tag notation.  you can add links into the citation field popping up. I tested it, and it works as an MVP, it has it&#8217;s quirks. The block is a starting point for customization. I hope this might come as a plugin to the repository. </p>\n\n\n\n<img />\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>On again, off again, <a href=\"https://twitter.com/ellatrx\"><strong>Ella van Durpe</strong> </a>has been working on a Footnotes feature for the Gutenberg project. The latest PRs are: </p>\n\n\n\n<ul>\n<li><a href=\"https://github.com/WordPress/gutenberg/pull/50124\"><strong>Footnotes stored in the FN block</strong></a> &#8211;  this PR also links back to earlier conversations around this feature, and </li>\n\n\n\n<li><a href=\"https://github.com/WordPress/gutenberg/pull/51201\"><strong>Footnotes: try with post meta</strong></a>.</li>\n</ul>\n\n\n\n<p>If you have some time, maybe you can help test it. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong><a href=\"https://twitter.com/carolinapoena\">Carolina Nymark</a></strong> published a new lesson: <a href=\"https://fullsiteediting.com/site-creators/creating-sidebars-with-blocks/\"><strong>Creating sidebars with blocks</strong></a>. &#8220;If you want to use the same sidebar in multiple places, I recommend using the template part method because it will save you time. Editing a template part is similar to adding block widgets to a traditional sidebar. The difference is that you now choose exactly where you want the sidebar to show without depending on a developer to add the code.&#8221; she wrote. </p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"2-icymi-new-tutorials-on-learn-word-press-for-users-br\">New tutorials on Learn.WordPress</h3>\n\n\n\n<ul>\n<li><a href=\"https://learn.wordpress.org/tutorial/building-a-page-with-only-patterns/\" target=\"_blank\" rel=\"noreferrer noopener\">Building a page with only patterns</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/tutorial/how-to-add-a-blog-or-news-page-to-any-wordpress-website/\" target=\"_blank\" rel=\"noreferrer noopener\">How to add a blog or news page to any WordPress website</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/tutorial/wordpress-editor-modes-for-streamlining-content-creation/\" target=\"_blank\" rel=\"noreferrer noopener\">WordPress editor modes for streamlining content creation</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/tutorial/exploring-category-templates-with-block-themes/\" target=\"_blank\" rel=\"noreferrer noopener\">Exploring category templates with block themes</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/tutorial/introduction-to-wordpress-multisite-networks/\" target=\"_blank\" rel=\"noreferrer noopener\">Introduction to WordPress Multisite Networks</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/tutorial/managing-a-wordpress-multisite-network/\" target=\"_blank\" rel=\"noreferrer noopener\">Managing a WordPress Multisite Network</a></li>\n</ul>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<h2 class=\"wp-block-heading\" id=\"2-word-press-6-0-1-and-6-1-scheduled\">Theme Development for Full Site Editing and Blocks</h2>\n\n\n\n<p><strong>Bill Erickson</strong>, freelance developer and early adopter of the block editor, just posted <a href=\"https://www.billerickson.net/hybrid-wordpress-theme-starter/\"><strong>A starter theme for building Hybrid WordPress Themes</strong></a>. Erickson also explains the interdependencies between Theme.json and Figma Design tokens and how to work within such a design system. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Brian Gardner</strong> took a deep dive into <a href=\"https://wpengine.com/builders/responsive-wordpress-websites/\"><strong>Intrinsic Design: Building Responsive WordPress Websites</strong></a>. He walks you through the built-in responsiveness of the Block editor with  fluid typography as well as fluid spacing. Gardner also anticipates &#8221; that future updates to Gutenberg, and consequently WordPress core, will give builders the flexibility to modify targeted media queries and even the scale factor.&#8221; </p>\n\n\n\n<p></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 2022&#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. Updated by yours truly.  <a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/keeping-up-with-gutenberg-index-2020/\"><em>The index 2020 is here</em></a></p>\n\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<p><strong>Nathan Wrigley</strong> discussed with <strong>Mike McAlister</strong> on <a href=\"https://wptavern.com/podcast/78-mike-mcalister-on-why-block-themes-are-the-future\"><strong>why Block Themes are the future</strong></a> in episode 78 of the WPTavern Jukebox podcast. In the introduction, Wrigley wrote: &#8220;Mike explains what the key differences are between a block-based theme and a classic theme. How it’s possible to create themes inside the editor, and how you can do this without needing to know much code. We talk about the fact that, if you’re a coding expert, you could always create complex themes, but this fresh approach opens up the possibilities for those with less technical backgrounds. The experience in the editor might not be exactly what everyone wants, but it’s evolving quickly and maturing with every new release of WordPress.&#8221; It&#8217;s definitely worth listening to, and checking out the resources shared. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>For the third part of the Twitch Stream series <em>Building a developer-focus block theme</em>, <strong>Ryan Welcher</strong> teamed up with <strong>Justin Tadlock</strong> to take a deep dive of theme.json and block theme development. <a href=\"https://www.youtube.com/watch?v=3d6tqqlBVvo&t=1s\"><strong>Building a developer-focus block theme. Part 3.</strong></a></p>\n\n\n\n<p><a href=\"https://www.youtube.com/watch?v=264Z-YfV6J0\"><strong>Part 2</strong></a> and <a href=\"https://www.youtube.com/watch?v=uJGWb1ZYLMY\"><strong>Part 1</strong></a> are also available on Welcher&#8217;s YouTube channel. </p>\n\n\n\n<a href=\"https://www.youtube.com/watch?v=3d6tqqlBVvo&t=1s\"><img /></a>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"3-building-themes-for-fse-and-word-press\">Building Blocks and Tools for the Block editor. </h2>\n\n\n\n<p>While redesigning his blog, <strong>Rich Tabor</strong> wanted to add a link that navigates to a random post. I created a custom block using the Create-Block script and ChatGPT. It only took a few minutes. He recorded a YouTube video, so you can follow along: <strong><a href=\"https://www.youtube.com/watch?v=t1bs8g9OdRU\">How to Build a Dynamic WordPress Gutenberg Block with AI (ChatGPT)</a></strong></p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>In his latest posts on the WordPress Developer Blog, <strong>Ryan Welcher</strong> posted a tutorial on <a href=\"https://developer.wordpress.org/news/2023/06/using-block-inspector-sidebar-groups/\"><strong>using block inspector sidebar groups</strong></a>. With the introduction of block inspector tabs in WordPress 6.2, block developers have more control over where custom controls should appear by leveraging the group of the InspectorControls component.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong><a href=\"https://twitter.com/rmors_\">Ross Morsali</a></strong> wrote <a href=\"https://rm.codes/slotfills-and-fillprops-in-the-block-editor/\">SlotFills and fillProps in the block editor</a>. After explaining briefly what SlotFills are and offering some user cases for their implementation, Morsali shows an example of how to use is in combination with  opening a modal. </p>\n\n\n\n<p>To go deeper on SlotFills, take a look at the WordPress Developer Blog post: <strong><a href=\"https://developer.wordpress.org/news/2022/11/how-to-extend-wordpress-via-the-slotfill-system/\">How to extend WordPress via the SlotFill system</a></strong></p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Jeremy Felt</strong> built an <a href=\"https://happyprime.github.io/wphtml-converter/\"><strong>HTML Converter</strong></a> &#8211; It parses WPHTML into JS/JSON with a direct&nbsp;copy&nbsp;of Gutenberg&#8217;s &nbsp;<a href=\"https://github.com/WordPress/gutenberg/tree/trunk/packages/block-serialization-default-parser\">Block Serialization Default Parser</a>. Felt explains the workflow on the <a href=\"https://github.com/happyprime/wphtml-converter\">GitHub repo</a>: &#8220;When first building a template of blocks to be used as part of a block variation or other template, it is useful to do this work in the block editor. When adding the template to JavaScript in an&nbsp;<code>innerBlocks</code>&nbsp;property, it needs to be formatted differently and again differently when reusing it in PHP. As your templates get more complicated, so does this translation—when done manually.&#8221; Hence, the Converter tool. </p>\n\n\n\n<img />\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 class=\"has-text-align-right has-small-font-size\"><em>Questions? Suggestions? Ideas? Don&#8217;t hesitate to send <a href=\"mailto:pauli@gutenbergtimes.com\">them via email</a> or send me a message on WordPress Slack or Twitter @bph</em>. </p>\n\n\n\n<p class=\"has-text-align-right has-small-font-size\">For questions to be answered on the <a href=\"http://gutenbergtimes.com/podcast\">Gutenberg Changelog</a>, send them to <a href=\"mailto:changelog@gutenbergtimes.com\">changelog@gutenbergtimes.com</a></p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n\n<p>Featured Image: <em>Greek architecture of a rock archway in Crete</em> by Lusp (Luke) found on WordPress Photos</p>\n\n\n\n<hr class=\"wp-block-separator has-css-opacity 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 type=\"submit\" 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 has-css-opacity 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, 03 Jun 2023 12:30: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: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: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:64:\"Post Status: Launching a WordPress Product in Public: Session 15\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://poststatus.com/?p=149540\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:74:\"https://poststatus.com/launching-a-wordpress-product-in-public-session-15/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:54110:\"<p><a href=\"https://poststatus.com/planet/feed/#h-transcript\">Transcript</a> ↓</p>\n\n\n\n<p>In this episode, <a href=\"https://twitter.com/corymiller303\">Cory Miller</a> and <a href=\"https://twitter.com/coreymaass\">Corey Maass</a> discuss their progress on a project related to image generation and sharing. They explore the use of Open Graph (OG) images, social media platforms, and the importance of consistent branding. They mention the need for a logo and discuss the design concept, leaning towards a fun and vibrant style. They also touch on website development, pricing, and marketing assets. The conversation revolves around simplifying the image generation process and creating a user-friendly product. Overall, they aim to finalize the project&#8217;s features, branding, and logo to move forward with the launch.</p>\n\n\n\n<p><strong>Top Takeaways:</strong></p>\n\n\n\n<ul>\n<li><strong>Logo and Branding: </strong>The importance of creating a logo and establishing a consistent branding for your project. You want a logo that represents image generation in a fun and vibrant way, potentially incorporating bright colors and a big, fun font. It should look good on different merchandise items like t-shirts and baseball caps.</li>\n\n\n\n<li><strong>Image Generation and Sharing:</strong> The main focus of your project is image generation and sharing. Using a logo generation tool and exploring concepts related to image generation, sharing, and open graph images. The goal is to make the process of generating and sharing images easy and efficient for users.</li>\n\n\n\n<li><strong>Project Progress: </strong>The progress of the project, including bug fixes and updates. The plan is to address the bugs and implement additional features and improvements. Once the sitewide and post-level functionalities are handled, the project will be ready to share with others. Defining the project&#8217;s style, including the logo and overall branding, is an important next step</li>\n</ul>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n\n</div>\n\n\n\n<h3 class=\"wp-block-heading eplus-wrapper\" id=\"h-mentioned-in-the-show\"><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f517.png\" alt=\"🔗\" class=\"wp-smiley\" /> Mentioned in the show:</h3>\n\n\n\n<ul>\n<li><a href=\"https://crop.express/\">Crop.Express</a></li>\n\n\n\n<li><a href=\"https://wordpress.com/\">WordPress</a></li>\n\n\n\n<li><a href=\"https://openai.com/\">OpenAI</a></li>\n\n\n\n<li><a href=\"https://poststatus.com/\">Post Status</a></li>\n\n\n\n<li><a href=\"https://www.wpbeginner.com/\">WP Beginner</a></li>\n\n\n\n<li><a href=\"https://www.fiverr.com/\">Fiverr</a></li>\n\n\n\n<li><a href=\"https://central.wordcamp.org/\">WordCamp</a></li>\n\n\n\n<li><a href=\"https://makelogo.ai/\">MakeLogo.ai</a></li>\n\n\n\n<li><a href=\"https://twitter.com/vovafeldman?ref_src=twsrc%5Egoogle%7Ctwcamp%5Eserp%7Ctwgr%5Eauthor\">Vova Feldman</a></li>\n\n\n\n<li><a href=\"https://twitter.com/syedbalkhi\">Syed Balkhi</a></li>\n\n\n\n<li><a href=\"https://ogp.me/\">Open Graph Image</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading eplus-wrapper\" id=\"h-you-can-follow-post-status-and-our-guests-on-twitter\"><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f426.png\" alt=\"🐦\" class=\"wp-smiley\" /> You can follow Post Status and our guests on Twitter:</h3>\n\n\n\n<ul class=\"eplus-wrapper\">\n<li><a href=\"http://twitter.com/coreymaass\">Corey Maass</a></li>\n\n\n\n<li><a href=\"https://twitter.com/corymiller303\">Cory Miller</a> (CEO, <a href=\"https://twitter.com/post_status\">Post Status</a>)</li>\n\n\n\n<li><a href=\"https://twitter.com/lemonadecode\">Olivia Bisset</a> (Intern, <a href=\"https://twitter.com/post_status\">Post Status</a>)</li>\n</ul>\n\n\n\n<p class=\"eplus-wrapper has-background\">The <strong>Post Status Draft</strong> podcast is geared toward WordPress professionals, with interviews, news, and deep analysis. <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f4dd.png\" alt=\"📝\" class=\"wp-smiley\" /><br /><br /><a href=\"https://poststatus.com/category/post-status-podcasts/\" target=\"_blank\" rel=\"noreferrer noopener\">Browse our archives</a>, and don’t forget to subscribe via <a href=\"https://itunes.apple.com/us/podcast/post-status-draft-wordpress/id976403008\" target=\"_blank\" rel=\"noreferrer noopener\">iTunes</a>, <a href=\"https://podcasts.google.com/feed/aHR0cHM6Ly9mZWVkcy5zaW1wbGVjYXN0LmNvbS8ySkU5c2M4UA\" target=\"_blank\" rel=\"noreferrer noopener\">Google Podcasts</a>, <a href=\"https://www.youtube.com/c/PostStatus\" target=\"_blank\" rel=\"noreferrer noopener\">YouTube</a>, <a href=\"http://www.stitcher.com/podcast/krogsgard/post-status-draft-wordpress-podcast\" target=\"_blank\" rel=\"noreferrer noopener\">Stitcher</a>, <a href=\"https://wordpress-post-status-draft-podcast.simplecast.com/\" target=\"_blank\" rel=\"noreferrer noopener\">Simplecast</a>, or <a href=\"https://feeds.simplecast.com/2JE9sc8P\">RSS</a>. <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f3a7.png\" alt=\"🎧\" class=\"wp-smiley\" /></p>\n\n\n\n<h2 class=\"wp-block-heading eplus-wrapper\" id=\"h-transcript\">Transcript</h2>\n\n\n\n<h2 class=\"wp-block-heading\">Session 15 Corey &amp; Cory Launch a WordPress Product Live</h2>\n\n\n\n<p><strong>C&amp;C 15</strong></p>\n\n\n\n<p>[00:00:00] <strong>Cory Miler:</strong> All right. Hold on before we go live. Okay. Um, what&#8217;s on your mind&nbsp;</p>\n\n\n\n<p>[00:00:21] <strong>Corey Maass:</strong> today to talk about? It looks like you&#8217;re streaming to YouTube, but I&#8217;m not recording.</p>\n\n\n\n<p>[00:00:33] <strong>Cory Miler:</strong> Okay, I&#8217;ll just push record.</p>\n\n\n\n<p>Hey everybody. Welcome back to Corey and Corey on launching a product lot has been happening in the background. Mainly Corey&#8217;s been on a manic work streak, but we have a working version of the plugin on post edit and uh, he gave me a walkthrough yesterday setting stuff. Corey, what are we, what&#8217;s on your mind today to talk, talk about?</p>\n\n\n\n<p>[00:01:03] <strong>Corey Maass:</strong> Uh, I think we are, uh, getting close to the first milestone of actually having a product that you, you specifically could start using. My clients could start using maybe, um, I&#8217;m gonna install it on all of my websites. Um, But I think we can start. I&#8217;ve got a, after the installing it on post status yesterday, which we chose not to do live, which worked out just fine.</p>\n\n\n\n<p>Um, but we&#8217;ve got a, a pretty slick little product, um, a short punch list of bugs to fix that I&#8217;m working on, um, over the next couple of days. Um, But I think we could start pivoting to how we&#8217;re gonna present this publicly. Um, you know, start setting up the marketing site. I&#8217;ve got the e-commerce set up. I think it works to actually take money.</p>\n\n\n\n<p>We haven&#8217;t tried that yet, but that&#8217;s okay. Um, so yeah, I think it&#8217;s the, the next steps to talk about here now are, you know, what we need. So, I mean, for us, but also talking abstractly about. You know, once you have a product, uh, what do you do? So&nbsp;</p>\n\n\n\n<p>[00:02:33] <strong>Cory Miler:</strong> yeah, with the product, we&#8217;re in this interesting phase, which is working.</p>\n\n\n\n<p>It&#8217;s working. When we put it up on a live site, yesterday, we were both making notes about where the product is. But I, I still go back to, I think this is so valuable. Me putting on the client customer hat and actually using it. And more so than I think any product I&#8217;ve had before is really using it and thinking about it creatively.</p>\n\n\n\n<p>How I want those things to come out, I think is gonna formulate back to products. So, so while it already has like our initial OG image, open graph image for site wide. We did some reviews in the past episode. Um, I did some work and I, I really saw some patterns in the synthesis. Mm-hmm. What, like, it is gonna go do.</p>\n\n\n\n<p>Well, you, you were like almost simultaneously building it, which is awesome. Um, I gotta tell you from yesterday, um, we got, we got some polish that we, we know we&#8217;ve been working on, um, that you even saw and were like, oh, we need this. Um, I love your openness again about hearing feedback and, Hmm, before using it just shows how good of a data of an entrepreneur you are.</p>\n\n\n\n<p>But the, the one I&#8217;m really eager to is getting to the blog posts because for this product, uh, it&#8217;s, it&#8217;s more so than just an open graph image. It&#8217;s like a social image to share with the post to make it compelling. I think all that work we did with Crop Express, So it&#8217;s all good. Mm-hmm. Helped, like think through what we&#8217;re doing now.</p>\n\n\n\n<p>But I, I got giddy, you know, that I did some of the work when we did the pattern for the home, home or site default. Uh, I went on with some of the blog posts and I was like, this right&nbsp;</p>\n\n\n\n<p>[00:04:34] <strong>Corey Maass:</strong> here is the money. Yep. Yeah. I&#8217;m, I&#8217;m with you. I think I, one of the. Pivotal moments for us with crop.express was you said, you know, I&#8217;m, I&#8217;m mental octopus.</p>\n\n\n\n<p>I&#8217;m all over the place, you know? Yeah. Over here we do this and then we could do this, but it could do this, and over here it&#8217;ll do this and, and you&#8217;re like, what if we start with the feature image? I was like, that&#8217;s. You know, brilliant dart to the center of the dart board kind of thing. Um, and so with this, I really liked you, you did essentially the same thing where you&#8217;re like, OG image for the site.</p>\n\n\n\n<p>And it was an easy lift for me to add that. So on activation, the plugin takes you to a little welcome screen, which doesn&#8217;t look pretty yet, but that&#8217;s fine. You upload a logo and you click a button and your site has an OG image. And so we are, I love that you install the plugin and a handful of clicks and we are offering value.</p>\n\n\n\n<p>We are taking it already to um, Bringing, bringing your site. You know, we keep de debating about how we actually do this wording, um, but, or, or how we word this. But, you know, within a few clicks, our plugin makes your website more professional. Um, if you&#8217;ve got Yost installed, maybe you&#8217;ve already got an OG image.</p>\n\n\n\n<p>If you don&#8217;t, we provide one, um, and our plugin will override. The image. So it&#8217;s like whatever you&#8217;ve done in Canva or elsewhere, you know, you can update, you can update regularly, that kind of thing. Um, so yeah, I&#8217;m, I&#8217;m with you. We&#8217;re, we&#8217;ve, we&#8217;ve reached that minimum viable product mentality in that we are immediately offering value, which I think is really cool.</p>\n\n\n\n<p>Um, and then, The next, next thing following that OG image thread is, yeah, for each blog post, for each product, um, figuring, you know, again, initially it&#8217;ll be a, uh, a manual process of like, oh, you&#8217;re, you know, essentially for every blog post you, you are adding going forward, um, Once you&#8217;ve set up the blog post, you then can go set up your OG image.</p>\n\n\n\n<p>Um, so we get there and that, that honestly is about 60%, 70% of the cleanup I need to do anyway. I. We are product complete, we are ready to sell a product. Um, and then, yeah, down the road, uh, there&#8217;s, there&#8217;s obviously lots of fun and, and interesting things. One, you know, like I wanna be able to, we&#8217;ve talked about, but I wanna be able to, like for you on post status, you&#8217;ve got, you know, dozens or hundreds of posts that already exist and so they will benefit from the Sitewide OG image.</p>\n\n\n\n<p>But wouldn&#8217;t it be nice if you set up a template for a stand, you know, a template that goes with a blog post and click a button and it retroactively goes back and creates OG images for each of those blog posts, stuff like [00:08:00] that. Um, but I kind of think that that&#8217;s one that&#8217;s neat. You know, that&#8217;s icing on the cake.</p>\n\n\n\n<p>That&#8217;s a version 1.1 kind of feature. Um, but also I, I do think we want a little bit of validation. Before that happens. Um, and or if we find ourselves twiddling our thumbs and you&#8217;re like, yeah, for post status, I we really need this, then we can call that validation and I can implement it. But, um, but yeah, it&#8217;s, it&#8217;s flushing out.</p>\n\n\n\n<p>Being featured complete as far as OG images is, is the way to start. And obviously right along with that, it&#8217;s easy enough to create, um, a duplicate image that is square so you can throw it on Instagram or whatever. Yep.</p>\n\n\n\n<p>Um,</p>\n\n\n\n<p>behind the scenes, I think what&#8217;s really cool is. We kept, but after doing the, the first install yesterday on post status, Corey set up a first basic OG image. And then due to caching, we couldn&#8217;t see it. We could verify that it was there by viewing the source. And we knew the image was there, but we couldn&#8217;t see it.</p>\n\n\n\n<p>And just now during our call, uh, Basically what&#8217;s funny is our Slack, private Slack conversation is just us posting post status.com back and forth, back and forth, trying to see the damn thing work and uh, Corey just posted it and adjusted it did just show up and that is one of the most satisfying things ever.</p>\n\n\n\n<p>So yeah, it&#8217;s working.</p>\n\n\n\n<p>[00:09:48] <strong>Cory Miler:</strong> Absolutely. I do think if I just put on the post status as a customer hat, Um, we do a fair amount of content and we want to, we have a significant following on Twitter and in, uh, LinkedIn and I particularly camp out on LinkedIn for a second. It&#8217;s really compelling to me and, and I, a couple years ago, I kind of, okay, I&#8217;ve just accepted invitations over the years.</p>\n\n\n\n<p>Now I&#8217;m gonna see what this is about. I, I really think, especially with Twitter&#8217;s implosion, There&#8217;s a real value back to LinkedIn. Um, even more so than was there. But when I think about post customer for a second, we do a piece of content. We could just do the typical thing, copy, link, paste into Instagram, put a couple of words in it, do that thing.</p>\n\n\n\n<p>Um, I think there&#8217;s value though, that image of like, I was just thinking like we do these weekly roundups with tech and business and like, or make wordpress.com for instance, or make WordPress, um, having like just the headlines. Mm-hmm. You know, like weekly roundup is the tech roundup and then there&#8217;s three or four bullets of like what goes into that.</p>\n\n\n\n<p>So they&#8217;d know a preview of like, oh, I&#8217;m interested, I&#8217;m gonna click through, go to the link. That&#8217;s valuable to me because right now I&#8217;m just gonna take a link post in there. Hope the featured image looks decent, cuz it always pulls that. So, like, to me that&#8217;s value for, for post status. Client hat is like, it&#8217;s just right there.</p>\n\n\n\n<p>Um, I can take a couple steps while I&#8217;m in the post. When I get it done is when I usually put it over there. And now somebody, somebody might schedule that, that&#8217;s cool. However, I kinda like post share it. Sure. Uh, and having that right there with like, I keep going back to my slide content slides I&#8217;ve done for talks and do different things and you know, some header with wall points and, and I think what I worked on the.</p>\n\n\n\n<p>Image templates that you also mentioned was like holding in an actual image to that. Right. That&#8217;s always capture thought to me. But if it&#8217;s there, pulled in, adds a little visual pair pto where it&#8217;s just not like a slide.&nbsp;</p>\n\n\n\n<p>[00:12:20] <strong>Corey Maass:</strong> Yeah. We&#8217;re gonna, it&#8217;s, there&#8217;s, there&#8217;s all these, from a text standpoint, there&#8217;s these, these loops that, or these circles we&#8217;re gonna want to close.</p>\n\n\n\n<p>Um, Because it&#8217;s the, and, and we&#8217;re gonna have to think through the, the workflow, the UI for this, um, which, and it might be as simple as a button, but there might be some setup beforehand. So, we&#8217;ll, we&#8217;ll have to walk through this, but it&#8217;s like, that&#8217;s why I tried to wa I tried to talk this all out. I, I don&#8217;t know, two or three calls ago where I was like, okay, the first step.</p>\n\n\n\n<p>And just a minute ago, in fact, the first step is the OG image. For the site. The second step is the OG image per post, which you&#8217;re gonna have to set up manually. Fine. Like we&#8217;re, we&#8217;re, we&#8217;re building a product. The, uh, one of the, the circles that I want to close for you and for, for the product pretty quickly is you, you&#8217;ve created a blog post or, again, I, I want to keep harping on product too.</p>\n\n\n\n<p>Neither of us are in e-commerce. Particularly, but I, I think this is gonna be a lot of value. Um, but whatever it is, a post of some kind, you up upload a featured image. That featured image gets used in an OMG I M G, an OMG image. We&#8217;ll call &#8217;em that. And then a, and then there&#8217;s an option to replace the featured image, right?</p>\n\n\n\n<p>So it&#8217;s like you&#8217;ve uploaded a temporary featured image that then gets incorporated into a template. And generated as an an OMG image that then replaces the featured image so that the, essentially the headline on the blog post, wherever, however the featured image was used, which like you said, a lot of the time when you share.</p>\n\n\n\n<p>The featured image comes up and I, I, there&#8217;s going to be instances where an OG image is almost moot because the featured image works has two purposes. One is as a featured image, like if you&#8217;re looking at a blog post, and the second is if somebody shares it. You know, Twitter, Facebook, LinkedIn will automatically pull in the first image, usually the featured image, which will be, which will act as the OG image.</p>\n\n\n\n<p>So, so it&#8217;s one asset, multiple purposes. Um, but in both instances, I think that there&#8217;s, you know, when we were first really exploring this, we went and looked at, um, WP Beginner, I think we looked at, um, Prius&#8217;s blog and, and we saw that a bunch of them, or the two, I think the two of those, and a and a bunch of other sites, the featured image, it was almost redundant, but the featured image itself was s shareable because it had the blog post title and stuff in it.</p>\n\n\n\n<p>Um, and I liked what you said a minute ago of like, often, right now you upload a featured image of. You know, business person at laptop looking businessy, you know, it&#8217;s, you know, and it might be a photo of, of somebody. But, but then you go and you share it and you hope that it&#8217;s relevant and you hope that the people will see a title that&#8217;s, that&#8217;s, you know, links the image to the content.</p>\n\n\n\n<p>Whereas we&#8217;re, we&#8217;re talking about is, um, Yeah, is inserting, inserting the title right into the image. So again, it might end up being a little, it might feel redundant, or as you&#8217;re doing the workflow, it feels redundant, but you&#8217;re, you&#8217;re guaranteeing that every image has more value. Um, and then, yeah, here you&#8217;re illustrating the second.</p>\n\n\n\n<p>Loop that we wanna close, which again, feels kind of meta, but it&#8217;s the like, create a blog post, take a picture of the blog post, pull that that picture in, um, to an, an OMG image, and then use that to share, or even as the featured image. So you&#8217;re gonna end up with, and in theory if you do this, uh, A couple if you, if you create a template using the featured image or create an OMG image using the featured image, and then take a picture of it, you could end up with, you know, a picture of a picture of a picture of a picture all the way down, which is kind of fun.</p>\n\n\n\n<p>Anyway. Um, But I think that that&#8217;s, you know, we&#8217;re talking about value and, and a, one of the ways that we achieve value is information. So, headlines, excerpts, bullet points. The other way we, a, we add value is something com is, is by creating a compelling image. And I think at least right now, with the way or a current trend, That achieves, this is exactly what you&#8217;re showing, which is, um, an image of content, but in the context of a device.</p>\n\n\n\n<p>So on a screen or, um, yeah, on a cell phone, on a desktop, that kind of thing. Yeah.&nbsp;</p>\n\n\n\n<p>[00:17:37] <strong>Cory Miler:</strong> Was, uh, just looking at this for a second, thinking about when you&#8217;re saying the featured image, Is how, like I don&#8217;t mm-hmm. Feel like super, uh, energized by what I did here on these two. And I was like, okay, well, you know, when you go, like there&#8217;s, there&#8217;s two parts.</p>\n\n\n\n<p>There&#8217;s the social value, we&#8217;ve already talked about that, but there&#8217;s the search value. Mm-hmm. The image is a piece of content that summarizes mm-hmm. Inspire someone to click through, but like almost go, like that&#8217;s thinking of it as a piece of content that is an image piece of content, but it has valuable stuff on here.</p>\n\n\n\n<p>Um, and like it&#8217;s really that slide format is, you know, everybody takes a picture of really good presentations when they&#8217;ve got slides. Cause they&#8217;re like, this is cool. I don&#8217;t know what this is called in Google, Emmett Google search, Google Images, but, Makes me think when we get to this part, we need to have a caption.</p>\n\n\n\n<p>Mm-hmm. Um, that when the image is out there, there&#8217;s a caption. It seems like, I don&#8217;t know what this is called within Google, the image side of things, but like, it&#8217;s an opportunity I haven&#8217;t seen really explored that I would mm-hmm. That I would like. You&#8217;re, you&#8217;re searching and those, that image side comes up too, um, where there&#8217;s.</p>\n\n\n\n<p>Interesting content summarized for you, like right there, right. Um, that&#8217;s really valuable. So I was trying to think like, okay, how would you really want that to look like if you don&#8217;t have a featured image, which is my problem easily. Um, you know, would we put, even if there&#8217;s, I I was just thinking about&nbsp;</p>\n\n\n\n<p>[00:19:33] <strong>Corey Maass:</strong> that for a minute.</p>\n\n\n\n<p>Well, I like the idea too of, um, And I hadn&#8217;t thought of this before, uh, essentially a default featured image like we are using a logo. So let&#8217;s, like for post status, you&#8217;ve got, you&#8217;ve got the little PS infinity symbol everywhere. Um, but also the ev I think a lot of people associate like the homepage of post status has that image of people at.</p>\n\n\n\n<p>One of the, the, you know, the post status conference years ago, um, that hasn&#8217;t changed in 10 years, excuse me. Um, but, uh, you know, but that&#8217;s, it&#8217;s now, it&#8217;s now it&#8217;s a bit of your branding, right? Like that&#8217;s now a photo that, that people might actually associate with post status. So if that was, um, if that was the standard featured I, the default featured image that got pulled in everywhere, you know, even if, like one of the things that we&#8217;ve talked about is.</p>\n\n\n\n<p>Image, uh, is, is tr image treatments. So it&#8217;s like as a ba if the background was two women chatting with that was, you know, converted to black and white and had, and had an orange filter over the top. And so it was just, again, these are, these are all of the things that humans find compelling, even if it&#8217;s not obvious or.</p>\n\n\n\n<p>Upfront or obtuse. Um, you know, having, having two eyes and a s and a smile is known to be compelling to humans at a subconscious level. So it&#8217;s stuff like that that, um, these little simple effects that we can start to explore down the road, or, I mean soon, sooner than later, but it&#8217;s like, as we&#8217;re going along, as we&#8217;re learning about this stuff, we can go, oh, right, let&#8217;s just add a default option for, you know, these background treatments.</p>\n\n\n\n<p>Yeah, just looking at seeing.&nbsp;</p>\n\n\n\n<p>[00:21:35] <strong>Cory Miler:</strong> Mm-hmm. Some publications like, obviously these&nbsp;</p>\n\n\n\n<p>[00:21:38] <strong>Corey Maass:</strong> are,</p>\n\n\n\n<p>it&#8217;s interesting. Yeah. I mean these are, you know, most of these featured image as a background. Yeah. Title pulled in and selected. Put this at the top of the bottom, and some of them have an excerpt below the title. That&#8217;s the whole thing. You know, and so it&#8217;s, it&#8217;s up to the authors or you know, publishers since this is New York Times to find compelling images.</p>\n\n\n\n<p>Yeah. I mean, and so un you know, we&#8217;ve talked about that at various points. That&#8217;s not a problem we&#8217;re choosing to solve right now. Um, so as the publisher of a given blog, you still have to go find that compelling image. But once you do, we give you all these options to do something with it. And what I really like is we&#8217;re defining a, a process.</p>\n\n\n\n<p>So it&#8217;s once you, yeah, that&#8217;s the picture. Um, once you essentially define your style, So it&#8217;s like I, I, I&#8217;ve talked about, I&#8217;m a musician as a hobby, and I actually have a, a new track coming out tomorrow. And so I&#8217;ve put that on my band camp and, um, you know, for every track that I finish, every re you know, release that I do, I now go into Canva.</p>\n\n\n\n<p>I hit copy or duplicate from the last. Release image that I created. Yeah. And I changed the title, the text, and I changed the image. But that way the font is always the same. The font size is always the same. The colors, font, colors are always the same. So that&#8217;s what we&#8217;re talking about here is like you creating exactly what you&#8217;re doing.</p>\n\n\n\n<p>Say this, you created this and saved this for a first blog post. The idea would be then to say, save this as the default. Blog post featured image template. So then you go into, you, you say word in WordPress, you say add new, you write a new blog post. When you jump in to OMG I M G, this is gonna come up first.</p>\n\n\n\n<p>Do you want it, you know, right away create your, you know, A an OMG image from your saved default blog post OMG image template, and you say, yes. And it sucks in the headline, it sucks in the featured image and you might go in and tweak it a little bit. You know, like if the headline&#8217;s really long or it&#8217;s more fun to have like, just like you showed on that New York Times Instagram a second ago.</p>\n\n\n\n<p>Depending on the image, you might want the title at the top or the bottom, but most of the work is done with you done for you. You tweak a couple of things, you know, move a couple of sliders and then you&#8217;re good. Um, I&#8217;m excited about that. I think that that&#8217;s gonna be neat. I think that it&#8217;s going to be, it&#8217;s one of those things that</p>\n\n\n\n<p>one of the challenges is going to be for, because it, because they are associated with publishing. It&#8217;s. It&#8217;s a, it&#8217;s a hurry up and wait kind of product. That&#8217;s one of the only things, red flags that I have. So it&#8217;s like, if there&#8217;s a button for creating these images for all existing posts, that&#8217;s huge value.</p>\n\n\n\n<p>Right? But this is also one of those, like you install it. And then you have to go write a blog post. And that&#8217;s why I&#8217;m really glad that we&#8217;re creating a sitewide OG image. We can create sitewide social images, you know? But if you don&#8217;t have, if you&#8217;re not gonna write a blog post until tomorrow, you don&#8217;t have a reason to use the plugin until tomorrow.</p>\n\n\n\n<p>Now we talked&nbsp;</p>\n\n\n\n<p>[00:25:32] <strong>Cory Miler:</strong> about assigning. Mm-hmm. You could go back to a previous post. Mm-hmm. So I wonder if there&#8217;s a thought where we put a preview of a post, you know, To get &#8217;em started or&nbsp;</p>\n\n\n\n<p>[00:25:43] <strong>Corey Maass:</strong> something. Mm, that&#8217;s awesome. So what I took,&nbsp;</p>\n\n\n\n<p>[00:25:47] <strong>Cory Miler:</strong> one of the big things I took for that is the fact that people do are in the rhythm of doing a featured image.</p>\n\n\n\n<p>I think I defaulted to these templates because I don&#8217;t. Mm-hmm. That&#8217;s my mindset. So I just was trying to play for a second. I go, I think these things still apply, you know? Oh, for sure. Image on left. Image on right image as background with opa. I was trying to find an opacity here, but, um, yeah, and then you want headline, like pin on the photo.</p>\n\n\n\n<p>Do you want it up here?&nbsp;</p>\n\n\n\n<p>[00:26:18] <strong>Corey Maass:</strong> Right. You don&#8217;t want it, you wouldn&#8217;t want it to cover a person&#8217;s face, so you&#8217;d move it to the bottom left. But if the image has people on the bottom, then you want it at the top or whatever. So, yeah.</p>\n\n\n\n<p>Yeah, I&#8217;ve, you know, as I&#8217;ve been developing, so I, I did a, for anybody listening to this who didn&#8217;t watch the last one, go watch the last one. Um, because we did a, a little walkthrough, um, and, and showed my initial approach to the product specifically, we are not, Canva, we are not drag and drop like I and I at various points.</p>\n\n\n\n<p>Like the developer in me wants to take this to the obvious extreme. Um, and, and that in many respects is Canva, which is drag and drop and, and infinite options. And. And I think, I mean, part of that, it it part of, I don&#8217;t want to go down that path because it&#8217;s just a hell of a lot of work and I want to just get this damn thing out the door.</p>\n\n\n\n<p>But I also do think objectively that I, at least for now, prefer this approach because of what we&#8217;re talking about. Like if you want to go, if you wanna be in Photoshop, be in Photoshop. If you don&#8217;t, if you&#8217;re, if that&#8217;s a bit too much. Go jump into Canva, get creative, go wild. But this is, to me is meant to be quick and dirty as underselling it, but you know, quick and useful.</p>\n\n\n\n<p>It&#8217;s just another step in your workflow. And that was, which is kind of the conclusion we came to out of Crop Express was like, you&#8217;ve got this workflow, here&#8217;s a pain point in your process, but it shouldn&#8217;t be the entire process. Yeah.&nbsp;</p>\n\n\n\n<p>[00:28:14] <strong>Cory Miler:</strong> Well, just like playing with this, I go, okay, I get it. You know, put it in the background.</p>\n\n\n\n<p>We&#8217;ve got left and we&#8217;ll have a right version of all this stuff. Yeah. But there&#8217;s an option of like set featured image as background. Then they can play with the color options you&#8217;ve given them. And I mean, I call that pretty good. Yeah. If, if you&#8217;re in the, if you just want headline and photo. This is an option if you want, I think, which is gonna be even BA could be even better, is like there&#8217;s a piece of content, like&nbsp;</p>\n\n\n\n<p>[00:28:53] <strong>Corey Maass:</strong> mm-hmm.</p>\n\n\n\n<p>Yeah. Again, I think that that&#8217;s like, that&#8217;s version 1.2, right? Where we, you know, one of the things that got us really jazzed talking about this early on was you brought up slides. Um, we&#8217;ve talked a few times about, um, drop, uh, poll quotes, drop quotes, block quotes, whatever you call &#8217;em. And so, you know, I&#8217;m excited about, again, version 1.2 or whatever, where.</p>\n\n\n\n<p>We actually have a little wizard that says like, here are the quotes from the page. Ah, and this is where we bring in ai and that&#8217;s why we, we make 2 million. Um, but, you know, throw this content at, at our integration with ai and it come and it comes back with three different bullet point summaries of the content.</p>\n\n\n\n<p>And then we, as we automatically just drop that content in. There you go. We figured out the AI integration. I knew it was just a matter of time.</p>\n\n\n\n<p>[00:30:10] <strong>Cory Miler:</strong> I&#8217;m using in a service called podway. Test it out. Yep. Um,</p>\n\n\n\n<p>I can see how something like this&nbsp;</p>\n\n\n\n<p>[00:30:24] <strong>Corey Maass:</strong> would look. Yep. Exactly. And this is where, again, like once, once a, once a template is defined, cuz these are all placeholders, right? So you&#8217;ve got a placeholder for the photo, the, the, the image of. The content, you&#8217;ve got a placeholder for the title, and then you&#8217;ve got a placeholder for a three bullet point summary.</p>\n\n\n\n<p>Now either you can write that summary or again, we could have something write it for you, or you could have something write it for you. Um, but I love the idea. So one of the things that, so I&#8217;ve been playing with chat g p t, like everybody else for one of my products. I went into chatGPT, and I said, Write 20, um, 20 tweets.</p>\n\n\n\n<p>Yeah. Broadly speaking, you know, for the topic of my product. And then I said, write 20 tweets that target creatives. Specific to my product and then business people, you know? And so it was very similar content, but slightly different. And so in the end, instead of 20 tweets over and over again, I wound up with 60 tweets.</p>\n\n\n\n<p>And so I scheduled them one a day. Right. And so I&#8217;m picturing something very similar here where it&#8217;s like, you know, If you, if you had your featured image for the, for the, you know, the, the one you&#8217;re doing in right in front of us, you&#8217;ve got three bullet points. You&#8217;ve got a title, you&#8217;ve got a featured image.</p>\n\n\n\n<p>Right. But like this is just one and. In, in our world now, you can&#8217;t, you&#8217;re never going to, or you shouldn&#8217;t, uh, just tweet about something once. You don&#8217;t write a blog post, tweet about it, and then forget about it. You need a long tail of content to be able to share, right? And so ideally, Not only would you say generate, like, say if this, what&#8217;s in front of us right now is, is your, you know, saved template.</p>\n\n\n\n<p>Not only would you say generate this, but you would say, generate five variations of this. And you, I, this is again where I think I AI is a perfect candidate. You&#8217;d say, you know, Hey, chatGpT, here&#8217;s my article. Summarize it. With three bullet points in five different ways, and then we suck all that in. And then picture a page that just has this template with the different content.</p>\n\n\n\n<p>You know, so there&#8217;s six versions right down, and you, and you go, which ones do you wanted to use? Bang, bang, bang. Save them all, you know, and then schedule them all. And that way, and you&#8217;ve got one that goes out each day or you do two days, four days, eight days. 16 days. So again, you get this long tail of content that isn&#8217;t identical but is all relevant.</p>\n\n\n\n<p>That&#8217;s gonna be huge.</p>\n\n\n\n<p>Yeah. Assuming that people are actually promoting their content the way they&#8217;re supposed to. Right.&nbsp;</p>\n\n\n\n<p>[00:33:33] <strong>Cory Miler:</strong> Which is, is is part of the challenge.&nbsp;</p>\n\n\n\n<p>[00:33:37] <strong>Corey Maass:</strong> Yeah. Yeah. I think that I, you know, your emphasis we&#8217;re on call 15, right? So your emphasis throughout all of our conversations on agencies and on professionals, teams, et cetera, while it&#8217;s not, I&#8217;m very much like the solopreneur in entrepreneur.</p>\n\n\n\n<p>Whatever other funny way you wanna say the preneur word. Um, but I think small, I build small products for myself and so other people in my shoes. And it&#8217;s not at all that I won&#8217;t use this, but again, I, you know, I&#8217;m, I&#8217;m working with clients that have dedicated social media managers. They&#8217;re the target agencies that are doing full-blown marketing campaigns.</p>\n\n\n\n<p>They&#8217;re the, they&#8217;re the target because again, it&#8217;s these, this long tail of content that that&#8217;s going to require variation, that are going to benefit the most from this. Yeah.&nbsp;</p>\n\n\n\n<p>[00:34:49] <strong>Cory Miler:</strong> Yeah. I&#8217;ve been thinking really much in that regard as like, okay, what would I want? How do I, it&#8217;s like, This slide for that post, you know, something like this, like a treatment over here doesn&#8217;t take up too much space for the the brand, but at least brands it.</p>\n\n\n\n<p>Yep. This is a post status thing, and then this is really informative content like mm-hmm. It&#8217;s really that summary. Too long, didn&#8217;t read. Yeah. Take this for any post. It&#8217;s like you said, you can throw that into Chatgpt and get a bunch of these things, but like, yeah. I don&#8217;t know if I worked on something like that, but I go, this case study warrants a lot like headline.</p>\n\n\n\n<p>This is a roundup we do about what&#8217;s happening in WordPress core based. Basically, she has these every, every week. These are the things you would just pull from it. Three things you need to know. Have chat. ChatGPT, help you with that if you want, and then to put it here and then you go, okay. What I would normally do is say, save this as an image, and I&#8217;d go over to what if I should do that real quick.</p>\n\n\n\n<p>Uh, there we go.</p>\n\n\n\n<p>Stay right there. I need to work on the image, image size, of course, but then you&#8217;re just putting in alt text. I dunno why the logo didn&#8217;t show up. Oh, it&#8217;s right there. So you know, if you think about it, right there. You&#8217;re okay. You&#8217;re, you&#8217;re a member of Post, so select the idea is you can look at this and see it a glance, some of the things going mm-hmm.</p>\n\n\n\n<p>And then decide to click on. That&#8217;s value for the social right there. We&#8217;ve already mm-hmm. We&#8217;ve already talked about that, I think, but I think philosophically, I&#8217;m shaping this a little bit up and my mind is, it&#8217;s the too long, didn&#8217;t read now. Mm-hmm. You get this and whatever this. Uh, Google image. Like what would be example where if I, here, lemme see how to change a light pole, light switch.</p>\n\n\n\n<p>Something. You, you know what I&#8217;m saying? Like this, people also ask, there&#8217;s some, uh, search criteria. They come like this, you know, the video content that shows up. There&#8217;s sometimes, I guess it&#8217;s more pinteresty type stuff like,</p>\n\n\n\n<p>Like of a better word, video show up. But isn&#8217;t there a section where images show up sometimes?&nbsp;</p>\n\n\n\n<p>[00:38:08] <strong>Corey Maass:</strong> Yeah. Search for a product, search for, um, say like that. So, um, there you go.</p>\n\n\n\n<p>So it&#8217;s like in shopping is what I found. Okay. This one. So now hold on, hold on. Um, click and start dragging one of those images like this. Yeah. Did it? Yeah. I just discovered this this morning. So you can drag an image into Google Lens to do, uh, to find out more meta information about. That image and whatnot.</p>\n\n\n\n<p>Oh, really? Which I think is, so right now it&#8217;s sort of a hidden feature, but I think that that&#8217;s coming down the road too. But it&#8217;s like, you know, Google, pretty much any, any of these services now can do image parsing, or excuse me, text parsing from images. So they&#8217;re also going to be reading these images, which is really, really cool.</p>\n\n\n\n<p>Regardless of what alt text you might provide. Do you know what this&nbsp;</p>\n\n\n\n<p>[00:39:20] <strong>Cory Miler:</strong> is called in Google? Is this&nbsp;</p>\n\n\n\n<p>[00:39:21] <strong>Corey Maass:</strong> og? Uh, I would assume so.</p>\n\n\n\n<p>[00:39:34] <strong>Cory Miler:</strong> Img, but it&#8217;s 92 by 92.</p>\n\n\n\n<p>Anyway, I, I felt like there was, it&#8217;s, it&#8217;s more of the Pinterest thought. You know, it&#8217;s like you go, oh, office.&nbsp;</p>\n\n\n\n<p>So when we think about the blog post stuff, This is pulling something here. It&#8217;s gotta be OG based, right? That&#8217;s what I&#8217;m trying to find. Say look at that six is, and then give it a little icon.</p>\n\n\n\n<p>[00:40:43] <strong>Corey Maass:</strong> Be honest. There&#8217;s no direct way to make your images show up, but somebody has to have figured this out.&nbsp;</p>\n\n\n\n<p>[00:40:48] <strong>Cory Miler:</strong> Yeah. Because if we can get the specs we haven&#8217;t, we give the client a per a potential to let that show up. Yeah.</p>\n\n\n\n<p>Because man, that&#8217;s compelling. I don&#8217;t know. Like this is Zoom ideas. So look at all these images in this display. There we go. See this. Well, I don&#8217;t know how they&#8217;re getting all that. This, this search comes up sometimes. See this? Mm-hmm. That&#8217;s what we&#8217;re unlocking. Whatever this is, we&#8217;ll figure it out and say This is what you want.</p>\n\n\n\n<p>This is what it&#8217;s called. And um, OMG mg does it? Yep. Do the possibility to do it, because I think this is where you start going into, I wish I had an idea for this, but I mean, the PINTERESTY type content. Mm-hmm. Recipes.&nbsp;</p>\n\n\n\n<p>[00:41:52] <strong>Corey Maass:</strong> Oh, there you go.&nbsp;</p>\n\n\n\n<p>All of these are really interesting, um, personality tests too, to see what you come up with on the spot. No, I&nbsp;</p>\n\n\n\n<p>[00:42:08] <strong>Cory Miler:</strong> was like, they&#8217;re gonna know I&#8217;ve been liking an celery recipes,&nbsp;</p>\n\n\n\n<p>[00:42:14] <strong>Corey Maass:</strong> but see they as one does.</p>\n\n\n\n<p>Yeah, so there&#8217;s, there&#8217;s an I that that image is right there. How do we,</p>\n\n\n\n<p>and it looks like&nbsp;</p>\n\n\n\n<p>[00:42:29] <strong>Cory Miler:</strong> it&#8217;s 92 by 92 or that ratio, whatever, that Nope, that&#8217;s not.&nbsp;</p>\n\n\n\n<p>[00:42:34] <strong>Corey Maass:</strong> That&#8217;s not it. It&#8217;s a slightly rectangle, but it&#8217;s not. And so what&#8217;s, what would be interesting is, um, view the view the actual source rather than inspecting. So just right click anywhere and say view, source</p>\n\n\n\n<p>and search for OG colon image.</p>\n\n\n\n<p>Keep typing image. It&#8217;ll pop up. Oh, sorry.&nbsp;</p>\n\n\n\n<p>[00:43:00] <strong>Cory Miler:</strong> Hey, so this is interesting. Is this the action type&nbsp;</p>\n\n\n\n<p>[00:43:04] <strong>Corey Maass:</strong> content so that, that you&#8217;d populate by like description you&#8217;d do in Yost and we certainly could do more. Um, like if you don&#8217;t want to have Yost installed since we&#8217;re already adding header, we could add more headers.</p>\n\n\n\n<p>But again, not I, I don&#8217;t want to chase that if we can help it.</p>\n\n\n\n<p>Same. Go to this. Yeah.</p>\n\n\n\n<p>You missed a two on the end, so it re cropped it. Oh, interesting.&nbsp;</p>\n\n\n\n<p>[00:43:52] <strong>Cory Miler:</strong> So it&#8217;s live&nbsp;</p>\n\n\n\n<p>[00:43:52] <strong>Corey Maass:</strong> cropping, that&#8217;s all it&#8217;s doing is Google. So the ogn, yeah. So it&#8217;s right. So, um, but it&#8217;s, but where is it? Why, why does it take the square? Because it doesn&#8217;t necessarily know, I mean, not all these websites are gonna have that auto cropping, right?</p>\n\n\n\n<p>So, so somewhere too, it&#8217;s saying there&#8217;s a square image. Let&#8217;s, let&#8217;s throw that into the search results. Look at this. They&#8217;re, they&#8217;re pulling the Twitter card too. Mm-hmm. It&#8217;s&nbsp;</p>\n\n\n\n<p>[00:44:24] <strong>Cory Miler:</strong> already baked in, I think. Yep. Interesting. I I just go, man. Um,</p>\n\n\n\n<p>you know, some of this, like, these are appealing photos for sure, but I go, if you can put some piece of content right here, That&#8217;s helpful. Yep.&nbsp;</p>\n\n\n\n<p>[00:44:52] <strong>Corey Maass:</strong> Yeah, I mean, and that&#8217;s the presumption, is that, so actually before you jump, um, go click on the one you just talked about or ultimate click on Ultimate, you know, any of these with that, that has a title, right?</p>\n\n\n\n<p>So go to that website. Oh, it&#8217;s you. That might be YouTube. That&#8217;s not gonna help us.</p>\n\n\n\n<p>So they&#8217;ve got these big pictures, but I, what I&#8217;m trying to determine is if they have, like they&#8217;ve explicitly set an OG image that has this extra value in it.</p>\n\n\n\n<p>Yeah, so they&#8217;ve got two two, oops. Oh, that&#8217;s fine. I&#8217;m sure the first one just gets sucked in</p>\n\n\n\n<p>the article.</p>\n\n\n\n<p>Yeah, I, so we&#8217;ll do a little research. We&#8217;ll find one of these, find a good example of this, and then see if we can&#8217;t decipher, you know, and or, um, do some more Googling to find out a, you know, when and what is what, when, and why does Google pull in an image in their actual search results? And, and not others.</p>\n\n\n\n<p>You know, is it, is it just an OG image and they&#8217;re cropping? It, is it, is there some other tag we don&#8217;t know about,</p>\n\n\n\n<p>but I&#8217;m, I&#8217;m anxious to get. This like when the first couple of templates done and out the door and in front of people, because I think it&#8217;s, you know, kind of like how your brain has said, oh, but what about this? And then, oh, I found this other thing over here. Like, it&#8217;s also, you know, but we started with, here&#8217;s what post status is.</p>\n\n\n\n<p>Branding already looks like we want recreate that as a starting point. Um, other people are gonna come to us. Vva from FIUs and Sayed from WP Beginner and whoever are gonna be like, okay, but you know, we need a way to accommodate our, our branding or the way the treatments we&#8217;ve already decided on in Canva if we&#8217;re gonna, you know, because we want our images to be pretty consistent, you know, across all socials forever.</p>\n\n\n\n<p>You know, how do we create recreate hours? And it&#8217;s like, oh, okay, so we need the option to do background treatments or turn the whole thing 90 degrees, whatever. It&#8217;s, you know.</p>\n\n\n\n<p>Yep. But that means that one Corey needs to finish the thing once and for all, and then two. Yeah, we wanna start getting the, the marketing asset aspects, assets out there, um, shopping cart finalized and stuff like that. Cuz it&#8217;s like, even if we get some beta testers, um, and we give them licenses or let them sign up for free or discount or something, you know, first year free, whatever it is, like we wanna get that sorted out.</p>\n\n\n\n<p>[00:48:30] <strong>Cory Miler:</strong> Started with that yesterday and we didn&#8217;t need it. Didn&#8217;t get it finished. So I&#8217;ve got my screen up here where I started it, the logo, and then the website is part two. Uh, going back&nbsp;</p>\n\n\n\n<p>[00:48:43] <strong>Corey Maass:</strong> to pause, squeeze, I started, um, flushing out just putting rectangles on a page for the homepage of O M G I M g.co. So it&#8217;s quite literally just boxes of color, but ready to have, [00:49:00] um, content float into it.</p>\n\n\n\n<p>Okay. All right. I&#8217;m gonna try to&nbsp;</p>\n\n\n\n<p>[00:49:08] <strong>Cory Miler:</strong> carve off some time. Gotta get the logo going in process and then, uh, the website stuff. So&nbsp;</p>\n\n\n\n<p>[00:49:16] <strong>Corey Maass:</strong> I think, yeah, it&#8217;s like I&#8217;m, I think standard, standard formula, you know, compelling tagline, value prop, a buy now button, you know, three icons with. With compelling value, props good enough.</p>\n\n\n\n<p>I mean, that&#8217;s all we need to start, so,</p>\n\n\n\n<p>okay. Yeah. If&nbsp;</p>\n\n\n\n<p>[00:49:45] <strong>Cory Miler:</strong> I have an hour, um, I can get that cranked, cranked enough to start flushing out our page.</p>\n\n\n\n<p>[00:49:57] <strong>Corey Maass:</strong> Simpler is better. So, you know, feel free to delete or [00:50:00] hide rows. Like yeah, but just enough that we, it looks like something, um, like&nbsp;</p>\n\n\n\n<p>[00:50:08] <strong>Cory Miler:</strong> here a box headline, what it does for you, how benefits you, three things show up in social.</p>\n\n\n\n<p>Yeah. And then features are like the nuts and bolts things and Yeah. Pricing. Yep. Yep.&nbsp;</p>\n\n\n\n<p>[00:50:31] <strong>Corey Maass:</strong> And yeah, and I&#8217;ve been waiting to do, like, there&#8217;s, there&#8217;s, at this point I&#8217;ve used e d D enough that I&#8217;ve got standard styles that I copy from site to site and ways to set up, like being able to sign in and manage your subscription kind of thing.</p>\n\n\n\n<p>Um, obviously they make it very easy, but I have a way that I like to lay things out. Um, but I&#8217;ve been waiting to do that. We, we need a logo, which helps us define a style and colors. To then carry that throughout the rest of the site. So our branding is somewhat consistent. So I&#8217;ve, I&#8217;ve been holding off on that.</p>\n\n\n\n<p>Um, you know, but all that takes an afternoon once we&#8217;ve got, yeah. The general look and feel</p>\n\n\n\n<p>back in our&nbsp;</p>\n\n\n\n<p>[00:51:16] <strong>Cory Miler:</strong> conversation to, uh, put into there, do we want to go, I know we talked about this in Slack. Do we want to go with a. The eighties funky thought.&nbsp;</p>\n\n\n\n<p>[00:51:32] <strong>Corey Maass:</strong> I, I mean, because of the OMG part, like I definitely think we want something fun. Um, but I don&#8217;t have any religion around how the rest of it, since I&#8217;m not creating the logo, like I&#8217;d rather.</p>\n\n\n\n<p>Anybody grabs, whatever, whatever comes to their mind, like, that&#8217;s why we pay them. It&#8217;s like when I get on Fiver, I hire five people to do logos because I&#8217;m, I&#8217;m honestly paying them, not so much to create a logo, but to apply their own thinking to, you know, here&#8217;s a, here&#8217;s the color palette that, that jumps out at me when you tell me what the, the product does kind of thing.</p>\n\n\n\n<p>So</p>\n\n\n\n<p>idea is,</p>\n\n\n\n<p>[00:52:23] <strong>Cory Miler:</strong> It&#8217;s kind of almost like a Mac app. You know, you&#8217;re, it&#8217;s the thing that&#8217;s solid that helps you look, look good and do things faster. Yep. Um, with images, Paula Showcase, I&#8217;m looking at some of these icons in my tray&nbsp;</p>\n\n\n\n<p>[00:52:44] <strong>Corey Maass:</strong> here.</p>\n\n\n\n<p>Yeah, I started walking through, um, uh, product hunt, uh, um, featured, uh, uh, what was it? Make logo.ai. And I started plugging things in to kind of, and they, they want to charge you for the actual logos, but it was kind of neat that they came up, they present you with a bunch of concepts and so it was like, um, A magic wand over an image.</p>\n\n\n\n<p>So it&#8217;s like image generation or, um, cuz I, in the description I put in sharing and I put in, um, open graph image, you know, image generation. And so it was like, you know, do you want. Uh, a canvas or the, you know, the, the thing that the artist uses to put the paint on, um, the palette. I was like, eh, you know, do you want a magic wand to poof, an image appears?</p>\n\n\n\n<p>Eh, that&#8217;s getting closer cuz I want it to be that easy. You know? Do you want an icon of, they had one that was like, um, you know, a picture like a. A fake painting that had people all around it, like, you&#8217;re sharing that? I was like, no, definitely not. That&#8217;s terrible. You know, so it&#8217;s like these concepts of, um, of what we want, want it to represent.</p>\n\n\n\n<p>To me it&#8217;s image generation, because that&#8217;s part of, that&#8217;s the, if you&#8217;ve got a workflow in the middle, you know, you&#8217;ve gotta write words, but you&#8217;ve also gotta generate images. And to me, that&#8217;s the problem we&#8217;re solving. But that&#8217;s also, that&#8217;s, that&#8217;s feature not benefit. Yeah. I,&nbsp;</p>\n\n\n\n<p>[00:54:36] <strong>Cory Miler:</strong> I&#8217;m looking to pro probably kind to get some thoughts here to put into the designer.</p>\n\n\n\n<p>Okay. I think I&#8217;ve got enough here. I&#8217;ll riff on. Cool.</p>\n\n\n\n<p>Okay.[00:55:00]&nbsp;</p>\n\n\n\n<p>All right,&nbsp;</p>\n\n\n\n<p>[00:55:00] <strong>Corey Maass:</strong> man. I, I just need a logo that looks really good because I&#8217;m gonna have a t-shirt made for Word camp us.&nbsp;</p>\n\n\n\n<p>[00:55:06] <strong>Cory Miler:</strong> Yeah. Oh, that, that&#8217;s even better. Um,</p>\n\n\n\n<p>it&#8217;s almost like, huh? Okay. How would we want that to lick on the shirt?&nbsp;</p>\n\n\n\n<p>[00:55:19] <strong>Corey Maass:</strong> That actually helps me frame it to me, to me again, because of. Because of the OMG in the name, and we talked about going all, all caps, it&#8217;s like not a rainbow, but gradient of bright colors, you know, big fun font. Like I don&#8217;t want it to be goofy.</p>\n\n\n\n<p>I don&#8217;t want it to be clown like, um, and that&#8217;s why I guess I&#8217;m shying away too from. Um, actually your, your MAC icons concept is, is a good idea of like, over to me. A lot of them are overwrought, three-dimensional, big drop shadow kind of thing, and it&#8217;s like, eh, I want, I want something, you know, more fun than that.</p>\n\n\n\n<p>Like if you, if you were gonna have a magic wand, like you&#8217;d want a bend in it, you&#8217;d want it to be almost cartoon-like or something. But then it&#8217;s, but then it&#8217;s not professional enough, so I don&#8217;t know. I don&#8217;t know. Uh,</p>\n\n\n\n<p>it has to, it has to look good on your baseball cap there and it&#8217;s gotta go look good on my chest here. Yeah.</p>\n\n\n\n<p>The swag is more important than anything, let&#8217;s be honest. It is&nbsp;</p>\n\n\n\n<p>[00:56:45] <strong>Cory Miler:</strong> a good frame for me though, is like, how would that pop and how would we want that to look?</p>\n\n\n\n<p>[00:56:54] <strong>Corey Maass:</strong> Yeah.</p>\n\n\n\n<p>All right. Let&#8217;s be done today. Um, I should have an update for you soon this week. Um, addressing all the, um, the bugs and extra bells and whistles that we talked about. Um, And in particular, I want to, like we said, I want to cut everything over to we&#8217;ve, we&#8217;ve got the sitewide handled, we need the post per post handled, like you said today.</p>\n\n\n\n<p>Um, and then plug in a logo, plug in a little, uh, style once we&#8217;ve got a style defined and then the plug-ins, I think ready to share. So that&#8217;ll be cool.</p>\n\n\n\n<p>Okay. Cool, man. Keep me posted. All right. Well thank.</p>\n<p>This article was published at Post Status — the community for WordPress professionals.</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 Jun 2023 23:17:16 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:6:\"Emilee\";s: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:77:\"Do The Woo Community: Builder Tips from WordCamp Europe 2023 Speakers, Part 2\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"https://dothewoo.io/?p=75230\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"https://dothewoo.io/wordcamp-europe-and-speak-session-tips/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:399:\"<p>The second in our series where we hear more about the sessions and tips from WordCamp Europe 2023 speakers. </p>\n<p>&gt;&gt; The post <a rel=\"nofollow\" href=\"https://dothewoo.io/wordcamp-europe-and-speak-session-tips/\">Builder Tips from WordCamp Europe 2023 Speakers, Part 2</a> appeared first on <a rel=\"nofollow\" href=\"https://dothewoo.io\">Do the Woo - a WooCommerce Builder Community</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, 01 Jun 2023 07: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:5:\"BobWP\";s: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:56:\"WordPress.org blog: People of WordPress: Stefano Cassone\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=15030\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"https://wordpress.org/news/2023/05/people-of-wordpress-stefano-cassone/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:13126:\"<p><strong>With <a href=\"https://europe.wordcamp.org/2023/\">WordCamp Europe 2023</a> in June, we feature Stefano Cassone, a web designer, photographer and volunteer translator, who believes his life has been transformed through WordPress and its community.</strong></p>\n\n\n\n<p><strong>The&nbsp;<em>People of WordPress</em>&nbsp;series shares inspiring stories of how people’s lives can change for the better through WordPress and its global community of contributors.</strong></p>\n\n\n\n<img width=\"1024\" height=\"535\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/05/stefano-featured-img.jpg?resize=1024%2C535&ssl=1\" alt=\"Stefano with a laptop covered in WordPress event stickers\" class=\"wp-image-15027\" />Stefano with a laptop covered in WordPress event stickers\n\n\n\n<p>Stefano has always been fascinated by the internet. His initial learning in the 1990s was through joining friends at a local pub where they could explore how websites were structured and learn to use chat software.</p>\n\n\n\n<p>This led to Stefano creating websites for fun in 1998, and his first paid job was for the shop where he bought comics. He turned to content management systems (CMS) to speed up the creation process for sites, but found he needed more documentation to really understand their capabilities. Then he read a magazine article about WordPress, a CMS which was being used to make incredible blog sites, and was supported by an international community and documentation. Over time, Stefano started using that documentation to work on websites in Italian.</p>\n\n\n\n<h2 class=\"wp-block-heading\">WordPress provides a life-changing turning point&nbsp;</h2>\n\n\n\n<p>Stefano describes himself as an introvert. He found that WordPress helped him to work from home, to develop his skills and the quality of what he could produce, as well as build his self-confidence.&nbsp;</p>\n\n\n\n<p>A catalyst for the turning point in his life and career was the discovery of an area for events on the WordPress dashboard. On this page, he found a forthcoming local meetup in Rome.&nbsp;</p>\n\n\n\n<p>In November 2017, Stefano took the step to go along to this event, led by a curiosity of what he might discover and intrigued by how a software could be supported by a vast community. The topic at the event was on <a href=\"https://make.wordpress.org/cli/\">WP-CLI</a>, a command line interface for WordPress. He recalled that he felt outside his comfort zone as he did not regard himself as a developer and at that point, had only used the software for simple jobs. He wondered whether using the software as his only CMS was going to be a long term option and if these meetups were suitable for him.</p>\n\n\n\n<p>At the meetup, people were talking about a forthcoming event, called WordCamp Rome. Through his research, he saw that there was a lot of enthusiasm for this event. This intrigued him and he wondered if it would show him that he could have a career using the software after all.</p>\n\n\n\n<p>Unfamiliar with WordCamps, Stefano found it difficult at first to know what he could go to and how to get involved, but he persevered and attended the event.</p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p>&#8220;The WordCamp was a great discovery: talks at all levels from basic to those for developers, advanced and very advanced. I was immediately struck by the enthusiasm of the volunteers. It was an environment where I felt very comfortable, so much so, that I asked myself how I could participate in some WordCamps.&#8221;</p>\n<cite>Stefano Cassone</cite></blockquote>\n\n\n\n<p>From this event, Stefano was encouraged by those he met to consider applying as a volunteer for a future WordCamp.</p>\n\n\n\n<p>There was also much talk at the event about ‘Slack’. It was new to Stefano, but with help from those attending, he signed up for the messaging tool Slack, used by the WordPress community. He was still unsure how he could contribute, and if he would be welcome.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Joining thousands of volunteer translators of WordPress</h3>\n\n\n\n<img width=\"800\" height=\"600\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/05/stefano-wc-italia-2022.jpg?resize=800%2C600&ssl=1\" alt=\"Italian General Translation Editors at WordPress Italia 2022\" class=\"wp-image-15028\" />Italian General Translation Editors at WordPress Italia 2022\n\n\n\n<p>Stefano took the plunge and was excited to find there was a team called Polyglots. In this team, people from across the world<a href=\"https://make.wordpress.org/polyglots/\"> translate the WordPress software into many different languages</a>. He started with translating a theme he was using in his work. Little by little he became more interested in plugins and attended meetings with other translators. He offered his skills to translate into Italian themes and plugins in general and as his experience grew, he took on the volunteer role of a General Translation Editor. He also took care of the translation into Italian of the WordPress Core. More recently he has joined the group of translators for the <a href=\"https://make.wordpress.org/docs/handbook/helphub/\">HelpHub</a>, which is part of the <a href=\"https://make.wordpress.org/docs/\">WordPress documentation</a> system.</p>\n\n\n\n<p>He said: “Participating in the WordPress Slack has helped me enormously: I’ve met a lot of people who I now call friends. Moreover, by translating, I learned a lot about how themes and plugins work.</p>\n\n\n\n<p>“It&#8217;s a great way to contribute to WordPress, especially for someone like me who is not a developer. Translating also allows me to fully understand how WordPress works.&#8221; </p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p>&#8220;I always say that translating themes, plugins, and the Core software is the best way to learn WordPress, better than any course or book.”</p>\n<cite>Stefano Cassone</cite></blockquote>\n\n\n\n<h3 class=\"wp-block-heading\">Sharing skills to support Open Source WordPress</h3>\n\n\n\n<img width=\"667\" height=\"500\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/05/stefano-at-WC-2019.jpg?resize=667%2C500&ssl=1\" alt=\"Stefano volunteering as a photographer at a WordCamp in 2019 with other contributors.\" class=\"wp-image-15026\" />Stefano volunteering as a photographer at a WordCamp in 2019 with other contributors.\n\n\n\n<p>Stefano’s growing commitment to the open source WordPress project was further boosted through his volunteering. He was a volunteer at WordCamp Rome 2018 and participated there in his first Contributor Day where he had the opportunity to translate the software with others.&nbsp;</p>\n\n\n\n<p>He was also able to bring his own hobbies and skills to help the project grow and reach others. One example was his passion for photography, and he volunteered as a photographer for many other events in Italy organized by the WordPress community. He said: “This commitment to the community also allows me to have fun: being a photographer means having the opportunity to walk around the halls and capture moments of the life of a WordCamp.” The more WordCamps he attended, the more he wanted to be part of and keep contributing to the wider WordPress community.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Contribution to WordPress is inspiring</h2>\n\n\n\n<img width=\"1024\" height=\"683\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/05/stefano-at-the-support-table-contributor-day.jpg?resize=1024%2C683&ssl=1\" alt=\"Stefano at the Support Table at a WordPress Contributor Day\" class=\"wp-image-15025\" />Stefano at the Support Table at a WordPress Contributor Day\n\n\n\n<p>When Stefano was asked to become an organizer for the WordPress meetup in Rome in October 2019, he knew he wanted to be part of reaching and supporting more people in his area. He faced challenges with finding venues, but a greater issue was to come: the Covid-19 pandemic.&nbsp;</p>\n\n\n\n<p>Spurred on by the <a href=\"https://it.wordpress.org/\">Italian WordPress community</a> as a whole, he was determined that the meetup was still needed. The regular event was transformed into an online meeting. He was able to gain help from people he had met as a volunteer to share their expertise with meetup attendees.&nbsp;</p>\n\n\n\n<p>The community in Italy also worked together to put on WordCamp Italia online. It brought together the organizers of previous meetups and WordCamps, and new contributors too. Stefano volunteered in both online editions of this camp, including being part of the social and communication team. He found it to not only be a fun experience but also one that helped him grow professionally and learn from so many others.</p>\n\n\n\n<p>He went onto help restart the <a href=\"https://www.meetup.com/romawordpress/\">Rome WordPress meetup</a> in-person meetings in May 2022, was an organizer for the third WordCamp Italy, and has been volunteering for camps in 2023.</p>\n\n\n\n<h3 class=\"wp-block-heading\">What will WordPress bring you?</h3>\n\n\n\n<img width=\"533\" height=\"800\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/05/stefano-at-a-wc.jpg?resize=533%2C800&ssl=1\" alt=\"Stefano inspired by his journey at WordCamps asks what will WordPress bring you?\" class=\"wp-image-15024\" />Stefano inspired by his journey at WordCamps asks what will WordPress bring you?\n\n\n\n<p>“Persona and professional growth and friendship” are some of the things they have brought Stefano. Contributing boosted his confidence and willingness to try new opportunities in his work.&nbsp;</p>\n\n\n\n<p>He said: “The best thing I got out of joining the WordPress community was the chance to collaborate with some people on a working basis and, I have to say, that was incredible. Being with many of them you have an incredible opportunity to grow in knowledge, you just have to be ready to learn. With WordPress you never stop learning.”</p>\n\n\n\n<p>His top recommendation is: “Join your local meetup or think about organizing one, it will introduce you to an amazing world. Don’t be afraid to meet people at WordCamps and Contributor Days, because you will learn more there than in dozens of courses. Talk to people at those events and don’t worry. The WordPress community is inclusive so you’ll always feel welcome, and you will see enthusiasm like you’ve never seen at other IT events. Sign-up and get involved.”</p>\n\n\n\n<h2 class=\"wp-block-heading\">Share the stories</h2>\n\n\n\n<p>Help share these stories of open source contributors and continue to grow the community.&nbsp;Meet more WordPressers in the <a href=\"https://wordpress.org/news/category/newsletter/interviews/\">People of WordPress series</a>.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Contributors</h2>\n\n\n\n<p>Thanks to Stefano Cassone (<a href=\"https://profiles.wordpress.org/deadpool76/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>deadpool76</a>)&nbsp;for sharing about his adventures in WordPress.</p>\n\n\n\n<p>Thank you to Abha Thakor (<a href=\"https://profiles.wordpress.org/webcommsat/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>webcommsat</a>), the late Surendra Thakor (<a href=\"https://profiles.wordpress.org/sthakor/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>sthakor</a>) and Meher Bala (<a href=\"https://profiles.wordpress.org/meher/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>meher</a>) for interviews, writing the feature and collaborating on images, to Chloe Bringmann (<a href=\"https://profiles.wordpress.org/cbringmann/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>cbringmann</a>), Mark Smallman (<a href=\"https://profiles.wordpress.org/marks99/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>marks99</a>), Nalini Thakor (<a href=\"https://profiles.wordpress.org/nalininonstopnewsuk/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>nalininonstopnewsuk</a>), Mary Baum (<a href=\"https://profiles.wordpress.org/marybaum/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>marybaum</a>), and Maja Loncar (<a href=\"https://profiles.wordpress.org/majaloncar/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>majaloncar</a>) for help with reviews.</p>\n\n\n\n<p>The&nbsp;<em>People of WordPress</em>&nbsp;series thanks Josepha Haden (<a href=\"https://profiles.wordpress.org/chanthaboune/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>chanthaboune</a>) and Topher DeRosia (<a href=\"https://profiles.wordpress.org/topher1kenobe/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>topher1kenobe</a>) for their support.</p>\n\n\n\n<div class=\"wp-block-media-text is-stacked-on-mobile is-vertically-aligned-center\"><img width=\"180\" height=\"135\" src=\"https://i0.wp.com/wordpress.org/news/files/2020/03/heropress_logo_180.png?resize=180%2C135&ssl=1\" alt=\"HeroPress logo\" class=\"wp-image-8409 size-full\" /><div class=\"wp-block-media-text__content\">\n<p class=\"has-small-font-size\"><em>This People of WordPress feature is inspired by an essay originally published on </em><a href=\"https://heropress.com/\"><em>HeroPress.com</em></a><em>, a community initiative created by Topher DeRosia. It highlights people in the WordPress community who have overcome barriers and whose stories might otherwise go unheard. </em>#HeroPress </p>\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:\"Wed, 31 May 2023 20:48:58 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Abha Thakor\";s: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:85:\"Post Status: WP 6.3 Planning • WP20 • AI Forum Replies • LearnWP Survey Results\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://poststatus.com/?p=149526\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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://poststatus.com/wp-6-3-planning-wp20-ai-forum-replies-learnwp-survey-results/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:19171:\"<h2 class=\"wp-block-heading\" id=\"h-this-week-at-wordpress-org-april-3-2023\">This Week at WordPress.org (May 29, 2023)</h2>\n\n\n<div class=\"has-background has-theme-palette-8-background-color wp-block-post-excerpt\"><p class=\"wp-block-post-excerpt__excerpt\">How did you celebrate WordPress&#8217;s 20th birthday? Read Building Blocks: The Evolution of WordPress, now available on GitHub and e-reader formats. <br /><br />WordPress 6.3 is underway. Core has shared the planning roundup, and the Design team is starting to prepare now.  <br /><br />Support forums recently discussed considerations on using AI to respond to forum issues. Human intervention is still necessary for the foreseeable future. <br /><br />Training team surveyed attendees at the last 3 flagship WordCamps and any additional respondents.  The data is in with feedback on the content and site functionality of Learn.WordPress.org. </p></div>\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<div class=\"wp-block-kadence-infobox kt-info-box_94d1bd-77\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-left kt-info-halign-left\"><div class=\"kt-blocks-info-box-media-container\"><div class=\"kt-blocks-info-box-media kt-info-media-animate-none\"><div class=\"kadence-info-box-icon-container kt-info-icon-animate-none\"><div class=\"kadence-info-box-icon-inner-container\"><span class=\"kb-svg-icon-wrap kb-svg-icon-fe_userPlus kt-info-svg-icon\"></span></div></div></div></div><div class=\"kt-infobox-textcontent\"><h2 class=\"kt-blocks-info-box-title\">WP 6.3, WP20, AI forum replies, and LearnWP Survey Results</h2><p class=\"kt-blocks-info-box-text\"><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f973.png\" alt=\"🥳\" class=\"wp-smiley\" /> <a href=\"https://wordpress.org/news/2023/05/celebrating-20-years-of-wordpress/\">Celebrating 20 Years of WordPress</a><br /><br /><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f4d4.png\" alt=\"📔\" class=\"wp-smiley\" /> <a href=\"https://make.wordpress.org/core/2023/05/18/wordpress-6-3-planning-roundup/\">WordPress 6.3 Planning Roundup</a><br /><br /><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f916.png\" alt=\"🤖\" class=\"wp-smiley\" /> <a href=\"https://make.wordpress.org/support/2023/05/suggested-stance-on-the-use-of-ai-tooling/\">Suggested stance on the use of AI-tooling</a><br /><br /><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f469-1f3fb-200d-1f3eb.png\" alt=\"👩🏻‍🏫\" class=\"wp-smiley\" /> <a href=\"https://make.wordpress.org/training/2023/05/30/analysis-of-the-individual-learner-survey-results/\">Analysis of the Individual Learner Survey results</a><br /><br /></p></div></div></div>\n\n\n\n<div class=\"wp-block-kadence-spacer aligncenter kt-block-spacer-_b57166-6e\"><div class=\"kt-block-spacer kt-block-spacer-halign-center\"><hr class=\"kt-divider\" /></div></div>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-news\"><a href=\"https://wordpress.org/news\">News</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://wordpress.org/news/2023/05/celebrating-20-years-of-wordpress/\">Celebrating 20 Years of WordPress</a></li>\n\n\n\n<li><a href=\"https://wp20.wordpress.net/celebrate-20-years-of-wordpress-by-exploring-the-20-year-written-history-of-the-project/\">Celebrate 20 Years of WordPress by Exploring the 20-Year Written History of the Project</a></li>\n\n\n\n<li><a href=\"https://wp20.wordpress.net/download-3d-wp20-themed-media/\">Download 3D WP20-Themed&nbsp;Media</a></li>\n</ul>\n\n\n\n<div class=\"wp-block-kadence-spacer aligncenter kt-block-spacer-_8f6276-eb\"><div class=\"kt-block-spacer kt-block-spacer-halign-center\"><hr class=\"kt-divider\" /></div></div>\n\n\n\n<div class=\"wp-block-columns is-layout-flex wp-container-5\">\n<div class=\"wp-block-column is-layout-flow\">\n<h2 class=\"wp-block-heading\">WordPress 6.3</h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/design/2023/05/25/wordpress-6-3-design-kickoff/\">WordPress 6.3 design kickoff</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/05/25/bug-scrub-schedule-for-6-3/\">Bug Scrub Schedule for WordPress 6.3</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/05/18/wordpress-6-3-planning-roundup/\">WordPress 6.3 Planning Roundup</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/05/18/roadmap-to-6-3/\">Roadmap to 6.3</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\"><a href=\"https://make.wordpress.org/accessibility\">Accessibility</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/accessibility/2023/05/31/accessibility-team-meeting-agenda-june-2-2023/\">Accessibility Team Meeting Agenda: June 2, 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-community\"><a href=\"https://make.wordpress.org/community\">Community</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/community/2023/05/26/notes-of-community-team-discussion-on-may-25-2023/\">Notes of Community Team Discussion on May 25, 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/community/2023/05/24/recap-of-the-diverse-speaker-training-group-wpdiversity-amer-emea-on-may-24-2023/\">Recap of the Diverse Speaker Training group (#WPDiversity) AMER/EMEA on May 24, 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-core\"><a href=\"https://make.wordpress.org/core\">Core</a> </h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/05/17/command-center-request-for-feedback/\">Command Center: Request for feedback</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/05/16/proposal-retiring-older-default-themes/\">Proposal: Retiring Older Default Themes</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/05/22/core-editor-improvement-smoother-site-editing/\">Core Editor Improvement: Smoother Site Editing</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-developer-blog\"><a href=\"https://developer.wordpress.org/news/\">Developer Blog</a></h3>\n\n\n\n<ul>\n<li><a href=\"https://developer.wordpress.org/news/2023/05/customizing-core-block-style-variations-via-theme-json/\">Customizing core block style variations via theme.json</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-meetings\">Meetings</h3>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/05/31/dev-chat-agenda-may-31-2022/\">Dev Chat agenda, May 31, 2022</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/05/30/editor-chat-agenda-31-may-2023/\">Editor Chat Agenda: 31st May 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/05/27/editor-chat-summary-24-may-2023/\">Editor chat summary: 24 May, 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">Design</h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/design/2023/05/25/wordpress-6-3-design-kickoff/\">WordPress 6.3 design kickoff</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-docs\"><a href=\"https://make.wordpress.org/docs\">Docs</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/updates/2023/05/29/documentation-team-update-may-29-2023/\">Documentation Team Update – May 29, 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-hosting\"><a href=\"https://make.wordpress.org/hosting\">Hosting</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/hosting/2023/05/15/is-wordpress-compatible-with-php-8/\">Is WordPress compatible with PHP 8?</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-marketing\"><a href=\"https://make.wordpress.org/marketing\">Marketing</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/marketing/2023/05/27/day-20-wp20-from-blogs-to-blocks/\">Day 20: #WP20 From Blogs to Blocks</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/marketing/2023/05/26/day-19-wp20-from-blogs-to-blocks/\">Day 19: #WP20 From Blogs to Blocks</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/marketing/2023/05/25/day-18-wp20-from-blogs-to-blocks/\">Day 18: #WP20 From Blogs to Blocks</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\"><a href=\"https://make.wordpress.org/meta\">Meta</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/meta/2023/05/31/agenda-biweekly-matrix-chat-thu-june-1-2023-10am-utc/\">Agenda: Biweekly Matrix Chat – Thu, June 1, 2023 (10AM UTC)</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/meta/2023/05/31/two-factor-auth-available-to-test-on-wordpress-org/\">Two-Factor Auth available to test on WordPress.org</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-mobile\"><a href=\"https://make.wordpress.org/mobile\">Mobile</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/mobile/2023/04/11/contribute-to-the-future-of-the-wordpress-app/\">Contribute to the Future of the WordPress App</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-openverse\"><a href=\"https://make.wordpress.org/openverse\">Openverse</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/openverse/2023/05/29/last-week-openverse-2023-05-22-2023-05-29/\">A week in Openverse: 2023-05-22 – 2023-05-29</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/openverse/2023/05/24/community-meeting-recap-2023-05-22/\">Community Meeting Recap (2023-05-22)</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/openverse/2023/05/23/openverse-monthly-priorities-meeting-2023-06-07/\">Openverse Monthly Priorities Meeting 2023-06-07</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/openverse/2023/05/22/last-week-openverse-2023-05-15-2023-05-22/\">A week in Openverse: 2023-05-15 – 2023-05-22</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-performance\"><a href=\"https://make.wordpress.org/performance/\">Performance</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/05/30/performance-chat-summary-30-may-2023/\">Performance Chat Summary: 30 May 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/updates/2023/05/31/core-performance-team-update-may-2023/\">Core Performance Team Update: May 2023</a></li>\n</ul>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow\">\n<p></p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-plugins\"><a href=\"https://make.wordpress.org/plugins\">Plugins</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/plugins/2023/05/17/plugin-review-team-update/\">Plugin Review Team Update</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/plugins/2023/03/21/use-of-code-generators-must-remain-gpl-compatible/\">Use of Code Generators Must Remain GPL Compatible</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/plugins/2023/03/10/advance-notice-of-retirement/\">Advance Notice of Retirement</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-polyglots\"><a href=\"https://make.wordpress.org/polyglots\">Polyglots</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/polyglots/2023/05/31/improving-translation-suggestions-other-languages/\">Improving Translation Suggestions [Other Languages]</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/polyglots/2023/05/31/agenda-weekly-polyglots-chat-may-31-2023-0700-utc/\">Agenda: Weekly Polyglots Chat – May 31, 2023 (07:00 UTC)</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-project\">Project</h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/project/2023/05/30/proposal-establishment-of-a-formal-wordpress-sustainability-team/\">Proposal: establishment of a formal WordPress Sustainability Team</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/project/2023/05/17/wordpress-contributor-mentorship-program-pilot-program-proposal/\">WordPress Contributor Mentorship Program: Pilot Program Proposal</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">Support</h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/support/2023/05/suggested-stance-on-the-use-of-ai-tooling/\">Suggested stance on the use of AI-tooling</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/support/2023/05/agenda-for-may-18th-support-meeting-2/\">Agenda for May 18th Support Meeting</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-test\"><a href=\"https://make.wordpress.org/test\">Test</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/test/2023/05/18/fse-program-testing-call-23-rapid-revamp/\">FSE Program Testing Call #23: Rapid Revamp</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/updates/2023/05/29/test-team-update-29-may-2023/\">Test Team Update: 29 May 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-theme\"><a href=\"https://make.wordpress.org/theme\">Theme</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/themes/2023/05/31/themes-team-meeting-notes-may-30-2023/\">Themes Team Meeting Notes – May 30, 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/themes/2023/05/26/summary-curating-the-editor-and-building-block-themes-for-clients/\">Summary: Curating the Editor and building block themes for clients</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/themes/2023/05/18/hallway-hangout-curating-the-editor-and-building-block-themes-for-clients/\">Hallway Hangout: Curating the editor and building block themes for clients</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/themes/2023/05/17/theme-handbook-overhaul-phase-2-creating-content/\">Theme Handbook Overhaul: Phase 2 (Creating Content)</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/updates/2023/05/30/themes-team-update-may-30-2023/\">Themes team update May 30, 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-training\"><a href=\"https://make.wordpress.org/training\">Training</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/training/2023/05/09/brainstorm-wordcamp-europe-2023-contributor-day/\">Brainstorm – WordCamp Europe 2023 Contributor Day</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/training/2023/05/24/training-team-meeting-recap-for-may-23rd-2023/\">Training Team Meeting Recap for May 23rd, 2023</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-tutorials\"><a href=\"https://learn.wordpress.org/tutorials\">Tutorials</a></h3>\n\n\n\n<ul>\n<li><a href=\"https://learn.wordpress.org/tutorial/managing-a-wordpress-multisite-network/\">Managing a WordPress Multisite Network</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-online-workshops\">Online Workshops</h3>\n\n\n\n<ul>\n<li><a href=\"https://learn.wordpress.org/?meeting=live-stream-creating-a-block-theme-for-developers-part-3\">Live stream: Creating a block theme for developers. Part 3</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=training-team-wordcamp-eu-contributor-day-online-session\">Training Team WordCamp EU Contributor Day Online Session</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=using-the-row-and-stack-blocks\">Using the row and stack blocks</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=nesting-blocks-and-advanced-block-layouts-2\">Nesting blocks and advanced block layouts</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=wp-dev-livestream-sendig-block-theme-4\">WP dev livestream: Sendig block theme</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=wordpress-coding-standards\">WordPress Coding Standards</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=custom-css-in-the-site-editing-era\">Custom CSS in the Site-Editing Era</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=%E3%82%A2%E3%83%83%E3%83%97%E3%83%87%E3%83%BC%E3%83%88%E3%81%A8%E8%84%86%E5%BC%B1%E6%80%A7\">アップデートと脆弱性</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-courses\"><a href=\"https://learn.wordpress.org/courses\">Courses</a></h3>\n\n\n\n<ul>\n<li><a href=\"https://learn.wordpress.org/course/creating-a-4-page-business-website/\">Creating a 4-page business website</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-wp-cli\">WP-CLI</h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/cli/2023/04/05/wp-cli-v2-8-0-release-date/\">WP-CLI v2.8.0 release date</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-wptv\">WPTV</h2>\n\n\n\n<ul>\n<li><a href=\"https://wordpress.tv/category/year/2022/\">Latest WordPress TV videos</a></li>\n</ul>\n</div>\n</div>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-related-news\">Related News:</h2>\n\n\n\n<ul>\n<li><a href=\"https://blog.jquery.com/2023/05/11/jquery-3-7-0-released-staying-in-order/\">jQuery 3.7.0</a></li>\n\n\n\n<li><a href=\"https://nodejs.org/en/blog/release/v20.2.0\">Node v20.2.0 released</a></li>\n\n\n\n<li><a href=\"https://www.php.net/archive/2023.php#2023-04-13-1\"></a><a href=\"https://www.php.net/archive/2023.php#2023-05-11-1\">PHP 8.2.6 Released!</a></li>\n\n\n\n<li><a href=\"https://www.php.net/archive/2023.php#2023-05-11-2\">PHP 8.1.19 Released!</a></li>\n\n\n\n<li><a href=\"https://262.ecma-international.org/13.0/\">TC39</a></li>\n\n\n\n<li><a href=\"https://github.com/composer/composer/releases/tag/2.5.5\">Composer 2.5.5</a></li>\n</ul>\n\n\n\n<p class=\"has-theme-palette-7-background-color has-background\">Thanks for reading our WP dot .org roundup! Each week we are highlighting the news and discussions coming from the good folks making WordPress possible. If you or your company create products or services that use WordPress, you need to be engaged with them and their work. Be sure to share this resource with your product and project managers. <br /><br /><strong>Are you interested in giving back and contributing your time and skills to WordPress.org?</strong> <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f64f.png\" alt=\"🙏\" class=\"wp-smiley\" /> <a href=\"https://wordpress.org/support/article/contributing-to-wordpress/\">Start Here ›</a><br /><br /><strong>Get our weekly WordPress community news digest</strong> — Post Status&#8217; <a href=\"https://poststatus.com/news/week-in-review/\">Week in Review</a> — covering the WP/Woo news plus significant writing and podcasts. It&#8217;s also available in <a href=\"https://poststatus.com/newsletter\">our newsletter</a>. <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f48c.png\" alt=\"💌\" class=\"wp-smiley\" /></p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<div class=\"wp-block-media-text alignwide is-stacked-on-mobile has-background\"><a href=\"https://poststatus.com/\"><img src=\"https://poststatus.com/wp-content/uploads/2021/09/vertical-post-status-logo-250.png\" alt=\"Post Status\" class=\"wp-image-85823 size-full\" /></a><div class=\"wp-block-media-text__content\">\n<p class=\"has-text-align-left has-normal-font-size\" id=\"h-get-ready-for-remote-work\">You — and <a href=\"https://poststatus.com/#Agency\">your whole team</a> can <a href=\"https://poststatus.com/#choose-membership\">Join Post Status</a> too!</p>\n\n\n\n<p class=\"has-text-align-left has-small-font-size\"><strong>Build your network. Learn with others. Find your next job — or your next hire.</strong> Read the <strong>Post Status</strong> <a href=\"https://poststatus.com/newsletter/\">newsletter</a>. <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/2709.png\" alt=\"✉\" class=\"wp-smiley\" /> Listen to <a href=\"https://poststatus.com/podcasts/\">podcasts</a>. <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f399.png\" alt=\"🎙\" class=\"wp-smiley\" /> Follow <a href=\"https://twitter.com/post_status/\">@Post_Status</a> <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f426.png\" alt=\"🐦\" class=\"wp-smiley\" /> and <a href=\"https://www.linkedin.com/company/post-status-llc/\">LinkedIn</a>. <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f4bc.png\" alt=\"💼\" class=\"wp-smiley\" /></p>\n</div></div>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n<p>This article was published at Post Status — the community for WordPress professionals.</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 May 2023 16:48: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:18:\"Courtney Robertson\";s: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:67:\"WPTavern: #78 – Mike McAlister on Why Block Themes Are the Future\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"https://wptavern.com/?post_type=podcast&p=145590\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:81:\"https://wptavern.com/podcast/78-mike-mcalister-on-why-block-themes-are-the-future\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:55259:\"Transcript<div>\n<p>[00:00:00] Nathan Wrigley: Welcome to the Jukebox podcast from WP Tavern. My name is Nathan Wrigley.</p>\n\n\n\n<p>Jukebox is a podcast which is dedicated to all things WordPress. The people, the events, the plugins, the blocks, the themes, and in this case, a journey inside creating a block-based theme.</p>\n\n\n\n<p>If you&#8217;d like to subscribe to the podcast, you can do that by searching for WP Tavern in your podcast, player of choice. Or by going to WPTavern.com forward slash feed forward slash podcast. And you can copy that URL into most podcast players.</p>\n\n\n\n<p>If you have a topic that you&#8217;d like us to feature on the podcast, I&#8217;m keen to hear from you and hopefully get you all your idea featured on the show. Head to WPTavern.com forward slash contact forward slash jukebox, and use the form there.</p>\n\n\n\n<p>We released these podcast episodes every Wednesday, but next week there&#8217;s going to be a break. I&#8217;m going to be heading to WordCamp Europe in Athens to record some more interviews. And if you&#8217;re there, I do hope that our paths cross. Normal service will resume soon.</p>\n\n\n\n<p>So on the podcast today we have Mike McAlister, and he&#8217;s here to talk about his experiences creating a block-based theme.</p>\n\n\n\n<p>Mike is a veteran product developer and designer in the WordPress space. He founded and sold multiple WordPress products, like Array Themes and Atomic Blocks. Now he&#8217;s focused on the future of WordPress with his new product brand, Ollie.</p>\n\n\n\n<p>Mike kicks off the podcast by telling us about his WordPress journey, and how WordPress blocks have renewed his passion for the platform. We get into some history and talk about the era when WordPress themes were extremely popular. Marketplaces like in Envato made it possible to sell themes and creates a career in ways hitherto unimagined.</p>\n\n\n\n<p>Mike explains what the key differences are between a block-based theme and a classic theme. How it&#8217;s possible to create themes inside the editor and how you can do this without needing to know much code.</p>\n\n\n\n<p>We talk about the fact that, if you are a coding expert, you could always create complex themes, but this fresh approach opens up the possibilities for those with less technical backgrounds. The experience in the editor might not be exactly what everyone wants, but it&#8217;s evolving quickly and maturing with every new release of WordPress.</p>\n\n\n\n<p>The conversation moves onto why Mike is so confident that block-based themes are going to succeed. You don&#8217;t need to use one, and your trustee classic theme and the associated customizer, will work for the foreseeable future.</p>\n\n\n\n<p>We then turn our attention to the technical hurdles that Mike has had to overcome. What new workflows and tools did he need to adopt and master to make his work possible? Mike&#8217;s been really focused on using WordPress core blocks to create his themes, digging into the weeds of what they can do and what their limitations are. It&#8217;s been a part of steady learning punctuated with minor setbacks when the editor and blocks are updated in unexpected ways. Thankfully, these bumps in the road are now relics of the past, as breaking changes have given way to stability.</p>\n\n\n\n<p>We then talk about a specific theme that Mike has just released. It&#8217;s called Ollie, and it&#8217;s the focus of the rest of the podcast. How did Mike build Ollie, and what is he hoping to achieve with this new brand?</p>\n\n\n\n<p>Patterns feature heavily in Ollie we talk about how it&#8217;s possible to alter the look and feel of your site quickly. Typography and colors are easy to change with the new suite of design tools which ship with WordPress.</p>\n\n\n\n<p>If you&#8217;re wanting to develop block-based themes, or are just curious about how other developers are building them, this podcast is for you.</p>\n\n\n\n<p>If you&#8217;re interested in finding out more, you can find all of the links in the show notes by heading to WPTavern.com forward slash podcast, where you&#8217;ll find all of the other episodes as well.</p>\n\n\n\n<p>And so without further delay, I bring you Mike McAlister.</p>\n\n\n\n<p>I am joined on the podcast today by Mike McAlister. Hello, Mike.</p>\n\n\n\n<p>[00:04:51] Mike McAlister: Hello. Thanks for having me.</p>\n\n\n\n<p>[00:04:52] Nathan Wrigley: Yeah, you&#8217;re very welcome. Mike is going to be talking to us today about block based themes, block patterns, blocks in general, I&#8217;m sure. And if you haven&#8217;t been in the WordPress space for any great length of time, you are about to learn about Mike&#8217;s pretty impressive history in the WordPress space.</p>\n\n\n\n<p>So Mike, it&#8217;s a fairly generic question, but I hope you don&#8217;t mind us asking you at first, just to orientate the listeners. Would you mind just telling us a little bit about yourself and your history, coding, theming, and whatever kind of other work you&#8217;ve done in the WordPress space.</p>\n\n\n\n<p>[00:05:24] Mike McAlister: Absolutely. Yeah, I&#8217;ve been around WordPress for some time now, probably since about 2010. 2009, 2010. So fairly early on. And I think I came upon WordPress like many folks, building client sites and looking for just a better way to do it. You know, when you&#8217;re in that world and you stumble upon WordPress, you&#8217;re like, whoa, light bulb moment. This is going to be a game changer.</p>\n\n\n\n<p>So yeah, I started pretty early on using WordPress to build websites for clients. And then at some point, I started to see the commercial aspect of it, right? Instead of building one theme for one client, I could build one theme and maybe sell it to a thousand different clients.</p>\n\n\n\n<p>And so I experimented pretty early on with, you know, I have a history in design and so that was my focus. I thought that could be a differentiator for me. I&#8217;ll make themes that are just beautifully crafted, really lightweight. Maybe they don&#8217;t do everything under the hood, but they do specific things very well.</p>\n\n\n\n<p>And so Array was the first theme shop that I had. And I operated all over the place. I had themes on my own site. I had them on the Themeforest marketplaces. I was selling themes on wordpress.com. So I was kind of everywhere and growing. And then at one point blocks became a thing, and so I dipped into there and started experimenting with blocks, via the Atomic Blocks theme which grew really quickly, it was one of the first block themes out there. And I think it was, blocks were still a really new thing and people were trying to understand what they were and what the benefits could be.</p>\n\n\n\n<p>And so having a plugin out there with all these examples in it, and kind of showing that, oh no, you can replace all kinds of stuff. Like short codes and all of these other archaic ways of building could be done with blocks now.</p>\n\n\n\n<p>So I worked on that for a bit. And then in 2018 WP Engine acquired both the theme shop and the Atomic Blocks plugin. And worked there for four and a half years, and then just recently I have gone back into the freelance and entrepreneurial space.</p>\n\n\n\n<p>[00:07:21] Nathan Wrigley: Thank you very much indeed. That&#8217;s really, really interesting and it sounds to me at least anyway, as if you arrived on the WordPress scene, not only with the right products, but also at the right time. You kind of managed to hit that tidal wave just as it was creating out in the ocean somewhere.</p>\n\n\n\n<p>And you had the product. Everybody was buying themes at that time. Became really, really popular. Do you consider yourself to have had a lucky break there, in the sense that, do you feel that that is something which can be repeated in the year 2023? Or do you think that block themes and just themes in general, the shine and the commercial prospects of that has dwindled a little bit?</p>\n\n\n\n<p>[00:08:04] Mike McAlister: That early era was certainly something special. I think there was just so much attention focused on themes, and as this new shiny thing. And they unlocked a lot of capabilities for people. They were able to go from, trying to make their own sites. To making their own designs. To having these tried and tested templates.</p>\n\n\n\n<p>And so that was a huge thing. And the rise of the Envato market at the time was a huge part of that success. Love it or hate it, at the time, that was a huge thing and proliferated WordPress themes out into the world, beyond our bubble. And so that I think was a huge deal at the time.</p>\n\n\n\n<p>Now, whether or not now we can kind of replicate that is really tough to say, because since then the market has become quite saturated, in that there are so many different ways of building with WordPress. And you have things that are spinning off like Elementor going off into their own world.</p>\n\n\n\n<p>They&#8217;re still kind of one foot in WordPress, one foot out. And we have all of these other. website builders that we didn&#8217;t have back then, other platforms. So there&#8217;s just so many different ways to build a website. WordPress is still massively popular, even if it&#8217;s slowly declining.</p>\n\n\n\n<p>We still have such a huge footprint on the web that it, there&#8217;s a ton of potential So, I don&#8217;t think we&#8217;ll see the same wave we saw before. I do think though that this whole new world of the block paradigm and block themes. It is the biggest opportunity commercially in WordPress I think that we&#8217;ve seen in a very long time. It may be the biggest we see for a long time.</p>\n\n\n\n<p>[00:09:38] Nathan Wrigley: Yeah. I think we should probably stray into that right, the outset, if that&#8217;s okay. Because, there&#8217;s probably a proportion of people who are listening to this podcast who are very, very technical. They completely get what you mean by block based themes and the opportunity afforded there.</p>\n\n\n\n<p>But equally, there may be a bunch of people who are listening to this who genuinely have no idea that there is such a thing as a block based theme. They&#8217;ve got a, what we would now call a classic theme, and it&#8217;s installed and it has been for a long time. And as far as they&#8217;re aware, there&#8217;s no change in their WordPress website. Things just carry on as normal.</p>\n\n\n\n<p>But are you able to describe to us, I know this is a difficult question, and certainly trying to cram it into a portion of a WordPress podcast is a big ask. But are you able to give us a high level view on what a block theme is, and how it differs from a classic theme? Something which you might know, if you&#8217;ve got access to the customizer, you have a classic theme. If you don&#8217;t, you don&#8217;t. And so let&#8217;s take it from there. What are they and what do they promise?</p>\n\n\n\n<p>[00:10:34] Mike McAlister: Absolutely. So, let&#8217;s first just do quick block refresher in general. So blocks, instead of throwing your content all into TinyMCE or the content area, and kind of making it mostly text-based, and throwing some other little elements in with things like short codes, like we used to do in the past. Blocks, they&#8217;re basically content elements. It could be anything from a button, to a paragraph, to an image gallery, to a slider.</p>\n\n\n\n<p>And all of these things you add to the WordPress editor. And they could be used to build, you know, more beautiful content. They could be used to build page sections. They can be used to build a full page. And you put together enough blocks, and you can build an entire theme with it, right? So, WordPress comes with many blocks built in. And all of these things you use to build your website now.</p>\n\n\n\n<p>So with that in mind, block themes are effectively entire WordPress themes that are built entirely with blocks. And the benefit of that is that it makes your website almost entirely editable by you, in the editor. So instead of having to, you know, if you want to change your header, instead of going into the code and opening up the code editor and tinkering there and saving and going back to your site. You can go into the site editor and WordPress, which is effectively a interface inside the WordPress admin, where you can create your header.</p>\n\n\n\n<p>You can modify it. You can change the colors. You can add new links. You can change out your site logo. And all of that happens in the editor. It can be a no-code or low-code experience for you. So the benefit here is the customization, right? We can now get closer to the experience that you might have seen at something like a Squarespace or Wix where the interface and the experience is tailored around creation, and it&#8217;s more focused around that.</p>\n\n\n\n<p>[00:12:31] Nathan Wrigley: Yeah, I guess if you are an expert themer and you&#8217;ve been creating themes for years, what it brings to the table, the way that you construct them is different. But you&#8217;ve always been able to achieve whatever it is that you wanted to achieve because you could write the code. But I suppose what this is bringing is the capability for non-technical people to be able to modify just any part of the site.</p>\n\n\n\n<p>I guess the header is typically fairly constrained, you know, header, navigation, logo, that kind of thing is normally what we see. But perhaps a better example would be a footer. Because typically your footer would be controlled by the theme and you&#8217;d go into the customizer and modify whatever options were available to you.</p>\n\n\n\n<p>Whereas now you can just build out rows, columns, put in images, put in contact forms, whatever you like, other navigation menus, anything. If you can imagine it as something that you can build in the block editor, that can then become your footer. You don&#8217;t need to dabble in any code at all. There&#8217;s a lot going on there, but you don&#8217;t need to be involved in that.</p>\n\n\n\n<p>And so non-technical people can become involved in that process and, you know, enjoy creating different aspects, different parts of their theme. That being said, what are your thoughts on the state of the UI for editing themes at the moment? We&#8217;re in May 2023. Version 6.2 of WordPress is the current latest version.</p>\n\n\n\n<p>And I think it&#8217;s fair to say that it&#8217;s not where it probably wants to be in the end, but how do you think about it? How do you think about the UI? You&#8217;ve probably been in there, you&#8217;ve ironed out all the kinks, and got over all the road bumps that were in the way. But for a typical user, a non-technical user, do you feel it&#8217;s delivered on the promise that it hoped to?</p>\n\n\n\n<p>[00:14:09] Mike McAlister: I don&#8217;t think so yet. I talked to all kinds of WordPress users from novices to veterans. And the number one thing that always comes up is the UI the UX, the experience. And, you know, I get it because we&#8217;ve known WordPress for 20 years now. We&#8217;re celebrating a 20 year anniversary right now.</p>\n\n\n\n<p>And it has been one way for a very long time. And even some of the big changes that came, like the customizer, they weren&#8217;t that big of a change, right? They were bolted on and they were additive and iterative. But the block editor and going into the site editor and full site editing, these kinds of things, it&#8217;s quite different.</p>\n\n\n\n<p>It&#8217;s adding a lot to WordPress. It&#8217;s a lot of new context. It&#8217;s a lot of new paradigms. It&#8217;s a lot of new workflows, and I think that is a very difficult thing for people to figure out. Especially with the past few years where things have been shifting so much and people don&#8217;t know quite when to hop in. And then when they do, it doesn&#8217;t work exactly like they had anticipated.</p>\n\n\n\n<p>Or some of the features are released as working prototypes. We&#8217;re kind of met with these things. And so I get the frustration when you hop in there and somebody&#8217;s telling you, oh, it&#8217;s way better, and you can do all this stuff now, and you&#8217;re, you install a block theme from dot org and it&#8217;s like half busted, and the styles don&#8217;t work and you don&#8217;t know your way around. So I get it. It can be a very frustrating experience.</p>\n\n\n\n<p>I will say the past few releases I think have been a lot better. And they&#8217;re ironing out a lot of the kinks. The ground underneath the software isn&#8217;t moving as much from release to release. And if you follow along on some of the GitHub tickets or you stumble into some of those, there&#8217;s a great deal of discussion going on about the many shortcomings of the UX. And so it is something that&#8217;s always being worked on. And I think it&#8217;s important to just remember that.</p>\n\n\n\n<p>It is never going to be easy to change, to drastically change, a piece of software that is being used for so many use cases, for so many people. We know it powers half the web and to make a leap into the block era like this, it was never going to be easy. It was never going to be comfortable.</p>\n\n\n\n<p>We hope that it will be worth it in that, these kind of growing pains in this transition will give us a new era. It will refresh WordPress. It will make it viable for another 10, 20 years. It will give us the new tools to keep up with these other platforms that are maybe outperforming us. And so while the growing pains are there and the experience is a little rough, I do think that it is all for the greater good of the software.</p>\n\n\n\n<p>[00:16:45] Nathan Wrigley: Let&#8217;s explore the sort of reverse of that, if you like. And I&#8217;m going to use a product that I have as an example. I use Gmail to do my emails. And I have this Chrome extension, and the Chrome extension alters the Gmail interface in a way, which allows me to be slightly more productive. I won&#8217;t get into the detail, but it does that.</p>\n\n\n\n<p>And every couple of weeks something breaks, because Gmail alter some aspect of their interface. And the guy that makes the Chrome extension, he&#8217;s not in the loop of that. And the thing breaks and he has to contact all of his users and say, right on it. And gets it fixed and so on and so forth.</p>\n\n\n\n<p>And I feel, as we&#8217;re going to discuss in the future, you are now really committed to having a proportion of your income come from block based themes, and yet at the same time, although you&#8217;ve got, you&#8217;ve got a voice there and you&#8217;ve definitely got skin in the game. You are reliant upon the technology stack that is WordPress and it&#8217;s in a constant state of flux.</p>\n\n\n\n<p>You said it&#8217;s not quite there yet. I just wondered, and I don&#8217;t wish for you to become incendiary or anything like that. I wondered if you could highlight some of the grievances that you, well, not grievances, some of the things that you wish were better right now. Some of the areas where, if you could be in control of just fixing it by clicking your fingers, what would you amend?</p>\n\n\n\n<p>[00:18:03] Mike McAlister: Ooh, that&#8217;s a, that&#8217;s a really good question. Although I&#8217;m just releasing a block theme now, I&#8217;ve been dipping into and exploring block themes for years now. And only until recently did I feel like, okay, this is ready enough to put something out there. Because I&#8217;ve run a product business before, and a WordPress theme business before and support is a huge part of that, right?</p>\n\n\n\n<p>And in these early days of the block editor and block themes, with it being, you know, on a bit of shaky ground. Putting something out there I&#8217;ve seen it as like a support nightmare. I&#8217;m going to end up not just supporting my theme, I&#8217;m going to end up educating people on tons and tons of WordPress features, which I think that&#8217;s okay and great. And I think it&#8217;s actually a business model in itself.</p>\n\n\n\n<p>You don&#8217;t want to take on the frustration of the users, and have them funnel that through to something that&#8217;s your product, right? And they look at something I&#8217;m making and say, this thing sucks, or whatever. When really it&#8217;s just they don&#8217;t know this new WordPress yet, or they haven&#8217;t had the time, or that the pitfalls and the UX hurdles are being kind of painted onto your product. So yeah, I think up until recently I&#8217;ve felt like, okay, this is, it&#8217;s still going to be a bit of a transition, but I think it&#8217;ll be less painful.</p>\n\n\n\n<p>So that being said if I could snap my fingers and have one thing, well I&#8217;ve just recently written a post about responsive controls, which is another big hurdle. But I think even more than that, I would snap my fingers and bring together this UI UX in a way that makes a lot more sense.</p>\n\n\n\n<p>I feel like we&#8217;re in two worlds here. I think we have many remnants of the old WordPress. In fact, if you&#8217;re not in the site editor, you maybe wouldn&#8217;t even know that there&#8217;s a new WordPress. You&#8217;re looking at the same sidebar, same posts, pages. All of that is the same and that&#8217;s great. That&#8217;s worked well for a long time.</p>\n\n\n\n<p>But now we have our other foot in this whole new era of the site editor and block editor and blocks and block themes. And then when you&#8217;re in the site editor you can edit things live and do all this stuff. And so I feel like there are two entirely different WordPresses existing in WP admin. And it is, to me, not a great experience. I feel like if we&#8217;re going to go this route, I feel like it should be almost entirely wrapped around the site editor experience, and we&#8217;re able to do almost everything in there.</p>\n\n\n\n<p>And that gives us an opportunity to maybe rethink, and this is, I know, grandiose and big ideas, and there&#8217;s probably a lot of people who are cringing at the thought of redoing a lot of WordPress. But I think that there is an argument to be made about kind of moving forward in a more bold and meaningful way. And tying that experience together. So that when you&#8217;re editing a page, it looks like you&#8217;re editing a page, and not like you&#8217;re editing a page with content field or something like that, you know? So the great unification of sorts.</p>\n\n\n\n<p>[00:20:57] Nathan Wrigley: Thank you. That&#8217;s really fascinating. In terms of the skillset that you&#8217;ve had to adopt over the last period of time. When you decided, okay, I&#8217;m going to go all in on blocks. And it sounds like you&#8217;ve been doing this really, right from the beginning, which is fairly impressive. Very prescient of you.</p>\n\n\n\n<p>What are the new interesting, perhaps difficult, things that you&#8217;ve had to learn? The new tooling that you&#8217;ve had to acquire? What has had to become part of workflow over the last few years, which is different from how it would&#8217;ve been five, six years ago?</p>\n\n\n\n<p>[00:21:26] Mike McAlister: Yeah, it&#8217;s It&#8217;s quite fascinating actually, because I think those of us who are in WordPress a long time, you would typically think that the answer would be like, oh, I had to learn Webpack or React or whatever. And if you&#8217;re building blocks, that might be the case. When I&#8217;m talking about block themes, it&#8217;s not a technical skillset that I&#8217;ve had to pick up.</p>\n\n\n\n<p>But literally just spending the time in WordPress and understanding how all these things work together. Learning fluently how to build with all of the core blocks, in a way that you can build a layout using columns and groups, and the alignment settings, and justification and the row block. It is a skill that has to be learned use all these things fluently, and to just know it like the back of your hand so that you can go and build out a pattern, a page, whatever it is.</p>\n\n\n\n<p>And that did take, even for a WordPress veteran like me, quite a bit of time to get fluid with that stuff. But learning all of that stuff and then kind of dipping into block themes, that made that process a whole lot easier. Because block themes are just all of those things. It&#8217;s the row block. It&#8217;s the group block. It&#8217;s using the padding settings and building a design system with theme json.</p>\n\n\n\n<p>So that becomes a skillset in itself. And that&#8217;s where I spent so much time. And I think that&#8217;s why when I released this Ollie theme that we&#8217;ll talk about, I think a lot of people were kind of like blown away. Like, oh, you can do all this with this new stuff. And it&#8217;s all core and native features.</p>\n\n\n\n<p>But it took me a long time to pull all that stuff together and to be able to present it and a package that was like, oh, okay, this is coherent and well made and well designed and it actually works.</p>\n\n\n\n<p>[00:23:07] Nathan Wrigley: How much does the sand shift beneath your feet? So you mentioned earlier about getting skilled with the interface and using the group block and managing it to make these pixel perfect, really beautiful layouts which we&#8217;ll get onto in a moment. How steady has that process been?</p>\n\n\n\n<p>Or have you noticed that your designs from, well, let&#8217;s not say month to month, maybe half a year to half a year. Are there things which come along in the core blocks, changes which are made in the core blocks, which upset what you&#8217;ve managed to lay out in this perfect way? Or has the progress been steady away? Everything looks the same today as it did a year ago.</p>\n\n\n\n<p>[00:23:43] Mike McAlister: At this point, it&#8217;s very steady. The core blocks, the group blocks and things like this, buttons. These are not changing in any major way. There are little additions being made, but they&#8217;re iterative, and they&#8217;re backwards compatible as far as I&#8217;ve seen. There might be every once in a while, the spacing&#8217;s a little off or something like that and usually gets fixed pretty good.</p>\n\n\n\n<p>But I think with the amount of people using the Gutenberg plugin, where a lot of these big features are tried and tested and workshopped. I think there&#8217;s a good amount of eyeballs on these features there. That definitely helps, by the time it gets to core, it&#8217;s been vetted, it&#8217;s been worked out.</p>\n\n\n\n<p>People actually build with Gutenberg enabled. So I think there&#8217;s that. And so these days, when creating a theme, I didn&#8217;t have any major issues with the fundamentals.</p>\n\n\n\n<p>[00:24:31] Nathan Wrigley: Nice. I&#8217;m going to direct everybody listening to this podcast. Maybe just pause and go to this URL. The URL is olliewp.com. It is, as you might expect, o l l i e w p .com and have a little poke around. Have a look at what Mike has built, and what&#8217;s on offer. But just tell us about the theme itself. I&#8217;ve had a little bit of a play.</p>\n\n\n\n<p>I downloaded it. Currently, we can get onto this and the reasons for moment, it&#8217;s on, available on GitHub. You download it from there, and I installed it on a local install and had a play. Tell us a little bit, what&#8217;s the thinking here? Are you trying to make one theme that anybody can use? Do you have a particular niche in mind? What&#8217;s going on with Ollie?</p>\n\n\n\n<p>[00:25:13] Mike McAlister: I think Ollie started as an experiment for myself. I used it as an opportunity to, like I was saying, to learn all of these features. And one of the best ways to learn them is to build a block theme. Because it forces you to use all these different things, like patterns and global styles, and theme json. All of these features that make up a good block theme.</p>\n\n\n\n<p>So, I started it as an experiment to learn, and then along the way, you know, as a product minded person, and somebody who&#8217;s had a theme shop before, I thought, no, there is some commercial value here. I don&#8217;t know what it is yet. But I thought on top of it being a potential pivot for me to do, I just saw it as an opportunity to dip back into WordPress in a more meaningful way, in the product space.</p>\n\n\n\n<p>And I like creating things that people can learn from. I like putting things together in a package that you can hand off to somebody or send them the repo and they can see, and pick through the code and learn. And so that was the kind of intent behind Ollie. And right now it is, it&#8217;s just one theme with a bunch of beautiful patterns in it that you can use to quickly build out pages.</p>\n\n\n\n<p>I&#8217;m just using this early phase of Ollie to see what people think. How are people building with block themes? Are they building block themes? I think there&#8217;s so much unknown about this space because it&#8217;s so new, I&#8217;m just kind of sitting back and just learning and listening and watching people.</p>\n\n\n\n<p>Do they want more patterns? Do they want pre-made sites with block themes? There&#8217;s so many questions that I have. I&#8217;m using it as an opportunity to effectively ask these questions and learn.</p>\n\n\n\n<p>[00:26:41] Nathan Wrigley: The thing that really struck me, I should add at this point that I saw this from an article in the WP Tavern, which Sarah Gooding wrote on April 26th, 2023. I&#8217;ll link to that in the show notes. The thing that struck me immediately was the patterns. And I saw screenshots of the patterns and I thought, wow, they look great.</p>\n\n\n\n<p>And there was a video that I think she put together, scrolling through some of the patterns and thought actually that&#8217;s new, that&#8217;s interesting. They are right on the money for me. They look how I wish I could do things. And so downloaded the theme and really discovered that you really have gone to town with the patterns. I don&#8217;t know what the number is. It certainly looks like it&#8217;s more than 50 or 60 or something like that.</p>\n\n\n\n<p>That feels like where a lot of your endeavors have gone. So you&#8217;ve categorized them, obviously now in the site editor you can you click on the patterns button and then subcategories come down. And then a nice thumbnail appears, and you can enlarge those if you wish, on a big modal, which takes up the whole screen and so on.</p>\n\n\n\n<p>You&#8217;ll see straight away that the effort in building a typical website, brochure site for somebody has been taken away. So that&#8217;s my question. Did you approach this with patterns in mind? Like this is going to be a repository of great patterns and the rest hopefully will build itself, if you know what I mean.</p>\n\n\n\n<p>[00:27:56] Mike McAlister: Yeah, absolutely. I knew right away patterns were and are going to be a huge deal. Way back, late 2019, I was even playing with this rudimentary idea of what patterns could be with my friend John Paris. We experimented and prototyped out this idea of sections and layouts in WordPress. And it was effectively what would become patterns. This idea that you have pre-designed sections of your site, that you can click together like Lego pieces and make full layouts.</p>\n\n\n\n<p>I&#8217;ve always looked at patterns as a huge opportunity because it takes the pain out of building websites or even just sections. If I&#8217;m able to put together a beautifully designed hero section, or a featured section with blocks and make it look great and hand it over to you. You can throw that on your page. You don&#8217;t have to mess with the design. You just tweak the colors if you want, and change the content. And then you go about your business.</p>\n\n\n\n<p>We&#8217;ve removed the pain of even you having to build your own blocks or your own patterns. And hopefully that is the paradigm that we go with. Hopefully people latch onto this idea that maybe I don&#8217;t have to tinker with every single part of my website. Maybe just going with these beautiful designs, changing the content, changing the color, and then focusing on my content, and focusing on my audience and focusing on my following. And I think the patterns are going to be a huge deal for sure.</p>\n\n\n\n<p>[00:29:21] Nathan Wrigley: Truly I think the designs are absolutely fabulous. They are categorized into posts, texts, call to action, cards, features, heroes, pages, prices and testimonials. Who knows, maybe that will be expanded over time. But in each of those there&#8217;s in some cases a handful and in many cases multiple dozens really of different patterns that you can select.</p>\n\n\n\n<p>And if you&#8217;ve never had the experience of doing this in a theme, you just pick on one that you like, and you just click on the icon and there it is. It&#8217;s now the next part of your website. And you can then amend it, you can change it.</p>\n\n\n\n<p>Give us a bit of an insight into what people can do in terms of saving things. So let&#8217;s imagine that they&#8217;re using yours as sort of boiler plate and they&#8217;re going to click things in, but they want to amend the colors. Yours is fairly opinionated. It&#8217;s nice dark black, and there&#8217;s this lovely kind of blue color, which dominates everywhere. But obviously that might not fit with everybody.</p>\n\n\n\n<p>Is it fairly straightforward, again for inexperienced users, to save those and modify them and keep their own modifications with this new site editing interface?</p>\n\n\n\n<p>[00:30:25] Mike McAlister: Absolutely. That&#8217;s kind of the beautiful part about this, right? Is that you can go into one of your preexisting pages and click to add one of the patterns I&#8217;ve designed, and put it on your page. Or you can throw a full layout, which I&#8217;ve included a few full layouts, like home, about, and features, and things like this.</p>\n\n\n\n<p>You throw it onto your page. You customize it how you want. You can change the content inline. You can change the colors on the page if you want. Or you can go to the global styles in the site editor, and you can change that bluish purple color that I&#8217;ve chosen to whatever color you want, your brand color. And instead of going through and changing it in every little pattern, it will change that color on every single pattern I&#8217;ve included in this theme.</p>\n\n\n\n<p>So you don&#8217;t have to go change the colors anywhere. It will literally propagate that color throughout the whole site. Because this whole thing is a live design system, right? It&#8217;s effectively a design system that is tied into every aspect of WordPress. So when you&#8217;re in the site editor, when you&#8217;re in posts, when you&#8217;re in pages, all of these styles travel with these patterns.</p>\n\n\n\n<p>Even typography, you don&#8217;t like the font? You can change the font. It&#8217;ll propagate through the whole thing because that&#8217;s how this is all wired up. So yeah, so if you want to go in and change a page, all you do is, you go in there, add a pattern, save it. Save it just like you would any other page. And it&#8217;s good to go.</p>\n\n\n\n<p>[00:31:47] Nathan Wrigley: Yeah, it is increasingly becoming a really compelling system. It just requires people like you to get as many people over that hump as possible and experiencing it. But I can only say if you download it, have a go. Within minutes I suspect that you&#8217;ll have something that you are very, very happy with and that you can modify.</p>\n\n\n\n<p>In terms of the patterns of themselves, is that an area that you&#8217;ve explored? Or would like to explore commercially? So okay, I know you&#8217;ve got Ollie, but have you given any thought to the commercial possibilities of just patterns, simply patterns? Not bound to any theme. Just a downloadable set of patterns. And obviously you&#8217;re a very, very credible designer, we can see that. That you could then give to people, sell to people, so that they can download them into any site no matter what block-based theme they&#8217;re using.</p>\n\n\n\n<p>[00:32:34] Mike McAlister: I always knew patterns were going to be a big deal. But I think, after just releasing Ollie to GitHub and seeing it get picked up by a few news outlets and some people on YouTube, were making videos about it. I think the number one thing everyone always raves about is the patterns. And maybe if they&#8217;ve explored patterns before on wordpress.org or used other themes that have patterns.</p>\n\n\n\n<p>I don&#8217;t know if they&#8217;re just kind of underwhelming typically. But I think I did spend a great deal of time making sure these patterns were making a statement. They are saying, no you can do this in WordPress. I wanted to prove that I can design something as good, if not better, than what we had before. And I&#8217;ll do it all with blocks, native blocks. Not one custom blocks in there. These are all just core blocks, and they&#8217;re going to be beautiful, and they&#8217;ll be fully responsive and fully customizable.</p>\n\n\n\n<p>And so, I think that&#8217;s what people see. And when they see these patterns and how they all cohesively fit together. You can pop these onto a page in any different order and they kind of just fit together and that&#8217;s part of the overall design system. But yeah, so I see patterns as a huge opportunity and I wasn&#8217;t sure commercially. And still I don&#8217;t know. I&#8217;m using this opportunity to ask a lot of questions.</p>\n\n\n\n<p>But I think the first few weeks, the response has been largely very positive about patterns. And so I&#8217;m definitely curious about that. And I think there&#8217;s opportunities to do more advanced patterns, and maybe use some pro blocks to make patterns even more appealing. So yeah, pro patterns is definitely something I&#8217;m exploring</p>\n\n\n\n<p>[00:34:07] Nathan Wrigley: You mentioned that you&#8217;d spent a lot of time learning the core blocks, and you also just mentioned that everything that comes with Ollie is based around a core block. Was that a straightforward experience? Or did you find that there are certain limitations in what you could achieve based upon the capabilities of core blocks? Or would you say basically you can implement almost any design you wish with core block? Certainly looks like you&#8217;ve managed to achieve that.</p>\n\n\n\n<p>[00:34:34] Mike McAlister: Sometimes I&#8217;d have an idea of what I wanted to do, and couldn&#8217;t quite do it. But I think if you get clever, you can get really close, right? For example, I would love if WordPress had a icon block. A core icon block that we could tie into. I don&#8217;t want to have to make my own, because there&#8217;s a bunch out there.</p>\n\n\n\n<p>And I also, you know, in terms of the ease of distribution and giving customers designs right out of the box. I don&#8217;t want them to have to install a plugin to do it. And icons are so prolific. I would just hope that we could have that in core. Well, we can&#8217;t have that yet. And so, when doing simple things like wanting to add an icon here for people to see like, kinda like a placeholder for an image or an icon.</p>\n\n\n\n<p>I used the HTML star, right? And I use that in ratings, you know, in design, like if you want to put a rating there, I put like five HTML stars, and I use it on feature sections. So, clever little things like that. It&#8217;s giving people enough to understand, oh this is what this is meant to be. This is the design. Oh, I might put my own icon here. Or even things like cleverly using the rows and group blocks to get things aligned how you want. Grouping of blocks to do unique things with them, spacing wise. It&#8217;s just a lot of clever usage of what&#8217;s there.</p>\n\n\n\n<p>And I think part of that does come from tinkering enough. And if you really want to get that design out of your head and on to the page, you&#8217;ll figure it out. But it might take, it might take some tinkering.</p>\n\n\n\n<p>[00:36:01] Nathan Wrigley: Yeah, I&#8217;m on the install that I have at the moment and I&#8217;m on the star rating. You&#8217;ve got five stars, and I can see that they&#8217;re using paragraph blocks. And then elsewhere you&#8217;re using the social icons block to display those social icons. And I guess that&#8217;s the experience you would want, is just pick an icon, much like you do in the social icons block and make it more straightforward. That&#8217;s really interesting.</p>\n\n\n\n<p>Why GitHub? Why not the WordPress repo? Was there some sort of decision there? Again, I should emphasize it, at this moment in time, if you want to grab this theme, you&#8217;re going to be heading over to GitHub and downloading it. Why there and not in the repo? Is there a decision behind that?</p>\n\n\n\n<p>[00:36:36] Mike McAlister: No philosophical decision. I think it will be on the repo soon actually. Like I said, with these block themes, there&#8217;s so much to learn and I wanted to put it out there. You know, it worked great for me when I was building it and making it. But I wanted to get it out there and get people using it to understand if there was any major shortcomings or just catch any early usability patterns that I was seeing. Any issues like that and see like, oh, actually people don&#8217;t love these patterns.</p>\n\n\n\n<p>Or, is there something about the workflow that I could improve before releasing it to a wider audience? So, I just mostly wanted to iron out all the kinks and GitHub was just the obvious place to do that. But to be honest a lot of the quirks that people have brought up with the theme on GitHub and the GitHub issues and stuff, are largely just Core issues. Just usability, preferences and workflow preferences and things like that.</p>\n\n\n\n<p>I haven&#8217;t uncovered any major issues and so I feel like what I&#8217;m going to do is kind of wrap it up. It&#8217;s already fully tested and gone through the theme check and everything. So it&#8217;s pretty much ready to go. And I think I&#8217;ll do that in the next week or two.</p>\n\n\n\n<p>[00:37:41] Nathan Wrigley: Oh, okay. In that case, by the time this podcast airs, this question will be somewhat moot. But anyway, worth, asking I think. I noticed as I was moving around on the site, olliewp.com. I noticed buried somewhere was referenced to Ollie Cloud, and that got me thinking, okay, in that case, is Ollie something bigger than simply this one theme?</p>\n\n\n\n<p>And so that&#8217;s where I&#8217;m going to take the conversation next. Is Ollie, in the same way that you had Array Themes and you had Atomic Blocks. Is Ollie something bigger for you, Mike? Is that a direction that you&#8217;re going to take it in? Are you now hoping to, sort of, have a bunch of things wrapped around in the Ollie branding?</p>\n\n\n\n<p>[00:38:22] Mike McAlister: I think so. I wasn&#8217;t sure about that initially. Again, this just kind of started as a experimental WordPress theme. But I don&#8217;t know the product creator in me, the entrepreneur in me, always tries to see things from that sphere as well. And so as I&#8217;m looking at the WordPress ecosystem, and I&#8217;m exploring what is this thing like now? It&#8217;s been a while since I&#8217;ve had a product out there.</p>\n\n\n\n<p>I do see all kinds of opportunities, and I&#8217;m still learning what they are. But I also have my own opinionated ideas about how we could wrap up this new, all these new capabilities, and deliver a new experience. A premium experience with some of this stuff. And so, on the Ollie WP website I had, I do have a box at the bottom about Ollie Cloud. And the idea there, I think is it could be Ollie Cloud, it could be Ollie Pro. I don&#8217;t know. I&#8217;m really just gathering feedback and seeing what people want, as I mentioned.</p>\n\n\n\n<p>But the idea is that all of these new features, these theme assets, patterns and theme json files and all that stuff. They&#8217;re all very lightweight, and very movable, and very modular, and they can kind of plug and play in to WordPress. And I don&#8217;t know, I think there&#8217;s an interesting idea about the experience about how we build sites these days.</p>\n\n\n\n<p>Should you have to start from scratch on every site? And should we still be copying and pasting themes around like it&#8217;s the mid two thousands? And is there a better way of doing that? Is there a better way of pulling in a site template?</p>\n\n\n\n<p>There&#8217;s a lot of interesting things there and I think, another thing I&#8217;m learning, and I think we&#8217;ve seen just generally is that, I don&#8217;t know, I think users are maybe a little fatigued with that in WordPress. Starting with a blank slate and being like, ugh, I have to find a theme and then I have to maybe try out a few themes, and then I don&#8217;t know if I need to pay for one, and then I need a form block, and then all of a sudden I need a buy a contact form.</p>\n\n\n\n<p>And then there&#8217;s a bunch of upsells for contact forms. And I don&#8217;t know. All that stuff to me, after all these years on WordPress, feels kind of icky. Uh, I guess. And I think customers and users want experiences and solutions more than they want individual themes and plugins. So a premium offering or a premium experience is something I&#8217;m interested in. What kind of experience can we do differently that delivers the same result, but takes all of the pain building on WordPress?</p>\n\n\n\n<p>[00:40:46] Nathan Wrigley: It kind of feels as if you may be repeating history for yourself here in that, you know, 2010. Array themes, we mentioned you were right there at the beginning of that tidal wave. Maybe with a fair wind, the same thing may happen again here? You may well have discovered that seam of gold, just as it&#8217;s starting to take off. Because all the chatter that I&#8217;m listening to at the moment is very much related to blocks and exploring patterns, blocks, block based themes, and how you can maybe tie those three things together.</p>\n\n\n\n<p>And pro blocks, which bring additional functionality. You know, areas where Core perhaps doesn&#8217;t cut it. I&#8217;m thinking, in my case, one that just keeps coming into my head is a superior navigation block, that does a whole load of styling and what have you. And who knows what&#8217;s going to be around in two or three years time? But there do seem to be companies who are straying into this and dabbling with it and trying, like you are, I guess, to figure out what the landscape may look like.</p>\n\n\n\n<p>[00:41:43] Mike McAlister: Yeah, I&#8217;m just as unsure I think as anybody about where this thing goes. But I&#8217;ve never been afraid to try and put in the work to get something going and see where it goes. Like I said at the top, I think there&#8217;s an opportunity here that we&#8217;ve not seen in a long time in WordPress and may never see again.</p>\n\n\n\n<p>And if these are the early days of the new generation of WordPress, I&#8217;m certainly going to try and throw my hat into the ring and craft a new experience, and maybe rebrand WordPress, and help outside folks see WordPress in a new light. Because I think that&#8217;s a huge part of this new reboot. Is that WordPress maybe hasn&#8217;t been traditionally like, quote unquote cool, to a lot of web folks.</p>\n\n\n\n<p>It&#8217;s certainly very popular and very prolific, but we maybe haven&#8217;t attracted the best talent and the best coverage in the wider web world. So, I look at it as an opportunity to rebrand that and maybe grab another cohort of the web that we haven&#8217;t had yet. And I think part of that is new products, and different products, and better looking products, and better experiences, and taking some of the pain out of WordPress that we&#8217;ve traditionally had.</p>\n\n\n\n<p>[00:42:57] Nathan Wrigley: If somebody listening to this is inspired about block themes in general, because that&#8217;s been the broad tenor of what we&#8217;ve talked about. Do you have any names to drop or resources that you&#8217;ve used, that enabled you to learn this kind of stuff? And if you do mention anything, I will endeavor to link it into the show notes.</p>\n\n\n\n<p>I don&#8217;t mean like a laundry list of hundreds of things, but a couple of things which you thought, actually, for those that are exploring this, this is a really great resource. This is a really profoundly interesting person and so on.</p>\n\n\n\n<p>[00:43:24] Mike McAlister: Yeah. First I would start, I&#8217;m somebody who I need to work from examples. I need to see the code and I need to see the, a working thing to get inspired and know how to do things. So, on that note you mentioned that Ollie is on GitHub. It will remain there. This version of Ollie that I&#8217;m putting out is always going to be free. And always going to be on GitHub. So it is a great resource for picking through the code, especially theme json, where I think there&#8217;s so, so much you can do in there, but it is hard to understand what you can do when you&#8217;re kind of looking at it from the outside.</p>\n\n\n\n<p>So if you&#8217;re curious, start there, because I&#8217;ve wired this thing together. I think how it should be, or largely how it should be at this moment in time. And so it&#8217;ll give you a great headstart and great understanding of how all these things tie together. So start there.</p>\n\n\n\n<p>And in terms of people, I actually, on my Twitter list or on my Twitter page, I have a list of WordPressers. And on that list is a great many folks who are a lot of voices in this stuff. WordPress Core folks like Nick Diego and Rich Tabor, and Carolina Nymark. These people spent a great deal of their time in WordPress, and listening to WordPress conversations, and taking part in the GitHub conversations. So I would check out that list. I can actually send it over to Nathan as well if he wants to include it?</p>\n\n\n\n<p>[00:44:43] Nathan Wrigley: Yeah, that&#8217;d be great. I will in some way copy and paste it into the show notes or somehow link to it. But yeah, that&#8217;s really helpful. Thank you so much.</p>\n\n\n\n<p>[00:44:50] Mike McAlister: Twitter is, love it or hate it. It is where traditionally the WordPress community has hung out, and so it still is the case, even though some people are coming and going. It still is where a lot of conversation happens on WordPress and WordPress development and what&#8217;s new. And so it is a good place even if you just want to read and follow along. It is a good place to see those conversations.</p>\n\n\n\n<p>[00:45:13] Nathan Wrigley: I will link to whatever it is that you send me, Mike. Thank you for that. Okay, just one final question. It&#8217;s more about people finding you really. If somebody&#8217;s listened to this and their interest has been peaked. What are the the best ways, it sounds like it might be Twitter, but it may not be. What are the best ways to get in touch with you, Mike?</p>\n\n\n\n<p>[00:45:32] Mike McAlister: Yeah, I&#8217;m most active on Twitter. Like I said, I think that&#8217;s kind of where our community is still thriving. And so, yeah, I&#8217;m on Twitter largely. My personal account is @mikemcalister. I do a great deal of tweeting about WordPress and design and the intersection of all these different things.</p>\n\n\n\n<p>And then, there&#8217;s a dedicated Twitter account for Ollie as well. You can follow that, that&#8217;s @buildwithollie. I&#8217;m also writing on the Ollie WP blog fairly regularly. So this is another place where I&#8217;m able to share my learnings of all of this stuff with block themes and WordPress in general. And, I&#8217;m writing some long form content, some short tips and tricks and, that&#8217;s all the time I have to hang out.</p>\n\n\n\n<p>[00:46:17] Nathan Wrigley: You have other important things to by the sounds of it. Mike, really appreciate you chatting to us today. Thank you so much, and every success with Ollie, whatever direction you take with that.</p>\n\n\n\n<p>[00:46:28] Mike McAlister: Thank you so much. I love chatting about this stuff and this was a great form for that, so thank you.</p>\n</div>\n\n\n\n<p>On the podcast today we have <a href=\"https://mikemcalister.com/\">Mike McAlister</a>, and he’s here today to talk about his experiences creating a block-based theme.</p>\n\n\n\n<p>Mike is a veteran product developer and designer in the WordPress space. He&#8217;s founded and sold multiple WordPress products like Array Themes and Atomic Blocks. Now he’s focused on the future of WordPress with his new product brand, Ollie.</p>\n\n\n\n<p>Mike kicks off the podcast by telling us about his WordPress journey, and how WordPress blocks have renewed his passion for the platform.</p>\n\n\n\n<p>We get into some history, and talk about the era when WordPress themes were extremely popular. Marketplaces like Envato made it possible to sell themes and create a career in ways hitherto unimagined.</p>\n\n\n\n<p>Mike explains what the key differences are between a block-based theme and a classic theme. How it’s possible to create themes inside the editor, and how you can do this without needing to know much code. We talk about the fact that, if you’re a coding expert, you could always create complex themes, but this fresh approach opens up the possibilities for those with less technical backgrounds. The experience in the editor might not be exactly what everyone wants, but it’s evolving quickly and maturing with every new release of WordPress.</p>\n\n\n\n<p>The conversation moves onto why Mike is so confident that block-based themes are going to succeed. You don’t need to use one, and your trusty classic theme and the associated Customizer will work for the foreseeable future.</p>\n\n\n\n<p>We then turn our attention to the technical hurdles that Mike has had to overcome. What new workflows and tools did he need to adopt and master to make his work possible? Mike’s been really focussed on using WordPress Core Blocks to create his themes, digging into the weeds of what they can do and what their limitations are. It’s been a path of steady learning, punctuated with minor setbacks when the editor and blocks are updated in unexpected ways. Thankfully, these bumps in the road are now relics of the past, as breaking changes have given way to stability.</p>\n\n\n\n<p>We then talk about a specific theme that Mike has just released. It’s called Ollie, and it’s the focus of the rest of the podcast. How did Mike build Ollie, and what is he hoping to achieve with this new brand?</p>\n\n\n\n<p>Patterns feature heavily in Ollie and we talk about how it’s possible to alter the look and feel of your site quickly. Typography and colours are easy to change with the new suite of design tools which ship with WordPress.</p>\n\n\n\n<p>If you’re wanting to develop block-based themes, or are just curious about how other developers are building them, this podcast is for you.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Useful links.</h2>\n\n\n\n<p><a href=\"https://themeforest.net/user/arraythemes\">Array Themes</a> on Themeforest</p>\n\n\n\n<p><a href=\"https://atomicblocks.com/\">Atomic Blocks</a></p>\n\n\n\n<p><a href=\"https://olliewp.com/\">OllieWP website</a></p>\n\n\n\n<p><a href=\"https://github.com/OllieWP/ollie\">Ollie GitHub repo</a></p>\n\n\n\n<p><a href=\"https://twitter.com/i/lists/1648871212645318658\">WordPressers Twitter list</a> mentioned by Mike</p>\n\n\n\n<p><a href=\"https://twitter.com/mikemcalister\">Mike&#8217;s Twitter</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 May 2023 14: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:\"Nathan Wrigley\";s: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:81:\"Do The Woo Community: Let’s Meet or Do a Quick Recording at WCEU 2023 in Athens\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"https://dothewoo.io/?p=75259\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:77:\"https://dothewoo.io/lets-meet-or-do-a-quick-recording-at-wceu-2023-in-athens/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:412:\"<p>If you are going to be there, and I know I\'m going to be there, hope we get to see each other. </p>\n<p>&gt;&gt; The post <a rel=\"nofollow\" href=\"https://dothewoo.io/lets-meet-or-do-a-quick-recording-at-wceu-2023-in-athens/\">Let&#8217;s Meet or Do a Quick Recording at WCEU 2023 in Athens</a> appeared first on <a rel=\"nofollow\" href=\"https://dothewoo.io\">Do the Woo - a WooCommerce Builder Community</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 May 2023 09: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:5:\"BobWP\";s: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:69:\"Do The Woo Community: Builder Tips from WordCamp Europe 2023 Speakers\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"https://dothewoo.io/?p=75225\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:51:\"https://dothewoo.io/wceu-2023-speaker-builder-tips/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:369:\"<p>We continue our tradition and highlight some of the voices from WordCamp Europe 2023 speakers.</p>\n<p>&gt;&gt; The post <a rel=\"nofollow\" href=\"https://dothewoo.io/wceu-2023-speaker-builder-tips/\">Builder Tips from WordCamp Europe 2023 Speakers</a> appeared first on <a rel=\"nofollow\" href=\"https://dothewoo.io\">Do the Woo - a WooCommerce Builder Community</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 May 2023 07:42: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:5:\"BobWP\";s: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:18:\"Matt: Power of One\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=85361\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://ma.tt/2023/05/power-of-one/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:671:\"<p>I think part of what <a href=\"https://ma.tt/2003/01/the-blogging-software-dilemma/#comment-445\">Mike Little showed with his comment on my blog</a> that led to the creation of WordPress, is that it&#8217;s not about how many views you have, how many likes, trying to max all your stats&#8230; sometimes a single connection to another human is all that matters. </p>\n\n\n\n<p><em>All it takes is a spark. </em></p>\n\n\n\n<p>That&#8217;s what is beautiful about blogging. It&#8217;s too bad the advertising and social media platforms got us all caught up in status games for the past 15 years.</p>\n\n\n\n<p>All you need is one view, one like, one comment, to change your life.</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 May 2023 17:23: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: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: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:24:\"Donncha: WordPress at 20\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"https://odd.blog/?p=89589836\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:44:\"https://odd.blog/2023/05/27/wordpress-at-20/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1813:\"<p>Happy birthday, WordPress!</p>\n\n\n\n<p>What does that even mean, though? WordPress is the community of people who have built it and contributed to it over the last <a href=\"https://wordpress.org/news/2023/05/celebrating-20-years-of-wordpress/\">two decades</a>, and before that, when it was a little known blogging package called b2. So, thank you so much to everyone who has contributed to WordPress over the years.</p>\n\n\n\n<p>WordPress has given me, and countless others, many opportunities we couldn&#8217;t have dreamed of. Just over two years <a href=\"https://wordpress.org/news/2003/05/wordpress-now-available/\">after WordPress was first released,</a> I joined Automattic. Working on two machines, <a href=\"https://ma.tt/\">Matt</a> and I started work on the first WordPress.com. Here I am, almost 18 years later, and still working on WordPress related software. What a journey. Matt <a href=\"https://ma.tt/2023/05/wp20-audrey-scholars/\">marked the occasion</a> by announcing a generous <a href=\"https://audrey.co/scholars/\">scholarship programme</a>. Matt was also <a href=\"https://ma.tt/2023/05/with-mike-little-and-dries-buytaert/\">on stage in London</a> with Mike Little and Dries Buytaert last week in a conversation I must listen to yet, but I&#8217;ve heard some good things about it WRT Gutenberg.</p>\n\n\n\n<p>Anyway, it&#8217;s almost midnight here, but I wanted to get some words down on this blogging platform we all love. May we all be here for the next twenty years.</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n\n</div>\n\n\n\n<p>Oh, and before I go, you can hear me say a few words about meetups at Automattic in the <a href=\"https://distributed.blog/2023/05/26/episode-30-meetups/\">latest episode of the Distributed podcast</a>. It&#8217;s edited well, that&#8217;s all I&#8217;ll say!</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:\"Sat, 27 May 2023 22:56: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:7:\"Donncha\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:32:\"Matt: WP20 &amp; Audrey Scholars\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=85238\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:43:\"https://ma.tt/2023/05/wp20-audrey-scholars/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1140:\"<p>Today is the 20<sup>th</sup> anniversary of the <a href=\"https://wordpress.org/news/2003/05/wordpress-now-available/\">first release of WordPress</a>. None of us knew what we were getting into when it started, but we had a shared conviction that the <a href=\"https://ma.tt/2014/01/four-freedoms/\">four freedoms of the GPL</a> combined with a mission to democratize publishing was something worth spending our time on. There will <a href=\"https://wp20.wordpress.net/\">be celebrations in cities around the world</a>, please join if there&#8217;s one happening near you.</p>\n\n\n\n<p>Twenty years later, I am proud and humbled by what the community around <a href=\"https://wordpress.org/\">WordPress</a> has created, and jazzed about what we will create in the coming decades.</p>\n\n\n\n<p>I&#8217;m also excited to mark this milestone by publicly launching the <a href=\"https://audrey.co/scholars/\">Audrey Scholars program</a>. It is, like all things, an experiment, but I&#8217;m curious to see how it unfolds and perhaps one day an Audrey Scholar could even take the responsibility of leading WordPress, when my capacity to do so has passed.</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, 27 May 2023 22:10:17 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s: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: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:28:\"WPTavern: WordPress Turns 20\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=145526\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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://wptavern.com/wordpress-turns-20\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:5804:\"<p><a href=\"https://wp20.wordpress.net/\">WordPress is 20</a> years old today, an estimable milestone for open source software running on the web. Parties are happening all over the world &#8211; in Geneva, Los Angeles, Istanbul, Bangkok, Lahore, Jakarta, Mumbai &#8211; in over 150 different locations.</p>\n\n\n\n<img />\n\n\n\n<p>The software has been downloaded more than 2.8 billion times but the most impressive stat is the project&#8217;s staggering 112,000 contributors, past and present, who have improved and energized WordPress with their passion, talent, and hard work. </p>\n\n\n\n<p>None of the global collaboration we enjoy today would exist without the inspiration and leadership of co-founders Matt Mullenweg and Mike Little. They worked in a distributed way from day one, having never met when they started WordPress. This way of working created the foundation for a global contributor base that now supports <a href=\"https://w3techs.com/technologies/details/cm-wordpress\">43% of the world&#8217;s websites</a>.</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">WordPress celebrates 20 years tomorrow. It\'s grown from a comment on a blog post to a web spanning phenomenon. Thanks to an outstanding community and the freedoms of Open Source. Happy Birthday, WordPress! <a href=\"https://twitter.com/hashtag/WP20?src=hash&ref_src=twsrc%5Etfw\">#WP20</a> <a href=\"https://twitter.com/hashtag/WordPress?src=hash&ref_src=twsrc%5Etfw\">#WordPress</a> <a href=\"https://t.co/fght4XMJXb\">pic.twitter.com/fght4XMJXb</a></p>&mdash; Mike Little (@mikelittlezed1) <a href=\"https://twitter.com/mikelittlezed1/status/1662013891856027649?ref_src=twsrc%5Etfw\">May 26, 2023</a></blockquote>\n</div>\n\n\n\n<p>WordPress has had a profound impact on the lives of millions of users, giving them a voice on the web and the tools to launch businesses, create jobs, and bring ideas to life. The <a href=\"https://twitter.com/hashtag/WP20?src=hashtag_click\">#WP20</a> hashtag is replete with stories of how WordPress and its community have given people a place of belonging and launched them into successful endeavors.</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">Congratulations WordPress &#8211; 20 already <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f389.png\" alt=\"🎉\" class=\"wp-smiley\" /><br /><br />I discovered WordPress at the lowest point in my life back in 2012 when I was homeless and jobless in the new city. I was desperate to get back to tech but as a college dropout &#8211; there were no jobs for me in IT. <br /><br />From building my first… <a href=\"https://t.co/Um1Sbcl7RQ\">pic.twitter.com/Um1Sbcl7RQ</a></p>&mdash; Rajendra Zore (@rajendrazore) <a href=\"https://twitter.com/rajendrazore/status/1662450273703575553?ref_src=twsrc%5Etfw\">May 27, 2023</a></blockquote>\n</div>\n\n\n\n<p>Does WordPress have 20 more years in its future? Two of the biggest challenges ahead are capturing the hearts of the next generation of builders and maintainers, and preserving the open web where WordPress has thrived. The project&#8217;s 2022 annual survey showed that the respondent demographic is aging. The percentage of respondents under age 40 has decreased every year, as WordPress enters its third decade.  </p>\n\n\n\n<img />\n\n\n\n<p>Ensuring that WordPress remains resilient and relevant to future generations has required some courageous leadership decisions, like introducing the block editor, and may bring some significant shifts down the road, as we enter a <a href=\"https://wptavern.com/wordpress-contributors-discuss-how-core-can-better-enable-ai-innovation\">new era of AI-powered innovation</a>.</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">Happy birthday WordPress…  Our youngest attendee singing it for you. We Love <a href=\"https://twitter.com/WordPress?ref_src=twsrc%5Etfw\">@WordPress</a> <a href=\"https://twitter.com/hashtag/WordPress?src=hash&ref_src=twsrc%5Etfw\">#WordPress</a> <a href=\"https://twitter.com/hashtag/wp20?src=hash&ref_src=twsrc%5Etfw\">#wp20</a> <a href=\"https://twitter.com/sajithvmohan?ref_src=twsrc%5Etfw\">@sajithvmohan</a> <a href=\"https://twitter.com/mbigul?ref_src=twsrc%5Etfw\">@mbigul</a> <a href=\"https://twitter.com/Ajay_Aravind?ref_src=twsrc%5Etfw\">@Ajay_Aravind</a> <a href=\"https://twitter.com/ARUN_PK10?ref_src=twsrc%5Etfw\">@ARUN_PK10</a> <a href=\"https://twitter.com/ajith_rn?ref_src=twsrc%5Etfw\">@ajith_rn</a> <a href=\"https://twitter.com/HariShanker?ref_src=twsrc%5Etfw\">@HariShanker</a> <a href=\"https://twitter.com/twittnebu?ref_src=twsrc%5Etfw\">@twittnebu</a> <a href=\"https://twitter.com/sarunrajkm?ref_src=twsrc%5Etfw\">@sarunrajkm</a> <a href=\"https://twitter.com/Hitha_ck?ref_src=twsrc%5Etfw\">@Hitha_ck</a> <a href=\"https://twitter.com/swethabc9?ref_src=twsrc%5Etfw\">@swethabc9</a> <a href=\"https://twitter.com/farhansrambiyan?ref_src=twsrc%5Etfw\">@farhansrambiyan</a> <a href=\"https://twitter.com/GoDaddyPro?ref_src=twsrc%5Etfw\">@GoDaddyPro</a> <a href=\"https://twitter.com/GoDaddy?ref_src=twsrc%5Etfw\">@GoDaddy</a> <a href=\"https://t.co/vI1XVIVbyn\">pic.twitter.com/vI1XVIVbyn</a></p>&mdash; WordPress Kozhikode (@wpkozhikode) <a href=\"https://twitter.com/wpkozhikode/status/1662454627416309760?ref_src=twsrc%5Etfw\">May 27, 2023</a></blockquote>\n</div>\n\n\n\n<p>Major milestones are are a good time to acknowledge the efforts that made all of this possible. Thank you, dedicated contributors, for lending WordPress a little bit of your fire and a lot of your patience, nurturing, and support. The code under the hood may look very different from the early days in 2003, but WordPress is still that same scrappy, irrepressible force of good on the web that users can count on for years to come.</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, 27 May 2023 21:19:05 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:21;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:142:\"Gutenberg Times: Happy 20th Anniversary, Governance of Block Editor, Playground and a new FSE call for testing   #WP20 – Weekend Edition 255\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=24285\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:144:\"https://gutenbergtimes.com/happy-20th-anniversary-governance-of-block-editor-playground-and-a-new-fse-call-for-testing-wp20-weekend-edition-255/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:23698:\"<h2 class=\"wp-block-heading\" id=\"0-strong-happy-20th-anniversary-to-word-press-strong\">Happy 20th Anniversary to WordPress! </h2>\n\n\n\n<p>Congratulations to everyone working, teaching, developing, designing, writing, supporting, in short: being part of the WordPress community and the ecosystem. Open-Source is a fascinating idea that has been proven no only successful in certain parts of the world but in all 200 countries where WordPress is used! Millions of lives changed with technology and being able to tell their stories online. It&#8217;s as some Americans would call it, a BFD, a big &#8216;fine&#8217; deal.  It&#8217;s hard to put in words on how blessed I feel as I have had the privilege to earning a living, being involved in the community and now contributing full-time wherever my skills are needed or wanted.  </p>\n\n\n\n<img />\n\n\n\n<p>A real treat is the video <a href=\"https://www.youtube.com/watch?v=QYhIItlPPOs\"><strong>20 years of WordPress: A conversation with Matt Mullenweg, Mike Little and Dries Buytaert</strong></a> &#8211; The founders of the open-source CMSs, Drupal and WordPress, were for the first time together on stage and had a wonderful conversation about their beginnings of the web, their projects, and the future of building open-source software. </p>\n\n\n\n<p><em><strong><a href=\"https://github.com/WordPress/wp20-book\">Building Blocks: The Evolution of WordPress</a></strong></em>, a book documenting the second decade of the&nbsp;<strong>WordPress</strong>&nbsp;project, will be&nbsp;released today. </p>\n\n\n\n<p>Join the #WP20 the <a href=\"https://wp20.wordpress.net/\">150+ events around the world</a>, <a href=\"https://wp20.wordpress.net/news/\">Things to do</a> and <a href=\"https://wp20.wordpress.net/live/\">tweets </a>online  on <a href=\"https://wp20.wordpress.net/\">wp20.wordpress.net</a>. Incidentally, at WordCamp Europe I will show off my 20-year Anniversary T-Shirt and I added some stickers to my laptop, too. You can get both from the <a href=\"https://mercantile.wordpress.org/product-category/wp20/\">swag store under WP20 category</a>. What is your favorite #WP20 Celebration? </p>\n\n\n\n<p>If you&#8217;d like to listen to some community voices who talking about their WordPress experience and history: Follow the <a href=\"https://wptavern.com/tag/anniversary\"><strong>WP Jukebox Mini-series on WP20 Anniversary</strong></a> &#8211; hosted by David Bisset. </p>\n\n\n\n<p>The <strong>WordPress Marketing team</strong> has been giving daily prompts for bloggers, developers, designers, photographers, and contributors in the <a href=\"https://make.wordpress.org/marketing/tag/from-blogs-to-blocks/\"><strong>From Blogs to Blocks</strong></a> campaign for the last 20 days. It has been a huge success! So many people participated.  You should make a point of going back and reading the comments from contributors. </p>\n\n\n\n<p><strong>David Wolfpaw</strong> mentioned the <a href=\"https://davidwolfpaw.com/day-5-wp20-from-blogs-to-blocks/\">Museum of Block Art</a> as his &#8216;<em>most creative use of WordPress that you have ever seen.</em>&#8216; (The Day 5 Prompt of #wp20 From Blogs to Blocks Campaign by the WordPress Marketing team. )</p>\n\n\n\n<p>Now, this Weekend edition is not all about the 20-year anniversary. The <a href=\"https://make.wordpress.org/marketing/2023/05/17/day-10-wp20-from-blogs-to-blocks/\">Day 10 prompt of May 25th</a>, for bloggers: &#8220;<em>What upcoming WordPress projects are you most excited to see happen?</em>&#8221; is a great segue back to the upcoming WordPress 6.3 release.  </p>\n\n\n\n<p>Three participants shared their thoughts: </p>\n\n\n\n<ul>\n<li>&#8220;I am really excited of Media Management. It will be a really cool thing.&#8221; wrote <a href=\"https://chetanprajapati.com/wp-day-10-i-am-excited-for-wordpress-media-management/\"><strong>Chetan Prajapati</strong></a></li>\n\n\n\n<li><strong><a href=\"https://davidwolfpaw.com/day-10-wp20-from-blogs-to-blocks/\">David Wolfpaw</a></strong> is excited about the upcoming APIs change (Block API, Fonts API) , PHP8.2 compatibility of Core and the Custom CSS in Theme variations. </li>\n\n\n\n<li><strong><a href=\"https://dogwonder.co.uk/2023/05/day-10-wordpress-roadmap/\">Rich Holman</a></strong> is eagerly awaiting the Interactivity API  and tells you why</li>\n</ul>\n\n\n\n<p>What are you excited about when you read through the <a href=\"https://make.wordpress.org/core/2023/05/18/roadmap-to-6-3/\">Roadmap 6.3</a> post? Please share in the comments or via email. </p>\n\n\n\n<p>And now back to the regular programming! </p>\n\n\n\n<p>Have a wonderful weekend! </p>\n\n\n\n<p>Yours, 💕<br /><em>Birgit</em></p>\n\n\n\n\n\n\n<div class=\"wp-block-group has-light-background-background-color has-background is-layout-flow wp-block-group-is-layout-flow\"><div class=\"wp-block-group__inner-container\">\n<p><strong>Table of Contents</strong></p>\n\n\n\n<div class=\"wp-block-sortabrilliant-guidepost\"><ul><li><a href=\"https://gutenbergtimes.com/feed/#0-strong-happy-20th-anniversary-to-word-press-strong\">Happy 20th Anniversary to WordPress! </a></li><li><a href=\"https://gutenbergtimes.com/feed/#0-word-press-release-information\">Developing Gutenberg and WordPress</a></li><li><a href=\"https://gutenbergtimes.com/feed/#0-p\">Plugins, Themes, and Tools for #nocode site builders and owners</a></li><li><a href=\"https://gutenbergtimes.com/feed/#3-theme-development-for-full-site-editing-and-blocks\">Theme Development for Full Site Editing and Blocks</a></li><li><a href=\"https://gutenbergtimes.com/feed/#3-building-themes-for-fse-and-word-press\">Building Blocks and Tools for the Block editor. </a></li></ul></div>\n</div></div>\n\n\n\n\n<h2 class=\"wp-block-heading\" id=\"0-word-press-release-information\">Developing Gutenberg and WordPress</h2>\n\n\n\n<p><strong>Sarah Gooding</strong> reported on last week&#8217;s <a href=\"https://wptavern.com/gutenberg-15-8-adds-pages-menu-to-site-editor-revisions-ui-to-global-styles\">Gutenberg 15.8 Adds Pages Menu to Site Editor, Revisions UI to Global Styles</a>. </p>\n\n\n\n<div class=\"wp-block-group has-light-background-background-color has-background is-layout-flow wp-block-group-is-layout-flow\"><div class=\"wp-block-group__inner-container\">\n<p><strong>🎙️ </strong> New episode:  <a href=\"https://gutenbergtimes.com/podcast/gutenberg-changelog-83-wordpress-gutenberg-experiments/\">Gutenberg Changelog #83 – WordPress 6.2.1, Gutenberg 15.7, 15.8 and experiments</a> with special guest, Fabian Kägy and host Birgit Pauli-Haack</p>\n</div></div>\n\n\n\n<p><strong>Anne McCarthy</strong> continues her series of <em>Core Editor Improvements</em> with a post<a href=\"https://make.wordpress.org/core/2023/05/22/core-editor-improvement-smoother-site-editing/\"> </a>about the <a href=\"https://make.wordpress.org/core/2023/05/22/core-editor-improvement-smoother-site-editing/\"><strong>Smoother Site Editing</strong></a> experience. The big improvements coming are Revisions and Block Themes previews. She explains the genesis as well as how the new features are supposed to work.  </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Jamie Marsland </strong>posted <a href=\"https://www.pootlepress.com/2023/05/its-time-to-get-rid-of-the-wordpress-gutenberg-plugin/\"><strong>It’s Time to Get Rid of the WordPress Gutenberg Plugin</strong></a>. He ruminates that Gutenberg in WordPress and Gutenberg as a plugin confused site owners. Some users don&#8217;t know that the block editor has been part of WordPress since 2018, and and think, they need to install the Gutenberg plugin to get it. Marsland does not want to deprive users to get early access to new features, nor developers to test new features with a smaller feedback loop. If I understand Marsland&#8217;s plea, he feels a Core Beta program might be more suitable than a separate plugin that confuses users and fragments the development. Marsland makes a strong case. Having a faster release cycle for WordPress core, is something the core team has been kicking around, but it doesn&#8217;t seem to materialize. </p>\n\n\n\n<p>The deployment of a major WordPress release is coupled with quite a few manual processes. There are many hands needed for a 2-month release cycle. Just look at the <a href=\"https://make.wordpress.org/core/6-2/\">release squad for 6.2</a>. There are around 20 people involved just for the release alone. The total number of contributors was  over 600. Getting that group together for more releases has been a struggle in the years that planned for four releases instead of the three recently. </p>\n\n\n\n<p>In contrast to that, a Gutenberg plugin release every two weeks, is mostly automated and takes about one to three people to put a release together, with 60 to 70 contributors merging PRs for the release milestones. As long as those release processes between WordPress core and Gutenberg plugin are not synced up, keeping new feature development in the Gutenberg plugin seems to be a very WordPress-y solution. </p>\n\n\n\n<p><strong>Anne McCarthy</strong> published the next call for testing: <a href=\"https://make.wordpress.org/test/2023/05/18/fse-program-testing-call-23-rapid-revamp/\"><strong>FSE Program Testing Call #23: Rapid Revamp</strong></a>. Following the instructions it will give contributors great insight in the features slated for 6.3 and their feedback will be instrumental to the quality of the user experience of many of the enhancements. If you decide to participate, you are asked to test five newly built features: </p>\n\n\n\n<ul>\n<li>Preview Block themes</li>\n\n\n\n<li>Rely on Revisions of Global Styles</li>\n\n\n\n<li>Content and template editing in the Site Editor</li>\n\n\n\n<li>Using the Command tool</li>\n</ul>\n\n\n\n<p></p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"0-p\">Plugins, Themes, and Tools for #nocode site builders and owners</h2>\n\n\n\n<p>Last week we mentioned <strong>Riad Benguella</strong>&#8216;s post <a href=\"https://make.wordpress.org/core/2023/05/17/command-center-request-for-feedback/\">Command Center: Request for feedback</a>. <strong>Sarah Gooding</strong> picked up the topic again for the WPTavern: <a href=\"https://wptavern.com/wordpress-is-developing-a-command-center-for-quick-search-and-navigation-inside-the-admin\"><strong>WordPress Is Developing a Command Center for Quick Search and Navigation Inside the Admin</strong></a> and wrote: &#8220;Feedback so far had been generally positive, but contributors on the project will have the challenge of providing real examples of the Command Center’s benefits in order for some to fully realize the vision for this feature as more than just a fancy shortcut for power users.&#8221; The conversation continues in the comments of both posts. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>Hostinger&#8217;s head of content, <strong>Emma Young </strong>interviewed <strong>Tammie Lister,</strong> the first Gutenberg design lead, in this video: <a href=\"https://www.youtube.com/watch?v=_a6iywQvCkg\"><strong>How Gutenberg Empowers Users and Its Future in the WordPress Ecosystem</strong></a>. Lister shared her insights on how Gutenberg evolves through experimentation and brings practical value to its users. The show is the second episode of Hostinger Academy podcast. </p>\n\n\n\n<img />\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>314 Block Themes in the WordPress repository</strong> &#8211; My Three picks</p>\n\n\n\n<p><strong>WPZoom</strong> published <a href=\"https://wordpress.org/themes/foodie-blocks/\"><strong>Foodie Blocks </strong></a>&#8211; a block theme with patterns and style variations for modern Food Blogger, that offers &#8220;flexibility and customization options to showcase your culinary journey&#8221; </p>\n\n\n\n<p><strong>Roman Fink</strong>, new to WordPress.org submitted his first theme even:  <a href=\"https://wordpress.org/themes/papanek/\"><strong>Papanek</strong></a>, a theme for freelancers and agencies. &#8220;Create simple and clear landing pages effortlessly with 54 ready-to-use patterns. &#8220;. The theme as inspired by <em>Victor Papanek</em>, &#8220;an Austrian-born American designer and educator, who became a strong advocate of the socially and ecologically responsible design of products, tools, and community infrastructures. &#8220;(<a href=\"https://en.wikipedia.org/wiki/Victor_Papanek\">Wikipedia</a>)</p>\n\n\n\n<a href=\"https://wordpress.org/themes/papanek/\"><img /></a>\n\n\n\n<p><strong><a href=\"https://profiles.wordpress.org/seedwebs\">Seed Webs</a></strong>, a design studio from Thailand, added their second block theme to the repository: <strong><a href=\"https://wordpress.org/themes/pai-page/\">Pai Page</a></strong> &#8211; a one-page block theme with seven patterns and two style variations. It&#8217;s certainly a great starting point for an image heavy site. Even if you need more than one page, you can always create more templates and use it for pages and posts. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Sarah Gooding</strong> reviewed one theme for the WPTavern: <a href=\"https://wptavern.com/shufflehound-releases-free-lemmony-child-theme-for-agencies\"><strong>Shufflehound Releases Free Lemmony Child Theme for Agencies</strong></a> and also mentions the accompanying plugin with custom blocks: &#8216;The Lemmony Companion plugin, recommended when users install the theme, adds a handful of custom blocks that some of the patterns rely on to work. It includes blocks for a counter, icon, post featured image caption, typing text, hero auto-slider, and accordion.&#8221; she wrote. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>The <strong>Learn.WordPress</strong> team published a few more quick tutorials for WordPress content creators</p>\n\n\n\n<ul>\n<li><a href=\"https://learn.wordpress.org/tutorial/how-to-add-a-blog-or-news-page-to-any-wordpress-website/\">How to add a blog or news page to any WordPress website</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/tutorial/building-a-page-with-only-patterns/\">Building a page with only patterns</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/tutorial/wordpress-editor-modes-for-streamlining-content-creation/\">WordPress editor modes for streamlining content creation</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/tutorial/exploring-category-templates-with-block-themes/\">Exploring category templates with block themes</a></li>\n</ul>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Munir Kamal</strong>, at Gutenberg Hub, published a tutorial on <a href=\"https://gutenberghub.com/how-to-create-stacking-sections-in-wordpress/\"><strong>How to create stacking sections in WordPress</strong></a>. Inspired by the new Community theme <a href=\"https://wordpress.org/themes/stacks/\">Stacks</a>, Kamal teaches you how to create a similar stacking effect without changing your theme, using the Group block and some CSS magic in the Advanced CCS settings. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>In his post,&nbsp;<a href=\"https://speckyboy.com/wordpress-paths/\"><strong>WordPress Offers Two Very Different Paths: That’s a Good Thing</strong></a>, <strong>Eric Karkovack</strong> makes the case that just because there are new features coming in with the Site Editor and block themes, the tried and true classic theme is a valid path to build a site. Both paths are available and with the backwards compatibility promise that WordPress core gives, it will stay that way in the future. All the new features do is make WordPress more flexible and if users and site owners use block themes, they can modify and customize their site in ways, that is not possible with classic themes. Karkovack concluded: &#8220;This is what separates WordPress from other platforms. You aren’t stuck with a single way to do things. Sometimes this can create extra layers of complexity. But it’s arguably better than being limited in how or what you can build.&#8221;</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"3-theme-development-for-full-site-editing-and-blocks\">Theme Development for Full Site Editing and Blocks</h2>\n\n\n\n<p>&#8220;Did you know that you can customize core block style variations directly from theme.json?&#8221; Asked <strong>Justin Tadlock</strong> <a href=\"https://twitter.com/justintadlock/status/1662127521960165377\">on Twitter.</a> In his latest post on the WordPress Developer Blog,  <a href=\"https://developer.wordpress.org/news/2023/05/customizing-core-block-style-variations-via-theme-json/\"><strong>Customizing core block style variations via theme.json</strong></a>, Tadlock shows you how, and also points to additional enhancements that are being worked on. </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 2022&#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. Updated by yours truly.  <a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/keeping-up-with-gutenberg-index-2020/\"><em>The index 2020 is here</em></a></p>\n\n\n\n\n<h2 class=\"wp-block-heading\" id=\"3-building-themes-for-fse-and-word-press\">Building Blocks and Tools for the Block editor. </h2>\n\n\n\n<p><strong>Nick Diego </strong>published <a href=\"https://developer.wordpress.org/news/2023/05/curating-the-editor-experience-with-client-side-filters/\">Curating the Editor experience with client-side filters</a> on the WordPress Developer Blog. He explains: </p>\n\n\n\n<ul>\n<li>How to get started <a href=\"https://developer.wordpress.org/news/2023/05/curating-the-editor-experience-with-client-side-filters/#getting-started-with-client-side-filters\">with client-side filters</a></li>\n\n\n\n<li>How to <a href=\"https://developer.wordpress.org/news/2023/05/curating-the-editor-experience-with-client-side-filters/#restricting-settings-by-block-attributes\">restrict settings by block attributes</a></li>\n\n\n\n<li>How to restrict settings<a href=\"https://developer.wordpress.org/news/2023/05/curating-the-editor-experience-with-client-side-filters/#restricting-settings-by-user-permissions-and-post-type\"> by user permissions and post type</a></li>\n\n\n\n<li>And how to restring <a href=\"https://developer.wordpress.org/news/2023/05/curating-the-editor-experience-with-client-side-filters/#restricting-settings-based-on-block-context\">settings based on block context</a></li>\n</ul>\n\n\n\n<p>The recording of this week&#8217;s Hallway Hangout with the same topic is now available on WordPress.TV. In this information conversation, <strong>Nick Diego</strong> and <strong>Justin Tadlock</strong> talked and demoed the various use cases described in the above post and answered questions from the audience. <a href=\"https://wordpress.tv/2023/05/25/hallway-hangout-curating-the-editor-and-building-block-themes-for-clients/\"><strong>Hallway Hangout: Curating the editor and building block themes for&nbsp;clients</strong></a></p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><br />In Episode 56: of the WP Briefing, Josepha Haden Chomphosy had two guests on the show: <strong>Rich Tabor</strong> and <strong>Adam Zielinsk</strong>i who discussed <a href=\"https://wordpress.org/news/2023/05/episode-56-what-to-know-about-wordpress-playground/\"><strong> What to Know About WordPress Playground</strong></a>, its capabilities and promise for WordPress eco system. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>In the latest episode of the WPTavern Jukebox podcast, Nathan Wrigley talked to <a href=\"https://wptavern.com/podcast/77-mario-santos-and-luis-herranz-on-what-the-interactivity-api-is-and-how-you-can-use-it\"><strong>Mario Santos and Luis Herranz on what the interactivity API is and how you can use it</strong></a>. The project hopes to absorb complexity and make the creation of interactive objects fairly trivial. Mario and Luis talk about examples of where the API might be used and how it can be implemented.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>The recordings of episodes 6 and 7 of <strong>Ryan Welcher</strong>&#8216;s Series of <em>Bring me your Issues</em> Live streams are now available on YouTube: </p>\n\n\n\n<ul>\n<li><a href=\"https://www.youtube.com/watch?v=aGqxuQNSBpQ\"><strong>Reviewing Gutenberg 15.6 Features | Bring Me Your Issues #6&nbsp;</strong></a></li>\n\n\n\n<li><a href=\"https://www.youtube.com/watch?v=GEXQeaSdIcc\"><strong>Bring Me Your Issues #7! Live stream from May 4, 2023</strong></a></li>\n</ul>\n\n\n\n<p>On Twitch, Ryan Welcher started the series: <strong>Creating a block theme for developers.</strong></p>\n\n\n\n<p><a href=\"https://www.twitch.tv/videos/1823056725\">Part 1</a> and <a href=\"https://www.twitch.tv/videos/1828949648\">Part 2</a> are available on Twitch and will soon come to YouTube.</p>\n\n\n\n<p>Welcher used the work-in-progress started them, <strong>Justin Tadlock</strong> has been working on. If you&#8217;d like to follow along, the theme is available on GitHub, <a href=\"https://github.com/justintadlock/first-draft\"><strong>First Draft</strong></a> </p>\n\n\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 class=\"has-text-align-right has-small-font-size\"><em>Questions? Suggestions? Ideas? Don&#8217;t hesitate to send <a href=\"mailto:pauli@gutenbergtimes.com\">them via email</a> or send me a message on WordPress Slack or Twitter @bph</em>. </p>\n\n\n\n<p class=\"has-text-align-right has-small-font-size\">For questions to be answered on the <a href=\"http://gutenbergtimes.com/podcast\">Gutenberg Changelog</a>, send them to <a href=\"mailto:changelog@gutenbergtimes.com\">changelog@gutenbergtimes.com</a></p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n\n<p>Featured Image: Auto-generated wooden machine by AI via Imajinn plugin </p>\n\n\n\n<hr class=\"wp-block-separator has-css-opacity 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 type=\"submit\" 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 has-css-opacity 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 May 2023 12:45: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: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: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:53:\"WordPress.org blog: Celebrating 20 Years 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:35:\"https://wordpress.org/news/?p=14981\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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/2023/05/celebrating-20-years-of-wordpress/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:5411:\"<p>You did it and I think congratulations are in order! You, dear WordPress enthusiast, have helped WordPress thrive for the past 20 years. It’s an incredible accomplishment, and I couldn’t be more thankful.</p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p>Did you know: WordPress is thirteen years older than TikTok (<a href=\"https://en.wikipedia.org/wiki/TikTok\">2016</a>), came four years before Tumblr (<a href=\"https://en.wikipedia.org/wiki/Tumblr\">2007</a>) and the first iPhone (<a href=\"https://en.wikipedia.org/wiki/IPhone_(1st_generation)\">2007</a>), beat Facebook to market by about a year (<a href=\"https://en.wikipedia.org/wiki/Facebook\">2004</a>), and is about five weeks older than Tesla (<a href=\"https://en.wikipedia.org/wiki/Tesla,_Inc.\">July 2003</a>).</p>\n</blockquote>\n\n\n\n<p>May 27, 2023, marks exactly 20 years since Matt Mullenweg and Mike Little <a href=\"https://wordpress.org/about/\">forked b2/cafelog</a> to create <a href=\"https://wordpress.org/documentation/wordpress-version/version-0-70/\">WordPress Version 0.70</a>. Quite a bit has taken place in the past 20 years, and imagine how much more we can accomplish together in the next 20!</p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p><em>You can read about the first 20 years of WordPress in two parts:</em><br /><a href=\"https://wordpress.org/book/milestones/\">Milestones: The Story of WordPress (2003 &#8211; 2013)</a><br /><a href=\"https://wordpress.org/book/\">Building Blocks: The Evolution of WordPress (2013 &#8211; 2023)</a></p>\n</blockquote>\n\n\n\n<p>Whether you celebrate at one of the <a href=\"https://wp20.wordpress.net\">100+ meetup</a> events, are strutting your stuff in some <a href=\"https://mercantile.wordpress.org/product-category/wp20/\">limited edition WP20 swag</a>, or joining in a collective <a href=\"https://wp20.wordpress.net/live/\">reflection on WordPress</a> in your unique way on social media, WP20 is a celebration of you – the WordPress community.</p>\n\n\n\n<h2 class=\"wp-block-heading\">A Common Legacy</h2>\n\n\n\n<p>As I scroll through the amazing photos and memories shared on social media of past WordCamps and meetups, I think about the people who got WordPress to where it is today. The thousands of contributors who patched bugs and tested new features; organized events and fostered community; or wrote documentation and translated strings — how those contributions paved the road we travel today. A road that allows more people across the globe to use WordPress and contribute to WordPress, advancing the mission of democratizing publishing and giving us a little more freedom in the world. To the giants on whose shoulders we stand, those unsung, tireless, and passionate committers working through long nights and longer weekends: all of WordPress thanks you!</p>\n\n\n\n<p>The dedication to and support of open source software has and will continue to ensure that WordPress endures for another 20 years and beyond.</p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p>the freedom to build.<br />the freedom to change.<br />the freedom to share.</p>\n</blockquote>\n\n\n\n<p>The more our community invests in itself and supports one another, the stronger WordPress and the open source software movement becomes. And WordPress benefits, not just the present community, but future generations of contributors, entrepreneurs, educators, and enterprises large and small alike.</p>\n\n\n\n<h2 class=\"wp-block-heading\">A Shared Future</h2>\n\n\n\n<p>If the last two decades are any indication of what lies ahead, then wow, the opportunity to innovate, lead, and sustain a versatile publishing platform will be profound!</p>\n\n\n\n<p>Looking ahead at the next few years, our community will navigate <a href=\"https://wordpress.org/about/roadmap/\">Gutenberg Phases 3 and 4</a> together, delivering features that bring easy collaboration and multillingual support directly into the software. These next steps for WordPress will ensure our legacy of creating useful, relevant, and reliable software remains strong while keeping in mind the core elements of our mission regarding accessibility, performance, and stability.</p>\n\n\n\n<p>By renewing our emphasis on the <a href=\"https://wordpress.org/five-for-the-future/\">Five for the Future</a> program, and continuing to elevate our standing, we can make WordPress the household name it deserves to be. We can be more recognizable in known growth markets such as the enterprise and education sectors, but also every community beyond the open source and developer communities. Opportunity abounds!</p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p>When a great ship is in harbor and moored, it is safe, there can be no doubt. But that is not what great ships are built for. </p>\n<cite>Clarissa Pinkola Estes</cite></blockquote>\n\n\n\n<p>There is no time like the present to invest in the future of WordPress. The community is the greatest asset within the WordPress ecosystem. This means every WordPress user, from casual bloggers to enterprise extenders, is invited to rediscover all that our community means and does, and how each one of us can further our positive impact.</p>\n\n\n\n<p>Through all our planning, both short- and long-term, we can ensure that WordPress never loses sight of its user. Each one of us individually, and together, can do our part to make WordPress better, just as we have done each day for the past <a href=\"https://howlongagogo.com/date/2003/may/27\">7,305 days</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, 27 May 2023 05:27: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: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: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:93:\"WPTavern: WordPress and Drupal Co-Founders Discuss Open Source, AI, and the Future of the Web\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=145487\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:102:\"https://wptavern.com/wordpress-and-drupal-co-founders-discuss-open-source-ai-and-the-future-of-the-web\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3016:\"<img />\n\n\n\n<p>WordPress is celebrating its 20th anniversary tomorrow and recently its co-founders, Matt Mullenweg and Mike Little, joined Drupal founder Dries Buytaert together on stage at a private event for the first time on May 17. They discussed how their lives were influenced by open source and how they built their projects around the freedoms it guarantees.</p>\n\n\n\n<p>Founders of both projects expounded on the benefits of open source collaboration, and Buytaert characterized their continued improvements as an example of the <a href=\"https://en.wikipedia.org/wiki/Flywheel_effect\">flywheel effect</a>, accumulating small wins that compound over time. They discussed the early history of WordPress and how something as seemingly insignificant as <a href=\"https://ma.tt/2003/01/the-blogging-software-dilemma/#comment-445\">a comment on a blog</a> can be the first step towards building a better future for the web.</p>\n\n\n\n<img />\n\n\n\n<p>Mullenweg acknowledged that it may not be possible to reach everyone with open source philosophy so &#8220;at the end of the day you have to make the best user experience.&#8221; This has been WordPress&#8217; path over the past 20 years, working in tandem with the power of its open source license and the freedoms that has enabled for the community.</p>\n\n\n\n<p>&#8220;I consider all proprietary software to be an evolutionary dead end,&#8221; Mullenweg said. They discussed how AI is changing the developer experience. Mullenweg is optimistic about AI working with open source and <a href=\"https://wptavern.com/wordpress-contributors-discuss-how-core-can-better-enable-ai-innovation\">reiterated what he said recently on Post Status&#8217; Slack</a>:</p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p>Open source and AI are the two mega trends of the next twenty years, and the reason they are complimentary is that GPT4 hasn&#8217;t read Shopify&#8217;s code. It&#8217;s read Drupal&#8217;s code and WordPress&#8217; code, and all 55,000 plugins and everything else, so it can write it. If you ask it to write a website, it&#8217;s going to write it in an open source thing. It&#8217;s not going to write it in these propriety things.  From an evolutionary point of view, if you go far enough into the future, someday we&#8217;ll see even our proprietary competitors &#8211; the Wix&#8217;s and Squarespace and Shopify&#8217;s of the world, actually running on open source software. </p>\n\n\n\n<p>That&#8217;s part of our vision with Gutenberg as well as why we made it an even more permissive license than the GPL. We dual-licensed it under the MPL so it could even be embedded in commercial applications, because I really think it&#8217;s so important that I want it to be in even commercial applications.</p>\n</blockquote>\n\n\n\n<p><a href=\"https://www.youtube.com/watch?v=QYhIItlPPOs\">Check out the video</a> embedded below to hear this historic conversation between some of the pioneers of open source publishing on the web.</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:\"Fri, 26 May 2023 19:30:05 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s: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: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:41:\"Matt: With Mike Little and Dries Buytaert\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=85035\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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://ma.tt/2023/05/with-mike-little-and-dries-buytaert/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:351:\"<div class=\"wp-block-embed__wrapper\">\n\n</div>\n\n\n\n<p>Last week I had the honor of being on stage at the Royal Society of Arts in London with Mike Little, the co-founder of WordPress, and Dries Buytaert, the founder of Drupal, which is one of the open source projects I have the most respect and admiration for. This is the conversation that ensued.</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 May 2023 16:53:16 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s: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: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:96:\"Do The Woo Community: The Friday Show: Local WordPress Events are the Lifeblood of the 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:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"https://dothewoo.io/?p=75214\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:43:\"https://dothewoo.io/local-wordpress-events/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:431:\"<p>Smaller, local WordPress events are critical to keeping the community strong and vibrant. I know that from my latest personal experience.</p>\n<p>&gt;&gt; The post <a rel=\"nofollow\" href=\"https://dothewoo.io/local-wordpress-events/\">The Friday Show: Local WordPress Events are the Lifeblood of the Community</a> appeared first on <a rel=\"nofollow\" href=\"https://dothewoo.io\">Do the Woo - a WooCommerce Builder Community</a>	.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 26 May 2023 11:24:56 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s: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:127:\"WPTavern: WordPress 6.2 Core Performance Analysis Finds Improving Template Loading for Classic Themes Could Make a Major Impact\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=145454\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:138:\"https://wptavern.com/wordpress-6-2-core-performance-analysis-finds-improving-template-loading-for-classic-themes-could-make-a-major-impact\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4753:\"<p>WordPress&#8217; Performance Team has published <a href=\"https://make.wordpress.org/core/2023/05/25/wordpress-6-2-server-performance-analysis-summary/\">a summary of a core performance analysis</a> they completed in order to identify and prioritize areas for improvement. As part of this process, contributors created a <a href=\"https://docs.google.com/document/d/1R0dxV0RCeALfD5ZO25w4yuBM4fCzL2VXdqY67ygbl8U/edit?pli=1&resourcekey=0-NXgdwyfTKuuuMVbj-D7tkg#heading=h.vk12eaqoj096\">methodology</a> with a standard set of tools that can be used to collect and share profiling data for various components of the application.</p>\n\n\n\n<p>The team tested a classic theme (Twenty Twenty-One) and a block theme (Twenty Twenty-Three) configured with the <a href=\"https://github.com/WPTT/theme-test-data/\">Theme Unit Test data</a>. They tested out of the box functionality, in addition to different scenarios such as a homepage displaying the latest posts, a basic text-only page, a page with a large set of images and default blocks, and a homepage and a basic page with translation.</p>\n\n\n\n<p>These tests uncovered numerous performance issues which the team has documented with related trac tickets and detailed in the <a href=\"https://make.wordpress.org/core/2023/05/25/wordpress-6-2-server-performance-analysis-summary/\">summary</a> of the findings. The first priority identified for improvement is template loading for classic themes. </p>\n\n\n\n<p>Although WordPress contributors are blazing forward on the project&#8217;s roadmap for the block editor, with most of the headline release features focused on site editing, block theme adoption is not where one might expect it to be more than four years after Gutenberg landed in core.</p>\n\n\n\n<p>&#8220;A majority of websites still use the classic theme architecture, so improvements made here could have the largest horizontal impact,&#8221; 10-up sponsored WordPress Core Committer Joe McGill said in the summary.</p>\n\n\n\n<p>McGill referenced <a href=\"https://github.com/GoogleChromeLabs/wpp-research/pull/53\">data collected in April 2023 for the HTTPArchive</a> which uses a query based on a new HTTP Archive custom metric to detect block theme adoption. Based on this information, improving template loading and rendering for classic themes should remain a high priority. Most of the WordPress-powered web is still running on classic themes.</p>\n\n\n\n<img />\n\n\n\n<p>The summary highlights the improvements for template loading that would make the most impact: </p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p>In the classic theme tested, the most expensive process is related to locating and rendering template parts. This starts with get_template_part(), includes the process of locating the template part files with locate_template(), and rendering the content for each template part. This whole process accounted for approximately 30–60% of the entire server response in the test results, with much of that time spent handling filesystem checks (e.g., file_exists() is responsible for 4–9% of all time measured and can likely be optimized with a cache), rendering widget blocks, etc. Given many of these filesystem checks aren’t likely to produce different outcomes often between requests, there are likely opportunities to find substantial improvements here.</p>\n</blockquote>\n\n\n\n<p>These improvements are the first of five priorities the Performance Team identified as the result of analysis. The second recommendation is to improve translation loading, as more than <a href=\"https://wordpress.org/about/stats/\">56% of all WordPress websites</a> are using translations.</p>\n\n\n\n<p>The other three priorities include improvements for block-powered sites, with the first two ringing up as the most costly operations in terms of performance:</p>\n\n\n\n<ul>\n<li>Improve handling of block registration from metadata</li>\n\n\n\n<li>Improve resolving block templates</li>\n\n\n\n<li>Improve rendering of block widgets</li>\n</ul>\n\n\n\n<p>&#8220;These efforts will likely require additional research and architectural design before engineering begins,&#8221; McGill said. &#8220;All other items identified could be worked on directly through individual Trac tickets as capacity allows.&#8221;</p>\n\n\n\n<p>The Performance Team is considering making the tooling for performance profiling more broadly available so other contributors can extend their work. In the future, they may also consider contacting hosting companies to get them to run analysis on their infrastructure and examine additional use cases, such as PHP versions, Object Caching configuration, and more. Once the methodology used for this analysis is nailed down, future efforts to improve performance may become more frequent and  easier to produce.</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 May 2023 03:57:16 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:34:\"Matt: On the Design Better Podcast\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=84862\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:51:\"https://ma.tt/2023/05/on-the-design-better-podcast/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:251:\"<p>I was on the Design Better podcast hosted by Aarron Walter and Eli Woolery, we talked about jazz, generative AI, distributed work, and my journey as an entrepreneur.</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<div>    <div></div>    </div>\n</div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 25 May 2023 17:15:18 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s: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: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:128:\"WPTavern: WordPress; 20th Anniversary, a Mini Series. Episode 2 With Meher Bala, Robert Windisch, Simon Kraft and Tammie Lister.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"https://wptavern.com/?post_type=podcast&p=145289\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:141:\"https://wptavern.com/podcast/wordpress-20th-anniversary-a-mini-series-episode-2-with-meher-bala-robert-windisch-simon-kraft-and-tammie-lister\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:98247:\"Transcript<div>\n<p>Welcome to the Jukebox podcast from WP Tavern. My name is Nathan Wrigley.</p>\n\n\n\n<p>Jukebox is a podcast which is dedicated to all things WordPress. The people, the events, the plugins, the blocks, the themes, and in this case, the 20th anniversary of WordPress.</p>\n\n\n\n<p>Today is a bit of a departure for the podcast. It&#8217;s the second of two episodes all about the last 20 years of WordPress.</p>\n\n\n\n<p>You&#8217;re going to hear a round table discussion with four WordPressers talking about their thoughts on the last 20 years. It features Meher Bala, Robert Windisch, Simon Kraft Tammie Lister and David Bisset as the discussion moderator.</p>\n\n\n\n<p>They cover a lot of ground, and it&#8217;s fascinating to hear their WordPress stories from the past two decades.</p>\n\n\n\n<p>If you&#8217;re interested in finding out more, you can find all of the links in the show notes by heading over to WPTavern.com forward slash podcast, where you&#8217;ll find all the other episodes as well.</p>\n\n\n\n<p>And so without further delay, I bring you David Bisset, Meher Bala, Robert Windisch, Simon Kraft and Tammie Lister.</p>\n\n\n\n<p>David Bisset: We have so much to talk about. We have 20 years of WordPress. We gotta condense in the next 60 or so minutes. Um, for those listening or, um, heaven and forbid if we can use AI to clean up my face. We will be putting this on YouTube maybe hopefully soon. Uh, for video perhaps. We&#8217;ll have to figure that out. </p>\n\n\n\n<p>I only promise these people audio broadcast, so I have to see if I have to have them sign another contract. My name is David Bisset. Um, I have been talking to people on the 20th anniversary of WordPress, and I&#8217;ve been asking &#8217;em a bunch of different questions, and today we have four more interesting people from the WordPress community and me to talk about some particular th and don&#8217;t worry, the, the, the, the humor gets self-deprecating, but it goes up from there. <br />The next 90 minutes, you know, it&#8217;s gonna be fantastic. I have four people here that are fantastic contr, uh, contributors and representatives of the WordPress community. Um, I&#8217;m gonna let them introduce themselves and then we&#8217;re gonna start getting into some particular areas of WordPress history that I think they&#8217;re gonna love to share some memories, and hopefully you can relate. <br />The first is Mihir. Hello Mihir. How you doing? </p>\n\n\n\n<p>Meher Bala: Hey everyone. Hi. Uh, my name is me. I&#8217;m from Mumbai, India. Uh, I&#8217;m a front end developer and a codeable expert. I&#8217;ve been using WordPress since last 10 years. </p>\n\n\n\n<p>David Bisset: Oh, good. I thought you were gonna say last week. No. All right. 10 years. Wow. I&#8217;m sorry. Go ahead. </p>\n\n\n\n<p>Meher Bala: I don&#8217;t know. <br />I think it&#8217;s more than 10 years because I quit my normal nine to five job, eight, eight years back, so it has to be more than that. Just giving 10 plus years. </p>\n\n\n\n<p>David Bisset: That&#8217;s okay. It&#8217;s okay to round. </p>\n\n\n\n<p>Meher Bala: I joined the community quite late because I didn&#8217;t know there was a community existing, especially my local and then the global. <br />So it&#8217;s been fun from the time I joined. </p>\n\n\n\n<p>David Bisset: You&#8217;re not going anywhere, are you? You sound like this is Oh, I&#8217;m fine. I&#8217;m still up on Okay. It sounds like you&#8217;re about to send off here and I don&#8217;t want this to be that type of podcast. All right. </p>\n\n\n\n<p>Meher Bala: No, no, definitely no. All right. I&#8217;m here for sure. </p>\n\n\n\n<p>David Bisset: Okay, well good. It&#8217;s glad to have you. Thank you very much for, uh, coming. Have we ever met before? </p>\n\n\n\n<p>Meher Bala: No, I have not met you. I&#8217;ve seen all your tweets. I love your </p>\n\n\n\n<p>David Bisset: Okay. We can stop there. Alright, we, Robert, Robert, uh, you&#8217;re up next? </p>\n\n\n\n<p>Robert Windisch: Yeah. I take over before, uh, David like sings in under the screen. </p>\n\n\n\n<p>David Bisset: Quickly, quickly, Robert. </p>\n\n\n\n<p>Robert Windisch: So yeah. My name is Robert. I am, um, uh, c o of Insight at WordPress agency. I&#8217;m in WordPress since 1.52. So for me it&#8217;s very e very easy. I&#8217;m so old. I can name the release I came in, which was in 2005. Um, and, and people go like, no, you were older. No, no, no, no, no. I&#8217;m a late bloomer. Like, I came in like two years already when everybody, when the, the server were already set up, the, the forums was there and I just came in, swooped up and was like, Hey, is can I help with developer stuff? And they got, and the community, German community was like, you can develop here a server admin access. So I just, uh, um, grab a hammer and then like cleaning pipes in the WordPress server community. </p>\n\n\n\n<p>David Bisset: All right. Well, good, good to have you on board, Robert. All right, Tammie. Hello. Tell us a little bit about yourself. </p>\n\n\n\n<p>Tammie Lister: Yeah. So I am Tammie. Uh, I&#8217;ve. Uh, I had to check how long, which was quite a thing apparently. Um, according to my profile, 2006. Mm-hmm. Uh, I think I, I came because I was torturing a cms, like everybody back in the day, and someone showed me that there was a better way with WordPress. <br />Um, I think I might have been a bit before that because I was kind of doing it. Um, so that was on wordpress.org and themes brought me to WordPress. So, and since then I&#8217;ve been, uh, doing various core contributions. Um, and that&#8217;s me. </p>\n\n\n\n<p>David Bisset: Yeah. Well, well, if anybody&#8217;s been word WordPress, any measure of time, I have seen you in some way, shape, or form. <br />Ah, Simon, bring it home. Hi. Bring it home. </p>\n\n\n\n<p>Simon Kraft: Yeah. Hi, I&#8217;m Simon. I started using WordPress in 2008, exactly 15 years ago. Um, I started with like, Easy front end development stuff. Worked my way a bit to the back end and at some point graduated from developing stuff myself. And now I am a product owner at Group One.  Um, and I spent like the last 10 years organizing meetups and, and wood camps and stuff like that. So I really love that part of our community. Um, and I&#8217;m looking forward to at least the next 10 years of that. </p>\n\n\n\n<p>David Bisset: Oh good. You, you&#8217;re okay. Well exercise and eat, eat a good diet and we&#8217;ll see. Uh, well thank you all and again, I&#8217;m David, if you&#8217;ve probably already know.  Um, I work, uh, I&#8217;m employed at Awesome Automotive. I run a project called WP r WP Charitable or Charitables, the products for non-for-profit organizations. It&#8217;s been a recently acquired and I&#8217;m a project manager there. I&#8217;ve been, uh, I&#8217;ve experienced with, uh, work camps. I&#8217;ve been. With Word Camp Miami started in 2008, and I think I was around and since, um, WordPress 1.5, whenever that was.  Um, that came out with, with I think, uh, themes and pages and that sort of thing. So I&#8217;ve been with, with WordPress for a while. This is not gonna be about me today. This is because I&#8217;ve talked enough in the past episodes, um, of that. So I want, I want to feel, um, we&#8217;re gonna go around. We&#8217;re gonna, I&#8217;m gonna, I&#8217;m gonna get your picks in terms of the categories we&#8217;ve selected, but this is an open conversation.  So as soon as the, the initial person gets their, gets their words out of their mouth, you&#8217;re feel free to have a discussion and I&#8217;ll, uh, I&#8217;ll poke up accordingly. So, Mihir, um, Let&#8217;s start with you. Uh, let&#8217;s talk about, one of the things that we wanted to, wanted to talk, and this is gonna be a little bit different than if you&#8217;re, if you&#8217;re listening right now, you&#8217;ve listened to the others.  These are slightly different topics and categories I wanted to touch on here, cuz these, cuz I wanted to get some, there&#8217;s so much to cover for WordPress&#8217;s. 20th, 20th anniversary in 20 years. There&#8217;s so much to cover. So I wanted to make sure we, we, on some of the shows and some of the people I talked to, we, we kind of varied our discussion points. </p>\n\n\n\n<p>So first thing we wanted to cover was a memorable design or refresh in WordPress history. Now, some people ask me, well, does this mean this? And does this mean that, um, does this mean project or does this mean that I, when I ask these questions, they&#8217;re open for interpretation. So I am not looking, I am looking for something within a scope.  But wherever you read that question, you can go from there. So what Mihir, what was your. Memorable design or refresh and WordPress history? </p>\n\n\n\n<p>Meher Bala: Uh, my memorable was 1.3. Uh, one was having a multisite built in the co. Mm-hmm. And one was a 20, uh, 10th heme, which was most stylish, more simple and very readable to normal users who, you know, what, just wanna run the WordPress as a blog because blogging had just begun and everyone was using WordPress. So for me it was, 3.0. </p>\n\n\n\n<p>David Bisset: Yeah. Uh, I was a big multi-site fan back in the day, and I remember he had to download two versions of WordPress. Yes. Uh, and that was, and that&#8217;s, but that was, um, and see that was the, what was the theme again? What was the year 2010? </p>\n\n\n\n<p>Meher Bala: 2010 was it? Uh, 2010 was a theme. The year was, uh, 2010. </p>\n\n\n\n<p>David Bisset: Right. That makes sense. I was trying to, I was trying to pull up what it looked like, cuz I&#8217;m drawing a blank. Remember we were talking about, um, </p>\n\n\n\n<p>Meher Bala: it&#8217;s the white banner on top. </p>\n\n\n\n<p>David Bisset: Oh, there it is. Yeah. I remem Oh yes. Oh my goodness. Yes. That was with the trees in the road. Yes. Is the default picture. Yeah. And it&#8217;s kind of hard to describe audibly, but if you just do WordPress 10,000 theme in Google images, you get all the clones appearing and there is some, there was a little bit of styling there, but it was mostly what blogs, what the typical stylish, simple blogs were back then.  It was like a large hero image or a large full width image. And then you had your two columns, right? </p>\n\n\n\n<p>Meher Bala: Yes. It was something new for a lot of people. </p>\n\n\n\n<p>David Bisset: Well before that, not too much before that. I don&#8217;t know if there was another word. I, I forget when WordPress year theme started, was this the first one? </p>\n\n\n\n<p>Tammie Lister: That was the first default theme? That was the first, that was second one. No, that was the first official default theme. Mr. </p>\n\n\n\n<p>Simon Kraft: Well, there was Kubrick before that. </p>\n\n\n\n<p>David Bisset: No, I see. Dang. I lost a bet. Years. Yeah, because yeah, I was, I, I should have said that&#8217;s the first default theme that was named after years because we had Kubrick for like four or five years before that.  Oh yeah. So this is kind of memorable because this </p>\n\n\n\n<p>Tammie Lister: is the first default, the one that started the default years <br />David Bisset: because we got so sick and tired of looking at that, uh, Corick theme. No, I mean, it was nice and pretty, but I mean, it&#8217;s like my kids, I can only look at &#8217;em so much before I need something new, new, new to glance at. <br />So, but yeah, it was perfect. But, alright, so I think that&#8217;s pretty memorable. Nice. Round number 3.0, multi-site, no more Kubrick, first year theme. I agree. That&#8217;s a pretty good design moment in WordPress history. Um, let&#8217;s, uh, so Robert, what&#8217;s your, yeah, what&#8217;s your, what&#8217;s your big, uh, design moment that you wanna share? </p>\n\n\n\n<p>Robert Windisch: So, so first, Mihir taking multisite from me, like, uh, we have a conversation next, next word camp like, and from me by the way. </p>\n\n\n\n<p>David Bisset: So is that your, was that gonna be your pick? </p>\n\n\n\n<p>Robert Windisch: No. Yeah. Uh, I&#8217;m the multi side person. Yes. </p>\n\n\n\n<p>David Bisset: Oh. Oh, see, we already have our first </p>\n\n\n\n<p>Meher Bala: right after three, so. </p>\n\n\n\n<p>Robert Windisch: Yeah, yeah, yeah. That, that&#8217;s totally, it&#8217;s, it&#8217;s, you, you are the first one. Um, and I am, I shying away from other things because I want, I know Tammie wants to, wants to mention that that one thing that end ends with a number, probably this, the design refreshed, but like, I, I give Tammie the, um, the, oh, no. Okay. I can take it. I can take it. Okay. </p>\n\n\n\n<p>David Bisset: See, you try to, you try to be a nice human being. Well, well, </p>\n\n\n\n<p>Robert Windisch: yeah, yeah, yeah. Yeah. Because like, I, I&#8217;m the second one, so, um, but I have, like, you are welcome to that one. Yeah. But that&#8217;s my, would be my second pick. So, um, so I would, with the, with the biggest like, design, uh, um, like seismic shift from like, uh, from, from the, from the feeling was when the, when the menu went from the top to the left. Like that. That was like that. I have no idea when this was. Like, I&#8217;m very bad. Right? Like it was eight ago. </p>\n\n\n\n<p>David Bisset: Menu went from the top. You mean the admin making </p>\n\n\n\n<p>Robert Windisch: the WordPress menu was in the top third </p>\n\n\n\n<p>David Bisset: one? Yes, it was. Cuz I remember in one five it was, but I, I can&#8217;t, I can&#8217;t remember now. You&#8217;re gonna have to make me look things up. </p>\n\n\n\n<p>Robert Windisch: I, I would guess, but I&#8217;ve, I&#8217;ve, I&#8217;m bad with like, because it&#8217;s, so we&#8217;re currently talking about like between like which dinosaur were alive when this happens. So that&#8217;s why it&#8217;s, it&#8217;s so, it&#8217;s so far off. And I will simply say like, uh, the biggest, like design wise for the future, for the user interface was really when the, when the top menu, which was not like, it could not scale because you had, uh, determined like link in the menu. We experienced that in the WordPress org menu also that we have a problem with, with link there. So, so that was for me, like a, a, a big, um, like design visible decision that, um, was, was made and then, Like, it&#8217;s now the current, the current way of the WordPress backend. </p>\n\n\n\n<p>David Bisset: Okay. For now, I&#8217;ll, we&#8217;ll, I&#8217;ll, I&#8217;ll guess that it was around 2.0 cuz I remember it being in one five and it was pretty, and I started using one five, but very quickly after I started using it. Like, I don&#8217;t remember the top stuff match for very long, so I mean, I&#8217;ll be, I&#8217;ll be Googling to fill that in, but, okay. Well, we&#8217;re gonna, we&#8217;re, we&#8217;re gonna put 2.0 as a placeholder, but That&#8217;s right. It&#8217;s, and just fortunately, I mean, we think the sidebar is a bit of a mess today. Although the stuff that we had, just imagine if it was a top-down navigation menu in the admin. </p>\n\n\n\n<p>Robert Windisch: Yeah. All the, all the, uh, like upsell things now in the top menu bar, that would be like, lovely. What would it be? </p>\n\n\n\n<p>David Bisset: Why, how would that work? You, we all the plugin authors have to add like a second navigation, second dropdown. It&#8217;s like a mega menu. </p>\n\n\n\n<p>Simon Kraft: We just, we&#8217;ll just like break and add another line, and you have a huge block on top of every Diamond page. </p>\n\n\n\n<p>David Bisset: Tammie&#8217;s miming all of the facial expressions as we&#8217;re talking here. That&#8217;s fine. All right, okay, well, Tammie, now it&#8217;s your turn. Robert, I&#8217;m gonna get back to you on a version number on that exactly, because </p>\n\n\n\n<p>Meher Bala: I think version number&#8217;s, uh, 2014. </p>\n\n\n\n<p>David Bisset: Okay. That&#8217;s a year. That&#8217;s close. That we&#8217;re, we&#8217;re, we&#8217;re getting closer now. So 2014 is the next clue. 2014, the menu came inside. So that&#8217;s four years after the 2010 theme. I know I can do math, but I mean, that would mean it would be greater than WordPress. </p>\n\n\n\n<p>Robert Windisch: No, no, no, no. The the menu, the, the, the, the, it was was already decide when the, when the other thing that I want to mention later, uh, um, come, come. </p>\n\n\n\n<p>David Bisset: No, don&#8217;t ruin it. Don&#8217;t worry, don&#8217;t worry. We&#8217;ll figure it out. All I know is that I was. Yeah, all I know is that, um, there&#8217;s probably dirt younger than the version number that we&#8217;re gonna find, but anyway. All right, Tammie, time, time to go from miming to audio and sharing your, uh, the biggest or most memorable design moment. And this should be right up your alley </p>\n\n\n\n<p>Tammie Lister: 2005 and it&#8217;s Kubrick. And the reason is, if you speak to most people that got their visuals or, or some front end work in WebPress, uh, have been around for a while, they got their start because of Kubrick. That was one of the themes that got them into it. Or they started tinkering around with themes. Um, it was one of those themes that you like cut your teeth on, you learnt with, so that, I know we were kinda saying it was around for a while, but honestly it&#8217;s what. Most of us learn how to theme from. So for me, I think it&#8217;s the most memorable design. Um, mainly for cuz of the gradient. If you think of Kubrick, you see the gradient. So that&#8217;s the one for me. It&#8217;s gotta be Kubrick. </p>\n\n\n\n<p>David Bisset: Well, for me personally, I may have mentioned this on another episode, um, but Kubrick wasn&#8217;t just another design or even a design that stayed for a long time. It was when WordPress was really starting to get popular for blogs. Yeah. And I think visually speaking, at least for me, that whenever you ha if you wanna get a couple of screenshots or photos or memories Yeah. Of just how, when blogging got popular, Um, yeah. </p>\n\n\n\n<p>Tammie Lister: Would, and I set the tone. Yeah. So many people just were never color gradient or had that big header and that header format stayed for a very long time. The big headers. We&#8217;ve only just very recently stopped having big headers in our designs and kind of started moving away from the big header design and realizing you don&#8217;t have to have that in every design, so, </p>\n\n\n\n<p>David Bisset: well, you know, what they say about big headers. <br />What&#8217;s that? </p>\n\n\n\n<p>Tammie Lister: Um, for, for me, I feel that you, you can&#8217;t really include this list without saying that because it feels quite seminal to Yeah. What you learn and at the front end, the code level, because we really learn how to create themes from it as well. Oh yeah. </p>\n\n\n\n<p>David Bisset: Iconic. Iconic, very good choice. So, yeah, we&#8217;ve had, um, WordPress 3.0, our mystery WordPress 2.0 theme that we&#8217;re gonna go to do, and, uh, Kubrick 2005. So, uh, Simon, what I, can you share with us what your memorable, uh, design. Moment is in our WordPress history. So far we&#8217;ve, we&#8217;ve, and I&#8217;m, so far, I&#8217;m glad we have stayed in the past, but are you gonna, are you gonna be there with us, Simon, or are you edging a little closer to the future? Like pick something from the future? Um, no, I mean, I meant far past. </p>\n\n\n\n<p>Simon Kraft: Yeah. Okay. I, I think mine is not that, that long ago. Well, it should be like 10 years. Um, Robert already, um, alluded to it. Um, I pick MP six, the, the redesign of the word presentment interface. Um, </p>\n\n\n\n<p>David Bisset: see, you hear that Si Simon. That means I can Google it and get a year versus Roberts description </p>\n\n\n\n<p>Simon Kraft: it should be what? Press 3.8. </p>\n\n\n\n<p>David Bisset: Well, I&#8217;m not gonna fact check- </p>\n\n\n\n<p>Robert Windisch: just keep in mind the new redesign of the interface. <br />Simon Kraft: Yeah, yeah. It, it&#8217;s just 10 years old. That&#8217;s, that&#8217;s still good. Um, and that was was a point where I really started. Loving the way the WordPress back end looks, because before that it was, it was cool, it was nice, it was usable. <br />Uh, but with that, it felt like really fresh and still to a certain degree does, uh, today. And I think there were a couple of smaller, um, redesigns, I think WordPress 5.7 at the standardization of, of colors or something it was called, where we had a bit more contrast, a bit more unified set of colors, which is also very nice. I came to really love that. But that&#8217;s the interface on the web that I interact with, like every single day of every year, ever since. Uh, so that&#8217;s, that&#8217;s quite cool. </p>\n\n\n\n<p>David Bisset: I, it looks like, to me, the, I mean, I think this plugin was around a while before it actually officially came out in the WordPress police, because I&#8217;m finding posts from 2013. Um, and do you remember why it was called MP six? I mean, must stand for something </p>\n\n\n\n<p>Robert Windisch: Tammie doesn&#8217;t know. Nobody knows here. </p>\n\n\n\n<p>David Bisset: Yeah. I&#8217;m looking at, </p>\n\n\n\n<p>Tammie Lister: I think it was a project name. </p>\n\n\n\n<p>David Bisset: It had to be Matt, think it was, it had to be probably Matt or who, or I forget the original designer or the original project creator cuz I&#8217;m, cuz this was nine years ago. </p>\n\n\n\n<p>Tammie Lister: It was a group, group of people who created it and got together. <br />It was one of the first projects where a group of people got together and created it and kind of worked on it. Um, it was kind of the first attempt at that, um, to get kind of designed, done collectively, I guess. </p>\n\n\n\n<p>David Bisset: Yeah. Was that the first, what do you call them? Um, project plug-ins. No, that&#8217;s not the right word. Um, feature. I&#8217;m not even sure. Feature plug-ins turns back then. Yeah. Cuz this, would this been considered plugins or anything? Yeah. Yeah. I mean, the term didn&#8217;t exist, but it was, I think it was probably one of the first quote unquote feature plugins. Right. Yeah, I mean without that we&#8217;d still be looking at the uh, um, now if I can find a screenshot between Robert&#8217;s Pick and Simon&#8217;s Pick for the WordPress admin where the, it was side navigation, but it&#8217;s still an before MP six. Man, I can&#8217;t remember it. </p>\n\n\n\n<p>Robert Windisch: People, people will not, people will not like if you show them MP six, it looks very like the current, um, interface. So that&#8217;s why, um, oh yeah, we don&#8217;t change anything. Just need to like the pre, the pre MP six phase, because that was the new redesign, as I always, I cannot, I cannot emphasize nothing. That was how new this was for, this was for the WordPress people, and we are like, finally someone is investing in the WordPress Pega interface. So that was really like a, a, a jump in in, in, um, in user, in, in, um, user interface, um, and, and usability of WordPress. </p>\n\n\n\n<p>David Bisset: It had a bunch of new dash icons, remember, da remember Dash icons. Um mm-hmm. For those of us who know what those are a redesigned widgets page by Sean Andrews from his Widgets project. If, uh, P six included that. Wow. I didn&#8217;t, I totally forgot about the widgets project. Improvements to the customizer color schemes. Is this, is this when we got our color schemes like Ectoplasm or some, I wonder if that&#8217;s Yep. </p>\n\n\n\n<p>Tammie&#8217;s shaking her head vigorously guess. And a new midnight color scheme. So that&#8217;s, thank you, Debbie. Thank you Sarah from 2013 for helping us remind that. Well, that sounds fantastic. So we have stayed. We have stayed pretty, pretty well pre 2015 pre Gutenberg. That&#8217;s a i I applaud you all for the biggest, most memorable design moments, not being part of, uh, anywhere beyond the 5.0 release of WordPress. </p>\n\n\n\n<p>Thank you. So just to, just to rehash here, Mihir, uh, WordPress, uh, 3.0 multi-site and the first year themed theme. Um, yes, Robert, uh, we&#8217;re still gonna hunt for a version specific for that, I assure you. But when the, but we&#8217;re talking about when the big jump made from moving navigation from the top to the left hand side. </p>\n\n\n\n<p>Uh, we&#8217;re gonna guess that&#8217;s 2.0 WordPress for now. Kubrick, who could forget Kubrick? We didn&#8217;t. Tammie thought that was, and that probably one of the most fundamental images and thumbnails representing the blog when blog blogs went. We&#8217;re in its heyday when movable type was, was starting to fade and WordPress jumped on the scene, how iconic. </p>\n\n\n\n<p>And then MP six, Simon picked that. And that of course is just, you know, we still have that with us today. And that&#8217;s been, it&#8217;s been, been probably, it&#8217;ll probably around 10 years. So, Fantastic. Well, uh, from design-wise, I really don&#8217;t have much to, to say in this department. Um, I, I think we&#8217;re, I think the early version of WordPress that introduced pages was great, but that&#8217;s not really much of a design feature. </p>\n\n\n\n<p>That&#8217;s just, I think it did open it up for a little bit more design. Um, I, if I had to pick something, I, I don&#8217;t know if this would be my most memorable, but I use it every day. It is the redesign of the WordPress site, um, wordpress.org. Um, a lot of people don&#8217;t remember how that looked way, way, way, way back then. </p>\n\n\n\n<p>Um, with, and then it was all split out into various groups, uh, various categories as we have them today, you know, core and design and plugins and, and all of that. Um, I don&#8217;t know, maybe I&#8217;m, maybe this is an old person talking, but it was really, really clunky and really plain back in the early days. And now with the learn.wordpress.org and the redesign stuff&#8217;s, it&#8217;s happening. </p>\n\n\n\n<p>It&#8217;s looking so much more professional and grown up maybe is the, is the best word I can describe it in. But anyway, that&#8217;s, that&#8217;s just me. And maybe for, I will share some, if I can find some old screenshots of that, which I couldn&#8217;t initially, um, I would love to, love to share them with you. So let&#8217;s move on to our next category. </p>\n\n\n\n<p>Mihir, you are up again. So we are talking about the most notable enhancement to WordPress core that isn&#8217;t Gutenberg related. So I definitely, so I definitely put that. That, that qualifier in there, because I think that would be way too easy. Um, we in way too broad. Um, and when I say most notable enhancement to WordPress core, that means this is, um, it, it had to appear in WordPress core at some point. </p>\n\n\n\n<p>Maybe it&#8217;s something that&#8217;s not there anymore or maybe something that it was acquired or merged into WordPress core. Didn&#8217;t have to start there, but it was something, a most notable enhancement to WordPress core. And I had some people say, well, what do you mean by enhancement? Do you mean coding wise or design wise? </p>\n\n\n\n<p>Again, this is up to your interpretation. As long as you don&#8217;t say the G word, we will be Okay. Mihir. So go ahead. What is your most notable enhancement to WordPress Core? We had no guten, guten free. </p>\n\n\n\n<p>Meher Bala: Mine is the events, uh, widget on a dashboard. </p>\n\n\n\n<p>David Bisset: I&#8217;m sorry, say that again. My, my ears exploded. What was that? </p>\n\n\n\n<p>Meher Bala: The event widget. </p>\n\n\n\n<p>David Bisset: Oh, the event widget, yes. Ooh. This is why I like talking to people that are above the age of 18, cuz that&#8217;s all I have in my house for, for like a week, every week. The events widget. Oh, tell us, tell us a little bit about that in case people have have forgotten about that. </p>\n\n\n\n<p>Meher Bala: So, uh, whenever there&#8217;s any, uh, meetup happening or WordPress happening, uh, in your locality, the events are displayed there. </p>\n\n\n\n<p>And in our local, what I noticed is once the widget came out, a lot of new people who didn&#8217;t know the community started, you know, attending meetups, started interacting with the community. So we had a few different people at every meetup. So that&#8217;s something which is memor, which is. </p>\n\n\n\n<p>David Bisset: That for me is an amazing pick. I never would&#8217;ve thought of that. And apparently you did. </p>\n\n\n\n<p>Meher Bala: I see the community grow even with that. So for me, that&#8217;s still in the mind more than Gooden book. </p>\n\n\n\n<p>David Bisset: That&#8217;s amazing because not only does it serve, did it serve a purp? I I, I can&#8217;t remember if this is when people realize meetup.com was crap. I can&#8217;t remember exactly when. Uh, sorry. Meet, sorry, or sorry to our sponsor meetup.com by the way. Um, I love you. Uh, so mom, uh, who works there? So, meetup.com was probably the only way WordPress people were fighting each other at the time. I do you have a, do you know when that, I guess we&#8217;re gonna have to find out when that came about cuz I have no idea. </p>\n\n\n\n<p>Simon Kraft: That was WordPress 4.8. </p>\n\n\n\n<p>David Bisset: And do you have a year for that? No. Oh, well, now that we know a version number, hello. Welcome to a podcast, but we&#8217;re doing our research live on the air. Thank you. 2017. 2017 or something like that. <br />Robert Windisch: Welcome. Welcome to a normal community conversation, by the way, we don&#8217;t, we don&#8217;t run around and no version numbers and years. <br />We just go like, do you remember this feature? Oh my God. That&#8217;s it. <br />David Bisset: You get what you pay for the hallway track. People are getting what they </p>\n\n\n\n<p>Tammie Lister: for when someone get, gets their phone out and starts tapping and then finds it, and then you go, oh yes, </p>\n\n\n\n<p>David Bisset: someone&#8217;s rolling their eyes right now and starting a letter. <br />Dear David, oh, well </p>\n\n\n\n<p>Tammie Lister: I can&#8217;t believe they didn&#8217;t know that. </p>\n\n\n\n<p>David Bisset: David Professional in quotes, uh, we have that before that 2017. The reason why I was wanting a year is because that is before I think Slack and where Press Slack, I believe. </p>\n\n\n\n<p>Robert Windisch: No, no, no. Slack was, slack was uh, in civil already. Slack was there. </p>\n\n\n\n<p>David Bisset: So, yeah. Okay, so. I don&#8217;t wanna pinpoint it, I guess. Yeah. Cuz 20, I remember a community summit when they made the announcement, but 20, that could have been as early as 2015. So if that widget came out in 2017, there was still ways. I guess the two top ways you would know about WordPress community would be meetup.com was still probably the biggest way there. <br />And then maybe if you were on WordPress Slack at the time. Right. </p>\n\n\n\n<p>Robert Windisch: Yeah, but meetup media.com was the, we, we, so we decided on media.com because I remember the conversation we had internally be, Hey, let&#8217;s build this. And like, people who know project management was, was like, um, you know, that we want to do democratizing publishing, not democratizing events here. </p>\n\n\n\n<p>So, so that&#8217;s why luckily we decided to simply give meetup.com money and let they run all of this. And we simply like hooked the meet, hooked the Meetup API into their system and was simply like, um, doing, let them do all the work. <br />David Bisset: Oh, I was talking, when I talk about meetup.com, I talk about the interface on meetup.com because my experience with it was, I was running meetups through meetup.com and creating the meetups, um, even searching for meetups, and I&#8217;m, I&#8217;m sure it got better over time. </p>\n\n\n\n<p>I think Amaz, coincidentally enough, is when Weber, when there was that single. Page for the WordPress meetups. Like you said, they, I think there was some, some deal with the, uh, with, um, with, I don&#8217;t know. I would, I&#8217;m gonna guess WordPress Foundation on this was, was involved or something, but before a while you would just have random spots of communities on meetup.org. </p>\n\n\n\n<p>Which org, which was hard to find. That&#8217;s the experience I remember cuz I was running one of those meetups, or two of them actually for a while. And then there came a time where everything was under one umbrella. Organizational wise, I think it had a dedicated page and probably, I&#8217;m guessing at that time is where the widget would probably start pulling that kind of information. </p>\n\n\n\n<p>Right. Cuz it&#8217;s all centralized Meetup. It&#8217;s probably, it&#8217;s probably, um, like a meetup organization or something like that. So apologies for me getting it a little confused. I think it did get better, but I, I remember once we had that widget, I pointed people toward the widget and we would have meetups where I said, how many people found us through the widget and we always had one or</p>\n\n\n\n<p>two people at our meetups raise their hand. So I think that&#8217;s an amazing pick. Does any, did, doesn&#8217;t, does any, I I&#8217;m seeing a few people nod. So is that your experience as well, Simon? </p>\n\n\n\n<p>Simon Kraft: Yeah. I think our meetup in, in Germany, multiple meetups in Germany, like grew tenfold or something in the year following the, the, this update with 4.8. So that&#8217;s really huge for the meetup community. </p>\n\n\n\n<p>David Bisset: Yeah. So not only do we get a nice new widget on the dashboard, which doesn&#8217;t come by that often, but it had an impact on the community. So I think that&#8217;s a really cool pick. Really appreciate you take us down me memory lane and my apologies to meetup.com. Um, Robert. I believe you&#8217;re up next. Um, so again, just in case, uh, people have nodded off here listening to us </p>\n\n\n\n<p>Robert Windisch: totally like, yeah, totally fine. I can bring up something that is nothing with five. Oh, that is a feature that influenced many people and that, uh, everybody goes like, yeah, </p>\n\n\n\n<p>David Bisset: just I said Guttenberg related. Now if there&#8217;s anything else in five that wasn&#8217;t, </p>\n\n\n\n<p>Robert Windisch: no. Not even close. No, no. I&#8217;m, I&#8217;m still, I&#8217;m still in a very old feature. I&#8217;m still in three, 3.0. I&#8217;m talking about, menus. </p>\n\n\n\n<p>David Bisset: Menus. Oh, you mean like creating menus? </p>\n\n\n\n<p>Robert Windisch: Before that you needed to have pages and pages needed to have redirect because you needed to get some structure. And then the only thing to have a high, high cultural, uh, a structure where you have like a parents and chil uh, children was with pages. And that was like when people like fumbled their menu structure together with external links. And then you had a drag and drop in the WordPress back and with menus. </p>\n\n\n\n<p>David Bisset: You. Wow. That act. Wow. I can&#8217;t remember that o That was wor that was 3.0. Yeah. </p>\n\n\n\n<p>Robert Windisch: Wow. That was merged from Wu. Seems the WCI feature of menus were merged in the WordPress core </p>\n\n\n\n<p>David Bisset: wow. That&#8217;s so hard to believe. Looking back on that now, 3.0, not so, not only P 3.0 had multi-site and, and, and the new theme it had, it had the menu stuff too. That&#8217;s amazing that, that would&#8217;ve been so barbaric. It&#8217;s probably the reason why my webs </p>\n\n\n\n<p>Robert Windisch: no difference with me. No promise with me with features and breakfast. </p>\n\n\n\n<p>David Bisset: Uh, that&#8217;s so barbaric. It&#8217;s like, for a long time it&#8217;s like, why do all these WordPress sites don&#8217;t have barely have any menus on &#8217;em until this date? Co. I remember Cooper, I don&#8217;t, I might explain why my early Cooper Gays, I don&#8217;t see many, I don&#8217;t see many menus. They were on the, they were on the sidebar. A lot of the links for websites. Yeah, I re I don&#8217;t know, </p>\n\n\n\n<p>Tammie Lister: it was all a widget or, or kind of lists </p>\n\n\n\n<p>Robert Windisch: and No, that the link, the link, the link feature where you could have like defined what&#8217;s, </p>\n\n\n\n<p>Tammie Lister: that&#8217;s what it was. Cause that&#8217;s all we had. You didn&#8217;t have anything else. And then when you had early menus, you had to do those walker things. The, you only knew a few knew special magic words and more wizard. That was because it was really, really difficult. </p>\n\n\n\n<p>David Bisset: Oh wow. Okay. Well, yeah, definitely notable enhancement menus. Where could we be without menus? It&#8217;s like a, it&#8217;s like a car without, I dunno, a steering wheel or something. All right, Tammie. Uh, notable enhancement to WordPress core and no good. Yeah. </p>\n\n\n\n<p>Tammie Lister: I think I&#8217;m back at 3.0, but I want that checked custom post types is where I&#8217;m going. Uh, I feel like we&#8217;re just settling on that release, but it&#8217;s one of those releases where we just kind of, it feels like it grew up or we got the features, which then meant the, not just people could write logs or, or use, you could then pivot and grow and extend. </p>\n\n\n\n<p>That&#8217;s really what that release felt about. And custom post types, if you think about everyone that&#8217;s made a product or everyone that&#8217;s used in an agency or anyone&#8217;s done anything with WordPress, they wouldn&#8217;t have probably done that if it hadn&#8217;t been for a custom post type. So it kind of was there, or, or at least that concept. </p>\n\n\n\n<p>So, and even Emberg has the, the G word, I&#8217;m sorry, but that has the roots in that kind of thinking. So yeah, custom post types is the thing for me. That&#8217;s, it&#8217;s, <br />David Bisset: that&#8217;s, it&#8217;s, it&#8217;s. It&#8217;s really what started to make WordPress more than a blog. Like everybody&#8217;s, yeah. But then </p>\n\n\n\n<p>Tammie Lister: you could, like ex you could make it yours and you could take it your your direction and you could build on top of it. You know, we now think about like headless and doing everything you want and all that. That would not been impossible if we hadn&#8217;t started thinking about custom post types, which now sounds really like simple. Right? Um, but it&#8217;s not that back then that was radical thinking. Yes. </p>\n\n\n\n<p>David Bisset: So yeah, you could start making. And history would rather us not learn this lesson too deeply. But I mean, you, you could make a like WordPress into any sort of application you wanted to. Yeah. Yeah. Not that you should, but I mean, you could. Right. And there was, and there was already custom post types. </p>\n\n\n\n<p>Tammie Lister: It wasn&#8217;t just these pages with, with Kubrick, but it was just this flat file. You, you, I mean, as we&#8217;ve just heard, you had navigation and, and then you had these different things. You had so much in 3.0. 3.0 was basically like Christmas. </p>\n\n\n\n<p>David Bisset: Yeah. I mean, how much brain matter had this. How much brain matter was scraped off the floor at the Word camp announcement for 3.0. You know, it&#8217;s like our minds were blown so much. Just stop it. Yeah, stop it. It&#8217;s all, it&#8217;s already dead. Uh, </p>\n\n\n\n<p>Tammie Lister: yeah, but if you think back then about the upgrade paths of 3.0 as well, cuz back then it was very different as well. Let&#8217;s say we don&#8217;t have releases that are that significant now because so many things happen then it&#8217;s kind of mind blowing. </p>\n\n\n\n<p>David Bisset: Yes. It&#8217;s like you, you went out, you went to, you went to, you went to the customer saying, let&#8217;s upgrade you where this is the customer. No. Really? No. Yeah. Let&#8217;s, let&#8217;s do it. Let&#8217;s do it. Let&#8217;s, let&#8217;s go nuts. Just cup take. All right, Batman. So, all right Simon. So we&#8217;ve got an events widget, we&#8217;ve got menus, we&#8217;ve got custom post types. </p>\n\n\n\n<p>Uh, I don&#8217;t wanna put any pressure on you here, but, um, do you have something he&#8217;s gonna say entering text into a box? For the win, Alex, <br />Simon Kraft: and that, that was exactly what I was going for. Now, actually, in the first round, all my picks and the backups and their backups were picked by everyone else. </p>\n\n\n\n<p>David Bisset: But this time I, I said to come, I said To come with a sat. </p>\n\n\n\n<p>Simon Kraft: Yeah, yeah. And, but this time, every single one of my, of my picks is still in the race. And that makes it a bit hard. And I&#8217;m going for the, I think most insignificant one of them, because it&#8217;s no longer in core. And that&#8217;s something we don&#8217;t do that often. Oh, no. </p>\n\n\n\n<p>David Bisset: Um, oh, no, I think I know what it is. It&#8217;s post formats. Yes. </p>\n\n\n\n<p>Simon Kraft: Um, I, I really loved that feature back in the day. Uh, as I said, I was </p>\n\n\n\n<p>David Bisset: te Tell us a little bit about post formats, Simon. </p>\n\n\n\n<p>Simon Kraft: Yeah. I, I, I was, I was building a lot of themes back then and post formats basically had the idea that you cannot only post a post. So not just a blob of text, but also. Oh, I have lists somewhere here so I don&#8217;t have to bumble around like an idiot. </p>\n\n\n\n<p>Um, something that was called a site, like a, a small kind of update kind of post. You had a galleries, links, uh, images, quotes, a status while reading that. I&#8217;m not so sure how that compares to a site. Um, video, audio and chat. And they&#8217;re gone now. They were introduced in 3.1. Um, but they were like, that was a really fun way of, of styling different kinds of content in blocks. </p>\n\n\n\n<p>David Bisset: I remember Matt talking about it on stage, by the way, and I mean, I&#8217;m that old. </p>\n\n\n\n<p>Robert Windisch: I&#8217;m so happy that they are gone. I&#8217;m so happy that they, I&#8217;m not, I&#8217;m not at all. </p>\n\n\n\n<p>David Bisset: Robert. Robert, Robert. They&#8217;re some confusing for people. Robert, we, we&#8217;ll get to, we&#8217;ll get to your negative emotions, but let&#8217;s, I&#8217;ll, I&#8217;m sorry Simon, I interrupted. Go ahead. You were telling us about this wonderful feature. </p>\n\n\n\n<p>Simon Kraft: It was so wonderful and at some point, I&#8217;m not sure when. It was removed from Core. I think there&#8217;s still a way around that. You can still technically use it in some capacity, but it&#8217;s not an ongoing core. </p>\n\n\n\n<p>Tammie Lister: I mean, still you can also use a block now you could use a block and, and have it as a, that&#8217;s not the same. Yeah. I mean, no, you could sign it. </p>\n\n\n\n<p>David Bisset: Well, it was introduced in 3.1, it says here. So it almost made like we were writing an, we were writing high back then as a WordPress. People we&#8217;re like, oh man, 3.0 is so awesome. What&#8217;s next? What&#8217;s next? Oh, this post format stuff. Oh man, we gotta do this. And then, and then crickets. Why, why do you all think that post formats didn&#8217;t make it? </p>\n\n\n\n<p>Simon Kraft: I think, uh, blogging is not that relevant anymore. Yeah. <br />Tammie Lister: Unfortunately. So I think that&#8217;s, that&#8217;s one of the things is like, It&#8217;s very in the blogging sphere, I think it works just for blogging or not for a particular type of blogging even. Mm-hmm. Um, and there was a, you know, if you think about, what was it? </p>\n\n\n\n<p>Timelines, it was a big thing back then. I went kind of wanna bring them back, you know? Mm-hmm. Um, and like listening to, and I&#8217;m doing and status updates. It was kind of in a time before we used social media as well, so people were using their blog to post and syndicate everything on there. And people just started doing that in other places rather than their blog. </p>\n\n\n\n<p>Not saying they&#8217;re not gonna come back with, uh, the world as it is and owning your own content. But I think that because it was very particular, and then WordPress was starting to become about more broad in its terms. I think that&#8217;s the thing when we moved to plugins being about particular things rather than the interface. </p>\n\n\n\n<p>Robert Windisch: Yeah, I just want to pick on my like, negative thing that I said I, I just wanted, like in terms of the user, for the user, it was very complicated to like decide while writing. And, uh, if we are emphasizing on like for the majority of users and have it very lean, mean, uh, interface, then it&#8217;s like going like, okay, what of these seven things, is that what you currently want to do? </p>\n\n\n\n<p>And or nine or whatever it was. And it was not extendable, so it was Oh my God. So that&#8217;s why it was very, for the user, not that, that&#8217;s why I&#8217;m saying like, uh, um, it was not easy to understand and they just want to publish and then we are going like, please do this checkbox and otherwise you cannot like, start the car. <br />So that&#8217;s why I was like, um, really against, uh, the, the post format because they were against the, the, the, the directory of WordPress having like becoming easier to use for people. Yeah. And, and as much as I love the feature, I think that&#8217;s a valid reason to, to remove it. </p>\n\n\n\n<p>Meher Bala: Because even a lot of my clients. They want, they choose a, uh, post type, and they expected some result, something else came up. So a lot of people were confused. Users. </p>\n\n\n\n<p>David Bisset: I could see that. S all right, so I have here events, widget menus, custom post types, and r i p to post post formats, although I think it&#8217;s in the code somewhere, it&#8217;s, and, um, you, you can up to this point, right? </p>\n\n\n\n<p>They wouldn&#8217;t just outright kill it. They hit it and it&#8217;s still in there somewhere. And it&#8217;s just one of those few things in WordPress that had a lot of, uh, fanfare. And again, it just, for one reason or another, it just kind of fizzled a little bit. And the, and so anyway, um, so I&#8217;m, I&#8217;m gonna throw in mine. </p>\n\n\n\n<p>So, believe it or not, there is something that was once popular. And I don&#8217;t know if post formats, you could say it was popular, but I, I like to think it was at least it had a little bit of, uh, runway. There was something early on in WordPress that was popular, that was used quite a bit. And then inversion 3.5, I think at 3.5. <br />Feel free to correct me, uh, future Self that, um, it, it disappeared. Um, I&#8217;m talking about something in the admin. I&#8217;m talking about Something was, started very on in WordPress and in fact, it was part of blogging culture for a long time that if you had a blog on your website in the sidebar, I&#8217;m looking to see if peopleare starting to think about this. </p>\n\n\n\n<p>You had a list of other people&#8217;s blogs that you could l that you would link to, and that was called drum roll. Please think I broke my table. Um, blog roll. That was called a blog roll, but in the WordPress backend, does anybody remember what menu that was? No. Okay. Links. I&#8217;m All right. Thanks for reading it. </p>\n\n\n\n<p>Links. Sorry, there was a links menu. No, no, that&#8217;s right. I made, so it was the links. So I don&#8217;t know if this was in WordPress from day one. I like to think like pretty soon in WordPress it was, I couldn&#8217;t find when it was actually officially added, but I&#8217;m pretty sure I could have, I put my mind to it. But link management phase out of WordPress, from what I can see around WordPress, 3.5, um, supposedly wordpress.com added them back or something along those lines. <br />I&#8217;m not sure if they&#8217;re still there. Um, so when WordPress 3.5 links was gone, and, you know, by the time it was gone, nobody was using it. Very few people were using it. Um, it, because I remember when it was gone, it was like one of those things that like, it was, it was getting old and crusty anyway. And it had, it would needed to be taken out to the refuge, trash bin, dumpster, whatever you kids are calling it these days. </p>\n\n\n\n<p>But I remember using that as one of the first things when I started with WordPress 1.5. Cuz blog rolls were a thing, you would like link the top. Like you people were reading your blog, they wanted something similar to, and you needed something on the sidebar. And believe it or not, um, when people stopped using that, they kind of went over to menus. </p>\n\n\n\n<p>Um, like a menu widget or something, I think was, some people wanted to continue that. But yeah, the links management system blog rolls in the early days of blogging. Those were things, you know. Um, so anyway, um, r i p to R one links management. So that was for me. All right. Lastly, </p>\n\n\n\n<p>Robert Windisch: can I jump, can I jump in? </p>\n\n\n\n<p>David Bisset: Can you link to something? Sure. </p>\n\n\n\n<p>Robert Windisch: Yeah. Yeah. I, um, I cannot like, because it was also hard for me to pick something and, um, uh, Simon, do you do the other thing? Um, yeah. Okay. So, um, uh, one of the, one of the things that, um, was very, was very, very important, but it&#8217;s not like really visible to see this to people, um, is for me the, uh, the rest api. </p>\n\n\n\n<p>Um, because, um, if we talk about like what we are currently like doing with all the, the word we cannot mention here because it&#8217;s a, it is a, it&#8217;s a history show. </p>\n\n\n\n<p>David Bisset: The he who cannot be named yes. </p>\n\n\n\n<p>Robert Windisch: But without the rests api, many things currently would not be possible because that&#8217;s the foundation and like the, um, the sheer energy to put this into WordPress against all arts against, like, why do we need this? <br />It&#8217;s not a visible feature. And when everybody was like, but we need a rest api, XML L P C is not gonna make it. We need to have the future to really communicate with the WordPress backend, and this needs to be in WordPress. We really, really need this. And then we got it like, um, some base features in there, and now we have it like as the foundation of, we cannot name it here. <br />Uh, we have this, uh, foundation that if you would disable that you would like have a really a timeish and jump back in a time with the features that we are currently having. </p>\n\n\n\n<p>David Bisset: Yeah. Yeah. The rest </p>\n\n\n\n<p>Simon Kraft: and probably the next, next iteration of the WordPress interface, like WP admin. Is, I guess, very likely to also be based on the rest api. <br />David Bisset: So here are some runner-ups. Just thought I&#8217;d throw &#8217;em out there real quick. Auto updates, I&#8217;m, </p>\n\n\n\n<p>Simon Kraft: that was the one that Robert meant, uh, I, I should mention. Yeah, uh, we discussed that earlier. Um, all updates were introduced in 3.7 and changed, I guess, WordPress forever. Because since then, every WordPress website is updated, at least patched, uh, to its new version, which is really cool. <br />And until recently we, we also kept like all the, I dunno, what was the last version of, of 3.7 still supported like </p>\n\n\n\n<p>Robert Windisch: 30, something like that. 30 or 30 something. Yeah. <br />Simon Kraft: So it was really crazy that all these old versions are still still maintained to a degree. </p>\n\n\n\n<p>David Bisset: Mihir, did you? I, I had, I&#8217;m sorry. No, I&#8217;m sorry. I wanted to get Mihir. Mihir was shaking her head like a bo, like a bobblehead doll. Um, there, did you grasp auto updates because, uh, Mihir as well as everyone else, I think, because I know there was a lot of controverts in the beginning about WordPress back then. Smaller market share than it does now. Were you comfortable with auto updates, Mihir, in your, in, in your, um, decade? </p>\n\n\n\n<p>Uh, well, I&#8217;m sorry you weren&#8217;t a decade before, but how were you comfortable? Were you comfortable with WordPress updates? Initially, </p>\n\n\n\n<p>Meher Bala: no, because a lot of, uh, sites broke. That was because of the theme and the plugins. But as yours past auto updating WordPress is good because at least people have reduced saying that WordPress is not secure. <br />Yeah. When it is auto updated people, okay. Find that fine. And WordPress is secure, what we add to it with a theme or plugin. There is some vulnerability over there. </p>\n\n\n\n<p>David Bisset: So you, you, so you, you got warm to it. What were you saying, Tammie? Yes. </p>\n\n\n\n<p>Tammie Lister: Uh, I was gonna take in a different direction, so I&#8217;m checking wherever we are done on order updates. </p>\n\n\n\n<p>David Bisset: Oh yeah. Well, uh, yeah. The other two I only wanted to mention in, in, in passing was the customizer. Um, that&#8217;s kind of, we&#8217;re getting, we&#8217;re kind of seeing that maybe in the rear view mirror a little bit. For a while though, that was the true no-code interface to customizing a theme, um, of, in core anyway. And la lastly was the, um, uh, let&#8217;s see. </p>\n\n\n\n<p>I pasted a u URL in this URL does not make sense. There is also smaller things too that maybe doesn&#8217;t play to, I wouldn&#8217;t say. A huge part, but we had things like site health, um, import exporting, WordPress, um, in from core with the plugins, that sort of thing. So lots of little things. Uh, and <br />Tammie Lister: I had one from 2012, which was, uh, something that&#8217;s gonna get redesigned or reworked mm-hmm. </p>\n\n\n\n<p>Uh, in this cycle or this phase, which is the new media management happened in 2012, which sounds a long time ago for it. </p>\n\n\n\n<p>David Bisset: Yeah. I, I can&#8217;t remember what it was like before then. I think you had to draw something and mail it to your WordPress blog, </p>\n\n\n\n<p>Tammie Lister: be glad that you don&#8217;t remember it. It was, it, it was a big thing. And I think that, and even you could have picked like the old way we used to do revisions, which even now you look at revisions and you think, oh, that&#8217;s quite dated. The old way was even more dated back in the day. Um, and why I kind of thought of those ones was because they looked dated to us now, but. We are redoing them now. </p>\n\n\n\n<p>And I kind of think that that&#8217;s kind of interesting to think of. Like the cycle of like every 10 or so years is kind of when we kind of redo things, which kind of is kind Oh, that&#8217;s healthy. </p>\n\n\n\n<p>David Bisset: It&#8217;s a project. Hey, well we&#8217;re an open source. If we can get to the 10 year mark, that&#8217;s a win, right? Uh, pretty healthy actually. <br />To, just to wrap, just to wrap this section up. Um, completely forgot about revisions. Um, not that I used them too often, but, um, that and the little thing when the slider came in. Yes. </p>\n\n\n\n<p>Tammie Lister: From when we first got the sliding, </p>\n\n\n\n<p>David Bisset: I&#8217;m not sure if I took to the slider very quickly because I&#8217;m like, it&#8217;s kinda like going to the eye doctor, does a look better to you? <br />Or B, I worked on that A or B, no, it had nothing to do with the design. It had me trying to keep in my head what, and then the side by side stuff, I think, uh, wa was, was a lot better. But revisions has saved more people&#8217;s butts probably than, than one would remember. Oh. Because I, uh, that an auto save. Um, for a while, I don&#8217;t think, I don&#8217;t remember when, but I know WordPress, when it started, did not autos save your posts as you were typing them. </p>\n\n\n\n<p>And I remember Matt said, standing on stage saying, no, now your power can go out or whatever. And you&#8217;ve got that post and revisions, incl. And, and that also for me, blended into later revisions where, uh, you, you&#8217;re, there&#8217;s a previous revision. Are you sure you want to edit this or do you wanna look at that or go back to it? </p>\n\n\n\n<p>Tammie Lister: But I think back then revisions was, um, Yeah, I think I always kind of forget the words, but it was when we were trying to make things look real, I think skew morphic or something. It was like when you were trying to make like apple, uh, you&#8217;re trying to make things look real or those kind of design things. </p>\n\n\n\n<p>And I think unfortunately it did inherit a little bit from that. Um, so I think now we would go a lot more, um, streamlined. Uh, design has come on a little bit. Uh, it&#8217;s more information based. It&#8217;s more how you are gonna process. It&#8217;s more kind of quick. If you look at the way GitHub and all those kind of interfaces are now, you know, we&#8217;ve learned. </p>\n\n\n\n<p>But back then we were trying to solve a problem that hadn&#8217;t really been. Kind of comprehended. We were trying to visualize issues that we hadn&#8217;t. So it was kind of really interesting to think of like, going back to it now with everything we know about the complications of those. And now we know that people probably do want to extend those, probably do wanna export them, probably do find them useful as well. </p>\n\n\n\n<p>David Bisset: We may see a little bit of a change in this department with phase three, with the, um, multi-user stuff too. </p>\n\n\n\n<p>Tammie Lister: Oh, I think we&#8217;re gonna see a complete change in that way, at least I hope we do, because honestly, that&#8217;s not gonna scale. <br />David Bisset: Yeah. You think? Yeah, I would. Yeah. I, I always get, I get, my daughter says, I&#8217;m trying to edit up, posting your site and it says, you&#8217;re still in there. </p>\n\n\n\n<p>Can you close a tab? And I&#8217;m like, I, or I can kick you out. I&#8217;m like, fine. You&#8217;re your mother&#8217;s daughter anyway, so. Alright, so we have one last category here. Um, Mihir, you are up first. Now this category is how I described this. And I&#8217;m getting them, I&#8217;m getting these, these are getting wordier as we go along, but okay, so this is a memorable community moment or community initiative or community Cause that wasn&#8217;t a WordPress release and you&#8217;re saying, well, why did David put not a WordPress release? </p>\n\n\n\n<p>Um, well, because there have been a couple of memorable WordPress releases focused on who was releasing, who is contributing, all great things. But we&#8217;ve got a lot of that feedback in the, in the past about, oh, it was, it was, um, you know, the WordPress releases, especially the ones where, um, the underrepresented groups took over forward word press release. </p>\n\n\n\n<p>Great. That that could be counted as a community moment. Fantastic. But everybody says that when they first think of one. So I wanted us to be a little bit more tougher, no word press releases, but anything else is open game in terms of a community moment initiative or a cause. So, Mihir, I would love to hear what you&#8217;ve got to say about this. </p>\n\n\n\n<p>Meher Bala: So, For me, when I joined the community, I always, uh, like the very few women who participated and when I used to go to work camps, also the women were fewer. So I just started, you know, gathering all the women and started taking group fit pictures and it became a thing, like if I was there in Word Camp, it was, you know, I had to do a group with them because everyone got excited, new people added. </p>\n\n\n\n<p>So pre pandemic, each word camp I went to, I had, I mandatory went on stage in the lunch break and decided a time place where, you know, everyone will get together. I heard a few things, but I said, this is helping encourage other women. So I don&#8217;t see any problems, so why not? And I used to put on, put on Twitter as well. </p>\n\n\n\n<p>David Bisset: So, so, so you organ Yeah. It&#8217;s kinda encouraging someone else. What&#8217;s that? </p>\n\n\n\n<p>Meher Bala: It&#8217;s kind of encouraging another woman to be a part of the community. </p>\n\n\n\n<p>David Bisset: Absolutely. Um, so like selfies, but good, but selfies representing under underrepresented groups. I, I, they&#8217;re there. Yeah. The WordPress, I mean, you can talk about this all, all day. And this is not exclusive to the WordPress community, it&#8217;s tech in general, right. We&#8217;re always used to that. I have a daughter who is growing up and she kind of grew up in the WordPress community more or less for the last 10 years, you know, with the word camp exposure and everything. And you know, today we kind of take some of the efforts to make people feel welcome for granted a little bit. </p>\n\n\n\n<p>Um, there&#8217;s still obviously a lot that needs to be done in the community, but back in the early days it was, um, You know, especially if someone, someone relates to an someone who relates to a subject or a con or a conference, they love seeing people that represent them on stage or representing them organizing an event. </p>\n\n\n\n<p>Right. And maybe it&#8217;s not apples to apples. Exactly. But you know, it&#8217;s, it&#8217;s, it&#8217;s like, especially, um, especially if, just think if you&#8217;re a young woman, I can&#8217;t, but I have a daughter, so, you know, I&#8217;ve seen her reactions and, um, it&#8217;s, she, she can connect so well with when people, when women were speaking at meetups. <br />So just imagine like back then we just, you know, their focus wasn&#8217;t there cuz we were just happy to have meetups in ward camps, period. And then once we started getting people to speak, then we kind of, like some people especially, started to notice a pattern and that had to be brought to a lot of people&#8217;s attention. </p>\n\n\n\n<p>So that kind of, we kind of evolved into a way where, yes, okay, now we&#8217;ve got the ba, we&#8217;ve got some basics down, but now we&#8217;ve got a lot of improving to do because if we want this community to grow and be decent human beings, we should try to make things as as. And you know what that does for me as an organizer, I was focused on speaker stuff, but there were so many people at the work camps like you, Mihir, we&#8217;re doing these, um, side, I don&#8217;t want to use the wrong term because they&#8217;re important, but um, Site events, right? </p>\n\n\n\n<p>Or something like that. But I mean that respectfully in terms of like, yeah, let&#8217;s, let&#8217;s take a, let&#8217;s get this certain group together and take a photo or let&#8217;s, or, or have this, um, mini meetup or like an after dinner thing at WordPress meetups and that sort of thing. Or even now online, you know, there&#8217;s various, um, communities out there that exist for particular kinds of groups. </p>\n\n\n\n<p>Um, black Press and so forth that, um, that I, at least I&#8217;m familiar with. So I think that was a fantastic idea. I don&#8217;t know if anybody else is familiar with anything else or wants to jump in, but I think putting down a moment in terms of, now I don&#8217;t know how to word this exactly, so maybe you can gimme a term. <br />I can put in the show notes. I have women&#8217;s selfies written down here just because that&#8217;s how my brain works and I don&#8217;t wanna be canceled later. WordPress, sorry. If you can gimme another term. That&#8217;s what I got. What&#8217;s that? Women in WordPress. You got it. I will quote you on that. <br />Tammie Lister: Have you seen that? It&#8217;s possible to not just see one of you though, as well, which is what you are identifying. </p>\n\n\n\n<p>You are, you are saying that there&#8217;s more than one of you and there&#8217;s more than one possibility of you as well, which is really, really important. Um, seeing all the different possibilities that you could do in all the different areas, I think that&#8217;s important for whoever you are as well. So I love that. I think that&#8217;s amazing. <br />David Bisset: And more of it, and in the WordPress leadership roles too. So many are women. My family, women are the hardest working ones. Anyway. Okay, we got that on tape. All right, good. All right. Just, just made just a little insurance from, from my wife later. Um, alright Robert, let&#8217;s talk, let&#8217;s talk a favorite community moment. Or cause Okay. Something along those lines. </p>\n\n\n\n<p>Robert Windisch: So my, my job, uh, my day job is to challenge processes. Now, let&#8217;s see if I, if I come, if, if I have a runner up. So I just want to see if it&#8217;s like how close I am to the things that are not allowed. Okay. Uh, my, uh, favorite or my, like most re uh, community moment is when the, when the whole room at the, at the state of world guest. </p>\n\n\n\n<p>Um, the point was when met stopped the release cycle, so when, when the, uh, before like, uh, before the, um, um, five oh release, um, like we had this like every three months we had to release and then, um, this was like, it not going to, it was not gonna cutting it because the, the changes we needed to do, um, were really, were too big. </p>\n\n\n\n<p>So we cannot, we, like I heard from so many core people that was not, um, um, Like was, was not gonna like cut it in a few months back to just get it in. So my question is, does counting of a re uh, like starting a release cycle counts. So because, um, that was like, I, we were in the room and was like, yeah, and now that&#8217;s why we, uh, need to explain. </p>\n\n\n\n<p>Matt explained that and that&#8217;s why we stopped the release cycle now and everyone was like, what the hell just happened for me? That was like, he dropped the mic amenable </p>\n\n\n\n<p>David Bisset: moment. I think he dropped the mic too. I can&#8217;t remember. Uh, when was that? </p>\n\n\n\n<p>Robert Windisch: Um, 2017, like, uh, weekend as Tammie, because she was uh, um, uh, design, I think Design team rep after that. Yeah. And like Matt was simply, </p>\n\n\n\n<p>Tammie Lister: it would&#8217;ve, I think it would&#8217;ve been, well it would&#8217;ve been 4.9, but we didn&#8217;t do that. Uh, and so yeah, it was four, 5.0. Then we. Had a pause, ended it. So yeah, I think it was 17. I dunno the year exactly. 17. There&#8217;s many years. 17, 18 blended into each other during that time. </p>\n\n\n\n<p>David Bisset: But there was a 4.9. There was a 4.9, wasn&#8217;t there? </p>\n\n\n\n<p>Simon Kraft: It were many 4.9 s. </p>\n\n\n\n<p>Tammie Lister: It would&#8217;ve been like 5.0. It was after 4.9. It would&#8217;ve been. So, </p>\n\n\n\n<p>David Bisset: so it&#8217;s kinda like 3.0, sorry. It&#8217;s kinda like walking toward a, walking halfway toward a wall and then walking halfway toward a wall. There&#8217;s 4.9, there&#8217;s 4.99, 4.9 9, 9, 4 0.99, nine, oh, not 5.0 yet very </p>\n\n\n\n<p>Tammie Lister: long. 4.9 release, </p>\n\n\n\n<p>Robert Windisch: Yeah. But the, the, the beauty was really that, that there was no release. So there was like, we will have a release when we have a release and like there wasn&#8217;t release in between where we like fixed small stuff because we still needed to do while like Tammie and other people were like, okay. </p>\n\n\n\n<p>How, what are we doing? How do we, like, what is the goal here? And, and that&#8217;s why it was really for me, like it sh it, it really, uh, in this, in this moment, in this room at the Word camp us, you really could, like, you could feel a needle drop in the room because like, it was something that never happened before, because like you could, uh, um, um, you can set your watch to Roberto releases. </p>\n\n\n\n<p>Mm-hmm. And then we simply stopped doing that while deciding that we, like, stop doing it because it doesn&#8217;t make any sense. So it was really, really weird and really good because it, it helped us to make this leap that we not talking about right now, but it, it helped us to really, uh, prepare for that. </p>\n\n\n\n<p>Tammie Lister: It was also a stop and help was also kind of part of it. <br />It was a stop and this is how you can get involved. I think that was kind of the other bit like once everyone kind of gets over that Uber stopped, it was, and then here&#8217;s how you can get involved. So it kind of had that double um, or this, that was my, my through the haze of time impact, um, was it brings about the, okay, now I can get involved cuz people do like a release circle. </p>\n\n\n\n<p>Right. Um, so consistency. Now I get involved and now I can do that. And it, it did get us to 5.0, it absolutely got us to it. And without that we would not have had the 5.0. You know, there&#8217;s no point in releasing something there. We are radically different from what we were, but there&#8217;s no point in releasing something that would&#8217;ve been half-baked. It wouldn&#8217;t have worked. </p>\n\n\n\n<p>David Bisset: Yeah. So we have actually done that once in our, at least once in our WordPress history. Right. Yeah, I, I, I don&#8217;t know if we&#8217;ll see a moment like that again, at least anytime soon. It seems like Gutenberg phases seem to be planned out, or at least not like that drama ish type of thing. </p>\n\n\n\n<p>Right. It&#8217;s not, it wasn&#8217;t a press release Rob Robert&#8217;s. Right. I remember. I remember saying Matt, Matt said it, and I think a few people had to change their pants. It was that kind of a moment where you just kind of expected like, this is all, this is all we&#8217;ve known, you know? And that&#8217;s funny because, you know, fast forward to a few days before working at us and, and, uh, you know, me in a hotel room, super caffeinated trying to finish something as Matt is in a chat room saying 5.0, it&#8217;s coming out now, whether we like it or not, it&#8217;s coming out, you know. </p>\n\n\n\n<p>Anyway. I better stop with the analogies. It was ready. Oh, it was, it was, it was ready. Kind of kinda like I&#8217;m on top of this, uh, on a heel skiing and somebody says, oh, you&#8217;re ready, you&#8217;re ready. And slowly pushing me off the ledge. It&#8217;s, it was that type of ready. Oh yeah, it was ready. It was ready. Um, I just did, you know, just, just thinking my life flashing before my eyes right before it came out though. Um, let&#8217;s see, Tammie, I think your next, um, community initiative, cause whatever, </p>\n\n\n\n<p>Tammie Lister: I&#8217;m going to take you back to 2014 to, I don&#8217;t wanna go Miami and the first ever kids workshop. </p>\n\n\n\n<p>David Bisset: Ah, you actually snagged something. </p>\n\n\n\n<p>Tammie Lister: Oh. Cause that fell. I still have. Really fond memories of it. It kind of felt really incredible to, it wasn&#8217;t even really that organized. It wasn&#8217;t really that. </p>\n\n\n\n<p>David Bisset: Thanks Tammie, really appreciate it. It was that big in, </p>\n\n\n\n<p>Tammie Lister: I&#8217;m sorry, but there&#8217;s no, like back then we were David all over initiative. I&#8217;m sorry. We weren&#8217;t, we weren&#8217;t trying to do we, we were just gonna be doing the event. We weren&#8217;t gonna necessarily try and do anything bigger with it. </p>\n\n\n\n<p>And I think it planted a good seed that maybe took a bit of time before anything else happened, but that was absolutely fine. Um, and it was really important for just to start that. I think it&#8217;s both important for representation, but also important for an open source project doesn&#8217;t work with older people only working on it. </p>\n\n\n\n<p>So for me it was incredibly special if I think of the people that were in that room as well, who were passing on. Many of them are still involved, contributing, in fact, all of them that I can think of. And it was just really special for me. Yeah. Yeah. </p>\n\n\n\n<p>David Bisset: Um, that, now, just to be clear, for someone who was about to write that email to us, this is not the first kid&#8217;s camp ever in a work camp. <br />It was the one Tammie attended? No, it was a kid&#8217;s workshop. Workshop. It was a, well, I don&#8217;t like to use the word kids and work very close to each other because people get sensitive about that. </p>\n\n\n\n<p>Tammie Lister: Yeah. It was 2014. It was no like kids camp or anything like that. It was, it was just, I, I don&#8217;t think it was that long, either, we weren&#8217;t doing it for or anything like that. </p>\n\n\n\n<p>David Bisset: Kids don&#8217;t exactly have long attention spans. So, yeah, that&#8217;s under we, </p>\n\n\n\n<p>Tammie Lister: no, it was, it was nothing official. It was no official kids camp. It was nothing. And it, it was, it was long time ago, so there was no kind of officialness of it. Um, but no, it was, I think we got them set up on a blog and we got them to customizing a theme and writing their first post. <br />That was as far as we got. That was our goal for the day. </p>\n\n\n\n<p>David Bisset: Some people vowed never have children after that. Our younger, uh, younger volunteers look, well, I mean, I, I, it was there at Miami because I was at Phoenix and saw something very similar. I think it was a one day event at Phoenix. I saw there, I was there watching the kids. </p>\n\n\n\n<p>Which nowaday, it sounds creepy when you say, are you here? Do you have any kids? No, I&#8217;m just watching them seeing how they do things. All right. Sarah, security and, uh, but I was watching how they did it in Phoenix, and this was, I don&#8217;t know, maybe it&#8217;s 2 20 12 or 2013 or something like that. And then, yeah, that&#8217;s when we started doing in Miami and now it, now there&#8217;s lots of kids&#8217; camps. </p>\n\n\n\n<p>There&#8217;s a whole kids&#8217;. Section now of learning and, and people in charge of that type of thing now. And there&#8217;s probably gonna be something at, uh, us, I know there&#8217;s something at Europe coming up, uh, which is fantastic. So it&#8217;s exploded. And then when we did our 10th anniversary word pr, our 10th anniversary were Camp Miami. </p>\n\n\n\n<p>It is prog, it progressed to a point where we had the kids, I forget what the ages were, I&#8217;ll be gonna say like seven to 11 or seven to 12, seven to 13. That age group doing what you said, more or less. But then we kind of took the pe, the teenagers, 14 to like high school level. And then we had a day where we taught them WordPress. </p>\n\n\n\n<p>And then a day after, like we taught them WordPress and how to build a store in WooCommerce. Then the next day we taught them s e how to market it. </p>\n\n\n\n<p>Tammie Lister: Wow. I think it was also back then we were being very experimental with what could a word count be? Remember the day of rest and all the different kind of buddy camps and different things. </p>\n\n\n\n<p>Oh, yes. I think we were just kind of experimenting with different formats as well. Yeah, exactly. We were just, uh, I think that was part of it as well as like, how can we start? And it&#8217;s great to kind of think about that as well. So I think that was kind of amazing. </p>\n\n\n\n<p>David Bisset: Fantastic. Memories. Still one of my mentions. So Simon, um, let&#8217;s, let&#8217;s cover, let&#8217;s cover the, um, anything from a community moment standpoint that stood out for you. </p>\n\n\n\n<p>Simon Kraft: Yeah, I&#8217;ll, I&#8217;ll stay in the, um, event space, I guess. </p>\n\n\n\n<p>David Bisset: Oh, he&#8217;s, he&#8217;s choked up. This is a, this is gonna be so good. </p>\n\n\n\n<p>Simon Kraft: Um, and I just noticed that we&#8217;ll stay in the 2013 ish, uh, kind of timeframe. <br />David Bisset: It&#8217;s the WordPress 3.0 3.0 of years, right? Yeah. </p>\n\n\n\n<p>Simon Kraft: Um, because in, I think it was early October, 2013, uh, we had the first word Kim Europe in, in Liden and it was such a stupid idea, um, back then and still. </p>\n\n\n\n<p>David Bisset: Wait, let me, let me write that down, Simon. Yeah. Stupid. Okay, go ahead Simon. Just wanna make sure I got this cuz </p>\n\n\n\n<p>Simon Kraft: it&#8217;s just the, the kind of stupid idea that hold on and exploded into the kind of mega event that what computer is today. And it was totally different back then, but the idea to bring like a whole continent together and have a joint event, um, It was beautiful and also it was a nice event. <br />Um, I have to say that, um, </p>\n\n\n\n<p>David Bisset: possibly the first regional event, although I don&#8217;t know if Word Camp Asia or it&#8217;s forced in existence. What&#8217;s that? </p>\n\n\n\n<p>Simon Kraft: Yeah, yeah. Oh, it really was. And uh, there was no word can be asked before that, at least. No, no official one. </p>\n\n\n\n<p>Robert Windisch: There was none. There was just the, just San Francisco, the global one as, as we European call that. Yeah. And I think it&#8217;s, </p>\n\n\n\n<p>Simon Kraft: it&#8217;s some, sorry. </p>\n\n\n\n<p>Tammie Lister: No, you go. As it was the first, and it was done in an incredibly short time. Uh mm-hmm. I don&#8217;t think anyone ever realizes how short a time it was done in the end as well. </p>\n\n\n\n<p>David Bisset: Somebody only had a few people, only had one change of clothes was that quick. </p>\n\n\n\n<p>Tammie Lister: But yeah. And, uh, so as, as someone that was involved in it, I, um, it was one of those things that I, I think you, I. <br />Rarely get to experience, but the venue was incredible. Mm-hmm. I plus one that mm-hmm. That was one of those venues. Um, we, several of us had gone to a conference before in that venue and got to see that venue and it&#8217;s was one of those venues that I would love to use again for something. It&#8217;s just a great venue. </p>\n\n\n\n<p>David Bisset: It really also symbol started to formulate the idea that we could have larger word camps and the community had matured to that point where we could bring in a larger event and we could coordinate across multiple countries for that sort of thing. Um, before that, um, you all you had was cities or I think in a few places or, you know, general regions like Word Camp Southeast or Midwest or something, some direction in the us. </p>\n\n\n\n<p>Um, but that was a very memorable moment in terms of community history. Cuz again, I don&#8217;t know, I, I think, I don&#8217;t know when Japan. I know Word Camp Japans have been very, very long standing, but, but for Europe it was, it was got a lot of attention and I think rightly so. So I&#8217;m, I&#8217;m really good for that cuz it kind of set the, it set the pattern for all for, for camp us a bit. </p>\n\n\n\n<p>It set a precedent for, um, the scene. There&#8217;s War Camp Asia and there&#8217;s probably, I feel like I&#8217;m leaving somebody out. I think there&#8217;s one on the books and I just can&#8217;t remember what region is now gonna be. I know they want to have a war camp, Africa War Camp </p>\n\n\n\n<p>Robert Windisch: Nordic. You had a WordCamp Nordic regions in, in, in Europe. <br />Mm-hmm. </p>\n\n\n\n<p>David Bisset: Yeah. And you know, who knows in 30 years War Camp Mars. So anyway, that, I think that&#8217;s a pretty, pretty, pretty good thing to put a pin on in terms of the community there. Now I, uh, I could, as, as much as I like my, uh, work camp Miami, there really was nothing. Uh, there&#8217;s, there&#8217;s nothing that equals that level. </p>\n\n\n\n<p>So I&#8217;m gonna leave that out because I&#8217;m biased anyway, I do wanna put together. You mentioned two things, um, from a community, uh, cause or initiative standpoint. One was reco, and I may have mentioned this in the past episode, so listener, I apologize if I&#8217;m repeating myself, but it&#8217;s also when we talk about the community, recognizing those that we no longer have in our community. </p>\n\n\n\n<p>Um, so I thought, uh, one thing that stood out to me, that representative was the Kim Marshall&#8217;s Memorial scholarship. Um, and you know, and because a lot of the old, old timers remember her, um, I remember her at Work Camp San Francisco. Um, But also like all those other people that, you know, our community, the older community gets, people get old. </p>\n\n\n\n<p>Um, that&#8217;s, that&#8217;s life, uh, currently. So people will leave the community, uh, in that manner. Not, you know, not, not, not drama wise. I&#8217;m never coming back community, but people pass away or people have, uh, accidents and that sort of thing. So it is that, that kind of represents to me, not just the scholarship itself, which is a great initiative on its own, but it&#8217;s a recognition of, you know, we have important people that we want to remember the WordPress community, whether it&#8217;s in the form of scholarship or honoring them on social media every year, seeing their names and releases. </p>\n\n\n\n<p>I know there&#8217;s a couple of people, and I am really, really bad at remembering his name right now, but he created a plugin. He was race, he was into a race car driving. I remember him in a race car. What&#8217;s that? Wipo? Yeah, VI, right. But what was his name though? Yeah. What was the name I, I&#8217;m gonna kill my why was 0 0 7? </p>\n\n\n\n<p>Yes. The user name. Yeah, but I&#8217;m talking about his real name and I&#8217;m frustrated with myself. I can&#8217;t remember it, but I remember when he passed away, I forget what plug-in he did. I guess I&#8217;ll have, I&#8217;ll include that in </p>\n\n\n\n<p>Simon Kraft: Shownotes, but he did the regenerate thumbnails plugin and his Alex, </p>\n\n\n\n<p>David Bisset: yeah. Oh, okay. So we, we remember &#8217;em by reputation, but it&#8217;s all of those people that do these plugins and Alex Mills. There you go. I&#8217;m horrible at remembering names, but yes, </p>\n\n\n\n<p>Robert Windisch: I&#8217;m googling ju just like, </p>\n\n\n\n<p>David Bisset: oh, I don&#8217;t judge. Just keep your hands here. So we have Kim Parcels, we have Alex Mills, all of these people that, that are involved, that with the community that, that we, that we&#8217;ve taken their plug-in, we&#8217;ve taken their plug-ins and their work and they&#8217;re, you know, and it&#8217;s in WordPress core now to our popular plug-in now. </p>\n\n\n\n<p>And the other, the other thing I wanted to point out as a community initiative or, or moments was the Wampoo itself has, and, and I see one behind, um, Tammie, hopefully she knows it&#8217;s there. And we have so many, it&#8217;s incorporated, like every word camp now has a wpu. Um, it was also a lot of the kids&#8217; stuff had wpu involved as a cartoon character and, you know, that was part of the kids&#8217; camp stuff. </p>\n\n\n\n<p>And, um, I&#8217;m sharing a link with you all right now. One of the, one of the coolest swag moments I ever had was, um, for, I don&#8217;t know which, where Camp Miami was, but we came out with these UNO cards, with wpu s on them, and. I put it on his open source on GitHub and be, this is the community angle, like a couple of work camps from like the other side of the world. </p>\n\n\n\n<p>I think from, I think from India or Indonesia, I believe it was somewhere in that general area. They pinged us and said, can we use these? I said, yes, they&#8217;re open source. So what they did was they just changed the design a little bit. Like they, they put the work camp logo on it and made it, maybe translated it a little bit in their language, but now people are saying, oh, those are cool cards. </p>\n\n\n\n<p>And like, you know, I have a little bit of pride. I said, yes, those, I, those are cool when we thought of them over in Work Camp Miami. But I am, so I&#8217;m even more happy to see people repurposing swag like that. And I thought the Wampoo, um, was an original great idea and I&#8217;m glad that, um, um, Matt kind of adopted that as part of the unofficial slash. Unofficial. I&#8217;ll say unofficial mascot cuz I&#8217;m not seeing it on official. </p>\n\n\n\n<p>Robert Windisch: Unofficial. Official. It&#8217;s the official term for the, it&#8217;s unofficial official. </p>\n\n\n\n<p>David Bisset: Just think of all the pins, all the badges, all the shirts. I don&#8217;t know if you ever saw the Work Camp Wpu shirt from Work Camp Miami that had the face, </p>\n\n\n\n<p>Tammie Lister: there was an actual physical wapuu. </p>\n\n\n\n<p>David Bisset: Yes. The one walking around there. <br />wapuu became physical. I was wandering around. It was the best work camp Miami 2019. I know the people that were in that suit. It was like a walking Cheeto, but it was so worth to see a walking wapuu around. </p>\n\n\n\n<p>But yeah, it&#8217;s just, think of all the swag and like the MAs, the just the very thought of a mascot, um, itself. Not a logo, but a mascot I thought really helped shape the WordPress community was a great community moment. So anyway, thumbs up to all those people. I have one to, what&#8217;s that? </p>\n\n\n\n<p>Tammie Lister: Yeah, I have one to add. I think the sustainability initiative, which is a newer one. I think that&#8217;s just getting started. But I think. And gathering momentum and finding out what it means. But as someone that&#8217;s organized a word camp before and tried to do it, sustainability when we in Brighton, um, I think it&#8217;s really good from that app. But I also think it&#8217;s really good from just the impact as a project that we leave and like the technology, I think it talking about like trying to be around as a project for a while, we kind of have to be aware of all those aspects. </p>\n\n\n\n<p>So I think that initiative deserves a kind of mm-hmm. Call out because it crosses so many of our areas and it doesn&#8217;t necessarily get and so much kind of eyeballs I think. </p>\n\n\n\n<p>David Bisset: Yeah. Make sure to throw that in the show notes by the way, cuz. We&#8217;ve shared so much here today. And, and, uh, no, I&#8217;ll include everything that you&#8217;ve mentioned. Everything you thought of, throw it in the show notes. I&#8217;ll do a array matching thing so we don&#8217;t get duplicates. Um, all right, so I, we&#8217;ve covered kind of the categories and we&#8217;ve covered a lot of stuff and I&#8217;m really happy cuz a lot of stuff we&#8217;ve talked about here today is, is not been mentioned in depth in my other conversations. </p>\n\n\n\n<p>So that&#8217;s fantastic. I got exactly what I wanted out of you all. But, so what I wanted to do is I wanted to go around one last time and see if there&#8217;s any random thoughts that appeared in your head about anything else. Sky&#8217;s the limit. In terms of, in terms of any moments. Um, you know, I was gonna say good, bad and ugly, but let&#8217;s just, we&#8217;ll, let&#8217;s just keep it or good or bad because I don&#8217;t have time to cover ugly. </p>\n\n\n\n<p>Um, Mihir, um, what have we left out here? What did we not mention that you think could, could be mentioned real briefly? </p>\n\n\n\n<p>Meher Bala: Uh, recently Michelle has created a side WP speakers. </p>\n\n\n\n<p>David Bisset: Ah, yeah. </p>\n\n\n\n<p>Meher Bala: So this. I see this helping the organizers with finding out, uh, speakers in their areas or n nearby do not go and approach them. So that is one thing which just came across my mind right </p>\n\n\n\n<p>David Bisset: now. Yeah. Kudos to her for that initiative. She does so much now, the job things on Wednesdays and all her, all her community work, which we don&#8217;t have time to go into here. That&#8217;s fantastic. Yes. So speakers of speakers project. My, um, Robert, anything we might have, we haven&#8217;t touched on at all briefly? </p>\n\n\n\n<p>Robert Windisch: Yeah. Um, so small thing, um, the time when W P C L I became a make project, Because it was a project outside. And, uh, it&#8217;s really like if, if people like, cause the people who work, um, professional with WordPress sites and like on local, on local, um, machines and like automating stuff like the W P C L, I be becoming like a, a real make project with all the um, good and bad things around it. It was really, really good for the project and for Daba P c I to jump the simply make sure it stays around </p>\n\n\n\n<p>David Bisset: wp I, yeah, develop. If, if you&#8217;re a developer and you&#8217;re not familiar with that, slap your face twice and get reading in the documentation. Tammie, what have we not mentioned here at all? </p>\n\n\n\n<p>Tammie Lister: This is almost like project management, but I&#8217;m gonna say in core, when started to have more organization core meetings and recognizing roles for releases, I think that that started to allow people to see where they could be part of it. </p>\n\n\n\n<p>Um, and. Gave enough order to those meetings that someone could follow along, you know, you can follow the agenda. Um, so those kind of things. Having enough project management, uh, so that someone could belong. So just being able to have a call. We didn&#8217;t do that. We didn&#8217;t have calls for releases and Oh, yeah. </p>\n\n\n\n<p>And people being part of it and, and having like, Hey, would you like to have these roles? And people been able to step up and have those roles, that&#8217;s really important. And it&#8217;s not that far, but we&#8217;ve had that. So I think that is really, really important for us. Yeah. </p>\n\n\n\n<p>David Bisset: You take that stuff for granted sometimes, not realizing how you do, it&#8217;s never been, and </p>\n\n\n\n<p>Tammie Lister: it&#8217;s not just like tech, it&#8217;s like documentation and it&#8217;s growing. <br />Right. The options that people can step up and be part of. So yeah, I think that, </p>\n\n\n\n<p>David Bisset: and that&#8217;s what some people that have come into the WordPress community in the last couple of years, they haven&#8217;t known a time before that. It&#8217;s kind of like </p>\n\n\n\n<p>Tammie Lister: no. And Core Chats used to be a lot, there used to be a lot to be part of and try and follow and keep up with. Um, and it would put off a lot of people. So this is an incredibly welcoming, so yeah, more inclusive. </p>\n\n\n\n<p>David Bisset: It&#8217;s trying to explain what a V H S tape is to my daughter today. Yes. That was, there were times before digital media. So Simon, what? And one or two things briefly. We may not have covered that. Yeah. Could see. <br />I can see your gears turning. Sorry. </p>\n\n\n\n<p>Simon Kraft: No, no. I have something, uh, </p>\n\n\n\n<p>David Bisset: stuck in your teeth . Oh, um, oh, I&#8217;m sorry. I thought I could read, I thought I could read people. God, what else? You got anything in the tank? </p>\n\n\n\n<p>Simon Kraft: I would like to give a shine a light on a make team that I think has its work a bit undervalued sometimes. Um, the accessibility team. Uh, you do like a really great job speaking of inclusivity, um, in making sure that more people can use WordPress, and I think that&#8217;s part of democratized publishing. So they do very, very important work. </p>\n\n\n\n<p>David Bisset: Yeah, I can&#8217;t argue with that. I, I am always amazed at the new, it&#8217;s especially so much harder now with all the more complex technologies, especially in the admin, right? </p>\n\n\n\n<p>And that&#8217;s still a work in progress. I think all the initiatives that we&#8217;re doing today, you know, ev moving forward, I, I want, I wanna, I wanna see more attention to them, um, because a lot of accessibility needs that kind of attention and just like performance or anything else. And so many times accessibility is, is not a first brain thought type of a thing. </p>\n\n\n\n<p>So I really think that deserves a real good shout out as far as I&#8217;m concerned. I&#8217;ve got three random things left. I, we&#8217;ve talked about acquisitions in the previous. Shows, but I always thought the Tumblr acquisition really stood out to me in terms of a potential that it has for WordPress moving forward that isn&#8217;t WordPress. </p>\n\n\n\n<p>Um, Gutenberg is supposed to transcend WordPress. Maybe, maybe that&#8217;s, uh, Matt&#8217;s made that comment a couple of times, so it&#8217;s interesting to see where that might go. Um, P two. Speaking of things that, like some, somebody just said, does he need to do at the restroom? No. The letter p and two. Is a, if you don&#8217;t know what that is, Google it. </p>\n\n\n\n<p>But because, but when, when, when Tammie said something about the structure of, of, of backend WordPress organization, um, it is a blog that Matt and Matt actually talked about this a number of times, and I think they have a new version called oh two. Um, I&#8217;m not sure if that&#8217;s out yet in terms of a, like a plugin or a theme you can download. I think, I, I can&#8217;t remember. All I remember is it was, Cutting more cutting edge in them. But we used to, </p>\n\n\n\n<p>Robert Windisch: it&#8217;s a hosted version on wordpress.com. Yes. The </p>\n\n\n\n<p>David Bisset: hosted version version. It&#8217;s like halfway. It was halfway. They&#8217;re like, you can&#8217;t get it, but you can. You can get it because it&#8217;s hosted this place. So if you don&#8217;t know what those are, just go ahead and Google &#8217;em. </p>\n\n\n\n<p>But P two was fundamental to the organization of a lot of WordPress stuff, even it as it exists today. So like as early as last year, I remember like Word camps, having a P two doc with people organizing writing notes in there. And Matt was always a big, big fan of P two in terms of like, you know, because it&#8217;s basically more or less a block for teams, right? </p>\n\n\n\n<p>A big, big, big use at automatic. And I&#8217;m pretty sure it still does. And finally, I have elevator advertising at work camps, and we&#8217;ll just leave it at that. So thank you very much for everybody. Um, Mission here wasn&#8217;t to cover everything. That&#8217;s impossible. But I wanted to cover things from your brains, cuz all you I respect and are unique and I you brought the game today. </p>\n\n\n\n<p>Thank you very much. I greatly appreciate it. So, um, let&#8217;s go around and then do your, do your, let&#8217;s, let&#8217;s say we&#8217;re people, I was gonna say do your closing remarks, but this isn&#8217;t a talk. Um, where can people find you, uh, on social if they want to cont if they wanna follow you, because these days we, we, it&#8217;s, who knows? It&#8217;s social blog, whatever you want to, whatever you wanna share. But here you go first. </p>\n\n\n\n<p>Meher Bala: Uh, I&#8217;m on Twitter, me, I&#8217;m on LinkedIn and my website meher.com. </p>\n\n\n\n<p>David Bisset: Yes. And we&#8217;ll also put these in the show notes too, so I don&#8217;t have to worry about spelling everything out cuz I can&#8217;t spell. It was very nice to have you, um, Robert, um, the, yeah, if, if, uh, yeah, go ahead. <br />I was gonna say, where can we buy that hat? But I don&#8217;t think that exists anymore. </p>\n\n\n\n<p>Robert Windisch: That&#8217;s very like with pins or without. Um, so it&#8217;s, uh, it&#8217;s nubis on, on Twitter and otherwise it&#8217;s nubi it on the WordPress profile. </p>\n\n\n\n<p>David Bisset: Thank you very much, Robert. It&#8217;s good to see you in the hat again. And, um, if you ever wanna sneak into a Word camp, just don&#8217;t wear the hat and people won&#8217;t recognize you. Um, Tammie, uh, where can we find you? <br />Tammie Lister: You can find me at karmatosed on all the things. </p>\n\n\n\n<p>David Bisset: Yes. Pretty much still and don&#8217;t What about, yeah, well, we&#8217;ll just put show notes. Just that. And well, people will find you again. You also have a, um, you also have you started a new blog recently too, or am I, I have now next slab. </p>\n\n\n\n<p>Include that in show notes as well, because we&#8217;ve been, I&#8217;ve been reading, I&#8217;m, I, I, I&#8217;ll, I, I be ashamed to admit, I don&#8217;t know when you started it, but I&#8217;ve been picking up the last couple of posts, so they&#8217;ve been very insightful. It&#8217;s only been a couple of weeks. Thank I&#8217;m so God. I put myself out there and it will work. <br />I&#8217;m sorry, go ahead. Yeah, </p>\n\n\n\n<p>Tammie Lister: I&#8217;m just starting to write just generally about where could WebPress go in the now and the next. Oh yeah. </p>\n\n\n\n<p>David Bisset: Okay. I&#8217;ll throw that into show notes as well. Just some thoughts. Yeah. Well, you&#8217;ve always had some good thoughts. I think it&#8217;s worth sharing. Simon, where can people be finding you? </p>\n\n\n\n<p>Simon Kraft: I think the easiest is https://simon.blog/ . Yeah. Yeah. I was an early adopter. </p>\n\n\n\n<p>David Bisset: Um, you don&#8217;t have to rub it in, but Okay. </p>\n\n\n\n<p>Simon Kraft: And I think I&#8217;ll link to basically all the other things from there. So I won&#8217;t try and, uh, spell out my masteron username and domain thingy. </p>\n\n\n\n<p>David Bisset: Sorry. Please don&#8217;t, because it sets off my Amazon Echo for some reason when you start saying master on things. Nope, we&#8217;re good. All right. We&#8217;re fine. Uh, yes. Yeah, Simon Dolo. Wow. And you&#8217;ve got an English translation too. Oh, that&#8217;s great. Last crappy Twitter in beds, please. Ooh, I&#8217;d like to read that one. All right. So Simon Dolo for you. So, um, just if you&#8217;re hearing this and you wanna follow me, um, best place to go would be either david bis.com or David bi.social. </p>\n\n\n\n<p>But thank you all for coming. Your time is precious. Greatly appreciate it. And, uh, we will talk later. Thank you. </p>\n\n\n\n<p>Simon Kraft: Thank you. All right.</p>\n</div>\n\n\n\n<p>Today is a little bit of a departure for the podcast. It&#8217;s an episode all about the last 20 years of WordPress.</p>\n\n\n\n<p>You&#8217;re going to hear a round table discussion with four WordPressers talking about their thoughts on the last 20 years. It features Meher Bala, Robert Windisch, Simon Kraft and Tammie Lister, with David Bisset as the discussion moderator.</p>\n\n\n\n<p>They cover a lot of ground, and it&#8217;s fascinating to hear their WordPress stories from the past two decades.</p>\n\n\n\n<p><strong>Notes from David Bisset:</strong></p>\n\n\n\n<p>To honor WordPress’s 20th anniversary I locked myself in a room with four wonderful community members to talk about some highlights in it’s history.</p>\n\n\n\n<p>Primary topics include:</p>\n\n\n\n<ul>\n<li>a memorable design or refresh in WordPress&#8217; history</li>\n\n\n\n<li>the most notable enhancement to WordPress core (that wasn’t Gutenberg related)</li>\n\n\n\n<li>a memorable community moment or cause</li>\n</ul>\n\n\n\n<p>There&#8217;s also lots of &#8216;forgotten&#8217; history and features also come up in the discussion. So, regardless of how long you’ve been involved with WordPress, you’ll learn and maybe have your memories jogged!</p>\n\n\n\n<h3 class=\"wp-block-heading\">Discussion subjects and links:</h3>\n\n\n\n<h4 class=\"wp-block-heading\">Robert Windisch</h4>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2013/10/23/mp6-3-8-proposal/\">https://make.wordpress.org/core/2013/10/23/mp6-3-8-proposal/</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/community/handbook/meetup-organizer/wordpress-events-in-the-dashboard/\">https://make.wordpress.org/community/handbook/meetup-organizer/wordpress-events-in-the-dashboard/</a></li>\n\n\n\n<li><a href=\"https://wordpress.org/documentation/article/post-formats/\">https://wordpress.org/documentation/article/post-formats/</a></li>\n</ul>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_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 May 2023 14: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:\"Nathan Wrigley\";s: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:92:\"Do The Woo Community: A Blend of WordCamp Europe, WordPress and WooCommerce with Sjoerd Blom\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"https://dothewoo.io/?p=75203\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:90:\"https://dothewoo.io/a-blend-of-wordcamp-europe-wordpress-and-woocommerce-with-sjoerd-blom/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:465:\"<p>Sjoerd, the global lead from WordCamp Europe joins us to talk more about the event and his life with WooCommerce and WordPress. </p>\n<p>&gt;&gt; The post <a rel=\"nofollow\" href=\"https://dothewoo.io/a-blend-of-wordcamp-europe-wordpress-and-woocommerce-with-sjoerd-blom/\">A Blend of WordCamp Europe, WordPress and WooCommerce with Sjoerd Blom</a> appeared first on <a rel=\"nofollow\" href=\"https://dothewoo.io\">Do the Woo - a WooCommerce Builder Community</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, 25 May 2023 10:49:47 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s: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:69:\"WPTavern: MariaDB Health Checks Plugin Now Available on WordPress.org\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=145418\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:80:\"https://wptavern.com/mariadb-health-checks-plugin-now-available-on-wordpress-org\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2130:\"<img />\n\n\n\n<p>A new <a href=\"https://wordpress.org/plugins/mariadb-health-checks/\">MariaDB Health Checks</a> plugin is now available on WordPress.org, thanks to the efforts of contributors involved in the 2023 CloudFest Hackathon which took place in Germany. MariaDB is a popular open source database used by those looking to further scale their websites, as it is generally faster than MySQL with better support for a concurrent number of connections. </p>\n\n\n\n<p>&#8220;At the moment it appears WordPress is dominating the PHP world, so this seemed to be the perfect target,&#8221; MariaDB Foundation Chief Contributions Officer Andrew Hutchings <a href=\"https://mariadb.org/mariadb-foundation-at-cloudfest-hackathon/\">said</a> about creating the plugin at the hackathon.</p>\n\n\n\n<p> &#8220;The MariaDB Foundation loves WordPress (I’m writing this post in WordPress right now) so it seemed like a logical project.&#8221;</p>\n\n\n\n<p>The plugin helps users debug their MariaDB databases by displaying important information, such as logs, locale, connections, character set and collation, and options. It also shows a graph of the number of queries and the execution time over the last 24 hours.</p>\n\n\n\n<img />\n\n\n\n<p>The plugin also integrates with WordPress&#8217; Site Health feature with two checks:  an end-of-life check and a check for whether Histograms have been run. Histograms are an optimizer that can help improve MariaDB performance, and the plugin enables calculation of histograms to run on WordPress tables with the click of a button under the plugin&#8217;s Tools menu.</p>\n\n\n\n<img />\n\n\n\n<p>&#8220;There are a few features now and it is a good framework to add more features to in future,&#8221; Hutchings said. &#8220;This is a community project and is open to suggestions and pull requests. This is a project that we at the MariaDB Foundation want to support in the future.&#8221;</p>\n\n\n\n<p>MariaDB Health Checks is <a href=\"https://github.com/MariaDB/wordpress-mariadb-health-checks\">developed on GitHub</a> where developers can follow the plugin&#8217;s progress, contribute to new features, and report bugs.</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 May 2023 21:14:56 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"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:122:\"Post Status: WP 6.2.2 • WP Playground • Client-side Filtering • Future WordCamp Brainstorms • Plugin Review Update\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://poststatus.com/?p=149407\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:117:\"https://poststatus.com/wp-6-2-2-wp-playground-client-side-filtering-future-wordcamp-brainstorms-plugin-review-update/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:21112:\"<h2 class=\"wp-block-heading\" id=\"h-this-week-at-wordpress-org-april-3-2023\">This Week at WordPress.org (May 22, 2023)</h2>\n\n\n<div class=\"has-background has-theme-palette-8-background-color wp-block-post-excerpt\"><p class=\"wp-block-post-excerpt__excerpt\">WordPress 6.2.2 is available now for update. This reintroduces shortcodes in Block Theme Templates in a more secure way. <br /><br />Rich Tabor and WordPress Playground innovator Adam Zielinski discuss the capabilities and promise of WP Playground.<br /><br />What do you want to see for future WordCamps? Share your ideas on the post.<br /><br />Do you want to disable border settings for everyone but Administrators, and only for posts? See the Dev Blog. <br /><br />What&#8217;s the fate of the plugin review team with the primary maintainer soon to retire? It appears to have a bright future with additional contributors and tooling.  </p></div>\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<div class=\"wp-block-kadence-infobox kt-info-box_94d1bd-77\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-left kt-info-halign-left\"><div class=\"kt-blocks-info-box-media-container\"><div class=\"kt-blocks-info-box-media kt-info-media-animate-none\"><div class=\"kadence-info-box-icon-container kt-info-icon-animate-none\"><div class=\"kadence-info-box-icon-inner-container\"><span class=\"kb-svg-icon-wrap kb-svg-icon-fas_filter kt-info-svg-icon\"></span></div></div></div></div><div class=\"kt-infobox-textcontent\"><h2 class=\"kt-blocks-info-box-title\">WP 6.2.2, Next Gen WordCamps, Block Filters for Client Curation, Plugin Review Onboarding</h2><p class=\"kt-blocks-info-box-text\"><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f6a8.png\" alt=\"🚨\" class=\"wp-smiley\" /> <a href=\"https://wordpress.org/news/2023/05/wordpress-6-2-2-security-release/\">WordPress 6.2.2 Security Release</a><br /><br /><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f6dd.png\" alt=\"🛝\" class=\"wp-smiley\" /> <a href=\"https://wordpress.org/news/2023/05/episode-56-what-to-know-about-wordpress-playground/\">WP Briefing: Episode 56: What to Know About WordPress Playground</a><br /><br /><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f4a1.png\" alt=\"💡\" class=\"wp-smiley\" /> <a href=\"https://make.wordpress.org/community/2023/05/24/idea-generation-next-gen-wordcamps/\">Idea generation: Next Gen WordCamps!</a> <br /> <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f9e9.png\" alt=\"🧩\" class=\"wp-smiley\" /> <a href=\"https://developer.wordpress.org/news/2023/05/curating-the-editor-experience-with-client-side-filters/\">Curating the Editor experience with client-side filters</a><br /><br /><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f50c.png\" alt=\"🔌\" class=\"wp-smiley\" /> <a href=\"https://make.wordpress.org/plugins/2023/05/17/plugin-review-team-update/\">Plugin Review Team Update</a></p></div></div></div>\n\n\n\n<div class=\"wp-block-kadence-spacer aligncenter kt-block-spacer-_b57166-6e\"><div class=\"kt-block-spacer kt-block-spacer-halign-center\"><hr class=\"kt-divider\" /></div></div>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-news\"><a href=\"https://wordpress.org/news\">News</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://wordpress.org/news/2023/05/episode-56-what-to-know-about-wordpress-playground/\">WP Briefing: Episode 56: What to Know About WordPress Playground</a></li>\n\n\n\n<li><a href=\"https://wordpress.org/news/2023/05/wordpress-6-2-2-security-release/\">WordPress 6.2.2 Security Release</a></li>\n\n\n\n<li><a href=\"https://wordpressfoundation.org/news/2023/kim-parsell-memorial-scholarship-for-wordcamp-us-2023/\">Kim Parsell Memorial Scholarship for WordCamp US 2023</a></li>\n</ul>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">Look closely. Did you know this wizardry is currently possible in the Editor?!?<br /><br />Join us on Thursday for the next <a href=\"https://twitter.com/hashtag/WordPress?src=hash&ref_src=twsrc%5Etfw\">#WordPress</a> Hallway Hangout where we\'ll discuss curating the Editor and building block themes for clients. RSVP<img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f447.png\" alt=\"👇\" class=\"wp-smiley\" /><a href=\"https://t.co/DPqrFHVXtT\">https://t.co/DPqrFHVXtT</a> <a href=\"https://t.co/XbZBC97QDu\">pic.twitter.com/XbZBC97QDu</a></p>&mdash; Nick Diego (@nickmdiego) <a href=\"https://twitter.com/nickmdiego/status/1660712789491548160?ref_src=twsrc%5Etfw\">May 22, 2023</a></blockquote>\n</div>\n\n\n\n<div class=\"wp-block-kadence-spacer aligncenter kt-block-spacer-_8f6276-eb\"><div class=\"kt-block-spacer kt-block-spacer-halign-center\"><hr class=\"kt-divider\" /></div></div>\n\n\n\n<div class=\"wp-block-columns is-layout-flex wp-container-8\">\n<div class=\"wp-block-column is-layout-flow\">\n<h2 class=\"wp-block-heading\"><a href=\"https://make.wordpress.org/accessibility\">Accessibility</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/accessibility/2023/05/22/accessibility-team-meeting-notes-may-19-2023/\">Accessibility Team Meeting Notes: May 19, 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\"><a href=\"https://central.wordcamp.org\">Central</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://central.wordcamp.org/news/2023/05/siteground-joins-the-wordpress-global-community-sponsorship-program-in-2023/\">SiteGround joins the WordPress global community sponsorship program in 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-community\"><a href=\"https://make.wordpress.org/community\">Community</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/community/2023/05/24/idea-generation-next-gen-wordcamps/\">Idea generation: Next Gen WordCamps!</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/community/2023/05/20/wordpress-community-team-discussion-9-the-next-generation-of-wordcamps/\">WordPress Community Team Discussion #9: The Next Generation of WordCamps</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/community/2023/05/20/recap-of-the-contributor-working-groups-mentorship-chat-on-may-18-2023/\">Recap of the Contributor Working Group’s Mentorship Chat on May 18, 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/community/2023/05/19/siteground-joins-the-2023-global-sponsorship-program/\">SiteGround Joins the 2023 Global Sponsorship Program</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-core\"><a href=\"https://make.wordpress.org/core\">Core</a> </h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/05/18/wordpress-6-3-planning-roundup/\">WordPress 6.3 Planning Roundup</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/05/18/roadmap-to-6-3/\">Roadmap to 6.3</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/05/17/command-center-request-for-feedback/\">Command Center: Request for feedback</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/05/16/proposal-retiring-older-default-themes/\">Proposal: Retiring Older Default Themes</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/05/22/core-editor-improvement-smoother-site-editing/\">Core Editor Improvement: Smoother Site Editing</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/05/20/whats-new-in-gutenberg-15-8-may-17/\">What’s new in Gutenberg 15.8? (May 17)</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/05/24/a-week-in-core-may-22-2023/\">A Week in Core – May 22, 2023</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-developer-blog\"><a href=\"https://developer.wordpress.org/news/\">Developer Blog</a></h3>\n\n\n\n<ul>\n<li><a href=\"https://developer.wordpress.org/news/2023/05/curating-the-editor-experience-with-client-side-filters/\">Curating the Editor experience with client-side filters</a></li>\n\n\n\n<li><a href=\"https://developer.wordpress.org/news/2023/05/useentityrecords-an-easier-way-to-fetch-wordpress-data/\">useEntityRecords: an easier way to fetch WordPress data</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-meetings\">Meetings</h3>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/05/23/editor-chat-agenda-24-may-2023/\">Editor Chat Agenda: 24 May 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/05/23/dev-chat-agenda-may-24-2023/\">Dev Chat Agenda, May 24, 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/05/19/wp-feature-notifications-meeting-notes-2023-05-17/\">WP Feature Notifications Meeting Notes: 2023-05-17</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">Design</h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/design/2023/05/23/wordcamp-sylhet-2023-contributor-day-recap/\">WordCamp Sylhet 2023: Contributor Day Recap</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/design/2023/05/22/design-share-may-8-may-19/\">Design Share: May 8—May 19</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-docs\"><a href=\"https://make.wordpress.org/docs\">Docs</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/docs/2023/05/22/online-monthly-docs-team-contributor-day-may-23-2023/\">Online monthly Docs Team Contributor Day May 23, 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/docs/2023/05/22/summary-for-docs-team-meeting-may-16-2023/\">Summary for Docs Team meeting, May 16, 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-hosting\"><a href=\"https://make.wordpress.org/hosting\">Hosting</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/hosting/2023/05/15/is-wordpress-compatible-with-php-8/\">Is WordPress compatible with PHP 8?</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-marketing\"><a href=\"https://make.wordpress.org/marketing\">Marketing</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/marketing/2023/05/24/day-17-wp20-from-blogs-to-blocks/\">Day 17: #WP20 From Blogs to Blocks</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/marketing/2023/05/23/day-16-wp20-from-blogs-to-blocks/\">Day 16: #WP20 From Blogs to Blocks</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/marketing/2023/05/22/day-15-wp20-from-blogs-to-blocks/\">Day 15: #WP20 From Blogs to Blocks</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/marketing/2023/05/21/day-14-wp20-from-blogs-to-blocks/\">Day 14: #WP20 From Blogs to Blocks</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/marketing/2023/05/20/day-13-wp20-from-blogs-to-blocks/\">Day 13: #WP20 From Blogs to Blocks</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/marketing/2023/05/19/day-12-wp20-from-blogs-to-blocks/\">Day 12: #WP20 From Blogs to Blocks</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-mobile\"><a href=\"https://make.wordpress.org/mobile\">Mobile</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/mobile/2023/04/11/contribute-to-the-future-of-the-wordpress-app/\">Contribute to the Future of the WordPress App</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/updates/2023/05/18/mobile-team-update-may-17th/\">Mobile Team Update – May 17th</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-openverse\"><a href=\"https://make.wordpress.org/openverse\">Openverse</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/openverse/2023/05/18/catalog-postgres-exploration-effort/\">Catalog Postgres Exploration Effort</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/openverse/2023/05/24/community-meeting-recap-2023-05-22/\">Community Meeting Recap (2023-05-22)</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/openverse/2023/05/23/openverse-monthly-priorities-meeting-2023-06-07/\">Openverse Monthly Priorities Meeting 2023-06-07</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/openverse/2023/05/22/last-week-openverse-2023-05-15-2023-05-22/\">A week in Openverse: 2023-05-15 – 2023-05-22</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-performance\"><a href=\"https://make.wordpress.org/performance/\">Performance</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/05/23/performance-chat-summary-23-may-2023/\">Performance Chat Summary: 23 May 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-plugins\"><a href=\"https://make.wordpress.org/plugins\">Plugins</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/plugins/2023/05/17/plugin-review-team-update/\">Plugin Review Team Update</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/plugins/2023/03/21/use-of-code-generators-must-remain-gpl-compatible/\">Use of Code Generators Must Remain GPL Compatible</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/plugins/2023/03/10/advance-notice-of-retirement/\">Advance Notice of Retirement</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/updates/2023/05/09/plugin-review-team-update-8-may-2023/\">Plugin Review Team Update: 8 May 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/updates/2023/05/15/plugin-review-team-15-may-2023/\">Plugin Review Team: 15 May 2023</a></li>\n</ul>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow\">\n<h2 class=\"wp-block-heading\" id=\"h-polyglots\"><a href=\"https://make.wordpress.org/polyglots\">Polyglots</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/polyglots/2023/05/24/polyglots-table-contributor-day-at-wordcamp-sylhet-2023/\">Polyglots Table: Contributor Day at WordCamp Sylhet 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/polyglots/2023/05/23/agenda-weekly-polyglots-chat-may-24-2023-1300-utc/\">Agenda: Weekly Polyglots Chat – May 24, 2023 (13:00 UTC)</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-project\">Project</h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/project/2023/05/17/wordpress-contributor-mentorship-program-pilot-program-proposal/\">WordPress Contributor Mentorship Program: Pilot Program Proposal</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/project/2023/04/13/wordpress-at-20-in-print/\">Building Blocks: The Evolution of WordPress 2013-2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-test\"><a href=\"https://make.wordpress.org/test\">Test</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/test/2023/05/23/test-chat-summary-23-may-2023/\">Test Chat Summary: 23 May 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/test/2023/05/22/xpost-test-team-update-22-may-2023/\">Test Team Update: 22 May 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/test/2023/05/18/fse-program-testing-call-23-rapid-revamp/\">FSE Program Testing Call #23: Rapid Revamp</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/updates/2023/05/22/test-team-update-22-may-2023/\">Test Team Update: 22 May 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-theme\"><a href=\"https://make.wordpress.org/theme\">Theme</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/themes/2023/05/18/hallway-hangout-curating-the-editor-and-building-block-themes-for-clients/\">Hallway Hangout: Curating the editor and building block themes for clients</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/themes/2023/05/17/theme-handbook-overhaul-phase-2-creating-content/\">Theme Handbook Overhaul: Phase 2 (Creating Content)</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/updates/2023/05/16/themes-team-update-may-16-2023/\">Themes team update May 16, 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-training\"><a href=\"https://make.wordpress.org/training\">Training</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/training/2023/05/09/brainstorm-wordcamp-europe-2023-contributor-day/\">Brainstorm – WordCamp Europe 2023 Contributor Day</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/training/2023/05/24/training-team-meeting-recap-for-may-23rd-2023/\">Training Team Meeting Recap for May 23rd, 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/training/2023/05/19/training-team-meeting-recap-for-may-16th-2023/\">Training Team Meeting Recap for May 16th, 2023</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-tutorials\"><a href=\"https://learn.wordpress.org/tutorials\">Tutorials</a></h3>\n\n\n\n<ul>\n<li><a href=\"https://learn.wordpress.org/tutorial/building-a-page-with-only-patterns/\">Building a page with only patterns</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/tutorial/how-to-add-a-blog-or-news-page-to-any-wordpress-website/\">How to add a blog or news page to any WordPress website</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/tutorial/introduction-to-wordpress-multisite-networks/\">Introduction to WordPress Multisite Networks</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/tutorial/wordpress-editor-modes-for-streamlining-content-creation/\">WordPress editor modes for streamlining content creation</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-online-workshops\">Online Workshops</h3>\n\n\n\n<ul>\n<li><a href=\"https://learn.wordpress.org/?meeting=debugging-in-wordpress\">Debugging in WordPress</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=wp-dev-livestream-sendig-block-theme-2\">WP dev livestream: Sendig block theme</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=wp-dev-livestream-sendig-block-theme-3\">WP dev livestream: Sendig block theme</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=the-creative-side-of-blocks-vol-4\">The Creative Side of Blocks, Vol. 4</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=a-brief-history-of-wordpress-3\">A Brief History of WordPress</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-courses\"><a href=\"https://learn.wordpress.org/courses\">Courses</a></h3>\n\n\n\n<ul>\n<li><a href=\"https://learn.wordpress.org/course/creating-a-4-page-business-website/\">Creating a 4-page business website</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-wp-cli\">WP-CLI</h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/cli/2023/04/05/wp-cli-v2-8-0-release-date/\">WP-CLI v2.8.0 release date</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-wptv\">WPTV</h2>\n\n\n\n<ul>\n<li><a href=\"https://wordpress.tv/category/year/2022/\">Latest WordPress TV videos</a></li>\n</ul>\n</div>\n</div>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-related-news\">Related News:</h2>\n\n\n\n<ul>\n<li><a href=\"https://nodejs.org/en/blog/release/v20.2.0\">Node v20.2.0 released</a></li>\n\n\n\n<li><a href=\"https://www.php.net/archive/2023.php#2023-04-13-1\"><a href=\"https://www.php.net/archive/2023.php#2023-05-11-1\">PHP 8.2.6 Released!</a></a></li>\n\n\n\n<li><a href=\"https://www.php.net/archive/2023.php#2023-05-11-2\">PHP 8.1.19 Released!</a></li>\n\n\n\n<li><a href=\"https://262.ecma-international.org/13.0/\">TC39</a></li>\n\n\n\n<li><a href=\"https://github.com/composer/composer/releases/tag/2.5.5\">Composer 2.5.5</a></li>\n</ul>\n\n\n\n<p class=\"has-theme-palette-7-background-color has-background\">Thanks for reading our WP dot .org roundup! Each week we are highlighting the news and discussions coming from the good folks making WordPress possible. If you or your company create products or services that use WordPress, you need to be engaged with them and their work. Be sure to share this resource with your product and project managers. <br /><br /><strong>Are you interested in giving back and contributing your time and skills to WordPress.org?</strong> <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f64f.png\" alt=\"🙏\" class=\"wp-smiley\" /> <a href=\"https://wordpress.org/support/article/contributing-to-wordpress/\">Start Here ›</a><br /><br /><strong>Get our weekly WordPress community news digest</strong> — Post Status&#8217; <a href=\"https://poststatus.com/news/week-in-review/\">Week in Review</a> — covering the WP/Woo news plus significant writing and podcasts. It&#8217;s also available in <a href=\"https://poststatus.com/newsletter\">our newsletter</a>. <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f48c.png\" alt=\"💌\" class=\"wp-smiley\" /></p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<div class=\"wp-block-media-text alignwide is-stacked-on-mobile has-background\"><a href=\"https://poststatus.com/\"><img src=\"https://poststatus.com/wp-content/uploads/2021/09/vertical-post-status-logo-250.png\" alt=\"Post Status\" class=\"wp-image-85823 size-full\" /></a><div class=\"wp-block-media-text__content\">\n<p class=\"has-text-align-left has-normal-font-size\" id=\"h-get-ready-for-remote-work\">You — and <a href=\"https://poststatus.com/#Agency\">your whole team</a> can <a href=\"https://poststatus.com/#choose-membership\">Join Post Status</a> too!</p>\n\n\n\n<p class=\"has-text-align-left has-small-font-size\"><strong>Build your network. Learn with others. Find your next job — or your next hire.</strong> Read the <strong>Post Status</strong> <a href=\"https://poststatus.com/newsletter/\">newsletter</a>. <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/2709.png\" alt=\"✉\" class=\"wp-smiley\" /> Listen to <a href=\"https://poststatus.com/podcasts/\">podcasts</a>. <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f399.png\" alt=\"🎙\" class=\"wp-smiley\" /> Follow <a href=\"https://twitter.com/post_status/\">@Post_Status</a> <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f426.png\" alt=\"🐦\" class=\"wp-smiley\" /> and <a href=\"https://www.linkedin.com/company/post-status-llc/\">LinkedIn</a>. <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f4bc.png\" alt=\"💼\" class=\"wp-smiley\" /></p>\n</div></div>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n<p>This article was published at Post Status — the community for WordPress professionals.</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 May 2023 19:57: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:18:\"Courtney Robertson\";s: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:103:\"WPTavern: #77 – Mario Santos and Luis Herranz on What the Interactivity API Is and How You Can Use It\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"https://wptavern.com/?post_type=podcast&p=145358\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:117:\"https://wptavern.com/podcast/77-mario-santos-and-luis-herranz-on-what-the-interactivity-api-is-and-how-you-can-use-it\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:43138:\"Transcript<div>\n<p>[00:00:00] Nathan Wrigley: Welcome to the Jukebox podcast from WP Tavern. My name is Nathan Wrigley.</p>\n\n\n\n<p>Jukebox has a podcast which is dedicated to all things WordPress. The people, the events, the plugins, the blocks, the themes and in this case, how you can start to make your sites more interactive.</p>\n\n\n\n<p>If you&#8217;d like to subscribe to the podcast, you can do that by searching for WP Tavern in your podcast, player of choice, or by going to WPTavern.com forward slash feed forward slash podcast. And you can copy that URL into most podcast players.</p>\n\n\n\n<p>If you have a topic that you&#8217;d like us to feature on the podcast, I&#8217;m keen to hear from you, and hopefully get you or your idea featured on the show. Head to WPTavern.com forward slash contact forward slash jukebox, and use the form there.</p>\n\n\n\n<p>So on the podcast today, we have Mario Santos and Luis Herranz. They both work for Automattic but are sponsored to work full-time in WordPress.</p>\n\n\n\n<p>The main focus of their work is the block developer experience, and they are part of the group of contributors that worked on the Interactivity API proposal.</p>\n\n\n\n<p>The Interactivity API is the main focus of the podcast today, and if you&#8217;re working with blocks and dynamically displaying data, this is sure to be of interest to you.</p>\n\n\n\n<p>We start out the podcast today with the usual introductions, and get to know Mario and Luis. And then we learn what the Interactivity API is and what it can do.</p>\n\n\n\n<p>The conversation is framed around a blog post written by Mario entitled, The interactivity API, a better developer experience in building interactive blocks.</p>\n\n\n\n<p>In this Mario shows examples of what website interactivity is. In short, it&#8217;s the ability for content to be amended on the fly without a page refresh. Of course, this is nothing new on the web. We&#8217;ve been seeing this for years in WordPress sites and elsewhere. But now you&#8217;re going to be able to create interactivity in a standard way across the different blocks on your site.</p>\n\n\n\n<p>The project hopes to absorb complexity and make the creation of interactive objects fairly trivial. Mario and Luis talk about examples of where the API might be used, and how it can be implemented.</p>\n\n\n\n<p>We also discussed the fact that in the past developers have gone their own way to make their sites interactive. It all works, but it means that no two implementations are the same. This causes issues if the project is taken over by another developer. But it&#8217;s also a drain on resources.</p>\n\n\n\n<p>Mario and Luis make the point that having a standard way of creating interactivity will benefit everyone in the long run. We get into the weeds a little and talk about the approach the team took when building the API. They decided to use directives and we find out why this was, and what benefit it brings over other possible solutions.</p>\n\n\n\n<p>The project is still experimental, and they&#8217;re looking for people to test and report back on what they find to move the interactivity API forwards.</p>\n\n\n\n<p>If you&#8217;re interested in finding out more, you can find all of the links in the show notes by heading to. WPTavern.com forward slash podcast, where you&#8217;ll find all the other episodes as well.</p>\n\n\n\n<p>And so without further delay, I bring you Mario Santos and Luis Herranz.</p>\n\n\n\n<p>I am joined on the podcast today by Luis Herranz and Mario Santos. Hello.</p>\n\n\n\n<p>[00:04:15] Luis Herranz: Hey, hello Nathan.</p>\n\n\n\n<p>[00:04:16] Mario Santos: Thanks for inviting us.</p>\n\n\n\n<p>[00:04:18] Nathan Wrigley: You&#8217;re so welcome. We had an introduction on Slack from Anne McCarthy, who listeners to the podcast may very well have heard of, and she wanted me to chat to these two about the Interactivity API, so we&#8217;re going to get onto that. It&#8217;s a brand new project. Could be very interesting if you&#8217;re a developer implementing it, but also if you&#8217;re an implementer of WordPress websites and not a developer, you&#8217;ll be interested in the outcomes of it.</p>\n\n\n\n<p>Before we do that, the usual questions at the beginning. I&#8217;m going to go to Luis first, if that&#8217;s all right. Would you mind just giving us your backstory, how you&#8217;ve come to be on a WordPress podcast, how long you&#8217;ve been working with WordPress, who you work for as much or as little as you wish.</p>\n\n\n\n<p>[00:04:57] Luis Herranz: Okay, thank you. I started creating websites with WordPress 2010, I think, maybe nine, I don&#8217;t know, a long time ago. And I wanted to start a company in 2013, with Pablo Postigo. And we thought, okay, we wanted to create native apps for different companies, like services and so on.</p>\n\n\n\n<p>And we knew WordPress, so we basically started with what was later known as headless WordPress, but back in 2013. And since then we iterated, we created a team. We got some investment and we started doing things on top of WordPress. Mostly in headless. First with native applications. Then we moved to just web have applications, but still on headless. Very focused on React.</p>\n\n\n\n<p>And in 2019 we launched a open source framework for headless WordPress, powered by React. So we were very focused on developer experience and performance.</p>\n\n\n\n<p>And in 2021, that company, Frontity was acquired by Automattic, so we could become like full-time contributors and focus on, well, basically what the Interactivity API proposal is today. Bringing some of those user experiences, what are possible with other solutions, to WordPress itself, on top of full site editing, or block themes.</p>\n\n\n\n<p>[00:06:31] Nathan Wrigley: Thank you so much. That&#8217;s really interesting. I appreciate your nice history there. Thank you. And we&#8217;ll ask the same question this time of Mario. So Mario, backstory please.</p>\n\n\n\n<p>[00:06:41] Mario Santos: Thank you. Actually, my story is really similar to Luis. Well first, when I finished the degree, I studied industrial engineer, but I didn&#8217;t want to be an engineer. So I started trying different things, and while I got my first job, I created a store in WordPress with WooCommerce. And then, that is when I started to learn about WordPress and all those things.</p>\n\n\n\n<p>And later, based on that, I joined Frontity. I don&#8217;t remember exactly the year, 2015 maybe. And from there I really learned what was WordPress because we started going to meetups to WordCamps, and we started to, well at least I started to learn from the community.</p>\n\n\n\n<p>From there the story is mostly the same as Luis. We were working on headless mainly. We were working with WordPress. And at some point, we were acquired by Automattic, and now I&#8217;m a sponsored contributor, working full-time. And as Luis said, we are focused on the developer experience, and the Interactivity API that we are going to talk about is part of it.</p>\n\n\n\n<p>[00:07:45] Nathan Wrigley: Thank you so much for that. So the Interactivity API, I&#8217;m going to link in the show notes to a post which you can find. Now the post you&#8217;re going to be looking at is on the make.wordpress.org website. It&#8217;s written by Mario. It was on the 30th of March, 2023 that came out, and it&#8217;s entitled, Proposal, The Interactivity API, A Better Developer Experience in Building Interactive Blocks.</p>\n\n\n\n<p>Now, if at any point during this podcast you become a little bit confused or you wish to have some more background, I would recommend pausing and going and reading what is an incredibly lengthy and detailed post, with actually a boatload of interaction and comments as well. It&#8217;s really heartening to see so many people chipping in, and giving their thoughts on this Interactivity API.</p>\n\n\n\n<p>But I guess the best place to kick this conversation off simply asking, what is it? What is the Interactivity API? What does it do? Why does WordPress need such a thing?</p>\n\n\n\n<p>[00:08:47] Mario Santos: I can start with this one. So, the Interactivity API is what we are proposing. The group of contributors that are working on that. It&#8217;s basically a new standard system to easily add front end interactivity to your blocks. Until now, most of the Gutenberg APIs have been focused on the block editor side, and there was unintentional gap on the front end.</p>\n\n\n\n<p>So block developers could choose whatever they want. They could choose any Javascript framework, or other solutions. And the Interactivity API aims to cover that gap. Creating this standard.</p>\n\n\n\n<p>So imagine functionalities like, like this post or e-commerce functionalities like add to cart, or the checkout, the instant search, page transitions, the comments form, without a page reload. So those are the user experiences that the Interactivity API aims to cover.</p>\n\n\n\n<p>In a way that is real easy to build them, and block developers don&#8217;t have to deal with complex scaffolding or external tools. And it&#8217;s important to note also that it&#8217;s completely familiar and compatible with PHP and the block ecosystem. So overall, that&#8217;s what the Interactivity API is. Basically a standard to easily create any interactive experience that your users want.</p>\n\n\n\n<p>[00:10:06] Nathan Wrigley: Luis, anything to add?</p>\n\n\n\n<p>[00:10:09] Luis Herranz: No, it&#8217;s really filling that gap, or even that opportunity of absorbing as much complexity from the developers. Standardizing everything in a single solution, and making sure that it&#8217;s performant, and so on.</p>\n\n\n\n<p>So yeah, there&#8217;s some advancement in web development in other places, mostly in the Javascript ecosystem and WordPress has never been opinionated in the front end, so this is kind of the first time for WordPress.</p>\n\n\n\n<p>But yeah, we think that it&#8217;s an opportunity as well to absorb a lot of complexity for the developers, and to enable some of the user experiences that were not possible with WordPress before.</p>\n\n\n\n<p>[00:10:52] Nathan Wrigley: Now we have some show notes, and we&#8217;ve got a list of questions that we&#8217;re potentially going to run through, but I&#8217;m going to skip to the end, more or less of the list of our questions. Because one of the things I think to do at the beginning would be to provide listeners concrete examples of how this might be used.</p>\n\n\n\n<p>So do you have any examples that you think would demonstrate clearly the kind of things that the Interactivity API is touching on? I&#8217;ll just mention one. Which is the very first thing you&#8217;re going to see more or less when you open up Mario&#8217;s article, and it&#8217;s a video. It&#8217;s pretty short, two minutes long. And it demonstrates something a little bit like Netflix, where you&#8217;ve got, a view of three or four different video thumbnails. There&#8217;s a bunch of different movies there.</p>\n\n\n\n<p>And the intention is that you would like to preserve your favorites. And so there&#8217;s a little heart icon, which is lodged in the top left of the thumbnails for each video. And as you click on that thumbnail, the heart becomes colored in. It goes from gray to red. But also in a different part of the UI, in the right hand of the view, the menu, traditional place for the menu, there&#8217;s a little total which goes up from two to three to four, and if you remove the hearts, it goes back down to two and so on and so forth.</p>\n\n\n\n<p>So that&#8217;s one example of how you might use this. It&#8217;s able to do things on the page without needing to do page refreshes. And the idea is that this will be a standard way of doing it in blocks. And I wonder if you could give us some other examples. You mentioned WooCommerce and things like that. But let&#8217;s go into that a little bit. Some examples of where this might be useful for developers and end users to know.</p>\n\n\n\n<p>[00:12:35] Mario Santos: Yeah, so basically the use case is anything that is interactive and requires Javascript should be able to be done with the Interactivity API in an easy way. So imagine like a slide show or light boxes in the image. So when you click on it, it zooms, and when you click out or scroll, it goes out. Some models like search, subscription, quizzes, e-commerce integrations, like you just have mentioned.</p>\n\n\n\n<p>And one of the features that is enabled by having a standard is the client site navigation that basically is navigating through different pages of your WordPress site without triggering a page reload.</p>\n\n\n\n<p>It&#8217;s important to know that this is something that is going to be enabled by the Interactivity API, but it&#8217;s going to be completely optional. So if you don&#8217;t need it, you don&#8217;t have to use it. But it powers other features like you can see in the movie, that we are paginating between the different pages. We are in the query loop. You have the pagination block, and you can go through the page one to the page two without page reload.</p>\n\n\n\n<p>And for example, well, in the movies demo, we are showing that you can play the trailer and you can keep navigating and the video doesn&#8217;t stop. So those kind of user experiences that, for example, in this podcast you could be listening to this podcast in WP Tavern, and you could navigate to the articles.</p>\n\n\n\n<p>So, maybe you can be reading an article while you are listening to the podcast in the same way. And the podcast will keep playing. Those kind of user experiences are enabled by client side navigation. And you can also find in the movies the instant search that you start typing and the list of results is automatically updated.</p>\n\n\n\n<p>Infinite scroll could also work. Client size submissions like the comments form right now, in typical WordPress sites, when you submit a new comment, it triggers a page load. So this could be done directly in the client. So those are the kind of user experiences that we are talking about. And yeah, I think it&#8217;s important that this is totally compatible with the current block templating system. So whatever you change in the editor is going to keep working.</p>\n\n\n\n<p>[00:14:54] Nathan Wrigley: That&#8217;s great, yeah. Luis, anything to add?</p>\n\n\n\n<p>[00:14:57] Luis Herranz: I would add that I really like that demo. Because it&#8217;s a demo that we didn&#8217;t come up with. It was a demo that existed before. There is a version of that demo created with all the major Javascript frameworks out there. So there is one for React using Next, Vue using Nuxt, Svelte, Quick, Astro and so on.</p>\n\n\n\n<p>So, you can compare now the WordPress version with the other Javascript frameworks, out there. I&#8217;m super happy to say that it really, in terms of user experience now with Interactivity API, you can provide the same user experience than the others. And this demo was created to show these type of complex or great user experiences.</p>\n\n\n\n<p>With WordPress, now with the Interactivity API, you&#8217;re able to create that type of user experience, but leveraging the server side and the block editor. So the other Javascript frameworks version is 100% code, where this movies demo version of WordPress is done with Gutenberg and everything is a block, and you can go and change wherever you want. Which we think it&#8217;s really powerful.</p>\n\n\n\n<p>And there&#8217;s yet another thing there, in comparing with the other frameworks, and it&#8217;s that if you look at the performance is a top performer there. It&#8217;s only 13 kilobytes of Javascript. Only a new experimental mode of Solid is able to be as performant as that one. So yeah, I&#8217;m really happy about enabling those user experiences, but with full compatibility with the Block editor and block themes, and with such performance.</p>\n\n\n\n<p>[00:16:44] Nathan Wrigley: It&#8217;s true to say, I guess, that if you go to that demo, you will not be seeing anything that you haven&#8217;t seen somewhere else online. You&#8217;ve seen the ability to like things, and you&#8217;ve seen infinite scroll before, and you&#8217;ve seen elsewhere online the ability to paginate without a full page refresh, and you&#8217;ve seen comments being added, again without having to submit a new page and so on and so forth.</p>\n\n\n\n<p>But this is creating a standard inside of WordPress. Why did you feel it was important to do this? Why not just leave developers to do their own thing? Again, we&#8217;ve seen WordPress websites implementing this. You know, I&#8217;ve been to countless WordPress websites where I&#8217;ve seen these features.</p>\n\n\n\n<p>Clearly somebody&#8217;s dealt with it before and implemented it in their own way. I guess you&#8217;re just trying to make it so that everybody can build on top of the work that you are doing, rather than everybody going off in their own way and implementing a completely different solution based upon, well, however they wish to do it?</p>\n\n\n\n<p>[00:17:43] Luis Herranz: Yes. It&#8217;s about absorbing complexity. So, definitely anything you can imagine, it&#8217;s possible with WordPress. The thing is how easy is to do it. And with this kind of standard, our hope is that those user experiences are not only easy, but also working practically out of the box.</p>\n\n\n\n<p>[00:18:05] Nathan Wrigley: I&#8217;m guessing that this standard is going to be something that you are aiming at developers. Presumably the developers will then make it fairly straightforward for end users to interact with blocks and what have you, to make this available to them. But how would the standard actually work? What is going on in the background? How are developers going to implement this?</p>\n\n\n\n<p>[00:18:25] Mario Santos: If I can add one note to the why this standard, is I think it&#8217;s also important to note apart from what Luis says, is that it absorbs a lot of complexity. In an ecosystem like WordPress where there are a lot of plugins interacting with other plugins and those kind of experiences that we have.</p>\n\n\n\n<p>It&#8217;s important that following a standard enables things like block communication. For example, we can see what we were talking about in the demo that you are liking a movie and it&#8217;s updating another block, in another place. So if different blocks, created by different block developers, in different plugins are not using the same approach, it&#8217;s really difficult to be able to communicate those blocks. And having a standard solves that. And yeah, that composability and compatibility to nest the structures of different interactive blocks is possible thanks to a standard.</p>\n\n\n\n<p>[00:19:21] Nathan Wrigley: Right. Okay, so you&#8217;re really opening it up so that any block developer can implement this so that, I don&#8217;t know, a different block developer can hook into the exact same standards so that two completely separate blocks, created by completely separate individuals can have interaction via the Interactivity API, right?</p>\n\n\n\n<p>[00:19:42] Mario Santos: Yeah, that&#8217;s it.</p>\n\n\n\n<p>[00:19:43] Luis Herranz: And they also use this, the same code, the same framework. Because if each block developer starts choosing their own framework, maybe some developers like React, some developers like Vue, some developers like Svelte or whatever comes next. Then WordPress sites could end up loading a lot of unnecessary Javascript.</p>\n\n\n\n<p>So yeah, it&#8217;s important. Now that sites are, are a mix of blocks from different developers, these blocks are like small units. Yeah, it&#8217;s important to agree on a single kind of solution.</p>\n\n\n\n<p>[00:20:17] Nathan Wrigley: Yeah, good point. Okay, so how is it actually going to work then? You mentioned in the article, and I think one of you mentioned it just a moment ago, that you&#8217;re trying to make it so that people are familiar with PHP, don&#8217;t necessarily have to get into the whole space of learning React or what have you. I&#8217;m not entirely clear on what the position is there, but is the intention to make this as simple as possible for people who are steeped in WordPress&#8217;s PHP history.</p>\n\n\n\n<p>[00:20:44] Mario Santos: Yes. We wanted to make it as easy as possible to everyone. So yeah, that&#8217;s included. And yes, we said this is compatible with PHP, and it has been designed to be block first and PHP friendly. So yeah, it&#8217;s should be easy.</p>\n\n\n\n<p>And going back to the question, how this standard work. Basically a system based on directives. I&#8217;m not sure, for those who are not familiar with directives, they are a way to extend HTML. They are custom HTML attributes that tell the Interactivity API to attach a specified behavior to a DOM element, or even transform it. So for those familiar with Alpine. it&#8217;s really similar, but it has been designed to work with WordPress.</p>\n\n\n\n<p>[00:21:32] Nathan Wrigley: I know it&#8217;s potentially a bit on the technical side, but you talked about the CSS nature of things there. I&#8217;m wondering if you can give an example of how that might be implemented. What would you actually be doing, declaring those directives?</p>\n\n\n\n<p>[00:21:47] Mario Santos: Okay, in order to create an interactive block using Interactivity API, you have to add directives to your markup. So you have some HTML, so you add custom attributes that are directives, and they call an action that is defined in Javascript in the view.js file of your block.</p>\n\n\n\n<p>[00:22:06] Nathan Wrigley: What is the benefit of doing it in that way? You mentioned that you want it to be available to everybody. Is this the kind of thing that, obviously experienced developers can probably pick this up in a heartbeat, but are you trying to get people, how do we describe this, who are less experienced say. Is this going to be something that you could pretty quickly learn even if your developer chops are not all that impressive?</p>\n\n\n\n<p>[00:22:29] Luis Herranz: Yes. The initial goal for this proposal is more enabling user experiences for WordPress that were not possible before, or were very difficult to do before. We also have a focus on developer experience, but that&#8217;s something that we think we can also keep improving over time.</p>\n\n\n\n<p>This doesn&#8217;t have to be like the final API of creating blocks. We can work, keep working on simplifying things over time. For example, right now none of these touches like the editor part. So if you are creating a block, the edit is just, is still done in the same way that it is done today using a React component. But maybe in the future we can explore how we can kind of extend these directives also to the editor and if it makes sense to unify and simplify the templating for both use cases. But is not the main goal of this proposal at this moment right now.</p>\n\n\n\n<p>[00:23:32] Nathan Wrigley: When you were making decisions about this, and you decided to go with directives instead of things like using React or something. Was there quite a lot of toing and froing? Was there a lot of soul searching, what the best way to do it was? Or was it just fairly straightforward from the very beginning that using directives was the way you were going to do it? How long did the conversation take before you settled on this? is it fair to say that everybody&#8217;s on board with this? This seems to be the way to do it.</p>\n\n\n\n<p>[00:23:58] Mario Santos: We believe so. I mean, we have researched a lot of alternatives. Actually, as we mentioned, we come from Frontity, that it was a React framework. React was like the first alternative we had in mind, but we defined as a list of requirements and we started researching different possibilities, and at the end we come up with the solution to be the only one that it was the only one fully compatible with WordPress.</p>\n\n\n\n<p>Just to explain this a bit better. As directives are custom attributes that we have in the HTML, we are using the HTML as the templating system. And this comes with many benefits, for example, were not possible with React. As HTML is the templating system, the service rendering is supported by default, for example.</p>\n\n\n\n<p>That is something really important in WordPress, or WordPress, APIs like WordPress hooks, that we are used to WordPress hooks in plugins, to extend some functionality, or translations. Those things, with directives using the HTML as the templating system work out of the box. And we can keep using those APIs to even extend the directives.</p>\n\n\n\n<p>And I think this was one of the main blockers to not use React. This system, the service rendering is supported, and the WordPress API are supportive as well. That using other approaches can get tricky or even impossible, I would say.</p>\n\n\n\n<p>[00:25:32] Luis Herranz: Yes. I think we spent like a year or so researching this. And at first we tried with Javascript, JSX, or even JS templates like Vue or Svelte, and so on. But yeah, I think that that direction, things start getting like super complex. And once we switched to using HTML as the templating language, it was like boom. Like everything works out of the box. Everything is like super simple. Everything is compatible. So yeah, it was like seeing the light a little bit.</p>\n\n\n\n<p>[00:26:04] Nathan Wrigley: if I&#8217;m a current block developer, there&#8217;s obviously now going to be this conflict of, do I carry on with what I&#8217;ve been doing so far? I&#8217;ve got some kind of interactive component in my blocks. Do I carry on with what I&#8217;ve been doing up until this point? Or do I flip over and start using the Interactivity API?</p>\n\n\n\n<p>You&#8217;ve obviously just mentioned some reasons why that could be the case. But I&#8217;m wondering if there is anything else buried in there. In other words, what&#8217;s the use case to switch? There&#8217;ll be a bit of retooling, you might have to rewrite a whole bunch of stuff that you&#8217;ve already rewritten.</p>\n\n\n\n<p>Do you think the benefit&#8217;s going to be in there purely for people who are creating new things? Or do you think there&#8217;s going to be a benefit for people who already have existing things out there in the real world, to go and rewrite what they&#8217;re doing using the Interactivity API?</p>\n\n\n\n<p>[00:26:54] Luis Herranz: Of course, as everything in WordPress, this is optional. Even though we want it to become a standard. It&#8217;s optional. But there&#8217;s going to be some kind of sitewide experiences that can only be enabled if all the blocks use this language, or this standard. So yeah, our hope is that there&#8217;s not going to be any reason for new blocks to not use this.</p>\n\n\n\n<p>Because it absorbs a lot of complexity and it works out the box with all these things. But there&#8217;s also going to be some benefit on migrating existing blocks to this system if you want to make your blocks compatible with these new user experiences. And also, get rid of all the complexity that you have to deal with in terms of bundling and performance and things like that.</p>\n\n\n\n<p>[00:27:42] Mario Santos: And actually it can also improve the user experiences, beause due to this complexity, we have seen many cases of blocks using React in the front end, but having issues with the server side rendering or not having server side rendering at all. So it could be a good approach to migrate to the Interactivity API, because it&#8217;s going to be easier to improve their blocks to support server side rendering, hooks, or other user experiences. There may be cases that they could benefit from that as well.</p>\n\n\n\n<p>[00:28:13] Nathan Wrigley: Yeah, I guess the intention would be for a slow but steady migration over to using the Interactivity API, to the point where it just doesn&#8217;t make sense to use anything else. One of you, I can&#8217;t remember which one of you it was, mentioned performance implications there. I&#8217;m just wondering if you could dwell on that a little bit. Have you, in your testing so far, really noticed this? Has it speeded things up, made less use of resources and so on.</p>\n\n\n\n<p>[00:28:39] Mario Santos: Yes. We&#8217;ve been testing and we want to test everything better and we will keep testing it in real sites. But it&#8217;s something that we had in mind from the beginning, that it has to be as performant as possible. And that&#8217;s why the runtime code is so small. It&#8217;s around 10 kilobytes. And yes, Luis before compared with other Javascript frameworks is performing pretty well.</p>\n\n\n\n<p>I think we did mention this, but it&#8217;s using React under the system. So that&#8217;s why it is so small. And yeah, it is actually performant and we are looking for other ways of optimizing it. For example, we want to only send the directives that are needed by the blocks that are in the page. Or we want to send the scripts so they don&#8217;t block the page rendering.</p>\n\n\n\n<p>Or for example, we are also exploring the possibility of the scripts, so they are only load when they are in the view port. So, yeah, overall I would say it&#8217;s performant. It&#8217;s been designed to be performant. The code is relatively small, and we are still looking for ways to optimize it even more.</p>\n\n\n\n<p>[00:29:51] Luis Herranz: Yeah, I think that&#8217;s important. It&#8217;s not only performant today, but you have the guarantee that it&#8217;s going to be performant in the future, in the terms of you don&#8217;t have to, as a block developer, you don&#8217;t have to deal with performance in that sense anymore. Because that&#8217;s absorbed now by, well will be, hopefully absorbed by WordPress at some point.</p>\n\n\n\n<p>And then if there&#8217;s something new in the web platform that can be leveraged to increase the performance and so on, it will be done in the WordPress side. So your block will just benefit from that, from just adopting this standard.</p>\n\n\n\n<p>[00:30:29] Nathan Wrigley: In the article that you wrote, Mario, the first word is the word proposal. Which implies that this is a work in progress, shall we say. And I&#8217;m just wondering how far down the path of usability you would say you&#8217;ve got. In other words, can developers begin using this out of the box? Have you seen real world examples of people using this?</p>\n\n\n\n<p>And have you had some interest from developers who perhaps haven&#8217;t implemented it, but certainly want to get on board? Because I&#8217;m guessing the more yes&#8217;s we can answer to that question, the more likely it is that other people will say, okay, yeah, let&#8217;s take a, let&#8217;s take a look at this. So, can you use it, and have people been using it?.</p>\n\n\n\n<p>[00:31:08] Mario Santos: I would say, yes, you can use it, but we remind that this is still experimental, although we included the proposal word there. This is still experimental, very likely to change. So the APIs that we are using right now, that are used for example in the movies demo site, we are confident that they work, but maybe the syntax change.</p>\n\n\n\n<p>So we haven&#8217;t promoted it yet to be used too much. There are people experimenting with it and giving feedback. For example, there&#8217;s an ongoing experiment in WooCommerce to replicate some of their blocks using directives. But there&#8217;s nothing in production yet because, as I said, this is still experimental.</p>\n\n\n\n<p>There are some missing functionalities that may break your site, and it doesn&#8217;t have any documentation yet. So, I would say you can use it at your own risk because it&#8217;s experimental. We would love people to test it. To give feedback. We want to understand better if it&#8217;s easy to use the blockers that people may face.</p>\n\n\n\n<p>Just to to clarify. In order to be able to use it, we are working on repository in GitHub. It&#8217;s a plugin that you can install, and from there you can create your own interactive blocks. Or if you prefer, there&#8217;s also the repository for the movies, with some examples that you can take a look and modify or whatever you want to do.</p>\n\n\n\n<p>[00:32:34] Nathan Wrigley: Are those repositories linked from Mario&#8217;s article on make.wordpress.org?</p>\n\n\n\n<p>[00:32:40] Mario Santos: Yes.</p>\n\n\n\n<p>[00:32:41] Nathan Wrigley: Okay, so perfect. So if you want to find those, you can just go to the article, which is going to be in the show notes and you can find them all there. Now you&#8217;re both working at Automattic, and although it was only about 30 minutes ago that you gave me your bio, I wasn&#8217;t quite sure.</p>\n\n\n\n<p>I know that you&#8217;re both sponsored full-time in WordPress. Is this project, the Interactivity API, is this a focus for both of you at the moment? In other words, are you being asked to implement this, full-time, part-time? Are you tasked with making this happen?</p>\n\n\n\n<p>[00:33:12] Luis Herranz: Yes, we are. But we are not the only ones. It&#8217;s a large group of contributors. But yes. It was part of when we stopped developing Frontity the headless framework, and joined Automattic, it was precisely to focus on this. And we thought it made a lot of sense. Yeah, and thanks to Automattic for sponsoring us to be able to work on this for WordPress.</p>\n\n\n\n<p>[00:33:40] Mario Santos: One note on this, as you said, there are more contributors working on this Interactivity API, and yeah, we are part of a bigger group that is working on the whole developer experience of Gutenberg. So this is just a project to improve the front end interactive parts of your blocks, but there are ongoing efforts to improve the whole developer experience.</p>\n\n\n\n<p>[00:34:04] Luis Herranz: Yeah, and maybe it&#8217;s a good moment to say that if anyone is interested in this topic, just come to the repository and so on. And contact us and join us.</p>\n\n\n\n<p>[00:34:15] Nathan Wrigley: Yeah, I was going to ask about exactly that. How open are you to contributions? Presumably any people that you can get interested in this, the more the merrier.</p>\n\n\n\n<p>[00:34:24] Luis Herranz: A hundred percent open. We need people. We need people testing these. We need people using it. We need people giving feedback. Sharing different ideas. The most exposure, the better. How do you say that?</p>\n\n\n\n<p>[00:34:37] Nathan Wrigley: Yeah, exactly that. So I guess really if this podcast serves to do anything, it would be exactly that. It would be to encourage people to go over. Read the post on make.wordpress.org, and if you&#8217;re interested and you think that you can help, then certainly it looks like your help would be most welcome. Testing, getting involved.</p>\n\n\n\n<p>In terms of what&#8217;s coming, you mentioned that there are things which you desire to have. So I guess that&#8217;s a roadmap question. What is on the roadmap? What do you want to have in there that is not in there? Don&#8217;t worry about timeframes. It might be a year off, two years off, six months, doesn&#8217;t really matter. What are you hoping that it will do that it currently is unable to do?</p>\n\n\n\n<p>[00:35:16] Mario Santos: Basically finish the Interactivity API, because it&#8217;s not finished. But, for example, our initial idea is to create the list of core directives that covers, I don&#8217;t know, 90% of the use cases, most of the use cases. Although then developers can create their custom directives.</p>\n\n\n\n<p>So for example, that list is not finished yet. We still have to ensure that the APIs work for most of the use cases. We have to finish. And our idea for this is to, at some point, include it as experimental in Gutenberg. Start testing it in real core blocks, for example. Doing some experiments there.</p>\n\n\n\n<p>Ensure that those user experiences are easy to create with the Interactivity API. Start receiving more feedback. So yeah, the idea is that. Keep experimenting. Keep developing the API. Receive feedback of users using it. And I think that&#8217;s it.</p>\n\n\n\n<p>[00:36:16] Luis Herranz: It&#8217;s going to be important the moment when we add, we added as experimental API in Gutenberg. Because that&#8217;s going to increase the exposure by, I don&#8217;t know, ten fold.</p>\n\n\n\n<p>tenfold.</p>\n\n\n\n<p>[00:36:25] Nathan Wrigley: One of you mentioned before we click record that you are going to be giving a presentation at WordCamp Europe around the Interactivity API. By good coincidence, this podcast episode is going out just prior to that. So it may be that people listening to this are very soon going to be getting in the car train or a plane to head to Athens. Which one of you is giving that talk and what is it that you&#8217;re going to be covering exactly?</p>\n\n\n\n<p>[00:36:51] Luis Herranz: That would be me, Luis. I hope Mario helps.</p>\n\n\n\n<p>[00:36:55] Mario Santos: Yeah, I will help.</p>\n\n\n\n<p>[00:36:57] Luis Herranz: It&#8217;s going to be a workshop. I don&#8217;t know if it&#8217;s a two hour workshop or two hour and a half workshop. It&#8217;s going to be hands-on. A step by step introduction to the Interactivity API and creating some interactive blocks and user experiences.</p>\n\n\n\n<p>[00:37:12] Nathan Wrigley: So very much a hands-on experience. You are going to be teaching people and hopefully getting them to learn in real time. Do you know if any of that gets recorded and put on WordPress TV?</p>\n\n\n\n<p>[00:37:22] Luis Herranz: I don&#8217;t know if workshops are recorded or not. Presentations are, yes. I don&#8217;t know.</p>\n\n\n\n<p>[00:37:27] Nathan Wrigley: Yeah, okay. So you can very much be seen at WordCamp Europe, in Athens. Hopefully both Luis and Mario are going to be there. Head over to the workshop and say hi, and get involved. If people want to reach out to either of you, be that on social media or email or whatever works best. Maybe we can go to Luis first. Can you give us some details of where people could get in touch with you, specifically around this topic?</p>\n\n\n\n<p>[00:37:53] Luis Herranz: Sure. I actually started like, I left Twitter for a while and I&#8217;m back from last week or so. I&#8217;m going to try to answer any question that people may have about the Interactivity API and to share the progress there at my personal account, which is @luisherranz, like my name and surname in Twitter.</p>\n\n\n\n<p>[00:38:11] Nathan Wrigley: Thank you very much, and Mario, where can we reach you?</p>\n\n\n\n<p>[00:38:14] Mario Santos: I would say Twitter as well. I&#8217;m not actively tweeting, but if someone writes to me, I will answer for sure. Handle is @santosguillamot. It&#8217;s a bit difficult, so maybe it&#8217;s better to include the link?</p>\n\n\n\n<p>[00:38:28] Nathan Wrigley: I will link to it in the show notes because yeah, that might be the best way of doing it.</p>\n\n\n\n<p>[00:38:33] Luis Herranz: And probably I would say come by the Block Interactivity Experiments repository. So in GitHub, WordPress slash block interactivity experiments. And then there&#8217;s, open a issue, open a discussion. Yeah.</p>\n\n\n\n<p>[00:38:47] Mario Santos: And if people don&#8217;t use Twitter, I think they can reach both of us also in WordPress Slack, if they prefer to do so.</p>\n\n\n\n<p>[00:38:55] Nathan Wrigley: I will link to both of those things as well. I will include both of your Twitter handles and both of your Slacks, plus all of the links to anything that we mentioned during the course of the podcast. So yeah, an interesting discussion about the Interactivity API. I know it&#8217;s not just the pair of you, but Luis and Mario, much appreciation for taking on this work, which hopefully in the near future will be improving, not only the performance, but the interactivity of our WordPress websites. Thanks very much for joining me today.</p>\n\n\n\n<p>[00:39:21] Mario Santos: Thank you a lot for inviting.</p>\n\n\n\n<p>[00:39:23] Luis Herranz: Thanks, Nathan.</p>\n</div>\n\n\n\n<p>On the podcast today we have <a href=\"https://twitter.com/santosguillamot\">Mario Santos</a> and <a href=\"https://twitter.com/luisherranz\">Luis Herranz</a>. They both work for Automattic, but are sponsored to work full-time in WordPress. The main focus of their work is the block developer experience, and they are part of the group of contributors that worked on the Interactivity API proposal.</p>\n\n\n\n<p>The Interactivity API is the main focus of the podcast today, and if you&#8217;re working with blocks and dynamically displaying data, this is sure to be of interest to you.</p>\n\n\n\n<p>We start out the podcast with the usual introductions and get to know Mario and Luis, and then we learn what the Interactivity API is, and what it can do.</p>\n\n\n\n<p>The conversation is framed around a blog post written by Mario entitled The Interactivity API, a Better Developer Experience in Building Interactive Blocks. In this, Mario shows examples of what website interactivity is. In short, it’s the ability for content to be amended on-the-fly without a page refresh.</p>\n\n\n\n<p>Of course, this is nothing new on the web, we’ve been seeing this for years in WordPress sites and elsewhere, but now you’re going to be able to create interactivity in a standard way across the different blocks on your site. The project hopes to absorb complexity and make the creation of interactive objects fairly trivial. Mario and Luis talk about examples of where the API might be used and how it can be implemented.</p>\n\n\n\n<p>We also discuss the fact that in the past developers have gone their own way to make their sites interactive. It all works, but it means that no two implementations are the same. This causes issues if the project is taken over by another developer, but it’s also a drain on resources. Mario and Luis make the point that having a standard way of creating interactivity will benefit everyone in the long run.</p>\n\n\n\n<p>We get into the weeds a little and talk about the approach the team took when building the API. They decided to use directives, and we find out why this was and what benefit it brings over other possible solutions.</p>\n\n\n\n<p>The project is still experimental, and they’re looking for people to test and report back on what they find to move the Interactivity API forwards.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Useful links.</h2>\n\n\n\n<p>Frontity</p>\n\n\n\n<p><a href=\"https://make.wordpress.org/core/2023/03/30/proposal-the-interactivity-api-a-better-developer-experience-in-building-interactive-blocks/\">Proposal: The Interactivity API – A better developer experience in building interactive blocks</a></p>\n\n\n\n<p><a href=\"https://github.com/WordPress/block-interactivity-experiments\">Interactivity API GitHib repo</a></p>\n\n\n\n<p><a href=\"https://github.com/wordpress/wp-movies-demo\">Repo for the movies demo</a></p>\n\n\n\n<p><a href=\"https://europe.wordcamp.org/2023/session/building-interactive-blocks-a-step-by-step-workshop/\">Luis&#8217; workshop at WordCamp Europe 2023</a></p>\n\n\n\n<p><a href=\"https://twitter.com/luisherranz\">Luis&#8217; Twitter</a></p>\n\n\n\n<p><a href=\"https://twitter.com/santosguillamot\">Mario&#8217;s Twitter</a></p>\n\n\n\n<p><a href=\"https://github.com/WordPress/block-interactivity-experiments\">Block Interactivity Experiments repo</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, 24 May 2023 14: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:\"Nathan Wrigley\";s: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:87:\"HeroPress: About how WordPress saved my life. – Sobre como WordPress me salvo la vida\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=5574\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:140:\"https://heropress.com/essays/about-how-wordpress-saved-my-life/#utm_source=rss&utm_medium=rss&utm_campaign=about-how-wordpress-saved-my-life\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:15217:\"<img width=\"1024\" height=\"512\" src=\"https://heropress.com/wp-content/uploads/2023/05/052323-2-min.jpg\" class=\"attachment-large size-large wp-post-image\" alt=\"Pull Quote: The opportunity that the Universe gave me is called WordPress. La oportunidad que me dio el Universo se llama WordPress.\" /><p><a href=\"https://heropress.com/feed/#espanol\">Este ensayo también está disponible en español.</a></p>\n\n\n\n<p>Hello, my name is Rita Robles Loaiza, I am a computer systems engineer and I live in Cartago, Costa Rica. Today I want to tell you a little bit about my story and how WordPress saved my life.&nbsp;</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-about-the-beginnings\"><strong>About the beginnings</strong></h2>\n\n\n\n<p>I am the youngest of 4 siblings, and the one who for many reasons as we say here in Costa Rica &#8220;went out of the basket&#8221;. Since I was a child I had an affinity for technology, I will never forget the first time I used a computer and how my older sister taught me to use Windows 95 back in 1997 or the first time I was able to program a Lego controller in Robotics class at the age of 12. Even with that affinity at 17 years old I said I wanted to be a chef, and I refused the idea of being an engineer. When I left school and the bubble in which I was I could identify that I had a whole world ahead of me and that I had to follow one of the best&nbsp; pieces of advice my mom could have given me: &#8220;Try hard&#8221;.</p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>About My First Job and Entering the University.</strong></h2>\n\n\n\n<p>In 2013 I had the opportunity to start with my first job, that experience opened my mind and was my school, pure and hard about survival and behavior. This job was as an assistant in a Laboratory of chemical and microbiological analysis, the biggest WOW of my life I lived here, in the middle of test tubes, beakers, Erlenmeyer’s I realized all the potential I had, and that creativity and enthusiasm would be my two great weapons, this without knowing that my main virtue is and will be resilience. In the middle of that job and against my wishes I started to study programming, I really did not feel fulfilled even though I liked technology, the Rita of now believes that in the midst of so many changes that rejection was my defense mechanism to everything that was happening around me.</p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Leaving the Laboratory and the change of university</strong></h2>\n\n\n\n<p>After 2 years I suffered an extremely unfair dismissal disguised as economic problems in the company, after many years I understood that they did me a favor and that this action gave me the wings I needed to join the world of technology, while that happened to me and in the middle of my search for the true taste for what I was studying, I changed University, what a decision, so far has been the best I have taken in terms of education, thanks to that change I found what I really liked and was a breeding ground to achieve complete engineering. Finally, after all this, I was incorporated in different organizations with various roles focused on technology.</p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Rita turned to dust and ashes.</strong></h2>\n\n\n\n<p>After a while and finishing my career, I decided to start my own business and entrepreneurship journey with 2 friends. Together we founded a boutique technology and innovation company, in the midst of our business empiricism we managed to meet many people and develop many projects, it was here where I had my first approach with WordPress in a meetup organized by the community of San Jose. At a certain point, my 2 friends abandoned the project and I decided to continue alone (big mistake), the company kept growing, I kept building many more projects, I incorporated more people until everything blew up in my face, it was absolutely unsustainable, and alone, without a job, and without any hope I became dust and ashes believing that I could not get up.</p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Teaching as a weapon of defense</strong></h2>\n\n\n\n<p>In 2018, the career director of the University where I studied contacted me to offer me the opportunity to be a Database teacher. I refused, believing that I did not have enough skills to assume that role, that thought was a product of everything that was happening with entrepreneurship, my director insisted, and I accepted, and that was how on May 19, 2018 I taught my first university class. From that moment until now, 5 years later, I can say that it was one of the smartest decisions I could make, teaching opened the doors to the possibility of rebirth, rebuilding myself and learning from my students. It was the university that in times of difficulties made me grow and get up from everything that was happening, it was here where I understood that resilience is and will be my greatest virtue.</p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>WordPress before my eyes</strong></h2>\n\n\n\n<p>In 2019, in a meeting of a women&#8217;s collective, I met the person who pushed me the most in this world, my great friend Ericka, she invited me to go to meetups of the WordPress San Jose community, I knew I had to make an extra effort to just limit myself to go to Meetups, so thanks to her and everything she told me about WordPress I took the initiative to look for tutorials and start learning on my own. It was in this year where I developed my first project with WordPress and opened the doors to one of the career paths that have made me feel happy and fulfilled.</p>\n\n\n\n<h2 class=\"wp-block-heading\">WordPress saved my life</h2>\n\n\n\n<p>Excited by that project, I continued studying and getting involved in the community, participating in meetups, and organizing WordCamps, to the point that this year 2023 I had the opportunity to be Lead Organizer of WordCamp San Jose 2023. In 2019 in the midst of so much uncertainty came to me a job ad in GreenGeeks web hosting in the role of WordPress Specialist, without any expectation I sent my resume until I got the pleasant surprise that I was hired in February 2020.</p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>WordPress and the COVID-19 pandemic</strong></h2>\n\n\n\n<p>It was thanks to this opportunity that I fully potentiated my taste and career towards WordPress, managing to get many projects for Foundations and NGOs in which through WordPress we can reach many interested people. It was also in this instance in which I managed to participate for the first time as a speaker at a WordCamp, this nourished my love for WordPress and the desire to continue sharing with all the people who have the same passion.</p>\n\n\n\n<p>WordPress changed my life, put it in order and gave me guidelines to grow personally and professionally, the opportunity that the Universe gave me is called WordPress and all my life I will be grateful for that.</p>\n\n\n\n<div class=\"kb-row-layout-wrap kb-row-layout-id_ade563-ae alignnone kt-row-has-bg wp-block-kadence-rowlayout\"><div class=\"kt-row-column-wrap kt-has-1-columns kt-row-layout-equal kt-tab-layout-inherit kt-mobile-layout-row kt-row-valign-top\">\n\n<div class=\"wp-block-kadence-column kadence-column_d879cf-9a\"><div class=\"kt-inside-inner-col\">\n<h2 id=\"work-environment\" class=\"kt-adv-heading_1e8c32-97 wp-block-kadence-advancedheading\">Rita&#8217;s Work Environment</h2>\n\n\n\n<p>We asked Rita for a view into her development life and this is what she sent! </p>\n\n\n	<div class=\"hotspots-image-container\">\n		<img width=\"2560\" height=\"1144\" src=\"https://heropress.com/wp-content/uploads/2023/05/IMG_5886-scaled-1.jpg\" alt=\"Rita\" class=\"hotspots-image skip-lazy\" />\n	</div>\n\n\n\n\n<p class=\"kt-adv-heading_b61d45-c4 wp-block-kadence-advancedheading has-theme-palette-9-background-color has-background\">HeroPress would like to thank <a href=\"https://wpdrawattention.com/\">Draw Attention</a> for their donation of the plugin to make this interactive image!</p>\n</div></div>\n\n</div></div>\n\n\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<h1 id=\"espanol\" class=\"kt-adv-heading_96d019-44 wp-block-kadence-advancedheading\"><strong>Sobre como WordPress me salvo la vida</strong></h1>\n\n\n\n\nEscucha el ensayo de Rita con su propia voz\n\n\n\n\n\n\n<p>Hola, mi nombre es Rita Robles Loaiza, soy Ingeniera en sistemas de computación y vivo en Cartago, Costa Rica. Hoy quiero contarles un poco sobre mi historia y como WordPress me salvo la vida.&nbsp;</p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Sobre los inicios</strong></h2>\n\n\n\n<p>Soy la menor de 4 hermanos, y la que por muchas razones como decimos aquí en Costa Rica se “salió del canasto”. Desde que era niña tuve afinidad por la tecnología, jamás olvidare la primera vez que utilice una computadora y como mi hermana mayor me enseñó a utilizar Windows 95 allá por 1997 o la primera vez que pude programar un controlador de Lego en la clase de Robótica a los 12 años. Aun con esa afinidad a los 17 años decía que quería ser chef, y me negaba a la idea de ser Ingeniera. Cuando Sali del colegio y de la burbuja en la que me encontraba pude identificar que tenía todo un mundo por delante frente a mis ojos y que debía seguir uno de los mejores consejos que mi mamá me ha podido dar: “Esfuérzate”.&nbsp;</p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Sobre Mi primer trabajo y el ingreso a la Universidad</strong></h2>\n\n\n\n<p>En el 2013 tuve la oportunidad de iniciar con mi primer empleo, definitivamente esa experiencia abrió mi mente y fue mi escuela, pura y dura sobre la sobrevivencia y el comportamiento. Este empleo fue como asistente en un Laboratorio de análisis químicos y microbiológicos, el mayor WOW de mi vida lo viví aquí, en medio de tubos de ensayo, beakers, erlenmeyers me di cuenta de todo el potencial que tenía y que la creatividad y el entusiasmo serian mis dos grandes armas, esto sin saber que mi principal virtud es y será la resiliencia. En medio de ese empleo y contra mis deseos empecé a estudiar programación, en serio no me sentía plena a pesar de que me gustaba la tecnología, la Rita de ahora cree que en medio de tantos cambios ese rechazo era mi mecanismo de defensa ante todo lo que sucedía a mi alrededor.</p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>La Salida del Laboratorio y el cambio de Universidad</strong></h2>\n\n\n\n<p>Después de 2 años sufrí un despido sumamente injusto disfrazado de problemas económicos en la empresa, después de muchos años entendí que me hicieron un favor y que esa acción me dio las alas que necesitaba para incorporarme laboralmente en el mundo de la tecnología, mientras me sucedía eso y en medio de mi búsqueda por el verdadero gusto hacia lo que estaba estudiando, me cambie de Universidad, vaya decisión, al momento ha sido la mejor que he tomado en temas de educación, gracias a ese cambio encontré lo que realmente me gustaba y fue caldo de cultivo para lograr completar la ingeniería. Finalmente, después de todo esto, me fui incorporando en distintas organizaciones con diversos roles enfocados en tecnología.</p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Rita convertida en polvo y cenizas</strong></h2>\n\n\n\n<p>Después de un tiempo y terminando mi carrera decidí iniciar el viaje al negocio propio y el emprendimiento con 2 amigos. Juntos fundamos una empresa boutique de tecnología e innovación, en medio de nuestro empirismo en negocios logramos conocer a muchas personas y desarrollar muchos proyectos, fue aquí donde tuve mi primer acercamiento con WordPress en un meetup organizado por la comunidad de San José. En un momento determinado, mis 2 amigos abandonaron el proyecto y yo decidí continuar sola (grave error), la empresa siguió creciendo, seguí construyendo muchos más proyectos, incorpore más personas hasta que todo exploto en mi cara, era absolutamente insostenible, y sola, sin empleo, y sin esperanza alguna me convertí en polvo y cenizas creyendo que no podía levantarme.</p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>La docencia como arma de defensa</strong></h2>\n\n\n\n<p>En el 2018, el director de carrera de la Universidad en la cual estudie me contacto para ofrecerme la oportunidad de ser profesora de Bases de Datos. Yo me negué, creyendo que no tenía las habilidades suficientes para asumir ese rol, ese pensamiento era producto de todo lo que estaba sucediendo con el emprendimiento, mi director insistió y yo acepté, y así fue como el 19 de mayo del 2018 impartí mi primera clase universitaria. Desde ese momento hasta ahora, 5 años después, puedo decir que fue una de las decisiones más inteligentes que pude tomar, la docencia me abrió las puertas a la posibilidad de renacer, reconstruirme y aprender de mis estudiantes. Fue la universidad la que en tiempos de dificultades me hizo crecer y levantarme de todo lo que estaba sucediendo, fue aquí donde entendí que la resiliencia es y será mi mayor virtud</p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>WordPress ante mis ojos</strong></h2>\n\n\n\n<p>En el 2019, en una reunión de un colectivo de mujeres, conocí a la persona que más me impulso en este mundo, mi gran amiga Ericka, ella me invito a ir a meetups de la comunidad de WordPress San José, yo sabía que debía hacer un esfuerzo adicional a solamente limitarme a ir a Meetups, así que gracias a ella y todo lo que me contaba sobre WordPress tome la iniciativa de buscar tutoriales y empezar a aprender por mi cuenta. Fue en este año donde desarrolle mi primer proyecto con WordPress y abrir las puertas a uno de los caminos laborales que más me han hecho sentir feliz y plena.</p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>WordPress salvo mi vida</strong></h2>\n\n\n\n<p>Emocionada por ese proyecto, seguí estudiando e involucrándome en la comunidad, participando en meetups y organizando WordCamps, a tal punto que este año 2023 he tenido la oportunidad de ser Lead Organizer del WordCamp San José 2023. En el 2019 en medio de tanta incertidumbre llego a mi un anuncio de empleo en GreenGeeks web hosting en el rol de WordPress Specialist, sin expectativa alguna envié mi currículo hasta llevarme la grata sorpresa que me contrataron en febrero del 2020.</p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>WordPress y la pandemia del COVID-19</strong></h2>\n\n\n\n<p>Fue gracias a esta oportunidad que potencialice completamente mi gusto y carrera hacia WordPress, logrando conseguir muchos proyectos para Fundaciones y ONG en los cuales por medio de WordPress podemos llegar a muchas personas interesadas. También fue en esta instancia en la cual logre participar por primera vez como speaker en un WordCamp, esto alimento mi cariño hacia WordPress y el deseo de poder seguir compartiendo con todas las personas que tenemos esta misma pasión.</p>\n\n\n\n<p>WordPress cambio mi vida, la puso en orden y me dio pautas para crecer personal y profesionalmente, la oportunidad que me dio el Universo se llama WordPress y toda mi vida estaré agradecida por eso.</p>\n<p>The post <a rel=\"nofollow\" href=\"https://heropress.com/essays/about-how-wordpress-saved-my-life/\">About how WordPress saved my life. &#8211; Sobre como WordPress me salvo la vida</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, 24 May 2023 12:30: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:18:\"Rita Robles Loaiza\";s: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:101:\"WPTavern: Automattic Releases wp-now: A Local Development Environment Powered by WordPress Playground\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=145373\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:111:\"https://wptavern.com/automattic-releases-wp-now-a-local-development-environment-powered-by-wordpress-playground\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2530:\"<p>Automattic has published a new project called <a href=\"https://twitter.com/AutomatticEng/status/1660997741793927168\">wp-now</a> that creates a local development environment in seconds. The tool is a NodeJS app that is powered by WordPress Playground, an experimental project that uses WebAssembly (WASM) to <a href=\"https://wptavern.com/new-prototype-runs-wordpress-in-the-browser-with-no-php-server\">run WordPress in the browser</a>. </p>\n\n\n\n<p>wp-now allows developers to quickly spin up a new WordPress site with their chosen theme and then open it in the browser automatically logged in as admin without having to enter any credentials. It uses the <a href=\"https://wordpress.org/plugins/sqlite-database-integration\">SQLite Database Integration plugin</a> for its database and developers can quickly swap out versions of PHP and WordPress for testing.</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">Five minute install? wp-now launches your local environment in five seconds <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f680.png\" alt=\"🚀\" class=\"wp-smiley\" /><a href=\"https://t.co/cKkUDN8uHE\">https://t.co/cKkUDN8uHE</a> <a href=\"https://t.co/QdgZle5mgw\">pic.twitter.com/QdgZle5mgw</a></p>&mdash; AutomatticEng (@AutomatticEng) <a href=\"https://twitter.com/AutomatticEng/status/1660997741793927168?ref_src=twsrc%5Etfw\">May 23, 2023</a></blockquote>\n</div>\n\n\n\n<p>Automattic software engineer Antonio Sejas explained how it works: </p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p>When you use <code>wp-now</code> from a directory, we create a php-wasm instance, download the selected WordPress version and mount the necessary directories in a virtual file system (VFS). Then, we initiate a NodeJS express server that listens and proxies all requests to the php-wasm. As a result, <code>wp-now</code> can easily log you into WordPress automatically, activate plugins and themes, and automatically configure your WordPress site.</p>\n</blockquote>\n\n\n\n<p>wp-now can be <a href=\"https://www.npmjs.com/package/@wp-now/wp-now\">installed directly from npm</a>. It works across all platforms (Mac, Linux, and Windows). Although it doesn&#8217;t support custom domains or SSL yet, Automattic has it on the roadmap. wp-now contributors are also looking at auto detecting when a file is modified and automatically refreshing the browser, importing a database from another WordPress site, and adding a deploy feature for SSH/SFTP hosting, among other features.</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 May 2023 02:48:34 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"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:64:\"Post Status: Launching a WordPress Product in Public: Session 14\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://poststatus.com/?p=149350\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:74:\"https://poststatus.com/launching-a-wordpress-product-in-public-session-14/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:47211:\"<p><a href=\"https://poststatus.com/planet/feed/#h-transcript\">Transcript</a> ↓</p>\n\n\n\n<p><a href=\"https://twitter.com/coreymaass\">Corey Maass</a> and <a href=\"https://twitter.com/corymiller303\">Cory Miller</a> continue the development of their new WordPress plugin, <a href=\"https://crop.express/\">Crop.Express</a>. They delve into the world of image-generation tools for content marketing. In this insightful conversation, they explore creating customizable templates to generate visually appealing images for blog posts, social media, and other channels. Discover how these tools can help marketers enhance their content, highlight important quotes and summaries, and streamline sharing. Dive into the workflow and envision a future where content creators can effortlessly generate eye-catching images that elevate the presentation and value of their posts.</p>\n\n\n\n<p><strong>Top Takeaways:</strong></p>\n\n\n\n<ul>\n<li><strong>Continuous Learning:</strong> The WordPress ecosystem constantly evolves, so staying updated with the latest trends, technologies, and best practices is crucial. Engage in continuous learning through online resources, forums, and communities, and attend WordPress events and conferences.</li>\n\n\n\n<li><strong>Security Measures:</strong> WordPress security should be a top priority. Implement robust security measures such as using strong passwords, keeping themes and plugins up to date, using reliable security plugins, regularly backing up your website, and staying vigilant against potential vulnerabilities.</li>\n\n\n\n<li><strong>Performance Optimization: </strong>Website speed and performance are essential for user experience and search engine rankings. Optimize your WordPress site using lightweight themes and plugins, optimizing images, leveraging caching techniques, and minimizing HTTP requests. Regularly monitor and optimize your site&#8217;s performance to ensure a smooth and fast user experience.</li>\n</ul>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n\n</div>\n\n\n\n<h3 class=\"wp-block-heading eplus-wrapper\" id=\"h-mentioned-in-the-show\"><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f517.png\" alt=\"🔗\" class=\"wp-smiley\" /> Mentioned in the show:</h3>\n\n\n\n<ul>\n<li><a href=\"https://crop.express/\">Crop.Express</a></li>\n\n\n\n<li><a href=\"https://www.instagram.com/\">Instagram</a></li>\n\n\n\n<li><a href=\"https://thevidabars.com/\">Vida Bars</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading eplus-wrapper\" id=\"h-you-can-follow-post-status-and-our-guests-on-twitter\"><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f426.png\" alt=\"🐦\" class=\"wp-smiley\" /> You can follow Post Status and our guests on Twitter:</h3>\n\n\n\n<ul class=\"eplus-wrapper\">\n<li><a href=\"http://twitter.com/coreymaass\">Corey Maass</a></li>\n\n\n\n<li><a href=\"https://twitter.com/corymiller303\">Cory Miller</a> (CEO, <a href=\"https://twitter.com/post_status\">Post Status</a>)</li>\n\n\n\n<li><a href=\"https://twitter.com/lemonadecode\">Olivia Bisset</a> (Intern, <a href=\"https://twitter.com/post_status\">Post Status</a>)</li>\n</ul>\n\n\n\n<p class=\"eplus-wrapper has-background\">The <strong>Post Status Draft</strong> podcast is geared toward WordPress professionals, with interviews, news, and deep analysis. <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f4dd.png\" alt=\"📝\" class=\"wp-smiley\" /><br /><br /><a href=\"https://poststatus.com/category/post-status-podcasts/\" target=\"_blank\" rel=\"noreferrer noopener\">Browse our archives</a>, and don’t forget to subscribe via <a href=\"https://itunes.apple.com/us/podcast/post-status-draft-wordpress/id976403008\" target=\"_blank\" rel=\"noreferrer noopener\">iTunes</a>, <a href=\"https://podcasts.google.com/feed/aHR0cHM6Ly9mZWVkcy5zaW1wbGVjYXN0LmNvbS8ySkU5c2M4UA\" target=\"_blank\" rel=\"noreferrer noopener\">Google Podcasts</a>, <a href=\"https://www.youtube.com/c/PostStatus\" target=\"_blank\" rel=\"noreferrer noopener\">YouTube</a>, <a href=\"http://www.stitcher.com/podcast/krogsgard/post-status-draft-wordpress-podcast\" target=\"_blank\" rel=\"noreferrer noopener\">Stitcher</a>, <a href=\"https://wordpress-post-status-draft-podcast.simplecast.com/\" target=\"_blank\" rel=\"noreferrer noopener\">Simplecast</a>, or <a href=\"https://feeds.simplecast.com/2JE9sc8P\">RSS</a>. <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f3a7.png\" alt=\"🎧\" class=\"wp-smiley\" /></p>\n\n\n\n<h2 class=\"wp-block-heading eplus-wrapper\" id=\"h-transcript\">Transcript</h2>\n\n\n\n<h2 class=\"wp-block-heading\">Session 14 Corey &amp; Cory Launch a WordPress Product Live</h2>\n\n\n\n<p>[00:00:00] Dude. Hey.&nbsp;</p>\n\n\n\n<p>[00:00:04] <strong>Cory Miller:</strong> All right. Session 14. I had to go on YouTube and look, but golly, that&#8217;s been. Three months, three and a half months. Been good stuff. Had fun on these, but we have some good things to talk about today. I think you were gonna show me some of that stuff and come up with a punch list of what you&#8217;ve been manically working on.</p>\n\n\n\n<p>Yeah, I&#8217;m meager man. And I know the other part of the agenda is now baton is. Getting handed over to me to really drive marketing and the work of, that I can actually do with your class. Yep, exactly. Genius and insight and feedback. All right, you want to any thoughts or do you want to kick&nbsp;</p>\n\n\n\n<p>[00:00:53] <strong>Corey Maass:</strong> it off and No, lemme share. Which 1:00 AM I sharing? [00:01:00] Share, update, plugin. Let&#8217;s make it smaller. Come on window.</p>\n\n\n\n<p>You see that? Okay? Yep. And hold on just a second. Where is.</p>\n\n\n\n<p>Real life needs and leads of a dog. Must be in the office with me at all times. Okay, go lay down. All right we have a blog WordPress install. I&#8217;ve been testing with Yost, but for the fun of it, we&#8217;ll leave that. Deactivated general settings. Oh, it&#8217;s interesting that didn&#8217;t reset. But anyway, the title of this blog tagline, so this is the description of this blog.</p>\n\n\n\n<p>So I&#8217;m just like, some things I [00:02:00] want to sensible, sensible defaults basically And looking at these variables because they&#8217;ll show up later. If you go, so you have a WordPress install you&#8217;ve just downloaded O M G I M G we need Oh, you have that WorkFlowy document I think I shared with you.</p>\n\n\n\n<p>Yeah. Did. So these are, I&#8217;ll take notes here. Plug in marketing. So it&#8217;s like, what do we call the damn thing? I plugged in. It&#8217;s O M G I M G and all capital letters we decided on, which I love. And then what do we call it? I&#8217;m, so a couple of neat things with this. We, I think we, we touched on it a little bit or I was thinking it earlier today, is we don&#8217;t need, because we&#8217;re not going in the plug-in repo, we don&#8217;t need a readme, we don&#8217;t need there&#8217;s a bunch of SEO [00:03:00] stuff that we don&#8217;t need to worry about, that we were messing around with Crop Express.</p>\n\n\n\n<p>But I think we still want, we still need a description for here. We still need do we just call it O M G I M G? Do we want another word? Image builder, maker, candlestick maker, something in there. So yeah, what do we call it? What should be like, What we see on the plugins page,</p>\n\n\n\n<p>Description name oops. All right. So anyway we activate it. It takes you to a welcome screen. Right now it says, welcome to O M G I M G. Let&#8217;s get you started creating your first image, an open graph image for your site. The first image is the image people see when they share your [00:04:00] sites on socials.</p>\n\n\n\n<p>So we can review all this copy later, but Roger that we just need an icon I&#8217;ve been using, actually let&#8217;s do, if I go to post status, it&#8217;s gonna be the real lit litmus test, right?</p>\n\n\n\n<p>Is there a high res version? Hey, look at that. Holy leash. Nikes. No, that&#8217;s good. It&#8217;s an svg. Okay which we don&#8217;t support currently. We&#8217;re gonna want to I can. I got it. Because we can just go SVG to p and g. It&#8217;s one of my favorite. These are my favorite sites. There&#8217;s this whole series of sites that look just like this.</p>\n\n\n\n<p>It&#8217;s compress P and g. Yeah, compress jpeg, compress All these are my favorite sites. With the elephant. And I contacted this person once and I was like, can I give you money because I use your websites,[00:05:00] every day. And he is no, I make more from ads than you could ever give me.</p>\n\n\n\n<p>Okay. It&#8217;s a good problem to have anyway, so let&#8217;s show.</p>\n\n\n\n<p>Did it really make it that small?</p>\n\n\n\n<p>Oh, no, it really does make it that small.</p>\n\n\n\n<p>Okay. So yes, you should send me a version if you have it.</p>\n\n\n\n<p>I should have asked you for this earlier,</p>\n\n\n\n<p>SVG whole doc. Why not? It really is that small though.&nbsp;</p>\n\n\n\n<p>What size do you need? I&#8217;ve got just as big as possible with the transparent background.</p>\n\n\n\n<p>I&#8217;ve got three 20,&nbsp;</p>\n\n\n\n<p>[00:05:41] <strong>Cory Miller:</strong> about three 20. Let&#8217;s see.</p>\n\n\n\n<p>I had these made for Different social platforms. So they&#8217;re already scaled down.&nbsp;</p>\n\n\n\n<p>Yep. Do you want an eps?&nbsp;</p>\n\n\n\n<p>[00:05:54] <strong>Corey Maass:</strong> I think I&#8217;ve almost got it.</p>\n\n\n\n<p>[00:05:55] <strong>Cory Miller:</strong> We&#8217;re illuminating some of the things that we&#8217;ve talked about,&nbsp;</p>\n\n\n\n<p>[00:05:59] <strong>Corey Maass:</strong> right? [00:06:00] Yeah. Around tight.</p>\n\n\n\n<p>Yep. Yep. This is compelling listening and watching for anybody out there. There we go. I got it. And I&#8217;m being a little pedantic because I want this to be a good demo for you. Oops. Export p and g thousand by a thousand giggles. Heat export. Having fun. Download save. All right, I got it.&nbsp;</p>\n\n\n\n<p>[00:06:39] <strong>Cory Miller:</strong> Here we go.</p>\n\n\n\n<p>LeBron Giggle in their heat map software is probably going, oh my God.&nbsp;</p>\n\n\n\n<p>[00:06:44] <strong>Corey Maass:</strong> Tertiary dancing. All right, I&#8217;m gonna drag in the PS logo, see if this works. Hey, you get a little preview. So there&#8217;s a bug. Go bugs [00:07:00] dropping image shows preview, but placeholder doesn&#8217;t. Disappear.</p>\n\n\n\n<p>Doesn&#8217;t matter though. So you create, so this is going to automatically generate the first one based on I think it&#8217;s the, oh, let&#8217;s find out. And there&#8217;s a fatal error because get options hasn&#8217;t been set site. There&#8217;s a little live coding for you.</p>\n\n\n\n<p>Oh,</p>\n\n\n\n<p>obviously I haven&#8217;t walked through this in a while.</p>\n\n\n\n<p>Oh. Called up there. I see.&nbsp;</p>\n\n\n\n<p>What did happen?</p>\n\n\n\n<p>Oh, I know what I did. Yeah. So change this to until good options. [00:08:00] There we go. Let&#8217;s try that again. Refresh. Grab the PS logo, P and G</p>\n\n\n\n<p>and nothing happens. Okay, skip. Anyway it should have created one, but we&#8217;ll create one. So this is the other workflow, basically the idea being that welcome screen, you drop in a logo and then it just spits one out. Yep. So that you&#8217;re not, so that you&#8217;re, on board you, and obviously we&#8217;ll tweak that.</p>\n\n\n\n<p>But I wanted to get that we had talked about. The experience of it. Essentially you drop an image and it&#8217;s just done and then you&#8217;d click then option to set it as an OG image. But here we&#8217;ll say created open OG image. Right now we&#8217;ve got logo only and then side by side are mostly working.</p>\n\n\n\n<p>Top bottom isn&#8217;t done and simple was the old version I need to clean up, but we&#8217;ll start with logo only. Let&#8217;s see if this works.[00:09:00] We&#8217;re close. Line app, line one 20. Oops. Of course I&#8217;ve been hacking away at this, so lots of errors. I get it. No issue here.</p>\n\n\n\n<p>But anyway okay, so real simple, I just want this to go away. If set.</p>\n\n\n\n<p>There we go. So real simple options here. You&#8217;ve got a background and you&#8217;ve got an image. And so that&#8217;s all the options that you&#8217;ve got here on the left. So you can set a background color. So if we go to Do you know what color the post status orange is? It&#8217;s the,</p>\n\n\n\n<p>like the official&nbsp;</p>\n\n\n\n<p>[00:09:51] <strong>Cory Miller:</strong> I don&#8217;t think it&#8217;s,&nbsp;</p>\n\n\n\n<p>[00:09:53] <strong>Corey Maass:</strong> oops, I spelled you wrong. Post status.com. There we go. [00:10:00] Inspect.</p>\n\n\n\n<p>It&#8217;s that one. Okay, so hypothetically you&#8217;d come in, you&#8217;d say, oh, and I&#8217;ve added global options. So there&#8217;s under settings, you can set a site name if you want it different than the WordPress name, site description, site url. There&#8217;s also going to be Default colors. So it&#8217;s if you create a new one, instead of you having to set the background color every time it&#8217;d import these.</p>\n\n\n\n<p>I also think I showed you, I just added or showed a screenshot. I just added support for Google. Fonts a little clunky but is working, which is cool. Ah, okay. So this is what it was supposed to do, is it creates your first project With, here&#8217;s your channel, here&#8217;s your template. So logo only, open graph.</p>\n\n\n\n<p>So anyway, back in the editor, so you changed the [00:11:00] background color to be the post status one, and of course it doesn&#8217;t paste FC 78 15.</p>\n\n\n\n<p>FC 78 15. So there&#8217;s the post status low color. I added an overlay just by default, so if you wanted to add like, A gradient, something to make it a little more dynamic. I&#8217;m gonna add a little toggle for this so you can turn it off all, all together. You can also rotate it so you can make the gradient come from a different direction if you want.</p>\n\n\n\n<p>I guess the hack right now is you would just go in here and make this the same as that orange. Okay.</p>\n\n\n\n<p>Looks like it&#8217;s still adding a gradient, but anyway. But the idea is right now I&#8217;ve added, I&#8217;m basically flushing out. I&#8217;m trying to flush out like one of each option, like a color picker, a or slider, [00:12:00] a bunch of different things. And so we can keep adding these selectors basically. So you can, you&#8217;ll have options all day long.</p>\n\n\n\n<p>You come over here and. So that&#8217;s how you could figure the background, right? And then for the image this should by default, say site logo, which is the thing we uploaded. But I&#8217;ve added support for the media library. So if you wanted to do let&#8217;s grab one of my testing document WordPress.</p>\n\n\n\n<p>Nope. Testing. So I&#8217;ve been using this gear, so you could also select an image from the media library or the default site logo. You set the size, you could rotate it. Rotate it if you want to.</p>\n\n\n\n<p>So dead simple. Save your changes. And it&#8217;s there every time, right? There&#8217;s an option to view it, [00:13:00] full screen. And then there&#8217;s the, you saved say download. I don&#8217;t know if you, I don&#8217;t think you can see that part, but it downloads right now. It&#8217;s a funny name, but we&#8217;ll give it a better name when you download it so you&#8217;ll know what it looks like in the download.</p>\n\n\n\n<p>And then there&#8217;s also the option to save it as your open graph image. And so we don&#8217;t really have a way to demo that, but what it does is it will it&#8217;ll write headers to your, to, to the website so that anytime your website is shared this&#8217;ll be your OG image. Okay. And then also so I think, so it&#8217;s saving it as OG image.</p>\n\n\n\n<p>Yeah. Puts it into your media library and then. And then that&#8217;s what gets shared out. So another bug here or an extra feature we want is to save. In addition, to save as to download, we wanna be able option to save to media Library. [00:14:00] So it&#8217;ll just show up in the media library. And saving is the OG image.</p>\n\n\n\n<p>So when you go back to projects, there&#8217;s a little flag that says this is your OG image, cuz you can only have one obviously. And so it&#8217;s if you set a different one. So here&#8217;s that same menu you can download directly from here. Or save it as the OG image. And then, and this&#8217;ll replace whatever one is the OG image.</p>\n\n\n\n<p>Let&#8217;s create another. Go ahead. Yeah, let&#8217;s create&nbsp;</p>\n\n\n\n<p>[00:14:26] <strong>Cory Miller:</strong> another one. But how did you get the name Project five? Number&nbsp;</p>\n\n\n\n<p>[00:14:29] <strong>Corey Maass:</strong> five. So it&#8217;s, these are just like posts. So if you create A post has an id. So project number five. So yeah, one of the Go&nbsp;</p>\n\n\n\n<p>[00:14:39] <strong>Cory Miller:</strong> ahead default, or we just naming that by default or do they have the&nbsp;</p>\n\n\n\n<p>[00:14:44] <strong>Corey Maass:</strong> What would we name it?</p>\n\n\n\n<p>[00:14:47] <strong>Cory Miller:</strong> No, I was it. Do we, do they have the option to name it&nbsp;</p>\n\n\n\n<p>[00:14:52] <strong>Corey Maass:</strong> something different? Oh, they don&#8217;t yet. So let&#8217;s add that to the list. Custom project [00:15:00] name</p>\n\n\n\n<p>because, yeah, I thought about that too, like that once it gets up to 1,986,426, it&#8217;s like, what&#8217;s, which one are we talking about?&nbsp;</p>\n\n\n\n<p>[00:15:12] <strong>Cory Miller:</strong> I&#8217;m just thinking too, for sorting, like we probably want to say it&#8217;s O N G I M G and then they name it like default homepage or something. And then when we get into the single post pages and stuff, maybe it&#8217;s post ID or post name and number or something like that.</p>\n\n\n\n<p>Just so they, when they see this page, it&#8217;s gonna get pretty filled.&nbsp;</p>\n\n\n\n<p>[00:15:37] <strong>Corey Maass:</strong> Yep. Yeah, the here it says SITEWIDE images. I don&#8217;t think this is working right now because I&#8217;ve made a bunch of changes to the site version. There is a menu option here for O M G I M G per post. Yeah, it&#8217;s totally broken right now.</p>\n\n\n\n<p>But it&#8217;ll, when it&#8217;ll look similar, [00:16:00] but it, but up here it says, Name of post, today&#8217;s specials or whatever, and then it, and then has your images, so you do have context. But yeah under the project number name we&#8217;ll want to come up with some naming convention. The other thing that I, so let&#8217;s do that custom project name, but right off the bat, maybe a date or we could do the name of the template.</p>\n\n\n\n<p>Default project name, using date or template or both because it would be like April 26th. OG image would at least give you some context.&nbsp;</p>\n\n\n\n<p>[00:16:40] <strong>Cory Miller:</strong> Ni picky. But when you say CRI project, that button right there. Yep. C. Could that be create O n G? Im G.&nbsp;</p>\n\n\n\n<p>[00:16:48] <strong>Corey Maass:</strong> Absolutely.</p>\n\n\n\n<p>Not nitpicky. That&#8217;s the kind of stuff I please jump in. Okay. Especially cuz most, most of those changes are small. Yeah. Yeah. I&nbsp;</p>\n\n\n\n<p>[00:16:58] <strong>Cory Miller:</strong> think coming back to the branding, like [00:17:00] that&#8217;s what we&#8217;re doing is M G I M G and that&#8217;s what they&#8217;re getting and I think&nbsp;</p>\n\n\n\n<p>[00:17:04] <strong>Corey Maass:</strong> that&#8217;s good. Yep. Okay. Let&#8217;s do another open graph.</p>\n\n\n\n<p>Actually let&#8217;s do an Instagram and again. So instead of logo only now we get into side by side, so it&#8217;s a bit more complicated.</p>\n\n\n\n<p>So this is a logo on the left and text options on the right. So again, we do a background color. See there&#8217;s a little bug of. That border.&nbsp;</p>\n\n\n\n<p>[00:17:35] <strong>Cory Miller:</strong> You&#8217;re a very daring dev. I always like doing this stuff though, but a lot of devs have worked with her, like they don&#8217;t want to see, they don&#8217;t want you to see some of this. I&#8217;m like,&nbsp;</p>\n\n\n\n<p>[00:17:45] <strong>Corey Maass:</strong> Hey. Oh, I want you to see it as broken as possible. Cuz then it&#8217;s like one, one, it&#8217;s part of the journey and what we&#8217;re trying to illustrate with all of our, everything we, we&#8217;ve been doing in public Mo honestly, most of our conversations have been [00:18:00] public.</p>\n\n\n\n<p>And that&#8217;s I also wanna show, this is as part of our journey. You have barely usable products, but it&#8217;s, then you clean it up. So same thing, overlay color, make it nice and ugly for you. So let&#8217;s just do white and green. With that angle. The image, again, you can choose, that&#8217;s supposed to be site</p>\n\n\n\n<p>site, logo side.</p>\n\n\n\n<p>Just clicking through to see that it all works, so it changes to this other thing. Or you jump back and it&#8217;s the site logo, make it bigger title. So this is the stuff that I&#8217;ve been really working on right now. I&#8217;m, I don&#8217;t have Google fonts enabled. I. But you still get the idea. So we&#8217;ve got some default font families basically.</p>\n\n\n\n<p>So if you wanted handwritten I [00:19:00] don&#8217;t know if bold works. No, I was just doing that this morning. But you will have the option to ignore this input and you will have, but you will have the option to say bolder italics, cuz it&#8217;s I want you to be able to customize the text to your heart&#8217;s content.</p>\n\n\n\n<p>Text color. So you might hear, you might match the orange type of thing, text size,</p>\n\n\n\n<p>but you&#8217;d say, I want this tighter. There&#8217;s line height. If you wanna get, what&#8217;s that tweak to your heart&#8217;s content. Exactly. And again, these are not quite the, like you gave me some comps of the ultimate post status. Social image. And so based on that, I want to give us, give you all the options.</p>\n\n\n\n<p>If you were a customer coming in, you&#8217;d say, okay, I&#8217;d upload my logo here. I might choose a a font that not looks like that. [00:20:00] Like that. I&#8217;d want it bold, I&#8217;d want it all caps. So we want all those options. And then, Be able to make it look good in the context of this template. There&#8217;s the title, then you go to the subtitle.</p>\n\n\n\n<p>And so you&#8217;d have site url, site description. Remember I said, this is where we put in the description of the blog. But it&#8217;s like most likely you&#8217;d want the title of the blog and the url, so you&#8217;d do that, but it&#8217;s, and there&#8217;s a setting for let me save this. So there&#8217;s a setting again. So by default, if you&#8217;re like, our webs, our website is http and www, but we really just want it to be post status.com or if you had a short u r l, po.st or something like that, you could put that in here.</p>\n\n\n\n<p>So let&#8217;s do post status.com. [00:21:00] Save. Go back to here. Oh. So you know, this is what your project screen looks like. So you&#8217;ll see all of your projects. And yeah, we&#8217;re gonna want ability to sort projects by name most recently updated, et cetera. So we&#8217;ll add that to that screen. Jumping back in here, Seesa.</p>\n\n\n\n<p>Now, the, by default it brings in post status.com, but there&#8217;s also an option of custom text. So if you wanted to put in dot, something or post status.com, link to, something specific, a blog, something like that, right? Text color X size, but you get the idea.</p>\n\n\n\n<p>[00:22:00] So yeah, that&#8217;s where we&#8217;re at.</p>\n\n\n\n<p>No problem, dude.&nbsp;</p>\n\n\n\n<p>[00:22:05] <strong>Cory Miller:</strong> So from the premise of the Sitewide OG image probably when I was doing that for, it was so good. Can I show you some stuff&nbsp;</p>\n\n\n\n<p>[00:22:14] <strong>Corey Maass:</strong> real quick? Yeah, absolutely.</p>\n\n\n\n<p>[00:22:16] <strong>Cory Miller:</strong> Okay. So I was playing, this is off topic, but I was playing with some of this, like more into the blog post stuff. So you can see some of these things. I was just like trying to be the client. This is not it. Okay. Where did that play with it?</p>\n\n\n\n<p>It&#8217;s in our.</p>\n\n\n\n<p>Oh, here we go.</p>\n\n\n\n<p>But this side by side image, I think side by side thing is gonna be really great for the in, in just what we need for. Initial stuff. Yep. So I was running around with like logo on top here.&nbsp;</p>\n\n\n\n<p>[00:22:52] <strong>Corey Maass:</strong> Yeah, your number 15 is what I was emulating and then. Once, once I&#8217;ve got all the kinks worked [00:23:00] out, it&#8217;s easy enough to duplicate it to, I called it top and bottom or something.</p>\n\n\n\n<p>So logo above, and so that becomes your like 14 or 13 where it&#8217;s the same elements on the page. Just, up and down instead of left and right. Yeah, I really, as I was&nbsp;</p>\n\n\n\n<p>[00:23:18] <strong>Cory Miller:</strong> doing this just for post, I was like, this is what, this is really what you need. You just need. Logo, brain thing, tagline. And so that was really good for me to go through that experience.</p>\n\n\n\n<p>But yeah, I guess I&#8217;ve got four cards here. Put it on the right, put it on the left, but it above, but it below.&nbsp;</p>\n\n\n\n<p>[00:23:40] <strong>Corey Maass:</strong> Yep. And I, and so actually I&#8217;m now thinking, so maybe I. Like I do the, just an image, cuz that was one of the ones we saw on that gallery. And then, and I think it&#8217;s a really good place to start.</p>\n\n\n\n<p>Basically it&#8217;s the simplest. And then we will, [00:24:00] and then I will adjust the side by side to be, we&#8217;ll call it the, like the default business card. And I will put in little toggles that are like, Because again, it&#8217;s, I&#8217;m trying to flush out potential options, right? And so if there was an option that was like logo left top, right bottom, cuz it&#8217;s all essentially the same.</p>\n\n\n\n<p>All of those cards from our perspective are the same, just reordering of things. But logo, title, U R L. And I just lock that shit down and then we&#8217;re ready to publish, essentially, like I, as you saw, like I wanna, I want to clean up the welcome screen a little bit more cuz I do think that onboarding&#8217;s gonna make a big difference rather than it just being a blank screen when you sign in and it&#8217;s done.</p>\n\n\n\n<p>It was pretty simple to implement. Yeah, I really think, and then,&nbsp;</p>\n\n\n\n<p>[00:24:58] <strong>Cory Miller:</strong> Go ahead. Just go to the experience [00:25:00] is like those five are all we need. Yep. Specifically for the homepage you saw here, just this is for next level step stuff. Yep. But I was like, when you told me I could have a screenshot, I was like, oh yeah.</p>\n\n\n\n<p>[00:25:16] <strong>Corey Maass:</strong> Oh yeah. When once I add that, like that&#8217;s gonna be a lift. Because it&#8217;s, a screenshot within a screenshot kind of thing. But so I&#8217;ll circle back to that. But is, so is this your official, the official font of post status? Yes. And what font is it?</p>\n\n\n\n<p>Go round A round. I believe&nbsp;</p>\n\n\n\n<p>[00:25:40] <strong>Cory Miller:</strong> it&#8217;s a Google font.</p>\n\n\n\n<p>Yes, it is.&nbsp;</p>\n\n\n\n<p>[00:25:43] <strong>Corey Maass:</strong> Okay. And do you make it bold or is it just, is that how it comes? I&nbsp;</p>\n\n\n\n<p>[00:25:49] <strong>Cory Miller:</strong> I did for this stuff. I don&#8217;t know the original, how this is all done, but I was trying to match it and Sure. That won&#8217;t work for me. It is bold.&nbsp;</p>\n\n\n\n<p>[00:25:58] <strong>Corey Maass:</strong> Okay. [00:26:00] So by having Google fonts right now, so there are 1500, I think 1,508 Google fonts, and we, just so you know, right?</p>\n\n\n\n<p>So that we are not, because a plug-in, can&#8217;t call, dial out without permission and you can&#8217;t get Google font information without an API key. We can&#8217;t expect our users to go through all those steps, so you have to enable Google fonts within the plugin. But I set it up so that now I&#8217;m just bragging, but I&#8217;m proud of myself.</p>\n\n\n\n<p>I got us a Google a p i key Once a day we hit the Google Fonts API and get all the information. We store it on omg.co. I created a little API there, and so the plugin, anybody&#8217;s [00:27:00] plugin will hit omg img.co. That meaning our website to get all the font data, and then it&#8217;ll be, and then it&#8217;ll be cashed on in their own website too, but, so it was, The sort of clever way if I do say so myself, not, it&#8217;s not super tricky, but so we, so pretty quick, I was able to pretty quickly add Google font support the without the user having to do much, which is cool.</p>\n\n\n\n<p>However, right now all it does is create a dropdown that has 1,508 names of fonts For you, for now that you can, you would just go, sorry, select Vare around from that dropdown. But we&#8217;re gonna have to add some way to preview all of those fonts, anyway, I wanna make sure that Varela round bold works for you.</p>\n\n\n\n<p>You don&#8217;t do italics, you don&#8217;t rotate anything, but I had fun implementing that [00:28:00] stuff. And for you, it&#8217;s just a white background. Yeah. Oh, so I want to add, toggle the background overlay. So you can just disable it and just say, set a white background. And then that default. Color picker. I couldn&#8217;t, I had to type in the color.</p>\n\n\n\n<p>I couldn&#8217;t paste it in, which was a pain in the ass doesn&#8217;t support pasty. So I think we want a better color picker so that somebody could go copy an eight. Most people are gonna have a hex code color and so they&#8217;re gonna want to paste it in. Yep. Okay. So gimme 20 minutes. Just sit there quietly for 20 minutes and I will have this ready for you.</p>\n\n\n\n<p>Just kidding. Okay. I can&nbsp;</p>\n\n\n\n<p>[00:28:50] <strong>Cory Miller:</strong> be quiet. So then I went a little further into thinking through how we want those, and I came back to this. [00:29:00] Yep. Featured image stuff and going and let you know, just try to present some what we probably want on things. I did show, I did see. Yep. There, I did it. Let&#8217;s see if I can, your&nbsp;</p>\n\n\n\n<p>[00:29:15] <strong>Corey Maass:</strong> hair&#8217;s getting long.</p>\n\n\n\n<p>Huh? Your hair is getting long. In that picture,</p>\n\n\n\n<p>[00:29:21] <strong>Cory Miller:</strong> I showed you that thing. I just saw some from Twitter, but it was just a quote with a person&#8217;s picture on it. I was like, that&#8217;s cool. Cuz a lot of the podcast stuff we&#8217;re doing</p>\n\n\n\n<p>Like something like this where you have the person you&#8217;re interviewing with their little quote. I&#8217;ll keep working on those. Thinking about those, cuz those outputs were really good. Like we do so much audio, video stuff. And really been working with content journey to break those down more and more where you get clips and stuff like that, that then go out on social that are more valuable content on there [00:30:00] than just listen to 45&nbsp;</p>\n\n\n\n<p>[00:30:01] <strong>Corey Maass:</strong> minutes.</p>\n\n\n\n<p>But what you just said more valuable, we were talking earlier about like taglines and concepts and stuff. More valuable images.</p>\n\n\n\n<p>I really like that.</p>\n\n\n\n<p>Okay. Because we were talking like. Making you look more professional, which I bucked at cuz it&#8217;s it implies you don&#8217;t look professional now or as opposed to like we are. And also going back a handful of conversations that we had where it&#8217;s like crop Express was solving a problem.</p>\n\n\n\n<p>We were a wrench, you had a bolt. We could help tighten the bolt faster kind of thing. Whereas this, technically you can live without this, but we are making ev making your website better.&nbsp;</p>\n\n\n\n<p>[00:30:52] <strong>Cory Miller:</strong> It&#8217;s the polish. Yeah. It&#8217;s like you said, the last mile of Polish, yep. Done work doing [00:31:00] the 45 minute thing, doing the thing.</p>\n\n\n\n<p>And then this is that last mile that you said, I&#8217;d like that toughest mile of just polish. Yep. We&#8217;re making that really to display that. When I was thinking through the blog post stuff, I was like, that&#8217;s what I&#8217;d want is, when we shove out a podcast episode that&#8217;s not guy, oh, they did another thing.</p>\n\n\n\n<p>But if we have that quote from somebody in there that really resonates, then it&#8217;s I should go and look more. And what we&#8217;re trying to do on the content side is break those up better and better with transcripts, show notes and stuff like that.&nbsp;</p>\n\n\n\n<p>[00:31:36] <strong>Corey Maass:</strong> Yeah, initially, so I&#8217;ve added that. Basically it&#8217;s a content field, so it&#8217;s like you pull in the title of the website, you&#8217;d pull in whatever, right?</p>\n\n\n\n<p>But that, that the last option was custom text. And the label on the left would say quote, and then you&#8217;d say custom text. And you&#8217;d put in a quote and you&#8217;d have [00:32:00] this saved as a default. So you&#8217;ve got post sta, a white background and the post status logo and U R L in the bottom right print that, that&#8217;s quote number one.</p>\n\n\n\n<p>You&#8217;re now looking at that screen that has all of your projects and you&#8217;d say duplicate post or duplicate project. You change the name to quote number two. You&#8217;d go in paste in the second quote, and now you&#8217;ve got two of those images, same picture of the woman, but two different quotes. So you&#8217;d download one to post on socials on Tuesday and you&#8217;d download the second one to post on socials on Thursday.</p>\n\n\n\n<p>Gosh.&nbsp;</p>\n\n\n\n<p>[00:32:39] <strong>Cory Miller:</strong> So it&#8217;s been a bit a second on this blog post thing. So all those, I gather, you&#8217;re probably setting it up where it&#8217;s set in the front. When you do a post, there could be these options that you could fill in to create all those images. And right there I can do that. So I&#8217;m looking at [00:33:00] the post, oh, that quote there is the template plug and play.</p>\n\n\n\n<p>Like if you saw on this one screen, I was</p>\n\n\n\n<p>Why you get to Drift.</p>\n\n\n\n<p>I think that&#8217;s where we&#8217;re gonna get in. The valuable part is something that looks nice enough and allows me to share those things out.&nbsp;</p>\n\n\n\n<p>[00:33:25] <strong>Corey Maass:</strong> Yeah, and I think, like we&#8217;ve talked about, I. A number of those different templates of, or scenarios, an image that you generate that&#8217;s got a picture of a per, for your interview, you&#8217;ve got their picture on the left, and then you&#8217;ve got a quote and you can make five of those five different quotes, but it&#8217;s essentially the same image.</p>\n\n\n\n<p>And initially, Today, tomorrow, this week, like I&#8217;ll set up that template next week. You&#8217;re using it and you&#8217;re plugging it. You know you&#8217;re gonna have to cr [00:34:00] recreate that template every time. But a week from now, I&#8217;m gonna give you the option to duplicate a template and or save a template. For reuse, essentially.</p>\n\n\n\n<p>So then step two is gonna be okay. It&#8217;s I set it up once for each post and then and then I&#8217;ve gotta manually plug in those quotes and then step three, like basically to verify that, that we are using it this way and that these are loops that we want to close or processes that we wanna make faster.</p>\n\n\n\n<p>It&#8217;s like I&#8217;m picturing a. A screen where essentially you can quick generate, if you&#8217;ve got a bunch of these templates that like, opens up in the sidebar, your, you go and you look at your blog post and you highlight something, and then you select from a dropdown like, plug this, whatever text I&#8217;ve highlighted into this template.</p>\n\n\n\n<p>So it&#8217;s highlight a quote. Generate a quote, image [00:35:00] highlight, quote number two, generate quote, image, highlight bullet points you instead of the quote template, use a, use the bullet point template and you just go bang. Okay, all done. Go back to I M G O M G I M G project screen and there&#8217;s all of those different templates populated, already with your logo, but quote one, quote two, quote three, bullet 0.1, bullet 0.2, bullet 0.3.</p>\n\n\n\n<p>So I think it&#8217;d be&nbsp;</p>\n\n\n\n<p>[00:35:27] <strong>Cory Miller:</strong> okay, let me just make sure we&#8217;re on the same page. And I&#8217;m sorry if I missed this, but, so I was thinking post templates I&#8217;d want for most post ads content. I put down quote and summary slide. It&#8217;s probably the two big ones, just summary slide about what this content is about and then actionable cool quotes on that.</p>\n\n\n\n<p>So I started plugging up MGM G. I could create a template for the post things that would show, then [00:36:00] set there for its to global, and then I&#8217;m in post writing, post and go ready for the OG images, click. Oh, I want to do, I gotta have a summary slide that&#8217;s already in my template over you on the post. And then same thing with quote, I&#8217;d have that option too.</p>\n\n\n\n<p>Those templates would show up</p>\n\n\n\n<p>because right there, from a workflow standpoint, I&#8217;m thought about, I&#8217;ve done the work of thinking about some of the key things that would drive value on the post content summary slide, which is our featured image thought. And then the quote Thing and I&#8217;ll, maybe the bullet point would be the third for me is like we, we talked about these three things, which could be a variation of the summary slide.</p>\n\n\n\n<p>Sure. And if I did that, what that would do for me on my social channel is just talking this out as opposed to as, okay, I&#8217;ve already illuminated in a graphically appealing way what this long form post is about. Then I have those images for [00:37:00] those channels. LinkedIn, Twitter primarily for us at the appropriate sizes and stuff.</p>\n\n\n\n<p>I think we&#8217;re cooking. Yeah.&nbsp;</p>\n\n\n\n<p>[00:37:10] <strong>Corey Maass:</strong> Yep. Yeah, I like we&#8217;ve talked about the baseline is an OG image, ideally auto generated The moment you hit publish, you&#8217;ve based on a template being populated with the title of the post and then down the road with a screenshot of the post, and or the featured image.</p>\n\n\n\n<p>But once you&#8217;ve done kind of what is considered the word press basics, you&#8217;ve added categories, you&#8217;ve added a featured image, you&#8217;ve written your blog post, you&#8217;ve hit publish. Already when you share it, it looks damn good. There&#8217;s maybe a little bit of setup, but if you haven&#8217;t set up an OG image template or an OG image template for a, for that post, [00:38:00] then at least when somebody shares it, they get the sitewide business card, like you&#8217;re describing it.</p>\n\n\n\n<p>But with the next step. Every post that gets created automatically has a business card, but has the title of that post built in. And then step three, you could essentially recreate reuse that same one, let&#8217;s say make it a square for Instagram. And so again, you&#8217;re going, up and out with all these things and it&#8217;s just a matter of how you use it.</p>\n\n\n\n<p>So like at post status, your. You&#8217;re going, okay. Baseline is an OG image, but we also then want and that&#8217;s gonna cover your LinkedIn and Facebook. But you&#8217;re like, but we need a square for Instagram. Copy. Change it to, I didn&#8217;t show you that part. So it&#8217;s like that we select that channel.</p>\n\n\n\n<p>You saw that the second image I created was for Instagram. You can actually change that live. So you could take a rectangle image, you could replicate it, so [00:39:00] now you&#8217;ve got another one. But you could say, now make this square and it&#8217;ll just change. And things might move around on the screen.</p>\n\n\n\n<p>So you might want to go tweak, tweak some of those sliders. But if you&#8217;ve already done the work once, copy change screen size.&nbsp;</p>\n\n\n\n<p>[00:39:14] <strong>Cory Miller:</strong> Okay, let me talk this through. From a marketing customer Perspective. So what I&#8217;ve gathered, cuz I want us to capture this for the market, my marketing work, but I&#8217;m, I need to say that out loud to you.</p>\n\n\n\n<p>So what this has done for me as the content marketer at Post status is it&#8217;s in my workflow. It&#8217;s creating I&#8217;ve said my templates, I&#8217;ve thought these things, o n g has helped me. Do those, think through those these are the basic things you can do to add value to your post.</p>\n\n\n\n<p>So it&#8217;s in my workflow. It&#8217;s great cuz I&#8217;m going to my post. I&#8217;m adding new podcast, new blog posts, whatever. I&#8217;ve already done this initial workflow work to set my templates that are there for me when I need it. It looks nice, [00:40:00] like it doesn&#8217;t look like shit. It looks nice. And then the third is it, this is just direct speed.</p>\n\n\n\n<p>It illuminates the value of the post better. I&#8217;m pulling out the things to showcase what the post actually is, so I&#8217;m enticing people to do that. The fourth I didn&#8217;t add down here though, is making it super easy to go off and share. So for marketing wise, right there, we talk to content marketers first.</p>\n\n\n\n<p>They&#8217;re already doing this work. Yep. It&#8217;s in your workflow. It&#8217;s gonna look nice. It&#8217;s gonna share, showcase the value of the landing page better, and then it&#8217;s easy to share.&nbsp;</p>\n\n\n\n<p>[00:40:43] <strong>Corey Maass:</strong> So that last mile talking about the last mile is the hardest mile. Is also an aspect that I think. Mar like marketers and marketing agencies, it&#8217;s going to make sense to [00:41:00] them that we don&#8217;t close the loop on actually publishing to your average person.</p>\n\n\n\n<p>I th I anticipate this being a discussion. This we&#8217;re gonna have to have over and over again. Corey, with his little music blog. In a perfect world, We would generate images for each channel and then we&#8217;d click a button that would say, push these to these channels. Yep. But it&#8217;s, but that is so a big, messy step.</p>\n\n\n\n<p>Yeah. And there are tools that already do it. And again, from a marketer or an agency is already going to be using a radar, a buffer, a hoot suite to queue up and publish this content.&nbsp;</p>\n\n\n\n<p>[00:41:59] <strong>Cory Miller:</strong> Yeah.[00:42:00] So I was thinking though, like your Instagram, I go, huh, when am I gonna use that? But the Vida bars company, Lindsay has an investment in helps.</p>\n\n\n\n<p>She&#8217;s got shampoo and conditioner bars. She primarily uses Instagram, right? So she&#8217;s creating a post, wants something that then she can download and just upload back to, that publishing option. They&#8217;re great services that do all that. To me, it&#8217;s yeah, we&#8217;ve handed it on the thing, now go use your tools, your workflows.</p>\n\n\n\n<p>Yeah. You&#8217;re already in that workflow. But man I think that&#8217;s awesome. Okay. I&#8217;ve only, sorry, I&#8217;ve only got four more minutes, but here&#8217;s my question to you. What do you think needs to happen for it to be ready for&nbsp;</p>\n\n\n\n<p>[00:42:39] <strong>Corey Maass:</strong> production on Postex? Like I said, I need to clean up some of these bugs and I am now going to, so I&#8217;ve already created options that, that post status based on the template you gave me, I think we&#8217;re [00:43:00] pretty much covered.</p>\n\n\n\n<p>Like we&#8217;ve got Google font support. You can upload a logo, you can pull in a title, and I am going to clean it all up so that it works and you stop seeing errors when you first install it. But I&#8217;ll make sure that essentially the first template covers. The post status template and I need to replicate it.</p>\n\n\n\n<p>Like I said I&#8217;ve been hacking away at the Sitewide version, and so I&#8217;ve done this a couple of times. I just need to copy all my updates over to the post version. And then you&#8217;ll have all the same features on for sitewide images or for post specific images. And then we&#8217;re, and then you can at least start messing around with it.</p>\n\n\n\n<p>Okay.&nbsp;</p>\n\n\n\n<p>[00:43:43] <strong>Cory Miller:</strong> Do I need to do a little bit more work for you, like sh on the post templates, take a podcast or whatever content we have and think through. I&#8217;d want to quote from here. I&#8217;d want the summary slide for here. Do you want me to do a little bit of that work? [00:44:00] Like with live action stuff and Google Slides?</p>\n\n\n\n<p>[00:44:02] <strong>Corey Maass:</strong> Yes. Like the more work you do thinking through these templates, I don&#8217;t think we&#8217;re gonna I&#8217;m not gonna be able to deliver most of it tomorrow, but we can create one, yeah. Or we can create the one that&#8217;s similar to the Sitewide business card that just covers your basics. It&#8217;s got a logo, it&#8217;s got the title.</p>\n\n\n\n<p>So it, and then you like, cuz I wanna get this to you so that you&#8217;re like, you are pub, you publish and you&#8217;re like, Hey Corey, I&#8217;m trying to publish this for tomorrow. I need X, Y, Z. I&#8217;m like, okay, now we have a real world scenario, let me go add that. Here&#8217;s&nbsp;</p>\n\n\n\n<p>[00:44:41] <strong>Cory Miller:</strong> what I&#8217;m gonna do. Then I&#8217;m just gonna think about, I get one featured image template thing.</p>\n\n\n\n<p>Yeah. And to just showcase the value of the post. And and work on a couple of thoughts with, I&#8217;ll take one post and start doing it. Maybe take another [00:45:00] one and start doing it, and then deliver that and go, Hey, I think these are the basics for that one thing. And that gets me huge way into showcasing the value post and everything else.</p>\n\n\n\n<p>Like you said, it&#8217;s crazy. Yep. With that. So I&#8217;ll&nbsp;</p>\n\n\n\n<p>[00:45:14] <strong>Corey Maass:</strong> do that. And then like I said, I mean we&#8217;ve I&#8217;ve set up the technical side of serving, of selling this thing using e D on the website. Yeah. So we need to start thinking about a homepage, cuz we&#8217;re not gonna be selling tomorrow.</p>\n\n\n\n<p>But you and I both know that the first version is 10 versions, in a day, or, in, within a week before we actually let something stay online. Yeah. We wanted you sent over a design you like and then we&#8217;ll but we need some words to start putting on that page. So start thinking about that.</p>\n\n\n\n<p>Okay. So&nbsp;</p>\n\n\n\n<p>[00:45:58] <strong>Cory Miller:</strong> really for me it&#8217;s [00:46:00] homepage and the post template.</p>\n\n\n\n<p>Okay. Can do. Awesome. Love it dude.&nbsp;</p>\n\n\n\n<p>[00:46:08] <strong>Corey Maass:</strong> Thank you. We&#8217;re so close. We&#8217;re so close.&nbsp;</p>\n\n\n\n<p>[00:46:12] <strong>Cory Miller:</strong> Yeah. Too, and I love the way we&#8217;re doing it. It&#8217;s like we have a live action thing that we&#8217;re making it better and I&#8217;m putting on the hat of actual users cuz I am Right. Helping formally, I think that&#8217;s such a good way to do product that sometimes has been a mismatch for me, but I&#8217;ve got the live action, thank you.&nbsp;</p>\n\n\n\n<p>[00:46:31] <strong>Corey Maass:</strong> Great. We&#8217;ll talk soon.</p>\n<p>This article was published at Post Status — the community for WordPress professionals.</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, 23 May 2023 20:14:22 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Cory Miller\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:67:\"Do The Woo Community: A Product Deep Dive with Wilson Favre-Delerue\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"https://dothewoo.io/?p=75190\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:50:\"https://dothewoo.io/sendcloud-shipping-automation/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:399:\"<p>In this episode we take a deeper look at Sendcloud with Wilson and what shipping automation means to a developer or freelancer.</p>\n<p>&gt;&gt; The post <a rel=\"nofollow\" href=\"https://dothewoo.io/sendcloud-shipping-automation/\">A Product Deep Dive with Wilson Favre-Delerue</a> appeared first on <a rel=\"nofollow\" href=\"https://dothewoo.io\">Do the Woo - a WooCommerce Builder Community</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, 23 May 2023 13:38: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:5:\"BobWP\";s: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:86:\"WPTavern: Gutenberg 15.8 Adds Pages Menu to Site Editor, Revisions UI to Global 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=145332\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:96:\"https://wptavern.com/gutenberg-15-8-adds-pages-menu-to-site-editor-revisions-ui-to-global-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:2667:\"<p><a href=\"https://make.wordpress.org/core/2023/05/20/whats-new-in-gutenberg-15-8-may-17/\">Gutenberg 15.8</a> was released with some exciting features that were included in the tentative <a href=\"https://wptavern.com/wordpress-6-3-development-kicks-off-to-conclude-gutenberg-phase-2\">WordPress 6.3 roadmap</a>. Users are getting closer to a more unified content editing experience with the addition of the Pages menu to the Site Editor. Clicking on Pages will load the ten most recently updated pages with a link to &#8220;Manage All Pages&#8221; at the bottom of the list. Users can quickly jump into editing content by selecting a page.</p>\n\n\n\n<img />\n\n\n\n<p>The interface also includes a little reminder about the nature of pages in WordPress: &#8220;<em>Pages are static and are not listed by date. Pages do not use tags or categories.</em>&#8221; It will be interesting to see how page editing in the Site Editor is received, whether it is too confusing for users to understand what they are editing, or whether the baseline expectation is that content can be edited anywhere. </p>\n\n\n\n<p>Revisions for design changes have landed in 15.8 with <a href=\"https://github.com/WordPress/gutenberg/pull/50089\">a basic UI inside the Global Styles panel</a>. It shows a timeline of saved changes along with who made the change, so users can easily revert back to previous design changes. This creates an extra cushion or safety net for those who are designing their own sites and should provide a greater level of user confidence when making design changes.</p>\n\n\n\n<img />\n\n\n\n<p>Version 15.8 also introduces <a href=\"https://github.com/WordPress/gutenberg/pull/50030\">theme previews for block themes</a>, a feature that has been sorely missing for early adopters of block themes. This is made possible by a new <code>theme_preview</code> parameter, which allows the user to see what the site would like if a different theme was active.</p>\n\n\n\n<p>A few other noticeable changes in this release include the following: </p>\n\n\n\n<ul>\n<li>Post Featured Image: New design for Replace and Remove buttons. (<a href=\"https://github.com/WordPress/gutenberg/pull/50269\">50269</a>)</li>\n\n\n\n<li>More intuitive Details block with summary and innerBlocks content. (<a href=\"https://github.com/WordPress/gutenberg/pull/49808\">49808</a>)</li>\n\n\n\n<li>List View: Allow dragging to all levels of the block hierarchy. (<a href=\"https://github.com/WordPress/gutenberg/pull/49742\">49742</a>)</li>\n</ul>\n\n\n\n<p>Check out the full <a href=\"https://make.wordpress.org/core/2023/05/20/whats-new-in-gutenberg-15-8-may-17/\">changelog</a> for all the details on enhancements and bug fixes in 15.8.</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, 23 May 2023 01:53:59 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:38;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"WPTavern: Shufflehound Releases Free Lemmony Child Theme for Agencies\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=145111\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:80:\"https://wptavern.com/shufflehound-releases-free-lemmony-child-theme-for-agencies\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3032:\"<p><a href=\"https://shufflehound.com/\">Shufflehound</a> made a big splash in March when it <a href=\"https://wptavern.com/lemmony-a-free-wordpress-block-theme-with-30-patterns\">released Lemmony</a>, a free WordPress block theme with more than 30 patterns. This was the company&#8217;s first block theme on WordPress.org and it is already active on more than 1,000 websites. Building on the success of this theme, Shufflehound has created a child theme for agencies.</p>\n\n\n\n<p>Lemmony Agency bears a strong resemblance to its parent theme but with more agency-specific patterns. This theme ships with 25 new custom block patterns, on top of the ones already included in Lemmony, for a total of more than 50 patterns.</p>\n\n\n\n<img />\n\n\n\n<p>The patterns unique to this theme suit agencies but would also work well for non-profits, advocacy, portfolios, or businesses of any kind. These include a hero with services, accordions for things like FAQ, counters, more pricing tables, services with icons or images, a blockified sidebar, testimonials, and more.</p>\n\n\n\n<img />\n\n\n\n<p>The theme&#8217;s creators have done an excellent job in organizing all the patterns available to users. Inside the pattern explorer/inserter, they have been separated into different panels for the patterns specific to the Lemmony Agency theme, the Lemmony patterns, and the Lemmony full-page patterns. This makes it easier to build pages, since users won&#8217;t have to hunt through all the patterns lumped together.</p>\n\n\n\n<img />\n\n\n\n<p>The Lemmony Companion plugin, recommended when users install the theme, adds a handful of custom blocks that some of the patterns rely on to work. It includes blocks for a counter, icon, post featured image caption, typing text, hero auto-slider, and accordion. </p>\n\n\n\n<img />\n\n\n\n<p>This might be the best way to ensure these features are styled exactly to match the theme and give users more creative control inside these particular blocks. Sometimes using third-party plugins to add sliders or icons can look like it&#8217;s bolted onto the design in an unsightly way. A companion plugin designated specifically for this theme makes sense in this instance.</p>\n\n\n\n<p>Shufflehound made an interesting choice creating Lemmony Agency as a child theme of what is already a very flexible multi-purpose theme. This certainly could have been shipped as full-page pattern but it would have also greatly expanded the patterns packaged with the parent theme. In these early days of block theming, it&#8217;s not yet clear what users might consider &#8220;pattern bloat&#8221; or too many patterns, especially since they can easily be categorized under various panels inside the explorer. </p>\n\n\n\n<p><a href=\"https://wordpress.org/themes/lemmony-agency/\">Lemmony Agency</a> is a solid option for building websites that need to showcase their services, display pricing, or simply maintain an informational web presence. It&#8217;s available for free from WordPress.org and will auto-install the parent theme at the same time.</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, 22 May 2023 20:35:03 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"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: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:93:\"WordCamp Central: SiteGround joins the WordPress global community sponsorship program in 2023\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:39:\"https://central.wordcamp.org/?p=3165350\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:118:\"https://central.wordcamp.org/news/2023/05/siteground-joins-the-wordpress-global-community-sponsorship-program-in-2023/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2491:\"<p>Please join us in welcoming <a href=\"https://siteground.com/wordpress-hosting.htm\">SiteGround</a> to the&nbsp;<a href=\"https://central.wordcamp.org/sponsor-multiple-wordcamps/\">2023 WordPress global community sponsorship program</a>! SiteGround’s pledge to sponsor all official WordPress community events (WordCamps, Meetups, and more) all around the world provides support and stability to our hardworking crew of volunteer event organizers. Thanks for everything, SiteGround!</p>\n\n\n<div class=\"wp-block-image\">\n<a href=\"https://central.wordcamp.org/files/2023/05/siteground-logo-black-transparent-400x81-2.png\"><img /></a></div>\n\n\n<p><a href=\"https://siteground.com/wordpress-hosting.htm\">SiteGround</a>&#8216;s hosting services are crafted to make managing websites easy, whether you&#8217;re building a site for yourself, your small business, or your clients.</p>\n\n\n\n<p>We host over 2.8 Million domain names on a powerful Google Cloud Platform infrastructure, optimized with an array of in-house tools for seamless, faster and more secure WordPress performance:</p>\n\n\n\n<p></p>\n\n\n\n<ul>\n<li>Fast: Choose from multiple data centers across USA, Europe, Asia, and Australia, complemented by over 170 CDN edge network locations with our free CDN to improve website performance. Powerful built-in Caching, custom PHP setup, and SiteGround Optimizer plugin for WordPress to make your sites up to 5 times faster right out of the box.</li>\n\n\n\n<li>Secure: Advanced security on server, website, and application level with a free SSL, advanced built-in Web Application Firewall, SiteGround Security plugin, in-house antispam protection and AI-powered anti-bot system to keep your websites safe.</li>\n\n\n\n<li>Easy to manage: Build or transfer WordPress projects in a few clicks with our WordPress Starter and Automatic website and Email Migrators. Manage multiple sites in one place hassle-free, get automatic core and plugin updates, add team collaborators, ship sites to clients, manage white-label hosting, and many more handy features to keep all the control, but spare you the hassle of website management.</li>\n</ul>\n\n\n\n<p>Our long-term expertise in helping WordPress users succeed online extends into our award-winning <a href=\"https://www.siteground.com/wordpress-plugins/siteground-optimizer\">SiteGround Optimizer</a> and <a href=\"https://www.siteground.com/wordpress-plugins/siteground-security\">SiteGround Security</a>; plugins, free to download and install on any hosting platform.</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, 22 May 2023 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:6:\"Isotta\";s: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:84:\"WordPress.org blog: WP Briefing: Episode 56: What to Know About WordPress Playground\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=14968\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:86:\"https://wordpress.org/news/2023/05/episode-56-what-to-know-about-wordpress-playground/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:16989:\"<p>Join guest host Rich Tabor and WordPress Playground innovator Adam Zielinski as they discuss the capabilities and promise of WP Playground in episode 56 of the WordPress Briefing. Stay tuned for your small list of big things coming up in the next two weeks.</p>\n\n\n\n<p><em><strong>Have a question you’d like answered? You can submit them to&nbsp;<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 class=\"wp-block-heading\">Credits</h2>\n\n\n\n<p>Host: <a href=\"https://profiles.wordpress.org/chanthaboune/\">Josepha Haden Chomphosy</a><br />Guests: <a href=\"https://profiles.wordpress.org/richtabor/\">Rich Tabor</a> and <a href=\"https://profiles.wordpress.org/zieladam/\">Adam Zielinski</a><br />Editor:&nbsp;<a href=\"https://profiles.wordpress.org/dustinhartzler/\">Dustin Hartzler</a><br />Logo:&nbsp;<a href=\"https://profiles.wordpress.org/javiarce/\">Javier Arce</a><br />Production:&nbsp;<a href=\"https://profiles.wordpress.org/bjmcsherry/\">Brett McSherry</a> and <a href=\"https://profiles.wordpress.org/eidolonnight/\">Nicholas Garofalo</a><br />Song: Fearless First by Kevin MacLeod</p>\n\n\n\n<h2 class=\"wp-block-heading\">Show Notes</h2>\n\n\n\n<ul>\n<li><a href=\"https://developer.wordpress.org/playground/\">WordPress Playground</a> and the <a href=\"https://github.com/WordPress/wordpress-playground\">Playground Github repo</a></li>\n\n\n\n<li><a href=\"https://gliwice.wordcamp.org/2023/\">WordCamp Gliwice</a> </li>\n\n\n\n<li><a href=\"https://europe.wordcamp.org/2023/\">WordCamp Europe 2023</a>, <a href=\"https://europe.wordcamp.org/2023/contributor-day/\">Contributor Day,</a> and <a href=\"https://europe.wordcamp.org/2023/presenting-wp-connect/\">WP Connect</a></li>\n\n\n\n<li><a href=\"https://wordpress.slack.com/archives/C04EWKGDJ0K\">#meta-playground</a> in the <a href=\"https://make.wordpress.org/chat/\">Making WordPress Slack</a></li>\n\n\n\n<li><a href=\"https://chat.openai.com/\">ChatGPT</a></li>\n\n\n\n<li><a href=\"https://woocommerce.com/\">WooCommerce</a></li>\n\n\n\n<li><a href=\"https://www.cloudfest.com/\">CloudFest</a> and <a href=\"https://profiles.wordpress.org/danielbachhuber/\">Daniel Bachhuber</a></li>\n\n\n\n<li>The <a href=\"https://wordpress.org/news/feed/blank\">Kim Parsell Memorial Scholarship</a> for travel to WordCamp US 2023</li>\n\n\n\n<li>Find your closest location for a <a href=\"https://wp20.wordpress.net/\">WordPress 20th Anniversary celebration</a></li>\n\n\n\n<li><a href=\"https://us.wordcamp.org/2023/wordcamp-us-2023-programming-team-announcement/\">Changes to the WCUS event for 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">Transcript</h2>\n\n\n\n<span id=\"more-14968\"></span>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:00:00]</strong></p>\n\n\n\n<p>(Intro music)</p>\n\n\n\n<p>Hello everyone, and welcome to the WordPress Briefing, the podcast where you can catch quick explanations of the ideas behind the WordPress Open Source project, some insight into the community that supports it, and 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>(Intro continues)</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:00:40]</strong></p>\n\n\n\n<p>Today we&#8217;re gonna spend a little time talking about WP Playground. This is a project that debuted at State of the Word in December 2022, but it was demoed for me about a month prior in November.</p>\n\n\n\n<p>I was, and remain, absolutely floored by the potential future applications, as well as the innovative thinking behind it. So I&#8217;ve invited a couple of excellent WordPress futurists to the show today so that we can listen in on their conversation.</p>\n\n\n\n<p>Welcome guys.</p>\n\n\n\n<p><strong>[Rich Tabor 00:01:07]</strong></p>\n\n\n\n<p>Hey everyone, I&#8217;m Rich Tabor, and I&#8217;m here today with Adam Zielinski to talk about WordPress Playground. So for those of you who don&#8217;t know what WordPress Playground is, can you tell us a little bit more about it, Adam?</p>\n\n\n\n<p><strong>[Adam Zielinski 00:01:18]</strong></p>\n\n\n\n<p>Absolutely. WordPress Playground is WordPress that works in your browser like there&#8217;s no server with PHP or database like there&#8217;s just your browser and JavaScript, and you can run it in so many more places that we’ll all get to. For example, I just came back from WordCamp Gliwice, where on a Contributor Day, a couple of developers got set up with WordPress in just a couple of minutes, whereas normally, it can take hours to do that.</p>\n\n\n\n<p><strong>[Rich Tabor 00:01:44]</strong></p>\n\n\n\n<p>Yeah, that&#8217;s, that&#8217;s pretty impressive. Do you think that, particularly for WordCamps and other demo-type areas, this would be something that&#8217;s very useful? Or what do you think would be the other problems that could be solved with WordPress Playground?</p>\n\n\n\n<p><strong>[Adam Zielinski 00:01:55]</strong></p>\n\n\n\n<p>Playground solves one primary problem, and that is WordPress is pretty difficult to get started with. I&#8217;m not even talking about creating your website, but let&#8217;s say, someone told you there&#8217;s this WordPress thing that you should try. Well, you Google for it, and you find installation instructions, and there&#8217;s like three hours of work for you there.</p>\n\n\n\n<p>So then maybe you&#8217;ll find a hosting company, and you have to pay some money. So with WordPress Playground, you can actually try it for free because there&#8217;s no cost to run it. It just runs on your device. If you&#8217;re a developer, and you want to start learning WordPress, normally you have to go through quite an extensive setup process, and there are some tools to make it easier, but maybe there&#8217;s still friction like you have to even own a computer, like a PC device or a Mac. Playground can run on your phone, and it can power interactive tutorials that you can use and just start learning there and there with zero setup.</p>\n\n\n\n<p>Like if you work on a product team and someone asks you to test a code change, with Playground you can just click a link and test it with no infrastructure behind it. And if you&#8217;re a company creating a plugin, you can just show your plugin in a live demo to people. And this isn&#8217;t something many plugins are doing because it&#8217;s quite hard to get a live demo set up.</p>\n\n\n\n<p><strong>[Rich Tabor 00:03:12]</strong></p>\n\n\n\n<p>Ah, that&#8217;s pretty impressive. So, you know, amongst like tutorials, code changes for developer environments, the mobile application running, do you think that, since there&#8217;s such a wide brevity of ideas that WordPress Playground can kind of plug into, would this be more of a developer tool?</p>\n\n\n\n<p>Is that right? Or is Playground more of a like a click and play-type application that can run anywhere and demo anything?</p>\n\n\n\n<p><strong>[Adam Zielinski 00:03:36]</strong></p>\n\n\n\n<p>I&#8217;d say it&#8217;s both, but it&#8217;s more transparent for the users. So there are a whole lot of things you can do with Playground as a developer, as I just mentioned. But who are you doing these things for? Well, some of them are for the users, as in live demos, or there&#8217;s a WordCamp Europe coming, and I know some people are doing workshops there. They are going to use Playground to get everyone set up. So now that&#8217;s, well, maybe a workshop that teaches you how to build a theme, for example, right? Now you can just get started without any setup process. So there&#8217;s both, it&#8217;s very useful for development teams, and it&#8217;s very useful for them to build stuff for the final users.</p>\n\n\n\n<p><strong>[Rich Tabor 00:04:21]</strong></p>\n\n\n\n<p>That&#8217;s great. I know you, and I have probably both been in the same scenario at WordCamps when you&#8217;re trying to get dev environments set up, and it takes, you know, the better half of the workshop to get to step one. So this is really gonna be interesting to see it, especially at WordCamp Europe, and to see it getting into action.</p>\n\n\n\n<p>Are you planning on going to WordCamp Europe this year?</p>\n\n\n\n<p><strong>[Adam Zielinski 00:04:39]</strong></p>\n\n\n\n<p>Absolutely, I will have a table at Contributor Day, a WordPress Playground table. So yeah, everyone&#8217;s invited to come over. I&#8217;ll show you a lot of cool stuff. And then at WP Connect on Saturday at 10:00 AM, there will be a WordPress Playground session where you&#8217;ll be able to learn more and see some cool demos.</p>\n\n\n\n<p>And this will be a conversational format, so we&#8217;ll just have a nice chat.</p>\n\n\n\n<p><strong>[Rich Tabor 00:05:01]</strong></p>\n\n\n\n<p>Super cool. So how else can people find out a little bit more info about Playground and perhaps even get involved and contribute to the project?</p>\n\n\n\n<p><strong>[Adam Zielinski 00:05:08]</strong></p>\n\n\n\n<p>There&#8217;s a developer.WordPress.org/playground website. There&#8217;s a link in a show notes where you&#8217;ll be able, like this is the perfect entry point to the entire rabbit hole of WordPress Playground.</p>\n\n\n\n<p>There&#8217;s a quite a few projects under the WordPress Playground umbrella, and they all live in a single GitHub repository where you can just find any issue that interests if you want to contribute and just start contributing. Also, there&#8217;s a Slack channel in WordPress org space called #meta-playground, and I highly encourage everyone interested in coming over to say hi.</p>\n\n\n\n<p>And probably one of the best places to ask questions and get acquainted with the community.</p>\n\n\n\n<p><strong>[Rich Tabor 00:05:54]</strong></p>\n\n\n\n<p>Oh, that&#8217;s great; I&#8217;m very intrigued about the project overall. I think that there&#8217;s an immense amount of potential, for WordPress Playground. Just last question here, like, where do you see the future of this project going? What is the most interesting application that hasn&#8217;t been done yet, or the things that are really gonna be the next level in unlocking Playground for everyone?</p>\n\n\n\n<p><strong>[Adam Zielinski 00:06:12]</strong></p>\n\n\n\n<p>There&#8217;s quite a few. Imagine being able to go to WordPress.org and have a WordPress demo right then and there without having to download anything. Then you customize it, and you have a button to host your website anywhere or just to download it.</p>\n\n\n\n<p>Imagine having a live preview for all the themes and plugins in the directory and even in WordPress core, but these are sooner than later. Maybe like, let&#8217;s talk more grandiose, shall we? So there&#8217;s this term, 1 billion new users coming online in the next, like in the nearest future, and plenty of them doesn&#8217;t even own a desktop device. Maybe they have a mobile phone, maybe they have a tablet, maybe we&#8217;re talking about a young, prospective developer somewhere. And currently, if you don&#8217;t own a desktop device, you cannot contribute to the WordPress plugin ecosystem at all.</p>\n\n\n\n<p>Like, we&#8217;re seeing more and more of creating themes with no code, which is really exciting. But you cannot build the plugin, really. Well, with WordPress Playground. Suddenly you can do development on a mobile device. So development tools and code editors and just the entire suite of things we use as the developers on our desktop of devices like this may come online and be available in your browser.</p>\n\n\n\n<p>And if you&#8217;re on a train and you just have a phone with you, but you still want to learn, how to build a plugin, well, you&#8217;ll be able to do that. Furthermore, there&#8217;s a lot of exciting opportunities with ChatGPT, as in, well, here&#8217;s a WordPress running entirely on your device. So maybe if that&#8217;s connected to ChatGPT, you&#8217;ll be able to say, well, I like fish, or like, I want two columns and a photo of a racing car on top of it.</p>\n\n\n\n<p>And because ChatGPT can output HTML, we connect the two, and suddenly, you can build a website entirely in your browser using natural language.</p>\n\n\n\n<p><strong>[Rich Tabor 00:08:20]</strong></p>\n\n\n\n<p>Man, that&#8217;s, that&#8217;s really interesting. It really does unlock the next, potentially the next like, wave of innovation in the WordPress experience, especially removing all the complications of getting set up and actually seeing what&#8217;s there. I think that it really could, be huge for users every day.</p>\n\n\n\n<p><strong>[Adam Zielinski 00:08:38]</strong></p>\n\n\n\n<p>Oh, here&#8217;s one more. So, edge computing is big lately, and it&#8217;s going to be bigger in the future. WordPress Playground runs on this new technology called Web Assembly, and it just happened so that a bunch of edge computing providers allows you to run web assembly on their gear. So imagine having WordPress running entirely in edge infrastructure with no centralized server.</p>\n\n\n\n<p>Truly decentralized WordPress. It could be big for a well cost of operating, but also for speed, but also even further down in the future. Imagine downloading the actual, you know, even WordPress around time to your device and having the entire website on your phone. So then you know, you&#8217;re on a train, you enter a tunnel, but you can still browse that WooCommerce store and add things to your cart even though there is no range at all.</p>\n\n\n\n<p><strong>[Rich Tabor 00:09:32]</strong></p>\n\n\n\n<p>Wow, that&#8217;s, that&#8217;s pretty crazy. How far out there do you think something like that is?</p>\n\n\n\n<p><strong>[Adam Zielinski 00:09:37]</strong></p>\n\n\n\n<p>It&#8217;s hard to tell. I mean, technically, it is possible. There are a lot of challenges with regard to privacy, right? And data security for the edge computing case specifically. As for the development tools, there was a Cloud Fest hackathon earlier this year where I was with Daniel Bachhuber, also from Automattic, and we led this exciting project that brought the WordPress development environment into the browser using a couple of editors that are out there, and this is too much of an MVP for actual production use yet, but we got it working, and we build an actual plugin on a phone without internet access.</p>\n\n\n\n<p><strong>[Rich Tabor 00:10:19]</strong></p>\n\n\n\n<p>Wow. And that was just a hackathon, just hacking at it to see what you can get.</p>\n\n\n\n<p><strong>[Adam Zielinski 00:10:23]</strong></p>\n\n\n\n<p>Yeah, it was two and a half days.</p>\n\n\n\n<p><strong>[Rich Tabor 00:10:25]</strong></p>\n\n\n\n<p>Oh, that&#8217;s awesome. That&#8217;s really cool, man. Well, this has been quite a pleasure. Thanks, Adam, for chatting all about WordPress Playground. Folks, just be sure to check out developer.WordPress.org/playground to explore, experiment, and play with WordPress Playground.</p>\n\n\n\n<p>This has been awesome, Adam.</p>\n\n\n\n<p><strong>[Adam Zielinski 00:10:43]</strong></p>\n\n\n\n<p>Thank you so much for having me, Rich.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:10:45]</strong></p>\n\n\n\n<p>What a remarkable new way of working with and experiencing WordPress. I would love to be able to find ways across the project and ecosystem to help folks see what they&#8217;re getting into before they get into it, but also, who knows what the future holds for that project. Keep an eye on it.</p>\n\n\n\n<p>(Musical interlude)</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:11:10]</strong></p>\n\n\n\n<p>That brings us to our small list of big things happening right now in the WordPress project. The first one is that the Kim Parel Memorial Scholarship for WordCamp US 2023 is open, and applications for it are the WordPress Foundation will once again be offering that scholarship for Travel to WordCamp US.</p>\n\n\n\n<p>It is for specifically for women in technology, women in the WordPress space. I&#8217;ll include a link to that in the show notes.</p>\n\n\n\n<p>The second thing is WordPress&#8217; 20th anniversary is still coming, as we heard in the last podcast.</p>\n\n\n\n<p>So we have reached over 100 events that are scheduled on or around May 27th, which is WordPress’ launch date. There is still time to find your closest location and attend one of those events. And probably, there&#8217;s also time to pull together an event of your own. Head on over to wp20.WordPress.net if you would like to see events in your area.</p>\n\n\n\n<p>And the third thing is WordCamp US 2023. I realize WordCamp Europe comes before that, but the programming team actually has a really interesting thing that they&#8217;re doing this year. They have some changes to the way that they are organizing the event and finding speakers for the event. But as always, they are working very hard to make sure it is an attendee-focused event.</p>\n\n\n\n<p>I&#8217;m gonna include a link or two to some announcements that are really worthwhile there. Head on over to the podcast page to see those. And that, my friends, is your small list of big things. Thank you for tuning in today for the WordPress Briefing. I&#8217;m your host, Josepha Haden Chomphosy. Thanks again to my guests, and I&#8217;ll see y&#8217;all in a couple of weeks.&nbsp;</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, 22 May 2023 12: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:17:\"Nicholas Garofalo\";s: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:98:\"Gutenberg Times: Gutenberg Changelog #83 – WordPress 6.2.1, Gutenberg 15.7, 15.8 and experiments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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://gutenbergtimes.com/?post_type=podcast&p=24228\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:90:\"https://gutenbergtimes.com/podcast/gutenberg-changelog-83-wordpress-gutenberg-experiments/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:64666:\"<p>Fabian Kägy and Birgit Pauli-Haack discuss the new enhancements in Gutenberg plugin releases 15.7 and 15.8 as well as the Experiments available in the plugin.</p>\n\n\n\n<p><a href=\"https://gutenbergtimes.com/podcast/gutenberg-changelog-83-wordpress-gutenberg-experiments#shownotes\">Show Notes</a> / <a href=\"https://gutenbergtimes.com/podcast/gutenberg-changelog-83-wordpress-gutenberg-experiments/#transcript\">Transcript</a></p>\n\n\n\n<ul>\n<li>Music:&nbsp;<a href=\"https://soundcloud.com/xirclebox\">Homer Gaines</a></li>\n\n\n\n<li>Editor:&nbsp;<a href=\"https://www.linkedin.com/in/sandy-reed/\">Sandy Reed</a></li>\n\n\n\n<li>Logo:&nbsp;<a href=\"https://markuraine.com/\">Mark Uraine</a></li>\n\n\n\n<li>Production:&nbsp;<a href=\"https://icodeforapurpose.com\">Birgit Pauli-Haack</a></li>\n</ul>\n\n\n\n<p class=\"has-larger-font-size\"></p>\n\n\n\n<h2 class=\"wp-block-heading\">Special Guest: Fabian Kägy </h2>\n\n\n\n<ul>\n<li>Twitter: <a href=\"https://twitter.com/fabiankaegy\">@fabianjaegy</a></li>\n\n\n\n<li>WordPress Profile: <a href=\"https://profiles.wordpress.org/fabiankaegy/\">@fabiankaegy</a></li>\n\n\n\n<li>Personal website: <a href=\"https://fabian-kaegy.com/\">fabian-kaegy.com</a></li>\n\n\n\n<li><a href=\"https://gutenbergtimes.com/podcast/gutenberg-changelog-59-extensibility-of-the-block-editor/\">Gutenberg Changelog #59 – Gutenberg 12.4, Developer Hours, Extensibility of the Block Editor and more</a></li>\n\n\n\n<li><a href=\"https://gutenberg.10up.com/\">10up Gutenberg Best Practices!</a></li>\n\n\n\n<li><a href=\"https://www.npmjs.com/package/@10up/block-components\">10up Block Components</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">Announcements</h2>\n\n\n\n<ul>\n<li><a href=\"https://developer.wordpress.org/news/2023/05/whats-new-for-developers-may-2023/\">What’s new for developers? (May 2023)</a></li>\n\n\n\n<li><a href=\"https://developer.wordpress.org/news/2023/04/how-webpack-and-wordpress-packages-interact/\">How webpack and WordPress packages interact</a></li>\n\n\n\n<li><a href=\"https://developer.wordpress.org/news/2023/04/per-block-css-with-theme-json/\">Per-block CSS with theme.json</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/test/2023/05/04/fse-program-build-a-block-theme-summary/\">FSE Program Build a Block Theme Summary</a><a href=\"https://make.wordpress.org/test/2023/05/11/fse-program-front-page-fun-summary/\">FSE Program Front Page Fun Summary</a></li>\n\n\n\n<li><a href=\"https://wptavern.com/wordpress-themes-team-releases-stacks-a-community-theme-for-building-slide-decks\">WordPress Themes Team Releases Stacks: A Community Theme for Building Slide Decks</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">What&#8217;s released</h2>\n\n\n\n<h3 class=\"wp-block-heading\">WordPress 6.2.1 + 6.2.2</h3>\n\n\n\n<ul>\n<li><a href=\"https://wordpress.org/news/2023/05/wordpress-6-2-1-maintenance-security-release/\">WordPress 6.2.1 Maintenance &amp; Security Release</a></li>\n\n\n\n<li><a href=\"https://wordpress.org/news/2023/05/wordpress-6-2-2-security-release/\">WordPress 6.2.2 Security Release</a></li>\n\n\n\n<li><a href=\"https://wptavern.com/wordpress-6-2-2-restores-shortcode-support-in-block-templates-fixes-security-issue\">WordPress 6.2.2 Restores Shortcode Support in Block Templates, Fixes Security Issue</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\">Gutenberg 15.7</h3>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/05/04/whats-new-in-gutenberg-15-7-03-may/\">What’s new in Gutenberg 15.7? (03 May)</a></li>\n\n\n\n<li><a href=\"https://wptavern.com/gutenberg-15-7-adds-site-logo-upload-to-inspector-controls\">Gutenberg 15.7 Adds Site Logo Upload to Inspector Controls</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\">Gutenberg 15.8</h3>\n\n\n\n<p><a href=\"https://make.wordpress.org/core/2023/05/20/whats-new-in-gutenberg-15-8-may-17/\">What’s new in Gutenberg 15.8? (May 17)</a></p>\n\n\n\n<h2 class=\"wp-block-heading\">Experiments in Gutenberg</h2>\n\n\n\n<table><tbody><tr><th>Zoomed out view</th><td>&nbsp;Test a new zoomed out view on the site editor (Warning: The new feature is not ready. You may experience UX issues that are being addressed) (<a href=\"https://github.com/WordPress/gutenberg/pull/41156\">#41156</a>)</td></tr><tr><th>Color randomizer</th><td>&nbsp;Test the Global Styles color randomizer; a utility that lets you mix the current color palette pseudo-randomly. (<a href=\"https://github.com/WordPress/gutenberg/pull/40988\">#40988</a>)</td></tr><tr><th>Command center</th><td>Test the command center; Open it using cmd + k in the site or post editors. (<a href=\"https://github.com/WordPress/gutenberg/pull/50128\">#50128</a>)</td></tr><tr><th>Grid variation for Group block</th><td>&nbsp;Test the Grid layout type as a new variation of Group block. (<a href=\"https://github.com/WordPress/gutenberg/pull/49018\">#49018</a>)</td></tr><tr><th>Details block</th><td>&nbsp;Test the Details block (<a href=\"https://github.com/WordPress/gutenberg/pull/49808\">#49808</a>)</td></tr><tr><th>Block Theme Previews</th><td>&nbsp;Enable Block Theme Previews (<a href=\"https://github.com/WordPress/gutenberg/pull/50030\">#50030</a>)</td></tr><tr><th>Navigation block</th><td>&nbsp;Test the Navigation block using the Interactivity API (<a href=\"https://github.com/WordPress/gutenberg/pull/50041\">#50041</a>)</td></tr></tbody></table>\n\n\n\n<p class=\"has-large-font-size\">Stay in Touch</p>\n\n\n\n<div class=\"wp-block-group is-layout-flow wp-block-group-is-layout-flow\"><div class=\"wp-block-group__inner-container\">\n<ul>\n<li>Did you like this episode? <a href=\"https://lovethepodcast.com/gutenbergchangelog\"><strong>Please write us a review </strong></a></li>\n\n\n\n<li>Ping us on Twitter or send DMs with questions. <a href=\"https://twitter.com/gutenbergtimes\">@gutenbergtimes </a>and <a href=\"https://twitter.com/bph\">@bph</a>.</li>\n\n\n\n<li><em>If you have questions or suggestions, or news you want us to include, send them to <a href=\"mailto:changelog@gutenbergtimes.com\">changelog@gutenbergtimes.com</a>. </em></li>\n\n\n\n<li><em>Please write us a review on iTunes! <a href=\"https://gutenbergtimes.com/itunes/\">(Click here to learn how)</a></em></li>\n</ul>\n</div></div>\n\n\n\n<p class=\"has-large-font-size\" id=\"transcript\">Transcript </p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Hello and welcome to our 83rd episode of the Gutenberg Changelog Podcast. In today&#8217;s episode, we will talk about WordPress Point Release, 6.2.1, Gutenberg 15.8, and of course the previous one, Gutenberg 15.7 as well, and some of the experiments featured hiding in the Gutenberg plugin. I&#8217;m your host, Birgit Pauli-Haack, curator of the Gutenberg Times and WordPress developer advocate, and a full-time core contributor for the WordPress Open Source project.&nbsp;</p>\n\n\n\n<p>I&#8217;m so happy to have, again, Fabian Kägy back on the show. It&#8217;s been a while since we talked and so much happened. We just found out, it was the episode 59 and it was in February 2022, well, it&#8217;s a whole world happened in between. So for our new listeners, Fabian Kägy is the Associate Director of Editorial Engineering at 10up and a core contributor to the Gutenberg project since 2017, I think. So welcome back on the show, Fabian. How are you today?</p>\n\n\n\n<p><em>Fabian Kägy</em>: Thank you so much for having me. I&#8217;m excited to be back on this.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: I&#8217;m glad you&#8217;re here. So I have to ask, editorial engineering, what does that entail at the agency 10up?</p>\n\n\n\n<p><em>Fabian Kägy</em>: So that is a special, in quotation marks, &#8220;made up role&#8221;, where I started down the path of a front end engineer and over time became more and more passionate about all things editorial experience. So that is now a special role where I get to focus part of my time on actually coming up with best practices and solutions for working with a block editor and helping the entire team level up and carved out my niche.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: That&#8217;s awesome, especially because in view of the next phase of Gutenberg where it is actually all about collaboration on an editorial team, so making that a smooth experience is definitely something we all will be working on for when 6.3 come out, I think. Your input will be invaluable for your clients, as well as for the team, I think.</p>\n\n\n\n<p><em>Fabian Kägy</em>: Yes. I&#8217;m very, very excited about all the things that are lined up for all of us to work on and to explore, and it&#8217;ll be fun.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: So with the developer blog, I&#8217;m part of the editorial team that does reviews and works with writers. Once in a while, we start out with Google Docs and have everybody comment on it. Some writers say, &#8220;Well, I&#8217;m waiting for that moment where I don&#8217;t have to use Google Docs anymore to collaborate with people on a post and not have to copy/paste it over.&#8221; So we are very much looking forward to that collaboration and we will be eating the Gutenberg dog food, so to speak, on the developer blog.&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;&nbsp;</p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Announcements</strong></h3>\n\n\n\n<p>Speaking of the developer blog, Justin Tadlock just published the What&#8217;s New for Developers in May 2023 on the developer blog, and that&#8217;s a series of roundup posts that were started in February, where we look at all the publications that come out throughout the month, what&#8217;s new in core, the Gutenberg plugin, the keeping up with Gutenberg index page, and so much more, and just pick those things that are relevant for developers not to teach them how to use them, but more like, &#8220;Watch out, this is coming,&#8221; and prepare them for an X release pretty much.&nbsp;</p>\n\n\n\n<p>The main one has quite a few items in there that are highlighted there. One is the Block Selectors API, which has definitely the markup of a larger tutorial, but it got quite a few developers excited about CSS and their blocks and being more in control of it. Another one as we will also talk about it is the first community theme and all things. So it&#8217;s pretty much a roundup of a lot of things that are interesting for extenders like plugins, developers, theme developers, and also agency developers.</p>\n\n\n\n<p>So we share the latest blog post link in the show notes, but if you haven&#8217;t looked at those yet, and if you&#8217;re a developer, subscribe to the feed of the developer blog or just for the roundup post so you get a heads up on many things.</p>\n\n\n\n<p><em>Fabian Kägy</em>: I would highly encourage everybody to take a look at those because they&#8217;re super valuable, just quick shares of what&#8217;s going on, what are the things to look out for, and even if you&#8217;re not developing for the actual experimental Gutenberg plugin, it is something. It makes it so much easier when the next big WordPress update comes around to know what&#8217;s in the pipeline, what are the things that are being talked about and already have some grasp of just what&#8217;s coming.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Well, thank you so much. Justin does a great job in putting it all together and also shares some resources that are available on Learn WordPress. Then there were two new posts since we had the last show. There was one on how Webpack and WordPress packages interact by Ryan Welcher. That really gets you a little bit more theory around how WordPress and Webpack work together. For those that are not like me, I trust the things &#8230; I trust in God. I trust in things that if I put an NPM, run something, that it&#8217;s all going to work out, but some people want to really dive into Webpack some more and this gives them a great introduction to that. How are you doing with Webpack? Are you manipulating Webpack for your own development?</p>\n\n\n\n<p><em>Fabian Kägy</em>: So I used to do it a lot, especially in the early days of the WordPress Scripts package. There were so many things that were not yet a part of it, and I was very actively adding hacky solutions to add post CSS and all of those SaaS things to WordPress Scripts. That was my introduction to actually working with Webpack. Now, WordPress Scripts takes care of most of our needs or for some of the things, we have a similar tool at 10up that is a helper so we don&#8217;t have to deal with custom Webpack configurations.</p>\n\n\n\n<p>I read through that post from Ryan about how that interacts, and it&#8217;s a really solid deep dive. If you want to understand the areas, the inner workings of how some of these Webpack plugins interact, which you don&#8217;t need to, but if you want to, that is very, very useful.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Then the other blog post was the per-block CSS with theme.json. The per-block CSS came out out of feedback from the community that custom CSS were not available anymore to put in custom CMS for the block themes and for sites, and it was introduced with 6.2, but it also needs some additional handle. Justin wrote a blog post about it, how best to think about per-block CSS with theme.json without getting too deep into the weeds and how that&#8217;s offered to the user. So definitely read up about it.&nbsp;</p>\n\n\n\n<p>For the FSE program, Anne published two summary posts and you make your part of coffee first because they&#8217;re both very long but also very detailed from the latest testing calls. One was Build Your Block Theme with the great block theme plugin and the other one was the testing call 21 for the FSE program for the front page fund summary. There will be a new testing call coming out of the FSE program.</p>\n\n\n\n<p>So if you are into block themes and users use them and all that, it&#8217;s definitely a good overview on what are the pain points, what are the team working on because Anne is very, very thorough in adding to all pain points or discussion points, also the PRs or the issue that is on GitHub about that particular topic. So you can chime in with your opinions, with your experiences, and with your testing, and it would really help if you chime in and be encouraged to actually be part of the testing project. That&#8217;s it.&nbsp;</p>\n\n\n\n<p>Of course, we share all the links in the show notes for this episode.&nbsp;</p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Community Contributions</strong></h3>\n\n\n\n<p>Another great announcement and community contribution is the first theme coming out of the community theme project where community members and team members are working together on creating block themes and the first one is called Stacks. It&#8217;s a theme with which you can build slide decks. It&#8217;s a very interesting approach to a website that is more a slide deck rather than have navigation from page to page to page. It&#8217;s more like a guided tool that you can use it or you can use it for your next presentation, but you don&#8217;t have to use a third-party tool for that if you want to spin up a website and just use it for your presentation.&nbsp;</p>\n\n\n\n<p>It&#8217;s quite interesting to see how that comes together. The code is certainly available on GitHub and we share both the announcement post, as well as the write up by Sarah Gooding on the WP Tavern for you.</p>\n\n\n\n<p><em>Fabian Kägy</em>: These explorations and these themes and plugins that allow you to build your slide deck in the block editor, I&#8217;m always amazed when I see that. I think a couple of years ago, Ella was maybe one of the first ones who did talk at a React conference and blew my mind in the end when they revealed, &#8220;Hey, and all of this was created in the block editor and these slides are powered by it.&#8221; I think Nick Diego also did it at WordCamp US or at WordCamp and it&#8217;s always pretty cool to see.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: You&#8217;re right. Nick Diego did it at WordCamp US for his talk, Build A Block in 15 minutes, and he built actually that slide back there as well. It&#8217;s very interesting how this can be used on your own website. Yes, Ella had a slide. It was actually a block that she added. I think it was the same for Nick Diego and now we have a theme for it. So it&#8217;s really cool.&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;&nbsp;</p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>What’s Released</strong></h3>\n\n\n\n<p>All right. That brings us into what&#8217;s released and, of course, let&#8217;s start with the minor release for WordPress, the 6.2.1 Point Release that just came out this week and there were a few hiccups there. Do you want to talk about this and what&#8217;s happening there?</p>\n\n\n\n<p><em>Fabian Kägy</em>: Sure. So 6.2.1 was released, I believe it was at some point early this week. One thing, there was a security issue that the security team took care of and made sure that that gets resolved as quickly as possible, but that security issue essentially resulted in short codes no longer working in block templates. So in a block-based theme, if you have a short code inside a block template, that will no longer actually get converted to the dynamic data. That has caused some issues for folks, especially around auto updates because it&#8217;s just a minor patch release, but it is breaking some existing sites, which as always, it is a very difficult choice to make and a very unfortunate thing when that has to happen because of security thing.&nbsp;</p>\n\n\n\n<p>There is an open issue in track where a lot of this is getting discussed right now, and it was discussed in the core chat yesterday, where essentially, it is very unfortunate when something like that has to happen. From my perspective, I think the team, if there is a security issue, that is the only thing that can be done. The only thing that I think we as a community can try to be a little better at is communicating those types of things ahead so folks are more aware of that, &#8220;Hey, we needed to make a difficult decision here. Beware, you should make this update, but here are some things that you can do instead to help your site still be up there,&#8221; because the communication around the issue could have been a little better.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: I don&#8217;t think there&#8217;s no maybe about it, but it was a little obscure in the change log and it wasn&#8217;t saying, &#8220;Okay. It&#8217;s going to break sites,&#8221; but I think it&#8217;s really hard to also suggest a solution right now. So Jean Baptist Audras was one of the release leads together with George Mamadoshvilli, and he wrote in the core dev chat on Wednesday night, &#8220;The release itself went pretty well. Thanks everyone for your patience. However, as you may know, one security fix led to the important issues with the short codes used in templates, but it was not templates per se, but block templates in block themes. So the issue is currently actively discussed in the security editor team and some hypotheses have been made to sort this out in a quick followup release. No schedule is available right now because the discussions haven&#8217;t been finished yet, but it will depend on the followup patch currently discussed by the editor team.&#8221;</p>\n\n\n\n<p>So to just point out, and Paul Byron had actually &#8230; All the solutions on how to deal with it right now in the emergency situation when you see dozens or even hundreds of page breaks, one is to roll back to 6.2 with a core rollback plugin, use the short code, and put them in template parts. That seems to be working in the block themes that you put the short code in a template part and add that template part to the template or have &#8230; In the ticket that you mentioned, Fabian, there were also a code example on how to introduce making the shortcuts work again, but all three of them introduced the security issue again.&nbsp;</p>\n\n\n\n<p>So I&#8217;m not sure quite how to advise people to work, but there are no good choices right now because you are caught between you want your client&#8217;s side to work, but you also don&#8217;t want their security issue to be out there too long. So the core editor team is definitely working on a solution to fix the security fix, but all, what I just said, is actually just introducing back the security issue into your sites.&nbsp;</p>\n\n\n\n<p>So there are also opinions that short codes might be a legacy way of dealing with things. Maybe it&#8217;s a good call for converting the most important short codes to blocks and use them for the block editor instead of &#8230; but not everybody has the capacity for it, not everybody has the time for it or they&#8217;re just not there yet, but the plugins that they use are also not converting the shortcuts to blocks. So it&#8217;s the nature of the beast. I don&#8217;t think the shortcuts will ever go away, but there&#8217;s a better way to handle that.</p>\n\n\n\n<p><em>Fabian Kägy</em>: Yeah, definitely. In regards to the various options that we have right now, rolling back and that plugin that exists and that code that you can add to your theme, those all add back the vulnerability, like you said. I wasn&#8217;t sure from my understanding whether putting the short code in the template part actually caused any issues. I thought that that was the best proposed solution even though it&#8217;s clunky to have to deal with template parts for those areas individually, but from my understanding, that was the best outcome where you&#8217;re not really introducing the security vulnerability, but also can retain your feature or the look of your site. So I think that is the best option right now, but yeah, it is a little opaque.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Good point. Thank you for pointing that out again. Okay. The rest of 6.2.1, quite a few bug fixes for core, as well as for the editor that were found during the release of 6.2 and didn&#8217;t make it into 6.2, but that&#8217;s why the followup release was really on the schedule relatively to the 6.2 release. We will also share the changelog for the release in the show notes, as well as the tickets for the discussion. Paul Byron also added that solution with the template parts to the ticket so you have it all in one place to look up for if you want to follow up on that.&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;&nbsp;</p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Gutenberg 15.7</strong></h3>\n\n\n\n<p>All right. Next one up was Gutenberg 15.7 and it had quite a few enhancements. One is that as group and media texts have now allowed blocks attributes that can be passed to the inner block props, so to speak, that means that you can control which blocks can be added to a certain group or a media text block if you wanted to.</p>\n\n\n\n<p><em>Fabian Kägy</em>: That is a really useful thing for extenders or theme builders or if you create a pattern that is meant to be a certain thing, you&#8217;re now able to restrict which other blocks can be used within that area, which can be super useful when you build a call to action and have some styling around that and don&#8217;t want to support a table to be in that call to action, for example. This is so useful to be able to do that. So we don&#8217;t have to build the custom block for it, but instead we can create a pattern and have all those options and can curate that editorial experience to really, the level that we want to curate it to. With the template and template block, we were able to do some things, but now with the allowed blocks, we have most of the controls of an actual inner block area also exposed for these blocks that support inner blocks, which is very useful, I think.&nbsp;</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Excellent.&nbsp;</p>\n\n\n\n<p><em>Fabian Kägy</em>: Next up, we have the site logo added a replacement flow that allows you to change out the actual logo using the inspector control. That is just an addition, an alternative way that you can deal with the site logo essentially. You can still use the inline controls, but while you are in the sidebar tweaking your spacing or any other visual controls, you can also quickly swap out the media there, which I think is an interesting approach to this.</p>\n\n\n\n<p>For this one in particular, I&#8217;m interested to see the feedback around it because for the most part, we&#8217;ve been very strict about there should be direct manipulation of content right in the editor canvas and not many controls should live in the inspector controls. It&#8217;s not removing it from the inline, but it&#8217;s also adding that secondary way of manipulating it to the inspector controls. I&#8217;m very curious to see how that will play out and how that may affect just how we use this.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: So inspector controls is just another way to say sidebar, just make sure where those tools are when you first encounter them. I think it comes more like we want to be a parity with a customizer. That&#8217;s one more step. Then in the inspector in the sidebar, when you replace the media, you are going right directly to the media library and select that. So you don&#8217;t have to &#8230; It seems to be a slightly different workflow than it is from the toolbar.&nbsp;</p>\n\n\n\n<p>So the next feature is actually a really cool addition or enhancement of the fluid typography. So when the fluid typography was introduced first in 6.1, it still had the problem that if you have very large fonts, they wouldn&#8217;t go small enough for the mobile version because the calculations would stop and it would still be too big. This feature introduces a logarithmic scale factor to calculate the minimum font size and now the font adopts to all screen sizes. Even if you have a 68 or 102 pixel font, it will scale down to a mobile version and not stop at 50 or something like that.&nbsp;</p>\n\n\n\n<p><em>Fabian Kägy</em>: The next thing on the list here is the behavior of the top toolbar has been changed, and that is for a long time now you&#8217;ve been able to using that user settings menu in the upright corner change the behavior of the block toolbar to no longer be attached to the actual block, but instead always be fixed at the top of the editor. The behavior of that has been changed so that you can collapse that toolbar and still have it available there, but because the space in that top toolbar is quite sparse, that allows for just some more flexibility with how things are getting laid out there.&nbsp;</p>\n\n\n\n<p>There are a couple more things that we&#8217;ll talk about later that were changed about the overall layout of that tool toolbar. Actually, I like it very much the way that it&#8217;s coming together and with some of the explorations happening there. I really like the direction where a lot of this is going right now.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: It also fixed &#8230; One particular thing that was still missing is that you now have access to the parent block, which on the block toolbar you were always able to select the parent toolbar and then the sidebar changed and everything. When you had the toolbar fixed on the top, you wouldn&#8217;t have that particular icon available to click on to manipulate the parent block. That has changed too, and it came in with that particular feature there.&nbsp;</p>\n\n\n\n<p>I was always 50/50. Some weeks I like having the block toolbar right on the block, especially when I&#8217;m further down on the block page, and sometimes I just want it on the top and I&#8217;m changing it all the time. I don&#8217;t know how you do it. So I have not tested this new toolbar fixed setting yet, but I definitely will. I read through the comments and there are some discussions. So please add your feedback and your experiences to it and what you think about it to make it the best it can be.</p>\n\n\n\n<p>The next is that the image block now also displays &#8230; No, it&#8217;s not the image block, it&#8217;s when an image is in a block or in a template, it now also displays the borders on the placeholder. So if you have a template that gives you all the series of blocks and each block you want the feature image there, you will also see now in the placeholder the color of the borders, including the color of it. So it makes your choices of images maybe even smoother. It&#8217;s very subtle, but it&#8217;s definitely a live quality enhancement that I definitely like because sometimes you just need to have a picture that does not clash with your borders if you had a design option that image has borders.</p>\n\n\n\n<p><em>Fabian Kägy</em>: It just makes your life a lot easier when you&#8217;re creating a template and you don&#8217;t &#8230; Before this when there was a placeholder where no actual image was selected for the post, it was just difficult to gauge, &#8220;Hey, how do these border controls actually affect this?&#8221; Having the placeholder resemble the actual image much closer and retain all of those border controls is just a very good thing.&nbsp;</p>\n\n\n\n<p>Next up, we have a change in experiment for the actual pattern insertion modal, which I am really excited about. When you use the pattern instruction modal, you know that all of the various patterns are displayed in a grid, and that grid can look a little weird sometimes because it&#8217;s very staggered how these &#8230; Some patterns are very tall, and then the next one is very narrow, very short. There&#8217;s a lot of white space in that modal. This option here tries a masonry layout where they actually &#8230; If you&#8217;ve ever used Pinterest, it&#8217;s essentially that type of layout where it just fills all that white space and it&#8217;s showing all of those, I think, in a more elegant fashion and it just makes that look a little more refined. I&#8217;m very happy to see that.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: It&#8217;s definitely a more natural look for the pattern modal. The next feature is that duotone block controls are now added to the sidebar. They were hidden before in the block toolbar and you had to know that they are there and the icon was a little bit obscure. Then the options when you do it in the block toolbar is it feels like you are in the wrong place to make those decisions, and now you can make them from the sidebar. I really like that. It&#8217;s a clear adoption to the interfaces that we saw from other design tools.</p>\n\n\n\n<p><em>Fabian Kägy</em>: Next up, in the accessibility section, there are some refactors of how the ARIA attributes for the list view have been modified, which makes it much easier and much more accessible to navigate through the list view. It&#8217;s always good to see those enhancements over time.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Those ARIA levels, there were quite a few in the list view, so there was a major overhaul of the display of the list view. I think Alex Stein did some great work there to make it happen and put it over the finish line.</p>\n\n\n\n<p>So I&#8217;m scrolling a little bit further down to the changelog and I have the feeling we are done with 15.7. It was a smaller release, but it had definitely some great features in there.&nbsp;</p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Gutenberg 15.8</strong></h3>\n\n\n\n<p>We are now coming up with 15.8. Fabian, you were the release lead on that. Do you want to kind of kick it off and let us know what&#8217;s in there?</p>\n\n\n\n<p><em>Fabian Kägy</em>: Sure. So there were a couple of major features which get their introduction here, which is always fun. One of them is the addition of a command center. There actually is &#8230; There was a post on the make blog from Riad that I&#8217;m sure will get added to the release note or to the podcast notes here that explains a little bit more in depth what this command center actually is. Right now, it is an experiment, but it essentially like spotlights on a Mac, for example, or some of these launchers. You have a quick keyboard command. In this case, it&#8217;s command K, to launch essentially, an open prompt field where you can put in your prompts and jump to different places of the editor or create new pages or just perform quick actions.&nbsp;</p>\n\n\n\n<p>It&#8217;s also meant to be extendable and meant to be something that plugin developers can hook into and allow users to actually quickly navigate their site and perform actions. I&#8217;m really excited to see if this comes to life and explore how this ships out in the future. With this feature, I&#8217;m so here for it, I&#8217;m so excited about it. I cannot wait for the day where this gets expanded outside of the editor view and is just available in all of the screens of WordPress because right now, it is limited to the editor screens, but I think in the future, this will be available in all of the pages of the admin of WordPress. I&#8217;m so looking forward to that.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Riad&#8217;s post on the Make Core Blog &#8230; Blog and block, sometimes I get it mixed up, but I did it right this time. It&#8217;s the Make Core Blog. It&#8217;s called Command Center and Request for Feedback. So he explains what the prototype is. There&#8217;s also a small little video that quickly shows you how it works and then explains the API and the static commands and also what dynamic commands are, definitely, and the contextual commands. So there are three commands that you can have it use, but it&#8217;s also the extendability in mind for plugin developers.&nbsp;</p>\n\n\n\n<p>I think it also triggered a few things. If you want to employ an AI to use within the block editor, having a standard interface that can call AI commands is certainly beneficial to the editor. So as Fabian said, I will share the post in the show notes so you can chime in and see what you think about it and how it works. It&#8217;s really hard to describe on a podcast, audio podcast, for that reason.</p>\n\n\n\n<p><em>Fabian Kägy</em>: As somebody who has championed extensibility and plugability in the editor for such a long time, I&#8217;m so happy to see how this feature is getting rolled out and how it is built with that extendability and plugability from the very beginning. So I&#8217;m really excited about this.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: If you want to try it, it&#8217;s still behind the experiment flag. You need to go to install the plugin 15.8 and then go to the Gutenberg menu on your WP admin and then there&#8217;s an experiments page and you need to check the mark for the command center to actually be able to test it.&nbsp;</p>\n\n\n\n<p>The next item on the list is a new feature as well, and the first version of the revisions UI for the global styles, so all the talk about global styles and new features and new options to change things. Some people want to try just something out and then revert to the previous version and there was no revision available for the global styles. Now, there is, and it has actually some nice features. When you have the site editor style, the style site open and click on the revisions, it will show you a history of the revisions, and when you click on the items, it will show you a version of it on the canvas and you can also compare versions.&nbsp;</p>\n\n\n\n<p>So I think it&#8217;s getting there. It definitely needs some more refinement in terms of what information will be there, how many revisions are we showing, and all that. So that&#8217;s a really interesting progression on this global styles editing.</p>\n\n\n\n<p><em>Fabian Kägy</em>: If you&#8217;ve ever used revisions of a standard post or a page since the block editor was introduced, this is a great feature for global styles and I think it&#8217;s the right thing to roll it out for this first, but the live preview of a revision in a rich preview makes me so excited for a future where we can eventually get rid of the existing code view of revisions for standard post content stuff and actually show rich previews of that because, especially since the introduction of blocks, the revisions UI is just really, really difficult for non-technical people and even technical people to really manage because you just get a code view and are trying to figure out what changed.&nbsp;</p>\n\n\n\n<p>This year is a visual preview of what revisions look like for global styles and it&#8217;s making me so excited about what&#8217;s to come for more other visuals or revisions in the future.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: I totally agree that revisions for the posts and pages are on the board for the collaboration project, the phase three of Gutenberg and making revisions be aware is definitely something we are all looking forward to.&nbsp;</p>\n\n\n\n<p><em>Fabian Kägy</em>: Next up, we have the inspector panel. So again we&#8217;re talking about that right-hand sidebar of the global styles panel is now getting or got a refactor to make it work and look more similar to how it works on the standard post. I think that for a long time had been an area of confusion for me where if you wanted to change the typography options or color options in the global styles, the interface was just structured completely differently to how it is structured when you just select a paragraph block, for example, in the standard editor. This is unifying those two experiences to be alike and that just lifts a whole bunch of cognitive load that you have to think about and just makes it work the same way in both of those areas.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Excellent. In the same way, there is now a details block. We talked about it on the show before. That is in experiments and it now has been enhanced to be able to use InnerBlocks in the details of the spoiler alert block. I call it spoiler alert because the detailed summary that&#8217;s as broad idea that some people don&#8217;t know what we&#8217;re talking about, but you have a sentence or just a headline, and then you get an arrow and then it reveals additional content. You can use it to talk about spoilers in your book review or in your film review or you can hide details that only a certain amount of readers will need about a technical thing or so. In the earlier versions, you only could add a paragraph to those details or only paragraph blocks and now you can add images, you can add quotes and all that. So this is definitely an enrichment of the details block. Also an experiment though.</p>\n\n\n\n<p><em>Fabian Kägy</em>: That is really something &#8230; I know I have been involved with those conversations of the details block for way too long already, but I&#8217;m really looking forward to getting the community feedback of just what&#8217;s available there. It&#8217;s a very difficult thing because the detailed summary is essentially an accordion, but there are some accessibility issues that make it not the best use case for an accordion. So with these changes, just I&#8217;m interested in the feedback of the community of how they&#8217;re able to use all of the design tools to make it function the way they want to or whether there are struggles because this changes a little bit of what was there before and there were some more design options that you had with that earlier approach, but it also was a little less intuitive because it had more levels of nesting and the summary element was its own block and was just more complicated, and this is a much simpler implementation of that block. Also, it therefore removes some of the options that you have available. I&#8217;m really interested to see how that plays out and what people will think about it.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Many, many, almost all block collections that came out when the block editor first was released had an accordion block in there. A lot of people liked it for FAQs and for how-tos and all that, but it was interesting, I really didn&#8217;t really know why there wasn&#8217;t an accordion block in core until I read through the discussions about the details and summary. Some people will make it work as an accordion, but what the accordion does, it knows about the other block. So you have an accordion. The first is the tab on top and then you have details and then you have another tab and then the details and each accordion knows about the other one being open or not open. That&#8217;s very hard to replicate in a model way how the block editor works.&nbsp;</p>\n\n\n\n<p>I tested the details in summary block that&#8217;s in the experiment right now with 15.8 and I didn&#8217;t find it particularly easy to navigate because it had some hiccups. I don&#8217;t know how to get out of it. Normally, if you have a list block, when you hit enter twice, you&#8217;re out of it and then you can add additional blocks to it. There are no visual cues when you are in the block writing or adding additional blocks. There are no visual cues, are you still in the details section or are you not? The summary, there is no way to get from the summary to the details block per keyboard. You need to change controls on it.&nbsp;</p>\n\n\n\n<p>So there are a few things, but that&#8217;s why it&#8217;s behind the experimental flag and not yet completely released. So do as a favor and enable that test, that experiment so you can also test it. As Fabian said, community input is wanted and necessary.&nbsp;</p>\n\n\n\n<p><em>Fabian Kägy</em>: Next up, there is another addition to the site editor and that is in the main sidebar of the site editor. There now is a new menu item called Pages that allows you to view the 10 most latest edited pages of your site and directly jump in and edit them. That is one step of actually making content editing in the site editor more possible. Again, that was one of the features that was there in earlier revisions of the site editor but then got taken out before it got released in I believe it was 6.1. These are explorations of slowly adding that content editability back into the site editor. It&#8217;s really interesting to see how that works. It is so difficult how to best communicate with the user when you&#8217;re editing parts of a template versus when you&#8217;re editing parts of the actual content of a page.&nbsp;</p>\n\n\n\n<p>I think that that will still be the most difficult issue to solve for here, but this is slowly introducing that back into the site editor and it is really cool to see just having all of those things in there.&nbsp;</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Look at the menu item on the left-hand side, as other people say the dark side of the site editor, but it&#8217;s there. So the next item or feature that got introduced makes Fabian really, really happy and it&#8217;s the introduction of the plugin template settings panel slot, which means on the sidebar, there is now a way for plugin developers to extend the feature set that&#8217;s displayed to the user. Have you tried it out yet? Have you looked at that feature?</p>\n\n\n\n<p><em>Fabian Kägy</em>: I&#8217;ve not yet had a chance to play with it, but yeah, more slots and more places for extenders to add to the experience and showcase custom settings and those types of things always make me happy, especially when they&#8217;re done right, and this seems pretty cool.&nbsp;</p>\n\n\n\n<p>Next up, we have an update that is very useful for extenders again. It consolidates and adds some more documentations to the storybook. If you&#8217;re not familiar with the storybook, that is actually something when you go to the GitHub repository of the Gutenberg plugin, in the right-hand sidebar there is, I think it&#8217;s called pages or deployments. You can actually jump to that storybook right from GitHub and view it. The storybook essentially is showcasing all of the various React components that were built as part of the Gutenberg plugin and are available in WordPress core and is showing live previews of them with some controls. You can tweak some of the settings right there visually and also have some of the documentation there. This consolidates and changes a little bit of just how that is structured and how that appears. Just in general, the storybook that has been there for a long time is a super valuable and great tool and it&#8217;s always nice to see additional enhancements for that.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: I definitely want to point that out that at WordCamp Asia, I heard from a few people that were at the contributor day and working with the core editor table there, they were really surprised that many developers that came and wanted to work on things did not know about the storybook. I think we have not done a good job in explaining what it is and pointing people to it. I think it&#8217;s part of the documentation that is in the components, but it&#8217;s not referred to &#8230; Most of the time, it&#8217;s not referred to in the documentation on the developer site in the block editor handbook. We are going to change that a little bit and add more links to the storybook for the various components because it&#8217;s such a rich developer experience where you can change things and then you click on a button and it gives you the code for it for the changes that you made and you can immediately reuse it in your own code base. Definitely, I take any chance when I can talk about the storybook now.</p>\n\n\n\n<p>The next part is a feature for the block editor that is talking about the dimension controls and it&#8217;s not always visible. So now, it&#8217;s an attempt to show all the dimensions control at the beginning and not hide them so much where you had to open them and then decide do you want to see the padding, do you want to see the margin. It&#8217;s now easily available so you don&#8217;t have to look for it, what padding and margins is, because we all talk about padding and margins, but we never talk about dimension controls. So when the words appear on the screen, you don&#8217;t as easily recognize that that&#8217;s what you&#8217;re talking about.</p>\n\n\n\n<p><em>Fabian Kägy</em>: This, again, is also something where it is just difficult and interesting. The vertical space that we have available in the sidebar is very limited and it&#8217;s always an interesting balance to strike of how much do we show by default versus how much do we hide behind the setting so it&#8217;s not overwhelming for somebody that is new to the editor, but also makes it discoverable for somebody. So it is not changing any of the features that are available, but it is trying to show some more by default. I&#8217;m very interested to see how folks will react to that, whether it feels overwhelming or whether it makes it more approachable. The only real way to find that out is by actually testing that. So I&#8217;m glad to see those explorations happening in the plugin.&nbsp;</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: It might go away again or will be tweaked later on. So your comments are certainly wanted and necessary. We share in the show notes the release post for 15.7, the release post for 15.8. By the time you listen to this, Fabian will have published it, and I&#8217;m sure also, Sarah Gooding will talk about both releases or already has on 15.7 and 15.8.&nbsp;</p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>What’s in Active Development or Discussed</strong></h3>\n\n\n\n<p>or I just wanted to at the end of it &#8230; So those were all the releases and we are now talking about what&#8217;s in active development or discussed. We have right now the largest number of experiments in the block editor since the beginning. I think there are now seven experiments hiding on the experiments page for the plugin. So let&#8217;s talk about them. Some of them we already talked about. So it starts out with a zoomed out view and it&#8217;s test a new zoomed out view on the site editor. So I&#8217;m reading from the page now and it also has a warning attached to it, &#8220;The new feature is not ready. You may experience UX issues that are being addressed.&#8221; UX means user experience, just to clarify that. Did you test that before?</p>\n\n\n\n<p><em>Fabian Kägy</em>: Yeah. So the zoomed out view essentially means that you can more quickly navigate through or get a more holistic view of your page and not appearing in the same size as you would always see it, but instead, it zooms out and shows you more of your entire page smaller in the canvas. That is very useful when you want to make changes to your global styles and just want to see how it affects your site more holistically or when you tweak those things. Especially when you switch between block theme variations, that is just useful to see how it will not just affect that very small area of the site that you see in your viewport, but instead see it more broadly for an entire page.&nbsp;</p>\n\n\n\n<p>So I think this is a great thing to work on. Right now, as the warning says, there are some issues that are being worked on. Especially for working with global styles, having that more zoomed out view is very useful.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: So if you tested it and you have an idea how to make it better, definitely air those on GitHub and filing an issue of that. So the second one, it says color randomizer, test the global styles color randomizer, a utility that lets you mix the current color palette pseudo- randomly. I think it&#8217;s one of those features where it said, &#8220;Okay. It&#8217;s cool to have and cool to test things out, but it&#8217;s not something that a lot of people would think they needed.&#8221; Do you have any thoughts on it?&nbsp;</p>\n\n\n\n<p><em>Fabian Kägy</em>: It is one of those features where from my perspective as somebody who works a lot in the large agency space, that is not a feature I would&#8217;ve ever come up with, but I can see how, especially if you&#8217;re somebody who&#8217;s just playing around in the editor trying to build a new design, it can be a useful partner to give you some inspiration of maybe you&#8217;re not the best with color theory and coming up with an accessible color palette yourself, and that can be a great way to get some inspiration for just showing you different variations of what your site could look like with different colors and spark some of that imagination, but it is one of those features that I know for a client site that has a design guide with strict color I would want to disable that feature and would not want to expose certain clients to that feature. So it&#8217;s definitely one of those where I can see it being useful for some, but also rather distracting for others. So I&#8217;m interested to see how that will actually get rolled out.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: It might also be part of the explorations, but the design team does in figuring out is there a way to include different palettes that are on third-party sites that can come in and you can choose from, but I think it&#8217;s not a high priority right now for the team. That&#8217;s why it&#8217;s all still in the experimental phase and it hasn&#8217;t gone that route yet. I heard Matt Mullenweg and one of his state of the word talking about making color palettes that are out in the universe interesting, available to site builders or site owners in some way or shape.&nbsp;</p>\n\n\n\n<p>The third test item on the page is the command center, a test of command center, open it up using command K in the site of post editor. We talked about it. I don&#8217;t think we need to elaborate some more, but that&#8217;s where you find it.&nbsp;</p>\n\n\n\n<p>The fourth one is the grid variation for a group block, test the grid layout type as a new variation for the group block. Right now, that only works on the site editor because it&#8217;s actually a template or site design approach to the grid. Grid, it&#8217;s actually a CSS feature. So this tries to explore how you can make templates that adhere to a certain grid layout, but I&#8217;m not as knowledgeable about design to be able to use that. I think I need a little pre-beginner&#8217;s tutorial for that.&nbsp;</p>\n\n\n\n<p><em>Fabian Kägy</em>: It is. I am really happy to see this exploration being done right now. In the last couple of years, we got that row and stack variation of the group block, which essentially as a developer, that is my flex box. Flex box allows you to layout content in one direction, so either horizontally, the row, or vertically with the stack. The grid, you can achieve some of those grid layouts with the columns block, but the columns block, it is very difficult for it to wrap around. So if you wanted to, let&#8217;s say, have a three column grid that is not just one free column layout, but instead has two rows of those two columns, that is not really or is technically possible, but it is not ideal. That is where grid layouts come into play and are, I think, so much more powerful.</p>\n\n\n\n<p>I think there also is an exploration that is not listed here of adding an actual grid layout or using CSS grid layout for the grid in the query block. We weren&#8217;t able to use grid when the editor first came out because it was too new of a CSS feature and we needed to support more older browsers, but that browser support has changed so much in the last couple of years that we&#8217;re now able to use grid in the editor. It just opens up so many new design possibilities and makes it so much easier.&nbsp;</p>\n\n\n\n<p>I&#8217;ll say on the custom development side, grid block is one of the first things that we build on one or a grid block is one of the first things we build on many custom sites because it is just much more powerful than the columns block and also easier to use in a way. So I&#8217;m excited for these explorations.&nbsp;</p>\n\n\n\n<p>I will say though, a couple of releases ago, the group block changed to show that variation picker when you first insert it where you have to pick between the variations. I&#8217;m not yet sure I&#8217;m in love with that approach of &#8230; I like the various variations of the group block, but when I add a new group, it always pauses me a little too much because I need to step back and, &#8220;Hey, I just want to start with a default grid or a default group and then continue with it.&#8221; So I&#8217;m happy for more of these variations of the group block and for more of those layout controls. I&#8217;m not quite sure we have found the best way to expose them.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: I hear you. Making the decision to use a group block now becomes also a decision of what kind of flow you want and you are not there yet. When you get the group block, I understand that, but I&#8217;m also excited for the grid layout in terms of it is a feature that was requested quite a bit in the early days of the block editor layout site editing things, and it&#8217;s still missing. So now, certain plug-ins and block collections and theme collections have stepped in and allowed that already. So core is a little bit behind on that, but of course, core has a different outlook for the site editor than plugin developers have.&nbsp;</p>\n\n\n\n<p>The fifth experiment in the experiments page is the details block with the detailed summary block. We talked about it. It&#8217;s there for you to test out.</p>\n\n\n\n<p>The sixth one is the block theme previews, and it enables block theme previews. That&#8217;s not much of an explanation, but what it allows you is on your site &#8230; So the customizer had the live preview of themes that were already installed on your site so you can see how your site would need to change to when a theme would be activated. It&#8217;s more a decision making tool rather than a good design tool.&nbsp;</p>\n\n\n\n<p>So with many, many block themes coming online, we are now beyond 300 in the directory. I think the largest number is 306. I think it helps with the decision if you want to change your theme out to have a better preview, and the customers that preview doesn&#8217;t work with it. This is the first iteration. I ran that through themes through the preview and it was a great experience, so much better than the original one to review certain parts of an existing site.</p>\n\n\n\n<p>It also revealed that not all block themes are alike. There are significant differences, and having a tool to actually explore those differences or even notice them is invaluable, definitely. Not every theme behaves with this live preview feature in it, so if you are working on themes and either you have a starting theme in an agency or you use a collection of themes to build your sites to choose from, you might want to test them with this theme preview so you can turn on and off features and showcase a few things that are available in the preview.&nbsp;</p>\n\n\n\n<p>Also, please, please comment on the issues or file issues on GitHub after your tests. I already found one that when I look for style variation and I want to see how a page changed the style variation, I don&#8217;t have a way to do this because the page that is linked, the link doesn&#8217;t go to the preview, it goes to the page in the template editor, and all of a sudden, I&#8217;m out of my mindset on a preview, but all of a sudden it gets me into the editor. So that&#8217;s common for things that are in testing, but it also needs to be pointed out that that&#8217;s a major stumbling point for someone who uses the feature for the first time.&nbsp;</p>\n\n\n\n<p>The last one of the tests has just come in. It&#8217;s a navigation block that uses the still in Experiment interactivity API, and I have not used it. Did you look at that, Fabian?</p>\n\n\n\n<p><em>Fabian Kägy</em>: I looked at it briefly, but the summary of it is if you&#8217;re using it and you notice a difference that worked before, there&#8217;s a bug because this essentially swaps out the engine, but you should notice it as an end user. It changes how the front end JavaScript of the site works to use that interactivity API, but instead of some custom JavaScript that was purposefully written for this, using that interactivity API to make it more declarative, but as an end user, toggling that setting should not change anything about it works. Yeah, it may produce the actual bundle size, therefore make your site a little bit faster, but usability wise, there should be no difference and there should be full-on feature parity with how the navigation works today before or after you switch that setting.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Good to know. So if you don&#8217;t notice anything, it&#8217;s okay. Excellent. So this brings us to the end of the show today. Well, I think we talked a lot about all the new things that come to block editor and to WordPress. Thank you so much for joining me today. Fabian, is there anything that you want our listeners to know about the block editor, about WordPress, about 10up? Now is the chance to talk about it and we&#8217;ll add links to the show notes. I just wanted to say about 10up, you have a wonderful educational site about the block editor with quite a few white papers and tutorials. How did that come about? Is it your work or…?</p>\n\n\n\n<p><em>Fabian Kägy</em>: Yeah. The <a href=\"https://gutenberg.10up.com/\">gutenberg.10up.com</a> website, our block editor best practice site has been my baby for the last year and a half or so, where I got to spend a lot of time actually writing down how we as an agency approach working with the block editor and setting up the best practices for how to do that in the agency setting for that special type of client. Whereas the main documentation of core is more geared to end users, which is the right thing, but because of that, we decided that there is space for an additional resource to focus on the things that are important for those very curated experience for big clients and so forth.&nbsp;</p>\n\n\n\n<p>So that is one thing that I would mention, just taking a look at that <a href=\"https://gutenberg.10up.com/\">gutenberg.10up.com</a> website, and if you have any feedback on that, feel free to reach out anywhere on the Make Slack or on Twitter or Masévon or Blue Sky or wherever you can find me pretty much always talking about block editor stuff.&nbsp;</p>\n\n\n\n<p>Then the other thing that I will just mention is the 10up block components NPM package, which is my passion project and has been for the last three years or so, which essentially is a collection of React components that work like all of the WordPress packages, the WordPress components, WordPress block editor components. It is a collection of additional components that are adding sometimes very complex, sometimes easy functionality for you to build. If you build custom blocks, making that a whole lot easier so you have to write less code and know that it&#8217;s tested and is working with the way that it should, and doing that in a way that feels 100% like it is just core WordPress. I&#8217;m very happy and proud of that project. If you find it useful or if you have questions or feedback about that, always happy to chat.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Well, thank you so much. There&#8217;s some great resources. You mentioned custom blocks. There has been discussion around static block with this dynamic blocks. Where do you land?</p>\n\n\n\n<p><em>Fabian Kägy</em>: The way I think about it, if I&#8217;m building a plugin that is meant for the official directory where I as a developer do not have access to the site where the code is running on, I would go with a static block unless I need to show dynamic data. If I as the developer can access and have maintenance over the site I built dynamic blocks, and that means in the agency context where we&#8217;re often changing designs, making quick iterations, we are, for the most part, only building dynamic blocks because of that because we cannot spend the time to deal with deprecations and all of those things.&nbsp;</p>\n\n\n\n<p>It really comes down to that where if you have &#8230; The thing that you should ask yourself is, &#8220;What should happen when I need to change something about this block on a code level? Should all of the old instances that maybe were published three years ago, should they also get those updates automatically or should I not &#8230; Should that historical content stay untouched and just stay the way that it was?&#8221; If it should stay in touch, static blocks is your right answer. That is the way to go. If it should update in all instances or if you need to modify the block structure very often and have access to the maintenance there, dynamic blocks are much easier to deal with and are &#8230; So I&#8217;m coming down most of the time on the dynamic side.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Dynamic blocks side. All right. So well, thank you for answering these quick questions and having some insight in how you work as a longtime block editor adopter and in the agencies. It was a great pleasure talking to you, Fabian. We will share all the links that you mentioned, of course, in the show notes. Before we end the show, oh, what&#8217;s your Twitter handle, Fabian?</p>\n\n\n\n<p><em>Fabian Kägy</em>: My full name spelled out, so F-A-B-I-A-N-K-A-E-G-Y, just all spelled together. You should be able to search for it and it should come up.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: That&#8217;s just for the people who don&#8217;t go through the show notes. We, of course, have all the links in the show notes. As always, the show notes will be published on gutenbergtimes.com/podcast. This is episode 83. If you have questions, suggestions, and news that you want us to include in the next show, please send them to <a href=\"mailto:changelog@gutenbergtimes.com\">changelog@gutenbergtimes.com</a>. That&#8217;s c<a href=\"mailto:hangelog@gutenbergtimes.com\">hangelog@gutenbergtimes.com</a>. Thank you all for listening. Thank you for being here, Fabian. This is goodbye and I wish you a wonderful weekend.</p>\n\n\n\n<p><em>Fabian Kägy</em>: Thank you so much for having me.</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, 21 May 2023 08:18:47 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:19:\"Gutenberg Changelog\";s: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:93:\"WPTavern: WordPress 6.2.2 Restores Shortcode Support in Block Templates, Fixes Security Issue\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=145264\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:103:\"https://wptavern.com/wordpress-6-2-2-restores-shortcode-support-in-block-templates-fixes-security-issue\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1593:\"<p><a href=\"https://wordpress.org/news/2023/05/wordpress-6-2-2-security-release/\">WordPress 6.2.2</a> was released early this morning as a rapid follow-up to 6.2.1, which introduced a bug that <a href=\"https://wptavern.com/wordpress-6-2-1-update-breaks-shortcode-support-in-block-templates\">broke shortcode support in block templates</a>. Version 6.2.1 was also an important security release, but due to the catastrophic breakage for those using shortcodes in block templates, some users were implementing insecure workarounds or simply downgrading to 6.2 to keep critical functionality working on their websites.</p>\n\n\n\n<p>WordPress contributors worked quickly over the weekend to ensure that users can now update to 6.2.2 with their shortcodes intact. The release post identified the removal of shorcode support in the previous release as &#8220;a regression&#8221; and a bug. This is an important recognition, as shortcodes are still a tool that users frequently rely on to insert functionality from plugins that haven&#8217;t made it available as a block, as well as a necessity for things that won&#8217;t work without inline shortcodes.  </p>\n\n\n\n<p>Version 6.2.2 is also a security release, as core contributor Jonathan Desrosiers said that the issue patched in 6.2.1 &#8220;needed further hardening&#8221; in this update.</p>\n\n\n\n<p>Users are advised to update immediately and automatic updates are rolling out. Many reported having turned automatic background updates off for core after 6.2.1 broke their websites. Users who did so will need to manually update as soon as possible. </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, 20 May 2023 21:38:08 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:118:\"Gutenberg Times: WordPress 6.3 roadmap and release squad, WPCampus schedule, Wayfinder and more—Weekend Edition #254\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=24143\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:124:\"https://gutenbergtimes.com/wordpress-6-3-roadmap-and-release-squad-wpcampus-schedule-wayfinder-and-more-weekend-edition-254/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:24412:\"<p>Howdy, </p>\n\n\n\n<p>Hubby and I are almost settled in our new apartment, except we are still missing our furniture. They are scheduled to arrive on June 1, which would make it exactly 74 days, since they all got packed up in Sarasota. Yesterday we measured all the rooms, so we can decide where we can place the big items, and how to organize our offices. So, when I write &#8220;settled&#8221;, I mean getting accustomed to living in our neighborhood, organizing our infrastructure of daily life and using all the transportation choices, rather than being settled in the apartment. </p>\n\n\n\n<p>WordCamp Europe is coming up fast. There are a ton of Gutenberg talks on the roster this year. <a href=\"https://gutenbergtimes.com/wordcamp-europe-2023-block-editor-talks-meet-greet-contributor-day-and-more/\">I collected them all in a separate post.</a> And if you are going in person, make sure we connect and have a chat. You can <a href=\"https://twitter.com/bph\">DM me on Twitter</a>, s<a href=\"mailto:pauli@gutenbergtimes.com\">end an email </a>or just pick a <a href=\"https://calendly.com/pauli-haack/wordcamp-europe?month=2023-06\">slot from the public calendar.</a> </p>\n\n\n\n<p>I am excited about exploring the city a couple of days prior to Contributor Day. </p>\n\n\n\n<p>This Weekend edition is again full of updates on the open-source projects, tutorials, and videos. Hope y&#8217;all enjoy it. </p>\n\n\n\n<p>Have a lovely weekend! </p>\n\n\n\n<p>Yours, 💕<br /><em>Birgit</em></p>\n\n\n\n\n<div class=\"wp-block-group has-light-background-background-color has-background is-layout-flow wp-block-group-is-layout-flow\"><div class=\"wp-block-group__inner-container\">\n<p><strong>Table of Contents</strong></p>\n\n\n\n<div class=\"wp-block-sortabrilliant-guidepost\"><ul><li><a href=\"https://gutenbergtimes.com/feed/#0-word-press-release-information\">Developing Gutenberg and WordPress</a></li><li><a href=\"https://gutenbergtimes.com/feed/#0-p\">Plugins, Themes, and Tools for #nocode site builders and owners</a></li><li><a href=\"https://gutenbergtimes.com/feed/#2-word-press-6-0-1-and-6-1-scheduled\">Theme Development for Full Site Editing and Blocks</a></li><li><a href=\"https://gutenbergtimes.com/feed/#3-building-themes-for-fse-and-word-press\">Building Blocks and Tools for the Block editor. </a></li></ul></div>\n</div></div>\n\n\n\n\n\n<div class=\"ngl-articles colored ngl-articles-30_70 ngl-articles-frontend\">\n\n	\n	<div class=\"ngl-articles-wrap ngl-articles-webview\">\n	\n						\n			<div class=\"ngl-article-mobile\">\n				<table width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\n					<tr>\n						<td valign=\"top\">\n							<div class=\"ngl-article-mob-wrap\">\n							<div class=\"ngl-article-featured\"><a href=\"https://gutenbergtimes.com/wordcamp-europe-2023-block-editor-talks-meet-greet-contributor-day-and-more/\" target=\"_self\" rel=\"\"><img src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2023/05/Guiseppe-Milo-Athens-Greece-web.jpg?w=652&ssl=1\" /></a></div><div class=\"ngl-article-title\"><a href=\"https://gutenbergtimes.com/wordcamp-europe-2023-block-editor-talks-meet-greet-contributor-day-and-more/\" target=\"_self\" rel=\"\"><span>WordCamp Europe 2023 &#8211; Block editor talks, meet &#038; greet, Contributor Day and more</span></a></div><div class=\"ngl-article-excerpt\">WordCamp Europe is less than four weeks away, the speakers and sessions have been announced, and the schedule is now available. Time to make plans. <a href=\"https://gutenbergtimes.com/wordcamp-europe-2023-block-editor-talks-meet-greet-contributor-day-and-more/\" class=\"ngl-article-read-more\" target=\"_self\">Read more.</a></div>							</div>\n						</td>\n					</tr>\n				</table>\n			</div>\n			\n			\n			\n\n		\n		\n		</div>\n\n</div>\n\n\n\n\n<h2 class=\"wp-block-heading\" id=\"0-word-press-release-information\">Developing Gutenberg and WordPress</h2>\n\n\n\n<p><a href=\"https://make.wordpress.org/core/2023/05/18/roadmap-to-6-3/\"><strong>The Roadmap for the WordPress 6.3 release</strong></a> has been published. Anne McCarthy identified three focus areas for this release: </p>\n\n\n\n<ul>\n<li>Polishing the Site Editor,</li>\n\n\n\n<li>Iterating on blocks, </li>\n\n\n\n<li>Expanding patterns</li>\n\n\n\n<li>Stabilizing usability and prioritizing refinement,</li>\n\n\n\n<li>Enhancing design tools,</li>\n\n\n\n<li>Leveling up APIs,</li>\n\n\n\n<li>Addressing&nbsp;PHP&nbsp;items (8.x compatibility), and </li>\n\n\n\n<li>Performance</li>\n</ul>\n\n\n\n<p>For each focus area, she described the scope and listed GitHub issues and PRs of the work in progress. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>On the heals for the Roadmap, <strong>Hector Prieto</strong> published an update on the <a href=\"https://make.wordpress.org/core/2023/05/18/wordpress-6-3-planning-roundup/\"><strong>WordPress 6.3 Planning Roundup</strong></a>, confirming the release scheduled as it was proposed earlier and announcing Matias Ventura as the release lead and all other members of the release squad. </p>\n\n\n\n<ul>\n<li>Beta 1 will be on June 27, 2023</li>\n\n\n\n<li>Release Candidate 1 + Dev Notes are scheduled for July 18th, 2023</li>\n\n\n\n<li>General release aimed for August 8th, 2023. </li>\n</ul>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>During the latest Hallway Hangout, contributors discussed what is in the works for the Site Editor and what can be expected for WordPress 6.3. Anne McCarty posted a summary and shared the video recording in <strong> <a href=\"https://make.wordpress.org/test/2023/05/11/hallway-hangout-lets-chat-about-the-site-editor-6-3/\">Hallway Hangout: Let’s chat about the Site Editor &amp; 6.3</a></strong>. </p>\n\n\n\n<p><strong>The next Hallway Hangout is scheduled for May 25, 2023 &#8211; 17:00 UTC. Nick Diego and Justin Tadlock will be discussing <a href=\"https://make.wordpress.org/themes/2023/05/18/hallway-hangout-curating-the-editor-and-building-block-themes-for-clients/\">Curating the editor and building block themes for clients</a>. </strong>Don&#8217;t miss it. <a href=\"https://www.meetup.com/learn-wordpress-online-workshops/events/293612715/\">RSVP via Meetup.com</a></p>\n\n\n\n<a href=\"https://www.meetup.com/learn-wordpress-online-workshops/events/293612715/\"><img /></a>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>In his <a href=\"https://make.wordpress.org/design/2023/05/08/design-share-apr-24-may-5/\"><strong>Design Share: Apr 24–May 5</strong></a>, Joen Asmussen shared what the WordPress design team has been working on the last two weeks. He lists quite a few avenues with their respective GitHub PR/Issue links, so you can follow along and chime in. </p>\n\n\n\n<ul>\n<li>Document title &#8211; as part of the re-introduction content editing to the site editor, a short video shows the switch in the UI for either editing the template or the single page, that is using the template</li>\n\n\n\n<li>Revision History Management &#8211; explores a potential future side by side page comparison</li>\n\n\n\n<li>Vertical Text as a new design tool introduced to certain blocks</li>\n\n\n\n<li>Featured Image improvements &#8211; show a more compact and streamlined interface to handle feature images settings</li>\n</ul>\n\n\n\n<img />\n\n\n\n<p><strong>Justin Tadlock</strong> published the monthly roundup <a href=\"https://developer.wordpress.org/news/2023/05/whats-new-for-developers-may-2023/\"><strong>What’s new for developers? (May 2023)</strong></a> on the developer blog. It&#8217;s again full of focused notes about changes in the WordPress worlds relevant for extenders, plugin and theme builders and agency or freelance developers building sites for others.  </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Anne McCarthy </strong>published the next <strong><a href=\"https://make.wordpress.org/test/2023/05/18/fse-program-testing-call-23-rapid-revamp/\">FSE Program Testing Call #23: Rapid Revamp</a>.</strong> &#8220;With the&nbsp;<a href=\"https://make.wordpress.org/core/2023/05/18/roadmap-to-6-3/\">roadmap to 6.3 published</a>&nbsp;and another version of&nbsp;Gutenberg&nbsp;out in the wild, it’s time to test some of the upcoming features that are in the works to upgrade and polish the experience of using the Site Editor:&#8221; she wrote and listed all eight of them. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>Led by <strong>Fabian Kägy</strong>, <strong>Gutenberg 15.8</strong> was released on May 18th, 2023. The number of PRs merged for this release was considerably higher than for 15.7 and it&#8217;s expected to rise with the urgency of the upcoming WordPress 6.3 release. There are only three Gutenberg plugins releases left until Beta 1 on June 27. </p>\n\n\n\n<ul>\n<li>15.9 scheduled for May 31</li>\n\n\n\n<li>16.0 to be released on Jun 14 (after WordCamp Europe) </li>\n\n\n\n<li>16.1 RC 1 to be release on June 21</li>\n</ul>\n\n\n\n<p>In his release post <a href=\"https://make.wordpress.org/core/2023/05/20/whats-new-in-gutenberg-15-8-may-17/\">What’s new in Gutenberg 15.8? (May 17)</a>, Kägy highlight three new features that need testing from Gutenberg plugin users: </p>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/05/17/whats-new-in-gutenberg-15-8-may-17/#add-the-pages-menu-to-the-site-editor-50463\">Add the pages menu to the site editor</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/05/17/whats-new-in-gutenberg-15-8-may-17/#add-revisions-ui-50089\">Add revisions UI to the global styles interface</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/05/17/whats-new-in-gutenberg-15-8-may-17/#add-theme-previews-for-block-themes-50030\">Add Theme Previews for block themes</a></li>\n\n\n\n<li>One feature is now still listed in experiments. It will come out next Gutenberg plugin release: The Command Center AKA Wayfinder. (See Riad Benguella&#8217;s post. )</li>\n</ul>\n\n\n\n<p>It&#8217;s always a great pleasure to connect with <strong>Fabian Kägy</strong>. We had a great time geeking out over the blog editor while recording episode 83 of the Gutenberg Changelog. We discussed Gutenberg 15.7, 15.8 the feature available on the Experiments page and 6.2.1, Gutenberg Storybook and 10up tools. The episode  is at the editor now, and it will arrive in your favorite podcast app over the weekend. </p>\n\n\n\n<img />\n\n\n\n<div class=\"wp-block-group has-light-background-background-color has-background is-layout-flow wp-block-group-is-layout-flow\"><div class=\"wp-block-group__inner-container\">\n<p><strong>🎙️ </strong> New episode:  <a href=\"https://gutenbergtimes.com/podcast/gutenberg-changelog-83-wordpress-gutenberg-experiments/\">Gutenberg Changelog #83 – WordPress 6.2.1, Gutenberg 15.7, 15.8 and experiments</a> with special guest, Fabian Kägy and host Birgit Pauli-Haack</p>\n</div></div>\n\n\n\n<p><strong><a href=\"https://twitter.com/riadbenguella\">Riad Benguella</a></strong> published the post <a href=\"https://make.wordpress.org/core/2023/05/17/command-center-request-for-feedback/\"><strong>C</strong></a><strong><a href=\"https://make.wordpress.org/core/2023/05/17/command-center-request-for-feedback/\">ommand Center: Request for feedback</a> </strong>asking for testing and review of a new feature that will come out of the experimental phase for Gutenberg 15.9, for now called the Command Center, and the Marketing team is probably recommending a new name: The<strong> Wayfinder. </strong></p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"0-p\">Plugins, Themes, and Tools for #nocode site builders and owners</h2>\n\n\n\n<p><strong>Caroline Nymark</strong> published an <a href=\"https://fullsiteediting.com/site-creators/introduction-to-the-site-editor/\"><strong>Introduction to the Site Editor for creators</strong>.</a> This tutorial is meant for Beginners and no-code creators and covers everything available since WordPress 6.2 and Gutenberg 15.7. Although it&#8217;s title Introduction, it is quite comprehensive and covers the Site Editor, Navigation, Styles, Templates and Template parts. Then she dives deeper into the Design Tools via the Styles menu item. You will be creating or modifying themes in no time! </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><a href=\"https://wordpress.org/plugins/maxi-blocks/\"><strong>Maxi Blocks</strong></a> – a template library for site builders using  WordPress Block editor. It came recently out of beta and offers developers a whole range of design tools in an interface that has been built on top of Gutenberg, yet using custom components to offer additional design features. The plugin comes with hundreds of icons, patterns, templates and sixteen custom blocks. The Pro version is available at <a href=\"https://maxiblocks.com/\">MaxiBlocks.com</a>. It&#8217;s meant for designers looking for all the tools, not so much for beginners or site owners. There will be a learning curve due to the additional UI components. </p>\n\n\n\n<img />\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong><a href=\"https://twitter.com/mahdiali_\">MahdiAli Khanusiya</a> </strong>built the plugin<strong> </strong><a href=\"https://wordpress.org/plugins/patternswp/\"><strong>PatternWP</strong></a> &#8211; a pattern block library for WordPress. The first version offers patterns on many categories. for the busy site owner. The plan is to be adding new patterns and templates on a consistent basis. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<h2 class=\"wp-block-heading\" id=\"2-word-press-6-0-1-and-6-1-scheduled\">Theme Development for Full Site Editing and Blocks</h2>\n\n\n\n<p>Lots of feedback has been provided during the Call for Exploration. <strong>Anne McCarthy </strong>published <a href=\"https://make.wordpress.org/test/2023/05/04/fse-program-build-a-block-theme-summary/\"><strong>FSE Program Build a Block Theme Summary</strong></a>. The TL;DR: &#8220;Using the Site Editor alongside the Create Block Theme plugin supercharges the experience, mainly by filling in gaps around font management and offering more nuanced creating/exporting options. With these added features, the Site Editor is both left to shine as a theme building tool and the current known pain points impacting regular site building come to the surface, like needing more clarity around where layers of styles are coming from. In general, feedback fell into three categories: Create Block Theme plugin pain points, missing options in the Site Editor (font management, synced patterns, desire for more styling options with certain blocks), and UX considerations for the Site Editor that match the site building experience. &#8221; she wrote. The videos shared from the contributors are certainly eye-opening. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong><a href=\"https://twitter.com/mikemcalister\">Mike McAlister</a></strong> explains in his article how <a href=\"https://olliewp.com/a-native-and-iterative-approach-to-responsive-control-in-wordress/\"><strong>a native and iterative approach to responsive control in WordPress</strong></a> could bridge the gap between the goals to rely on <a href=\"https://developer.wordpress.org/news/2023/02/intrinsic-design-theming-and-rethinking-how-to-design-with-wordpress/\">i<em>ntrinsic design</em></a> and still be able to handle edge cases for viewpoint-driven responsiveness of a site. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>In his video, <a href=\"https://www.youtube.com/watch?v=Zh0ANsYgoN0\"><strong>WordPress Gutenberg Product Manager explains what&#8217;s next for Responsive Websites and Block Themes</strong></a>,  <strong>Jamie Marsland</strong> interviewed <strong>Rich Tabor</strong> on intrinsic design, what a theme product might look like for theme creators and what the next wave of block building inspiration might arrive at the WordPress shores. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong><a href=\"https://twitter.com/jkoussertari\">James Koussertari</a></strong> explained <a href=\"https://gutenbergmarket.com/news/using-layout-sizes-in-themejson\"><strong>Using Layout Sizes in theme.json</strong></a>. &#8220;The layout setting in theme.json is great for developers, as they can set default container sizes for their design system, easily in one place. It also means that content editors do not have to think about which container sizes to set manually each time they add a block.&#8221; he wrote on the blog of the Gutenberg Market</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>The latest call for testing ended last week, too and <strong>Anne McCarthy</strong> recounts the feedback: <a href=\"https://make.wordpress.org/test/2023/05/11/fse-program-front-page-fun-summary/\"><strong>FSE Program Front Page Fun Summary</strong></a>. The high-level feedback revealed: &#8220;In general, the call for testing was relatively tame bug wise, with only a few obvious ones found, mainly in the Navigation block. The usability feedback related to many ongoing projects in the Site Editor underscoring the impact of solving these consistent problems, in particular the clarification of the content &lt;> template relationship and confusion around the overall experience of managing pieces of navigation. &#8221; and &#8220;While the new Grid layout type was the primary focus of the testing call, feedback on it was limited to suggestions for consolidating the various options between the grid layout, Columns block, Gallery block, and Table block.&#8221; McCarthy wrote. </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 2022&#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. Updated by yours truly.  <a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/keeping-up-with-gutenberg-index-2020/\"><em>The index 2020 is here</em></a></p>\n\n\n\n\n<h2 class=\"wp-block-heading\" id=\"3-building-themes-for-fse-and-word-press\">Building Blocks and Tools for the Block editor. </h2>\n\n\n\n<p><strong><a href=\"https://twitter.com/3LPU4S\">Alfredo Navas</a></strong>, WebDevStudios was <a href=\"https://webdevstudios.com/2023/05/16/query-loop-block/\"><strong>Having Fun with Query Loop Block</strong></a> and published a post to tell you all about it. He takes you along to explore the usefulness of the Query Loop block and learn how to extend its capabilities.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>In his latest post for the Developer Blog, <strong>Michael Burridge</strong> created a tutorial on  <a href=\"https://developer.wordpress.org/news/2023/05/useentityrecords-an-easier-way-to-fetch-wordpress-data/\"><strong>useEntityRecords: an easier way to fetch WordPress data</strong></a>. If you have simple data fetching requirements and don’t need additional customization or resolution checks, the <code>useEntityRecords</code> function can be a straightforward choice. Burridge shows  how it simplifies data handling in contrast to useSelect + getEntityRecords. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>Don&#8217;t miss next week&#8217;s <strong>Developer Hours</strong> about the new WordPress tool called Playground. <strong>Adam Zieliński</strong> will introduce the app and demo some great use cases for it. There are two events, so all timezones get a chance to participate live. </p>\n\n\n\n<ul>\n<li><a href=\"https://www.meetup.com/learn-wordpress-online-workshops/events/293196462/\">May 23, 2023, at 17:00 UTC (11 am EDT)</a></li>\n\n\n\n<li><a href=\"https://www.meetup.com/learn-wordpress-online-workshops/events/293196452/\">May 24, 2023, at 8 am UTC </a></li>\n</ul>\n\n\n\n<img />\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<p><strong>WPCampus </strong>will take place from July 12 to the 14th, 2023 in New Orleans. The organizing team released their <a href=\"https://2023.wpcampus.org/schedule/\">schedule.</a> WPCampus 2023 is a hybrid event. <strong><a href=\"https://2023.wpcampus.org/tickets/\">Join in-person or online</a>.</strong></p>\n\n\n\n<p>I spotted Nick Diego on the roster with his 3-hour Workshop: <a href=\"https://2023.wpcampus.org/schedule/workshops/modern-wordpress-building-techniques-full-site-editing-in-higher-ed/\"><strong>Modern WordPress Building Techniques: Full Site Editing in Higher Ed</strong></a>. </p>\n\n\n\n<p>But there is more: </p>\n\n\n\n<ul>\n<li>Daniel Tyger and Tom O&#8217;Donnell from the University of Maine will share their Journey <a href=\"https://2023.wpcampus.org/schedule/from-classic-to-blocks-in-90-days/\"><strong>From Classic to Blocks in 90 Days</strong></a>?</li>\n\n\n\n<li>Joni Halabi will present on <a href=\"https://2023.wpcampus.org/schedule/make-it-your-own-integrating-twig-templates-with-your-wordpress-block-theme/\"><strong>Make it your own: Integrating Twig templates with your WordPress block theme</strong></a></li>\n\n\n\n<li><a href=\"https://2023.wpcampus.org/schedule/development-of-a-no-code-theme-for-teaching-full-site-editing-to-beginning-wordpress-students/\"><strong>Development of a No-Code Theme for Teaching Full Site Editing to Beginning WordPress Students</strong></a> with Drake Gómez</li>\n\n\n\n<li><a href=\"https://2023.wpcampus.org/schedule/destination-full-site-editing-all-the-steps-monmouth-university-took-to-prepare-the-future-of-wordpress/\"><strong>Destination Full-Site Editing: All the Steps Monmouth University Took to Prepare the Future of WordPress</strong></a> with <strong>Steve Graboski</strong></li>\n\n\n\n<li><a href=\"https://2023.wpcampus.org/schedule/55330/\"><strong>Developing a design system within the block editor</strong></a> with <strong>Nick Novak</strong></li>\n\n\n\n<li></li>\n</ul>\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 class=\"has-text-align-right has-small-font-size\"><em>Questions? Suggestions? Ideas? Don&#8217;t hesitate to send <a href=\"mailto:pauli@gutenbergtimes.com\">them via email</a> or send me a message on WordPress Slack or Twitter @bph</em>. </p>\n\n\n\n<p class=\"has-text-align-right has-small-font-size\">For questions to be answered on the <a href=\"http://gutenbergtimes.com/podcast\">Gutenberg Changelog</a>, send them to <a href=\"mailto:changelog@gutenbergtimes.com\">changelog@gutenbergtimes.com</a></p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n\n<p>Featured Image: Colorful Duplo blocks by Maruska, <a href=\"https://wordpress.org/photos/photo/2206266bbc/\">found on WordPress Photos site.</a></p>\n\n\n\n<hr class=\"wp-block-separator has-css-opacity 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 type=\"submit\" 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 has-css-opacity 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, 20 May 2023 13:00: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: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: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:52:\"WordPress.org blog: WordPress 6.2.2 Security Release\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=14974\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:68:\"https://wordpress.org/news/2023/05/wordpress-6-2-2-security-release/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:5417:\"<h2 class=\"wp-block-heading\">WordPress 6.2.2 is now available!</h2>\n\n\n\n<p>The 6.2.2 minor release addresses <a href=\"https://core.trac.wordpress.org/query?milestone=6.2.2&col=id&col=summary&col=status&col=owner&col=type&col=priority&col=milestone&order=priority\">1 bug</a> and 1 security issue. Because this is a security release, it is recommended that you update your sites immediately. All versions since WordPress 5.9 have also been updated.</p>\n\n\n\n<p>WordPress 6.2.2 is a rapid response release to address a regression in 6.2.1 and further patch a vulnerability addressed in 6.2.1. The next major release will be<a href=\"https://make.wordpress.org/core/6-3/\"> version 6.3</a> planned for August 2023.</p>\n\n\n\n<p>The update process will begin automatically if you have sites that support automatic background updates.</p>\n\n\n\n<p>You can <a href=\"https://wordpress.org/wordpress-6.2.2.zip\">download WordPress 6.2.2 from WordPress.org</a> or visit your WordPress Dashboard, click “Updates,” and click “Update Now.”</p>\n\n\n\n<p>For more information on this release, please <a href=\"https://wordpress.org/support/wordpress-version/version-6-2-2\">visit the HelpHub site</a>.</p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Security updates included in this release</strong></h2>\n\n\n\n<p>The security team would like to thank the following people for responsibly reporting vulnerabilities and allowing them to be fixed in this release.&nbsp;</p>\n\n\n\n<ul>\n<li>Block themes parsing shortcodes in user-generated data; thanks to Liam Gladdy of<a href=\"https://wpengine.com/\"> WP Engine</a> for reporting this issue.</li>\n</ul>\n\n\n\n<p>The issue above was originally patched in the 6.2.1 release, but needed further hardening here in 6.2.2. The Core team is thankful for the community in their response to 6.2.1 and collaboration on finding the best path forward for proper resolution in 6.2.2. The folks who worked on 6.2.2 are especially appreciative for everyone’s understanding while they worked asynchronously to get this out the door as quickly as possible.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Thank you to these WordPress contributors</h2>\n\n\n\n<p>This release was led by <a href=\"https://profiles.wordpress.org/desrosj/\">Jonathan Desrosiers</a>.</p>\n\n\n\n<p>WordPress 6.2.2 would not have been possible without the contributions of the following people. Their asynchronous coordination to deliver security fixes into a stable release is a testament to the power and capability of the WordPress community.</p>\n\n\n\n<p><a href=\"https://profiles.wordpress.org/jorbin/\">Aaron Jorbin</a>, <a href=\"https://profiles.wordpress.org/xknown/\">Alex Concha</a>, <a href=\"https://profiles.wordpress.org/antpb/\">Anthony Burchell</a>, <a href=\"https://profiles.wordpress.org/cbringmann/\">Chloé Bringmann</a>, <a href=\"https://profiles.wordpress.org/chriscct7/\">chriscct7</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/ehtis/\">Ehtisham S.</a>, <a href=\"https://profiles.wordpress.org/gziolo/\">Greg Ziółkowski</a>, <a href=\"https://profiles.wordpress.org/priethor/\">Héctor Prieto</a>, <a href=\"https://profiles.wordpress.org/isabel_brison/\">Isabel Brison</a>, <a href=\"https://profiles.wordpress.org/audrasjb/\">Jb Audras</a>, <a href=\"https://profiles.wordpress.org/jeffpaul/\">Jeffrey Paul</a>, <a href=\"https://profiles.wordpress.org/johnbillion/\">John Blackbourn</a>, <a href=\"https://profiles.wordpress.org/desrosj/\">Jonathan Desrosiers</a>, <a href=\"https://profiles.wordpress.org/chanthaboune/\">Josepha</a>, <a href=\"https://profiles.wordpress.org/Clorith/\">Marius L. J.</a>, <a href=\"https://profiles.wordpress.org/matveb/\">Matias Ventura</a>, <a href=\"https://profiles.wordpress.org/mikeschroder/\">Mike Schroder</a>, <a href=\"https://profiles.wordpress.org/peterwilsoncc/\">Peter Wilson</a>, <a href=\"https://profiles.wordpress.org/youknowriad/\">Riad Benguella</a>, <a href=\"https://profiles.wordpress.org/noisysocks/\">Robert Anderson</a>, <a href=\"https://profiles.wordpress.org/rmccue/\">Ryan McCue</a>, <a href=\"https://profiles.wordpress.org/Otto42/\">Samuel Wood (Otto)</a>, <a href=\"https://profiles.wordpress.org/coffee2code/\">Scott Reilly</a>, and <a href=\"https://profiles.wordpress.org/timothyblynjacobs/\">Timothy Jacobs</a></p>\n\n\n\n<h2 class=\"wp-block-heading\">How to contribute</h2>\n\n\n\n<p>To get involved in WordPress core development, head over to Trac, <a href=\"https://core.trac.wordpress.org/report/6\">pick a ticket</a>, and join the conversation in the <a href=\"https://wordpress.slack.com/archives/C02RQBWTW\">#core</a> and <a href=\"https://wordpress.slack.com/archives/C051Z1SKBDZ\">#6-3-release-leads</a> channels. Need help? Check out the <a href=\"https://make.wordpress.org/core/handbook/\">Core Contributor Handbook</a>.</p>\n\n\n\n<p><em>Thanks to <a href=\"https://profiles.wordpress.org/cbringmann/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>cbringmann</a>, <a href=\"https://profiles.wordpress.org/davidbaumwald/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>davidbaumwald</a>, <a href=\"https://profiles.wordpress.org/chanthaboune/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>chanthaboune</a>, <a href=\"https://profiles.wordpress.org/jeffpaul/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>jeffpaul</a> for proofreading.</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, 20 May 2023 04:09: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:19:\"Jonathan Desrosiers\";s: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:75:\"WPTavern: WordPress 6.3 Development Kicks Off to Conclude Gutenberg Phase 2\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=145206\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:86:\"https://wptavern.com/wordpress-6-3-development-kicks-off-to-conclude-gutenberg-phase-2\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3694:\"<p>The WordPress 6.3 development cycle has begun and work is already underway  on an ambitious list of features that will debut in the upcoming major release. It will <a href=\"https://make.wordpress.org/core/2023/02/04/phase-2-finale/\">cap off Phase 2</a> of the Gutenberg project, with an emphasis on polishing customization features and making them easier to use.</p>\n\n\n\n<p>WordPress 6.3 Editor Triage co-lead Anne McCarthy published a <a href=\"https://make.wordpress.org/core/2023/05/18/roadmap-to-6-3/\">roadmap to 6.3</a> this week, which summarizes what users can expect:</p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p>This release aims to make it easier for users to edit pages, manage navigation, and adjust styles all directly in the Site Editor. It also seeks to provide detailed, relevant information when exploring different parts of the site, such as showing the number of posts per page when viewing relevant blog templates. </p>\n</blockquote>\n\n\n\n<p>In addition to polishing and wrapping up phase 2, McCarthy&#8217;s post outlines the new features that are coming. Here are a few of the highlights: </p>\n\n\n\n<ul>\n<li><a href=\"https://github.com/WordPress/gutenberg/issues/44461\">Introduce content editing</a>, including clarifying the relationship between templates and content.</li>\n\n\n\n<li><a href=\"https://github.com/WordPress/gutenberg/issues/50396\">Add a Navigation section to the Site Editor</a>&nbsp;with nuanced options depending on the number of menus and complexity of each.</li>\n\n\n\n<li><a href=\"https://github.com/WordPress/gutenberg/pull/50463\">Add a Pages section to the Site Editor</a>.&nbsp;</li>\n\n\n\n<li><a href=\"https://github.com/WordPress/gutenberg/pull/49014\">Add a Styles section to the Site Editor.</a>&nbsp;</li>\n\n\n\n<li><a href=\"https://github.com/WordPress/gutenberg/issues/49601\">Expose revisions (styles, templates, and template parts)</a>.</li>\n\n\n\n<li><a href=\"https://github.com/WordPress/gutenberg/issues/48457\">Add a command center tool</a> for easily accessing different parts of your site. <a href=\"https://make.wordpress.org/core/2023/05/17/command-center-request-for-feedback/\">More information here</a>.</li>\n\n\n\n<li><a href=\"https://github.com/WordPress/gutenberg/pull/50030\">Add Theme Previews for block themes</a>.</li>\n\n\n\n<li><a href=\"https://github.com/WordPress/gutenberg/issues/38990\">Surface aspect ratio tooling</a>.</li>\n\n\n\n<li><a href=\"https://github.com/WordPress/gutenberg/issues/49175\">Consider adding distraction free mode to Site Editor</a>.&nbsp;</li>\n\n\n\n<li><a href=\"https://github.com/WordPress/gutenberg/issues/25071\">Keep custom templates and template parts across themes</a>.</li>\n\n\n\n<li><a href=\"https://github.com/WordPress/gutenberg/issues/45271\">Add an interface for font management</a>.</li>\n\n\n\n<li><a href=\"https://github.com/WordPress/gutenberg/issues/50397#top\">Explore a path towards “library” management with reusable blocks and template parts</a>.</li>\n</ul>\n\n\n\n<p>This is a tentative glimpse at some of the user-facing features that may be coming in WordPress 6.3, but the <a href=\"https://make.wordpress.org/core/2023/05/18/roadmap-to-6-3/\">roadmap</a> includes many more items, screenshots, and quick demos.</p>\n\n\n\n<p>&#8220;As always, what’s shared here is being actively pursued, but doesn’t necessarily mean each will make it into the final release of WordPress 6.3,&#8221; McCarthy said.</p>\n\n\n\n<p>Gutenberg Lead Architect Matías Ventura will be <a href=\"https://make.wordpress.org/core/2023/05/18/wordpress-6-3-planning-roundup/\">leading WordPress 6.3</a>. Beta 1 is expected in a little more than a month on June 27, 2023, with RC 1 on July 18, and the general release scheduled for August 8.</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, 19 May 2023 22:13:07 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:46;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"WPTavern: WCEU 2023 Publishes Schedule, Reaffirms Commitment to Diversity\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=145217\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:83:\"https://wptavern.com/wceu-2023-publishes-schedule-reaffirms-commitment-to-diversity\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3577:\"<p><a href=\"https://europe.wordcamp.org/2023/\">WordCamp Europe</a> 2023 is just under three weeks away from happening in Athens on June 8-10. More than 2,700 <a href=\"https://europe.wordcamp.org/2023/tickets/\">tickets</a> have been purchased and 527 remain, along with 49 micro-sponsor tickets. </p>\n\n\n\n<p>Speaker announcements have concluded and the official <a href=\"https://europe.wordcamp.org/2023/schedule/\">schedule</a> was published today. WCEU will be running three tracks of presentations and two tracks for workshops. Organizers have also announced a <a href=\"https://europe.wordcamp.org/2023/welness-track-activities/\">Wellness Track</a> that will feature different activities throughout the day, including a Yoga class, a Tai Chi class, and a group hike.</p>\n\n\n\n<p>&#8220;The Wellness Track is an important addition to WordCamp Europe because we need to find a balance and be more focused on taking care of our minds and bodies, taking care of the whole community and in turn the one world we have to live in,&#8221; organizer Ohia Thompson said. </p>\n\n\n\n<p>&#8220;This means seeing our interconnectedness and moving forward with a focus on wellbeing, diversity, and sustainability. The Wellness Track this year is just the beginning of a more intentional future for everyone connected to WordPress.”</p>\n\n\n\n<p>Last year the team hosting the event in Porto was <a href=\"https://europe.wordcamp.org/2022/diversity-at-wceu/\">called out for a lack of diversity on the organizing team</a>, which performs critical tasks like selecting speakers and managing a speaker support program. In what appears to be an echo back to that controversy, a public interaction on Twitter earlier this month caused community members to question the organizing team.</p>\n\n\n\n<p>WCEU was once again forced to reaffirm its commitment to diversity after Sjoerd Blom, one of the Global organizers, accused StellarWP&#8217;s Director of Community Engagement, Michelle Frechette, of &#8220;being prejudiced&#8221; when she questioned the lack of diversity in the first few rounds of speaker announcements. </p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">Please stop being prejudiced and wait until ALL speakers have been announced. Thanks.</p>&mdash; Sjoerd Blom (@sjblom) <a href=\"https://twitter.com/sjblom/status/1656015637641043968?ref_src=twsrc%5Etfw\">May 9, 2023</a></blockquote>\n</div>\n\n\n\n<p>Blom has since publicly apologized for his response to the criticism this week, reiterating that diversity matters to the team, but only after WCEU received overwhelmingly negative feedback regarding the incident.</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">In past weeks, <a href=\"https://twitter.com/michelleames?ref_src=twsrc%5Etfw\">@michelleames</a> highlighted the lack of diversity in WCEU’s speaker line up. I’m truly sorry for the offense I caused, especially in using the word ‘prejudiced’. <a href=\"https://twitter.com/hashtag/WCEU?src=hash&ref_src=twsrc%5Etfw\">#WCEU</a> and I know that diversity matters, and we will be sharing more about what happened in coming days.</p>&mdash; Sjoerd Blom (@sjblom) <a href=\"https://twitter.com/sjblom/status/1659236811456086016?ref_src=twsrc%5Etfw\">May 18, 2023</a></blockquote>\n</div>\n\n\n\n<p>WordCamp Europe has not yet published anything to mitigate the effects of this public altercation but damage control measures are likely in the works, as Blom indicated a more official response will be coming from the team.</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, 19 May 2023 17:23:12 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:68:\"Do The Woo Community: Do the Woo Friday Show with Michelle Frechette\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"https://dothewoo.io/?p=75166\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:67:\"https://dothewoo.io/do-the-woo-friday-show-with-michelle-frechette/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:390:\"<p>We have a great conversation of tips and experiences when it comes to speaking at WordPress events. </p>\n<p>&gt;&gt; The post <a rel=\"nofollow\" href=\"https://dothewoo.io/do-the-woo-friday-show-with-michelle-frechette/\">Do the Woo Friday Show with Michelle Frechette</a> appeared first on <a rel=\"nofollow\" href=\"https://dothewoo.io\">Do the Woo - a WooCommerce Builder Community</a>	.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 19 May 2023 08:01:51 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s: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:106:\"Post Status: WP 6.2.1 • PHP8 Compatibility • Translation Playground • Contributor Mentorship Program\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://poststatus.com/?p=149361\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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://poststatus.com/wp-6-2-1-php8-compatibility-translation-playground-contributor-mentorship-program/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:18458:\"<h2 class=\"wp-block-heading\" id=\"h-this-week-at-wordpress-org-april-3-2023\">This Week at WordPress.org (May 14, 2023)</h2>\n\n\n<div class=\"has-background has-theme-palette-8-background-color wp-block-post-excerpt\"><p class=\"wp-block-post-excerpt__excerpt\">It&#8217;s time to update your WordPress websites now. This week&#8217;s release breaks shortcodes used in Block Themes on Templates, but is related to a security issue. <br /><br />Is WordPress, and the plugin and theme ecosystem around it, ready for PHP 8? Earlier versions of PHP, such as 7.4, are now considered End of Life, and hosts are eager to deploy supported versions. But first, Core compatibility needs additional testing to come out of beta compatibility.<br /><br />Translating WordPress just got a little bit easier for contributors with the WP Translation Playground. <br /><br />A Community team working group announces a pilot proposal for a Contributor Mentorship Program, helping all contributors onboard. </p></div>\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<div class=\"wp-block-kadence-infobox kt-info-box_94d1bd-77\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-left kt-info-halign-left\"><div class=\"kt-blocks-info-box-media-container\"><div class=\"kt-blocks-info-box-media kt-info-media-animate-none\"><div class=\"kadence-info-box-icon-container kt-info-icon-animate-none\"><div class=\"kadence-info-box-icon-inner-container\"><span class=\"kb-svg-icon-wrap kb-svg-icon-ic_people kt-info-svg-icon\"></span></div></div></div></div><div class=\"kt-infobox-textcontent\"><h2 class=\"kt-blocks-info-box-title\">WP 6.2.1, PHP8, Translation Playground, Mentorship Program</h2><p class=\"kt-blocks-info-box-text\"><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f680.png\" alt=\"🚀\" class=\"wp-smiley\" /> <a href=\"https://wordpress.org/news/2023/05/wordpress-6-2-1-maintenance-security-release/\">WordPress 6.2.1 Maintenance &amp; Security Release</a><br /><br /><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f418.png\" alt=\"🐘\" class=\"wp-smiley\" /> <a href=\"https://make.wordpress.org/hosting/2023/05/15/is-wordpress-compatible-with-php-8/\">Is WordPress compatible with PHP 8?</a><br /><br /><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f5e3.png\" alt=\"🗣\" class=\"wp-smiley\" /> <a href=\"https://make.wordpress.org/polyglots/2023/04/19/wp-translation-playground/\">WP Translation Playground</a><br /><br /><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f469-1f3fb-200d-1f3eb.png\" alt=\"👩🏻‍🏫\" class=\"wp-smiley\" /> <a href=\"https://make.wordpress.org/project/2023/05/17/wordpress-contributor-mentorship-program-pilot-program-proposal/\">WordPress Contributor Mentorship Program: Pilot Program Proposal</a><br /><br /> </p></div></div></div>\n\n\n\n<div class=\"wp-block-kadence-spacer aligncenter kt-block-spacer-_b57166-6e\"><div class=\"kt-block-spacer kt-block-spacer-halign-center\"><hr class=\"kt-divider\" /></div></div>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-news\"><a href=\"https://wordpress.org/news\">News</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://wordpress.org/news/2023/05/wordpress-6-2-1-maintenance-security-release/\">WordPress 6.2.1 Maintenance &amp; Security Release</a></li>\n\n\n\n<li><a href=\"https://wordpress.org/news/2023/05/2022-annual-survey-results-next-steps/\">2022 Annual Survey Results &amp; Next Steps</a></li>\n\n\n\n<li><a href=\"https://wordpress.org/news/2023/05/the-month-in-wordpress-april-2023/\">The Month in WordPress – April 2023</a></li>\n\n\n\n<li><a href=\"https://wordpressfoundation.org/news/2023/kim-parsell-memorial-scholarship-for-wordcamp-us-2023/\">Kim Parsell Memorial Scholarship for WordCamp US 2023</a></li>\n</ul>\n\n\n\n<div class=\"wp-block-kadence-spacer aligncenter kt-block-spacer-_8f6276-eb\"><div class=\"kt-block-spacer kt-block-spacer-halign-center\"><hr class=\"kt-divider\" /></div></div>\n\n\n\n<div class=\"wp-block-columns is-layout-flex wp-container-11\">\n<div class=\"wp-block-column is-layout-flow\">\n<h2 class=\"wp-block-heading\"><a href=\"https://make.wordpress.org/accessibility\">Accessibility</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/accessibility/2023/05/18/accessibility-team-meeting-agenda-may-19-2023/\">Accessibility Team Meeting Agenda: May 19, 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-community\"><a href=\"https://make.wordpress.org/community\">Community</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/community/2023/05/18/meetup-organizer-newsletter-may-2023/\">Meetup Organizer Newsletter: May 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/community/2023/05/18/announcement-increasing-meetup-venue-support-funds/\">Announcement: Increasing Meetup Venue Support Funds</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/community/2023/05/10/kim-parsell-memorial-scholarship-for-wordcamp-us-2023/\">Kim Parsell Memorial Scholarship for WordCamp US 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/community/2023/05/08/the-next-generation-of-wordcamps/\">The Next Generation of WordCamps</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/community/2023/05/15/contributor-working-group-mentorship-chat-agenda-may-18th-0700-utc-apac-emea-and-1600-utc-amer/\">Contributor Working Group: Mentorship Chat Agenda | May 18th 07:00 UTC (APAC/EMEA) and 16:00 UTC (AMER)</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/community/2023/05/11/recap-of-the-diverse-speaker-training-group-wpdiversity-amer-emea-on-may-10-2023/\">Recap of the Diverse Speaker Training group (#WPDiversity) AMER/EMEA on May 10, 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-core\"><a href=\"https://make.wordpress.org/core\">Core</a> </h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/05/18/wordpress-6-3-planning-roundup/\">WordPress 6.3 Planning Roundup</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/05/18/roadmap-to-6-3/\">Roadmap to 6.3</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/05/17/command-center-request-for-feedback/\">Command Center: Request for feedback</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/05/16/proposal-retiring-older-default-themes/\">Proposal: Retiring Older Default Themes</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-developer-blog\"><a href=\"https://developer.wordpress.org/news/\">Developer Blog</a></h3>\n\n\n\n<ul>\n<li><a href=\"https://developer.wordpress.org/news/2023/05/whats-new-for-developers-may-2023/\">What’s new for developers? (May 2023)</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-meetings\">Meetings</h3>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/05/16/dev-chat-agenda-may-17-2023/\">Dev Chat Agenda, May 17, 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/05/16/editor-chat-agenda-may-17th-2023/\">Editor Chat Agenda: May 17th 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">Design</h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/design/2023/05/08/design-share-apr-24-may-5/\">Design Share: Apr 24–May 5</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-docs\"><a href=\"https://make.wordpress.org/docs\">Docs</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/docs/2023/05/16/agenda-for-docs-team-bi-weekly-meeting-may-16-2023/\">Agenda for Docs Team bi-weekly meeting May 16, 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/docs/2023/05/16/summary-for-docs-team-meeting-may-2-2023/\">Summary for Docs Team meeting, May 2, 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-hosting\"><a href=\"https://make.wordpress.org/hosting\">Hosting</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/hosting/2023/05/17/hosting-team-meeting-agenda-2023-05-17/\">Hosting Team meeting agenda 2023-05-17</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/hosting/2023/05/15/is-wordpress-compatible-with-php-8/\">Is WordPress compatible with PHP 8?</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-marketing\"><a href=\"https://make.wordpress.org/marketing\">Marketing</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/marketing/2023/05/16/notes-global-marketing-team-meeting-9-may-2023/\">Notes: Global Marketing Team meeting, 9 May 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/marketing/2023/05/17/day-10-wp20-from-blogs-to-blocks/\">Day 10: #WP20 From Blogs to Blocks</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/marketing/2023/05/15/day-9-wp20-from-blogs-to-blocks/\">Day 9: #WP20 From Blogs to Blocks</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/marketing/2023/05/15/day-8-wp20-from-blogs-to-blocks/\">Day 8: #WP20 From Blogs to Blocks</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-meta\"><a href=\"https://make.wordpress.org/meta\">Meta</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/meta/2023/05/04/matrix-chat-summary-may-4-2023/\">Matrix chat Summary – May 4, 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-mobile\"><a href=\"https://make.wordpress.org/mobile\">Mobile</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/mobile/2023/04/11/contribute-to-the-future-of-the-wordpress-app/\">Contribute to the Future of the WordPress App</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-openverse\"><a href=\"https://make.wordpress.org/openverse\">Openverse</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/openverse/2023/05/18/catalog-postgres-exploration-effort/\">Catalog Postgres Exploration Effort</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/openverse/2023/05/15/last-week-openverse-2023-05-08-2023-05-15/\">A week in Openverse: 2023-05-08 – 2023-05-15</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-performance\"><a href=\"https://make.wordpress.org/performance/\">Performance</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/05/16/performance-chat-summary-16-may-2023/\">Performance Chat Summary: 16 May 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-plugins\"><a href=\"https://make.wordpress.org/plugins\">Plugins</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/plugins/2023/03/21/use-of-code-generators-must-remain-gpl-compatible/\">Use of Code Generators Must Remain GPL Compatible</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/plugins/2023/03/10/advance-notice-of-retirement/\">Advance Notice of Retirement</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/updates/2023/05/09/plugin-review-team-update-8-may-2023/\">Plugin Review Team Update: 8 May 2023</a></li>\n</ul>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow\">\n<h2 class=\"wp-block-heading\" id=\"h-polyglots\"><a href=\"https://make.wordpress.org/polyglots\">Polyglots</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/polyglots/2023/04/19/wp-translation-playground/\">WP Translation Playground</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/polyglots/2023/05/17/agenda-weekly-polyglots-chat-may-17-2023-0700-utc/\">Agenda: Weekly Polyglots Chat – May 17, 2023 (07:00 UTC)</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-project\">Project</h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/project/2023/05/17/wordpress-contributor-mentorship-program-pilot-program-proposal/\">WordPress Contributor Mentorship Program: Pilot Program Proposal</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/project/2023/04/13/wordpress-at-20-in-print/\">Building Blocks: The Evolution of WordPress 2013-2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/project/2023/04/19/showcase-content-moderation/\">Revitalizing the Showcase</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-support\"><a href=\"https://make.wordpress.org/support\">Support</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/support/2023/05/agenda-for-may-18th-support-meeting-2/\">Agenda for May 18th Support Meeting</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-test\"><a href=\"https://make.wordpress.org/test\">Test</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/test/2023/05/12/test-chat-summary-9-may-2023/\">Test Chat Summary: 9 May 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/test/2023/05/11/fse-program-front-page-fun-summary/\">FSE Program Front Page Fun Summary</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-theme\">Theme</h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/themes/2023/05/18/hallway-hangout-curating-the-editor-and-building-block-themes-for-clients/\">Hallway Hangout: Curating the editor and building block themes for clients</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/themes/2023/05/17/theme-handbook-overhaul-phase-2-creating-content/\">Theme Handbook Overhaul: Phase 2 (Creating Content)</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-training\"><a href=\"https://make.wordpress.org/training\">Training</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/training/2023/05/09/brainstorm-wordcamp-europe-2023-contributor-day/\">Brainstorm – WordCamp Europe 2023 Contributor Day</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/training/2023/05/09/training-team-meeting-recap-for-may-2nd-2023/\">Training Team Meeting Recap for May 2nd, 2023</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-tutorials\"><a href=\"https://learn.wordpress.org/tutorials\">Tutorials</a></h3>\n\n\n\n<ul>\n<li><a href=\"https://learn.wordpress.org/tutorial/introduction-to-wordpress-multisite-networks/\">Introduction to WordPress Multisite Networks</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/tutorial/wordpress-editor-modes-for-streamlining-content-creation/\">WordPress editor modes for streamlining content creation</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/tutorial/exploring-category-templates-with-block-themes/\">Exploring category templates with block themes</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-online-workshops\">Online Workshops</h3>\n\n\n\n<ul>\n<li><a href=\"https://learn.wordpress.org/?meeting=nesting-blocks-and-advanced-block-layouts\">Nesting blocks and advanced block layouts</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=developer-hours-wordpress-playground-2\">Developer Hours – WordPress Playground</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=developer-hours-wordpress-playground\">Developer Hours – WordPress Playground</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=create-a-four-page-wordpress-website-2-5-footers\">Create a four page WordPress website #2.5: Footers</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=wp-dev-livestream-sendig-block-theme-2\">WP dev livestream: Sendig block theme</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-courses\"><a href=\"https://learn.wordpress.org/courses\">Courses</a></h3>\n\n\n\n<ul>\n<li><a href=\"https://learn.wordpress.org/course/converting-a-shortcode-to-a-block/\">Converting a Shortcode to a Block</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-wp-cli\">WP-CLI</h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/cli/2023/04/05/wp-cli-v2-8-0-release-date/\">WP-CLI v2.8.0 release date</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-wptv\">WPTV</h2>\n\n\n\n<ul>\n<li><a href=\"https://wordpress.tv/category/year/2022/\">Latest WordPress TV videos</a></li>\n</ul>\n</div>\n</div>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-related-news\">Related News:</h2>\n\n\n\n<ul>\n<li><a href=\"https://nodejs.org/en/blog/release/v20.2.0\">Node v20.2.0 released</a></li>\n\n\n\n<li><a href=\"https://www.php.net/archive/2023.php#2023-04-13-1\"><a href=\"https://www.php.net/archive/2023.php#2023-05-11-1\">PHP 8.2.6 Released!</a></a></li>\n\n\n\n<li><a href=\"https://www.php.net/archive/2023.php#2023-05-11-2\">PHP 8.1.19 Released!</a></li>\n\n\n\n<li><a href=\"https://262.ecma-international.org/13.0/\">TC39</a></li>\n\n\n\n<li><a href=\"https://github.com/composer/composer/releases/tag/2.5.5\">Composer 2.5.5</a></li>\n</ul>\n\n\n\n<p class=\"has-theme-palette-7-background-color has-background\">Thanks for reading our WP dot .org roundup! Each week we are highlighting the news and discussions coming from the good folks making WordPress possible. If you or your company create products or services that use WordPress, you need to be engaged with them and their work. Be sure to share this resource with your product and project managers. <br /><br /><strong>Are you interested in giving back and contributing your time and skills to WordPress.org?</strong> <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f64f.png\" alt=\"🙏\" class=\"wp-smiley\" /> <a href=\"https://wordpress.org/support/article/contributing-to-wordpress/\">Start Here ›</a><br /><br /><strong>Get our weekly WordPress community news digest</strong> — Post Status&#8217; <a href=\"https://poststatus.com/news/week-in-review/\">Week in Review</a> — covering the WP/Woo news plus significant writing and podcasts. It&#8217;s also available in <a href=\"https://poststatus.com/newsletter\">our newsletter</a>. <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f48c.png\" alt=\"💌\" class=\"wp-smiley\" /></p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<div class=\"wp-block-media-text alignwide is-stacked-on-mobile has-background\"><a href=\"https://poststatus.com/\"><img src=\"https://poststatus.com/wp-content/uploads/2021/09/vertical-post-status-logo-250.png\" alt=\"Post Status\" class=\"wp-image-85823 size-full\" /></a><div class=\"wp-block-media-text__content\">\n<p class=\"has-text-align-left has-normal-font-size\" id=\"h-get-ready-for-remote-work\">You — and <a href=\"https://poststatus.com/#Agency\">your whole team</a> can <a href=\"https://poststatus.com/#choose-membership\">Join Post Status</a> too!</p>\n\n\n\n<p class=\"has-text-align-left has-small-font-size\"><strong>Build your network. Learn with others. Find your next job — or your next hire.</strong> Read the <strong>Post Status</strong> <a href=\"https://poststatus.com/newsletter/\">newsletter</a>. <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/2709.png\" alt=\"✉\" class=\"wp-smiley\" /> Listen to <a href=\"https://poststatus.com/podcasts/\">podcasts</a>. <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f399.png\" alt=\"🎙\" class=\"wp-smiley\" /> Follow <a href=\"https://twitter.com/post_status/\">@Post_Status</a> <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f426.png\" alt=\"🐦\" class=\"wp-smiley\" /> and <a href=\"https://www.linkedin.com/company/post-status-llc/\">LinkedIn</a>. <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f4bc.png\" alt=\"💼\" class=\"wp-smiley\" /></p>\n</div></div>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n<p>This article was published at Post Status — the community for WordPress professionals.</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, 18 May 2023 21:20:16 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Courtney Robertson\";s: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:99:\"WPTavern: WordPress Is Developing a Command Center for Quick Search and Navigation Inside the Admin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=145170\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:110:\"https://wptavern.com/wordpress-is-developing-a-command-center-for-quick-search-and-navigation-inside-the-admin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4455:\"<p>WordPress may soon be getting a Command Center, which would function as a quick search component for navigating to other areas of the admin, and would also be capable of running commands. The feature was <a href=\"https://wptavern.com/gutenberg-15-6-introduces-experimental-details-block-and-command-center-for-site-editor\">introduced in Gutenberg 15.6</a> under the Experimental flag and currently has limited use in the Site Editor context while navigating and editing templates. </p>\n\n\n\n<p>The Command Center project is intended to be expanded to the whole of wp-admin in an extensible way so plugin developers can register their own commands. This would also allow for AI-powered extensions to expedite design, content, and layout creation. </p>\n\n\n\n<p>&#8220;One aspect worth highlighting is the proposed API to interact with the command center,&#8221; Gutenberg engineer Riad Benguella said in <a href=\"https://make.wordpress.org/core/2023/05/17/command-center-request-for-feedback/\">a post requesting feedback on the project</a>. &#8220;The command center has been developed as an independent <code>@wordpress/commands</code> package. It offers APIs to render and register commands dynamically. These extension points allow plugins to inject any commands of their liking and opens the door for interactions with LLMs.&#8221;</p>\n\n\n\n<p>Benguella shared a video of the prototype navigating between templates and template parts in the Site Editor:</p>\n\n\n\n\n\n\n\n<p>Feedback so far had been generally positive, but contributors on the project will have the challenge of providing real examples of the Command Center&#8217;s benefits in order for some to fully realize the vision for this feature as more than just a fancy shortcut for power users.</p>\n\n\n\n<p>&#8220;Neat, but I’m unclear what practical problem this actually solves?&#8221; WordPress developer Jon Brown said.</p>\n\n\n\n<p>&#8220;Currently there is a clear easy to find and use drop down at the top center of the editor. Are people really having problems using that? This seems to complicate things where users have to know the names of the items to type them in. Does the average user know to type in &#8216;post meta&#8217; to edit that?</p>\n\n\n\n<p>&#8220;There are couple plugins that have done this admin wide, which again while neat, seems better aimed at power users that already know what they’re looking for.&#8221;</p>\n\n\n\n<p>Benguella responded that the Command Center is being developed as &#8220;a complementary UI tailored specifically for average and power users,&#8221; and that users would not be required to remember technical terms in order to use it.</p>\n\n\n\n<p>Other participants in the conversation asked that contributors consider not releasing the Command Center in WordPress until it can serve contexts beyond just the Site Editor.</p>\n\n\n\n<p>&#8220;Initially we’ve added the command center to both post and site editors but I expect that we’ll be adding to all WP-Admin once we’ve proved its behavior and APIs,&#8221; Benguella responded. The API is currently still in the experimental stage in Gutenberg and it&#8217;s not yet known if expansion to wp-admin would be added before or after the Command Center lands in the next version of WordPress.</p>\n\n\n\n<p>&#8220;Love the concept, hate that it’s limited to the Editor,&#8221; WordPress developer Dovid Levine said.</p>\n\n\n\n<p>&#8220;This would ideally be implemented holistically – either as part of a push to modernize the long-neglected dashboard or API efforts to interact with GB data outside of the Editor. We’ve seen how slow developer adoption is when done the other way (GB first/only) – and worse, how painful it is for the early adopters/advocates if/when considerations beyond the Editor are finally taken into account.&#8221;</p>\n\n\n\n<p>The first milestone, powering quick search for content and templates in the editor, is <a href=\"https://github.com/WordPress/gutenberg/issues/48457\">outlined on GitHub</a> where contributors can track the progress. The Command Center will also be tested in the future as part of the FSE Outreach Program. Benguella is <a href=\"https://make.wordpress.org/core/2023/05/17/command-center-request-for-feedback/\">requesting feedback</a> on the feature and its API on the post published to the core dev blog, specifically regarding the user experience and whether the APIs detailed in the post are capable enough to address third-party use cases.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 18 May 2023 21:13:38 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}}}}}}}}}}s:4:\"type\";i:128;s:7:\"headers\";O:48:\"WpOrg\\Requests\\Utility\\CaseInsensitiveDictionary\":1:{s:7:\"\0*\0data\";a:8:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Thu, 08 Jun 2023 17:43:09 GMT\";s:12:\"content-type\";s:8:\"text/xml\";s:13:\"last-modified\";s:29:\"Thu, 08 Jun 2023 17:30:31 GMT\";s:4:\"vary\";s:15:\"Accept-Encoding\";s:15:\"x-frame-options\";s:10:\"SAMEORIGIN\";s:16:\"content-encoding\";s:2:\"br\";s:4:\"x-nc\";s:9:\"HIT ord 2\";}}s:5:\"build\";s:14:\"20211220193300\";}','no'),(193,'_transient_timeout_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9','1686289389','no'),(194,'_transient_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9','1686246189','no'),(195,'_transient_timeout_dash_v2_88ae138922fe95674369b1cb3d215a2b','1686289389','no'),(196,'_transient_dash_v2_88ae138922fe95674369b1cb3d215a2b','<div class=\"rss-widget\"><ul><li><a class=\'rsswidget\' href=\'https://wordpress.org/news/2023/06/the-month-in-wordpress-may-2023/\'>The Month in WordPress – May 2023</a></li><li><a class=\'rsswidget\' href=\'https://wordpress.org/news/2023/06/episode-57-the-power-of-wordpress-mentorship/\'>WP Briefing: Episode 57: The Power of WordPress Mentorship</a></li></ul></div><div class=\"rss-widget\"><ul><li><a class=\'rsswidget\' href=\'https://dothewoo.io/future-of-the-wordpress-community/\'>Do The Woo Community: The Future of the WordPress Community</a></li><li><a class=\'rsswidget\' href=\'https://ma.tt/2023/06/wordpress-ai/\'>Matt: WordPress &amp; AI</a></li><li><a class=\'rsswidget\' href=\'https://heropress.com/essays/because-of-wordpress/#utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=because-of-wordpress\'>HeroPress: Because of WordPress</a></li></ul></div>','no'),(197,'_site_transient_timeout_available_translations','1686257101','no'),(198,'_site_transient_available_translations','a:130:{s:2:\"af\";a:8:{s:8:\"language\";s:2:\"af\";s:7:\"version\";s:8:\"5.8-beta\";s:7:\"updated\";s:19:\"2021-05-13 15:59:22\";s:12:\"english_name\";s:9:\"Afrikaans\";s:11:\"native_name\";s:9:\"Afrikaans\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.8-beta/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:\"am\";a:8:{s:8:\"language\";s:2:\"am\";s:7:\"version\";s:5:\"6.0.5\";s:7:\"updated\";s:19:\"2022-09-29 20:43:49\";s:12:\"english_name\";s:7:\"Amharic\";s:11:\"native_name\";s:12:\"አማርኛ\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.0.5/am.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"am\";i:2;s:3:\"amh\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"ቀጥል\";}}s:3:\"arg\";a:8:{s:8:\"language\";s:3:\"arg\";s:7:\"version\";s:8:\"6.2-beta\";s:7:\"updated\";s:19:\"2022-09-22 16:46:56\";s:12:\"english_name\";s:9:\"Aragonese\";s:11:\"native_name\";s:9:\"Aragonés\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/6.2-beta/arg.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"an\";i:2;s:3:\"arg\";i:3;s:3:\"arg\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continar\";}}s:2:\"ar\";a:8:{s:8:\"language\";s:2:\"ar\";s:7:\"version\";s:5:\"6.2.2\";s:7:\"updated\";s:19:\"2023-04-02 03:21:35\";s:12:\"english_name\";s:6:\"Arabic\";s:11:\"native_name\";s:14:\"العربية\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.2.2/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:12:\"متابعة\";}}s:3:\"ary\";a:8:{s:8:\"language\";s:3:\"ary\";s:7:\"version\";s:6:\"4.8.22\";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:63:\"https://downloads.wordpress.org/translation/core/4.8.22/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:\"6.2.2\";s:7:\"updated\";s:19:\"2023-05-28 09:55:22\";s:12:\"english_name\";s:8:\"Assamese\";s:11:\"native_name\";s:21:\"অসমীয়া\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.2.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: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: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:\"bel\";a:8:{s:8:\"language\";s:3:\"bel\";s:7:\"version\";s:6:\"4.9.23\";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.23/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:\"6.2.2\";s:7:\"updated\";s:19:\"2023-05-29 17:05:45\";s:12:\"english_name\";s:9:\"Bulgarian\";s:11:\"native_name\";s:18:\"Български\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.2.2/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:12:\"Напред\";}}s:5:\"bn_BD\";a:8:{s:8:\"language\";s:5:\"bn_BD\";s:7:\"version\";s:5:\"6.2.2\";s:7:\"updated\";s:19:\"2023-06-02 11:24:48\";s:12:\"english_name\";s:20:\"Bengali (Bangladesh)\";s:11:\"native_name\";s:15:\"বাংলা\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.2.2/bn_BD.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"bn\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:15:\"অবিরত\";}}s:2:\"bo\";a:8:{s:8:\"language\";s:2:\"bo\";s:7:\"version\";s:8:\"5.8-beta\";s:7:\"updated\";s:19:\"2020-10-30 03:24:38\";s:12:\"english_name\";s:7:\"Tibetan\";s:11:\"native_name\";s:21:\"བོད་ཡིག\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.8-beta/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:33:\"མུ་མཐུད་དུ།\";}}s:5:\"bs_BA\";a:8:{s:8:\"language\";s:5:\"bs_BA\";s:7:\"version\";s:5:\"6.2.2\";s:7:\"updated\";s:19:\"2023-02-22 20:45:53\";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/6.2.2/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:\"6.2.2\";s:7:\"updated\";s:19:\"2023-06-07 09:25:34\";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/6.2.2/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:\"6.2.2\";s:7:\"updated\";s:19:\"2023-05-22 09:37:21\";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/6.2.2/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:\"6.2.2\";s:7:\"updated\";s:19:\"2023-05-10 08:48:02\";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/6.2.2/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:\"6.2.2\";s:7:\"updated\";s:19:\"2023-05-20 20:08:45\";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/6.2.2/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:8:\"Fortsæt\";}}s:5:\"de_DE\";a:8:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"6.2.2\";s:7:\"updated\";s:19:\"2023-05-22 12:57:54\";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/6.2.2/de_DE.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Weiter\";}}s:12:\"de_DE_formal\";a:8:{s:8:\"language\";s:12:\"de_DE_formal\";s:7:\"version\";s:5:\"6.2.2\";s:7:\"updated\";s:19:\"2023-05-22 14:37:33\";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/6.2.2/de_DE_formal.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Weiter\";}}s:14:\"de_CH_informal\";a:8:{s:8:\"language\";s:14:\"de_CH_informal\";s:7:\"version\";s:5:\"6.2.2\";s:7:\"updated\";s:19:\"2023-03-28 07:33:50\";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/6.2.2/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:\"6.2.2\";s:7:\"updated\";s:19:\"2023-03-29 21:14:35\";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/6.2.2/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:5:\"de_CH\";a:8:{s:8:\"language\";s:5:\"de_CH\";s:7:\"version\";s:5:\"6.2.2\";s:7:\"updated\";s:19:\"2023-03-28 07:37:41\";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/6.2.2/de_CH.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Weiter\";}}s:3:\"dsb\";a:8:{s:8:\"language\";s:3:\"dsb\";s:7:\"version\";s:5:\"6.2.2\";s:7:\"updated\";s:19:\"2022-07-16 12:13:09\";s:12:\"english_name\";s:13:\"Lower Sorbian\";s:11:\"native_name\";s:16:\"Dolnoserbšćina\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.2.2/dsb.zip\";s:3:\"iso\";a:2:{i:2;s:3:\"dsb\";i:3;s:3:\"dsb\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:5:\"Dalej\";}}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:\"6.2.2\";s:7:\"updated\";s:19:\"2023-06-08 08:00:50\";s:12:\"english_name\";s:5:\"Greek\";s:11:\"native_name\";s:16:\"Ελληνικά\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.2.2/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_CA\";a:8:{s:8:\"language\";s:5:\"en_CA\";s:7:\"version\";s:5:\"6.2.2\";s:7:\"updated\";s:19:\"2023-04-07 21:00:17\";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/6.2.2/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_NZ\";a:8:{s:8:\"language\";s:5:\"en_NZ\";s:7:\"version\";s:5:\"6.0.5\";s:7:\"updated\";s:19:\"2022-04-01 22:35:34\";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/6.0.5/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_AU\";a:8:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:5:\"6.2.2\";s:7:\"updated\";s:19:\"2023-05-11 07:12:43\";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/6.2.2/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_GB\";a:8:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:5:\"6.2.2\";s:7:\"updated\";s:19:\"2023-06-04 17:36:42\";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/6.2.2/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_ZA\";a:8:{s:8:\"language\";s:5:\"en_ZA\";s:7:\"version\";s:5:\"6.0.5\";s:7:\"updated\";s:19:\"2021-12-24 12:36:39\";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/6.0.5/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:\"6.2.2\";s:7:\"updated\";s:19:\"2023-05-17 04:31:21\";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/6.2.2/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_MX\";a:8:{s:8:\"language\";s:5:\"es_MX\";s:7:\"version\";s:5:\"6.2.2\";s:7:\"updated\";s:19:\"2023-05-22 14:08:08\";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/6.2.2/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_AR\";a:8:{s:8:\"language\";s:5:\"es_AR\";s:7:\"version\";s:5:\"6.2.2\";s:7:\"updated\";s:19:\"2023-05-19 05:08:30\";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/6.2.2/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_VE\";a:8:{s:8:\"language\";s:5:\"es_VE\";s:7:\"version\";s:5:\"6.2.2\";s:7:\"updated\";s:19:\"2023-02-22 17:37:32\";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/6.2.2/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_EC\";a:8:{s:8:\"language\";s:5:\"es_EC\";s:7:\"version\";s:5:\"6.2.2\";s:7:\"updated\";s:19:\"2023-04-21 13:32:10\";s:12:\"english_name\";s:17:\"Spanish (Ecuador)\";s:11:\"native_name\";s:19:\"Español de Ecuador\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.2.2/es_EC.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:5:\"6.2.2\";s:7:\"updated\";s:19:\"2023-03-14 22:16:37\";s:12:\"english_name\";s:18:\"Spanish (Colombia)\";s:11:\"native_name\";s:20:\"Español de Colombia\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.2.2/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_ES\";a:8:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"6.2.2\";s:7:\"updated\";s:19:\"2023-06-08 13:21:54\";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/6.2.2/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_PE\";a:8:{s:8:\"language\";s:5:\"es_PE\";s:7:\"version\";s:5:\"5.8.7\";s:7:\"updated\";s:19:\"2021-10-04 20:53:18\";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/5.8.7/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:5:\"es_DO\";a:8:{s:8:\"language\";s:5:\"es_DO\";s:7:\"version\";s:5:\"5.8.7\";s:7:\"updated\";s:19:\"2021-10-08 14:32:50\";s:12:\"english_name\";s:28:\"Spanish (Dominican Republic)\";s:11:\"native_name\";s:33:\"Español de República Dominicana\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.8.7/es_DO.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_UY\";a:8:{s:8:\"language\";s:5:\"es_UY\";s:7:\"version\";s:8:\"5.8-beta\";s:7:\"updated\";s:19:\"2021-03-31 18:33:26\";s:12:\"english_name\";s:17:\"Spanish (Uruguay)\";s:11:\"native_name\";s:19:\"Español de Uruguay\";s:7:\"package\";s:67:\"https://downloads.wordpress.org/translation/core/5.8-beta/es_UY.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:8:\"5.8-beta\";s:7:\"updated\";s:19:\"2021-06-14 16:02:22\";s:12:\"english_name\";s:15:\"Spanish (Chile)\";s:11:\"native_name\";s:17:\"Español de Chile\";s:7:\"package\";s:67:\"https://downloads.wordpress.org/translation/core/5.8-beta/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_PR\";a:8:{s:8:\"language\";s:5:\"es_PR\";s:7:\"version\";s:6:\"5.4.13\";s:7:\"updated\";s:19:\"2020-04-29 15:36:59\";s:12:\"english_name\";s:21:\"Spanish (Puerto Rico)\";s:11:\"native_name\";s:23:\"Español de Puerto Rico\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/5.4.13/es_PR.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:6:\"5.2.18\";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:65:\"https://downloads.wordpress.org/translation/core/5.2.18/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:5:\"6.2.2\";s:7:\"updated\";s:19:\"2023-03-15 19:52:49\";s:12:\"english_name\";s:20:\"Spanish (Costa Rica)\";s:11:\"native_name\";s:22:\"Español de Costa Rica\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.2.2/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:2:\"et\";a:8:{s:8:\"language\";s:2:\"et\";s:7:\"version\";s:8:\"5.8-beta\";s:7:\"updated\";s:19:\"2020-08-12 08:38:59\";s:12:\"english_name\";s:8:\"Estonian\";s:11:\"native_name\";s:5:\"Eesti\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.8-beta/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:\"6.2.2\";s:7:\"updated\";s:19:\"2023-05-24 16:21:45\";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/6.2.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:\"6.2.2\";s:7:\"updated\";s:19:\"2023-04-05 06:53:02\";s:12:\"english_name\";s:7:\"Persian\";s:11:\"native_name\";s:10:\"فارسی\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.2.2/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:5:\"fa_AF\";a:8:{s:8:\"language\";s:5:\"fa_AF\";s:7:\"version\";s:5:\"6.2.2\";s:7:\"updated\";s:19:\"2023-04-13 11:28:33\";s:12:\"english_name\";s:21:\"Persian (Afghanistan)\";s:11:\"native_name\";s:31:\"(فارسی (افغانستان\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.2.2/fa_AF.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:\"6.2.2\";s:7:\"updated\";s:19:\"2023-05-17 05:20:27\";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/6.2.2/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_FR\";a:8:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"6.2.2\";s:7:\"updated\";s:19:\"2023-05-25 15:00:05\";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/6.2.2/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:5:\"fr_BE\";a:8:{s:8:\"language\";s:5:\"fr_BE\";s:7:\"version\";s:8:\"5.8-beta\";s:7:\"updated\";s:19:\"2021-02-22 13:54:46\";s:12:\"english_name\";s:16:\"French (Belgium)\";s:11:\"native_name\";s:21:\"Français de Belgique\";s:7:\"package\";s:67:\"https://downloads.wordpress.org/translation/core/5.8-beta/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_CA\";a:8:{s:8:\"language\";s:5:\"fr_CA\";s:7:\"version\";s:5:\"6.2.2\";s:7:\"updated\";s:19:\"2023-05-30 14:40:46\";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/6.2.2/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:3:\"fur\";a:8:{s:8:\"language\";s:3:\"fur\";s:7:\"version\";s:6:\"4.8.22\";s:7:\"updated\";s:19:\"2023-04-30 13:56:46\";s:12:\"english_name\";s:8:\"Friulian\";s:11:\"native_name\";s:8:\"Friulian\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/translation/core/4.8.22/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:\"fy\";a:8:{s:8:\"language\";s:2:\"fy\";s:7:\"version\";s:5:\"6.2.2\";s:7:\"updated\";s:19:\"2022-12-25 12:53:23\";s:12:\"english_name\";s:7:\"Frisian\";s:11:\"native_name\";s:5:\"Frysk\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.2.2/fy.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fy\";i:2;s:3:\"fry\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Trochgean\";}}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:\"6.2.2\";s:7:\"updated\";s:19:\"2023-05-23 05:45:53\";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/6.2.2/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:6:\"4.9.23\";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:62:\"https://downloads.wordpress.org/translation/core/4.9.23/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:25:\"ચાલુ રાખો\";}}s:3:\"haz\";a:8:{s:8:\"language\";s:3:\"haz\";s:7:\"version\";s:6:\"4.4.30\";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:63:\"https://downloads.wordpress.org/translation/core/4.4.30/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:\"6.2.2\";s:7:\"updated\";s:19:\"2023-05-28 22:06:16\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.2.2/he_IL.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"he\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"המשך\";}}s:5:\"hi_IN\";a:8:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:6:\"5.4.13\";s:7:\"updated\";s:19:\"2020-11-06 12:34:38\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/5.4.13/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:25:\"जारी रखें\";}}s:2:\"hr\";a:8:{s:8:\"language\";s:2:\"hr\";s:7:\"version\";s:5:\"6.2.2\";s:7:\"updated\";s:19:\"2023-05-28 10:18:51\";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/6.2.2/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:\"6.2.2\";s:7:\"updated\";s:19:\"2023-02-22 17:37:32\";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/6.2.2/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:\"6.2.2\";s:7:\"updated\";s:19:\"2023-06-06 14:18:22\";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/6.2.2/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:10:\"Folytatás\";}}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:\"6.2.2\";s:7:\"updated\";s:19:\"2023-05-10 07:01:02\";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/6.2.2/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.9.23\";s:7:\"updated\";s:19:\"2018-12-11 10:40:02\";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.9.23/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:\"6.2.2\";s:7:\"updated\";s:19:\"2023-05-12 13:09:27\";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/6.2.2/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:\"6.2.2\";s:7:\"updated\";s:19:\"2023-05-24 05:57:21\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.2.2/ja.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"ja\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"次へ\";}}s:5:\"jv_ID\";a:8:{s:8:\"language\";s:5:\"jv_ID\";s:7:\"version\";s:6:\"4.9.23\";s:7:\"updated\";s:19:\"2019-02-16 23:58:56\";s:12:\"english_name\";s:8:\"Javanese\";s:11:\"native_name\";s:9:\"Basa Jawa\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/4.9.23/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:9:\"Nerusaké\";}}s:5:\"ka_GE\";a:8:{s:8:\"language\";s:5:\"ka_GE\";s:7:\"version\";s:5:\"6.0.5\";s:7:\"updated\";s:19:\"2023-05-19 07:40:56\";s:12:\"english_name\";s:8:\"Georgian\";s:11:\"native_name\";s:21:\"ქართული\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.0.5/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:\"6.2.2\";s:7:\"updated\";s:19:\"2023-04-28 12:09:00\";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/6.2.2/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:6:\"Kemmel\";}}s:2:\"kk\";a:8:{s:8:\"language\";s:2:\"kk\";s:7:\"version\";s:6:\"4.9.23\";s:7:\"updated\";s:19:\"2018-07-10 11:35:44\";s:12:\"english_name\";s:6:\"Kazakh\";s:11:\"native_name\";s:19:\"Қазақ тілі\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.9.23/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:6:\"5.2.18\";s:7:\"updated\";s:19:\"2019-06-10 16:18:28\";s:12:\"english_name\";s:5:\"Khmer\";s:11:\"native_name\";s:27:\"ភាសាខ្មែរ\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/5.2.18/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:5:\"6.1.3\";s:7:\"updated\";s:19:\"2022-10-20 17:15:28\";s:12:\"english_name\";s:7:\"Kannada\";s:11:\"native_name\";s:15:\"ಕನ್ನಡ\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.1.3/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:\"6.2.2\";s:7:\"updated\";s:19:\"2023-05-30 08:24:13\";s:12:\"english_name\";s:6:\"Korean\";s:11:\"native_name\";s:9:\"한국어\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.2.2/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:\"6.2.2\";s:7:\"updated\";s:19:\"2023-06-08 15:12:50\";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/6.2.2/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:18:\"ຕໍ່​ໄປ\";}}s:5:\"lt_LT\";a:8:{s:8:\"language\";s:5:\"lt_LT\";s:7:\"version\";s:5:\"6.1.3\";s:7:\"updated\";s:19:\"2022-11-24 03:51:58\";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/6.1.3/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:5:\"6.2.2\";s:7:\"updated\";s:19:\"2023-05-25 02:26:43\";s:12:\"english_name\";s:7:\"Latvian\";s:11:\"native_name\";s:16:\"Latviešu valoda\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.2.2/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:\"6.0.5\";s:7:\"updated\";s:19:\"2022-10-01 09:23:52\";s:12:\"english_name\";s:10:\"Macedonian\";s:11:\"native_name\";s:31:\"Македонски јазик\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.0.5/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:\"6.2.2\";s:7:\"updated\";s:19:\"2023-03-09 01:41:47\";s:12:\"english_name\";s:9:\"Mongolian\";s:11:\"native_name\";s:12:\"Монгол\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.2.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:8:\"Continue\";}}s:2:\"mr\";a:8:{s:8:\"language\";s:2:\"mr\";s:7:\"version\";s:6:\"4.9.23\";s:7:\"updated\";s:19:\"2019-11-22 15:32:08\";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.9.23/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:6:\"5.5.12\";s:7:\"updated\";s:19:\"2022-03-11 13:52:22\";s:12:\"english_name\";s:5:\"Malay\";s:11:\"native_name\";s:13:\"Bahasa Melayu\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/5.5.12/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.2.35\";s:7:\"updated\";s:19:\"2017-12-26 11:57:10\";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.2.35/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:\"6.2.2\";s:7:\"updated\";s:19:\"2023-06-01 10:02:11\";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/6.2.2/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:\"6.2.2\";s:7:\"updated\";s:19:\"2023-04-03 04:46:20\";s:12:\"english_name\";s:6:\"Nepali\";s:11:\"native_name\";s:18:\"नेपाली\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.2.2/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:43:\"जारी राख्नुहोस्\";}}s:12:\"nl_NL_formal\";a:8:{s:8:\"language\";s:12:\"nl_NL_formal\";s:7:\"version\";s:5:\"6.2.2\";s:7:\"updated\";s:19:\"2023-02-22 21:20:14\";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/6.2.2/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:\"6.2.2\";s:7:\"updated\";s:19:\"2023-03-30 10:02:03\";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/6.2.2/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:\"nl_BE\";a:8:{s:8:\"language\";s:5:\"nl_BE\";s:7:\"version\";s:5:\"6.2.2\";s:7:\"updated\";s:19:\"2023-06-02 14:36:47\";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/6.2.2/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:5:\"nn_NO\";a:8:{s:8:\"language\";s:5:\"nn_NO\";s:7:\"version\";s:8:\"5.8-beta\";s:7:\"updated\";s:19:\"2021-03-18 10:59:16\";s:12:\"english_name\";s:19:\"Norwegian (Nynorsk)\";s:11:\"native_name\";s:13:\"Norsk nynorsk\";s:7:\"package\";s:67:\"https://downloads.wordpress.org/translation/core/5.8-beta/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:6:\"4.8.22\";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:63:\"https://downloads.wordpress.org/translation/core/4.8.22/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:15:\"Panjabi (India)\";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:\"6.2.2\";s:7:\"updated\";s:19:\"2023-06-02 09:25:34\";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/6.2.2/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.3.31\";s:7:\"updated\";s:19:\"2015-12-02 21:41:29\";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.3.31/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:19:\"دوام ورکړه\";}}s:5:\"pt_AO\";a:8:{s:8:\"language\";s:5:\"pt_AO\";s:7:\"version\";s:5:\"6.2.2\";s:7:\"updated\";s:19:\"2022-10-01 12:16:29\";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/6.2.2/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:\"6.2.2\";s:7:\"updated\";s:19:\"2023-05-12 08:28:13\";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/6.2.2/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:5:\"pt_BR\";a:8:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"6.2.2\";s:7:\"updated\";s:19:\"2023-06-01 16:49:15\";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/6.2.2/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:10:\"pt_PT_ao90\";a:8:{s:8:\"language\";s:10:\"pt_PT_ao90\";s:7:\"version\";s:5:\"6.2.2\";s:7:\"updated\";s:19:\"2023-03-30 23:24:56\";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/6.2.2/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: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:\"6.2.2\";s:7:\"updated\";s:19:\"2023-06-04 08:31:30\";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/6.2.2/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:\"6.2.2\";s:7:\"updated\";s:19:\"2023-06-02 11:00:11\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.2.2/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:3:\"snd\";a:8:{s:8:\"language\";s:3:\"snd\";s:7:\"version\";s:6:\"5.4.13\";s:7:\"updated\";s:19:\"2020-07-07 01:53:37\";s:12:\"english_name\";s:6:\"Sindhi\";s:11:\"native_name\";s:8:\"سنڌي\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/translation/core/5.4.13/snd.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"sd\";i:2;s:3:\"snd\";i:3;s:3:\"snd\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:15:\"اڳتي هلو\";}}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:\"6.2.2\";s:7:\"updated\";s:19:\"2023-06-02 10:42:08\";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/6.2.2/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:\"6.2.2\";s:7:\"updated\";s:19:\"2023-04-03 08:30:58\";s:12:\"english_name\";s:7:\"Saraiki\";s:11:\"native_name\";s:14:\"سرائیکی\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.2.2/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:\"6.2.2\";s:7:\"updated\";s:19:\"2023-05-29 11:33:10\";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/6.2.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:8:\"Nadaljuj\";}}s:2:\"sq\";a:8:{s:8:\"language\";s:2:\"sq\";s:7:\"version\";s:5:\"6.2.2\";s:7:\"updated\";s:19:\"2023-05-10 11:33:13\";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/6.2.2/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.8.7\";s:7:\"updated\";s:19:\"2021-08-01 21:21:06\";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.8.7/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:\"6.2.2\";s:7:\"updated\";s:19:\"2023-05-11 17:06:50\";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/6.2.2/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:6:\"5.3.15\";s:7:\"updated\";s:19:\"2019-10-13 15:35:35\";s:12:\"english_name\";s:7:\"Swahili\";s:11:\"native_name\";s:9:\"Kiswahili\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/5.3.15/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:5:\"ta_LK\";a:8:{s:8:\"language\";s:5:\"ta_LK\";s:7:\"version\";s:6:\"4.2.35\";s:7:\"updated\";s:19:\"2015-12-03 01:07:44\";s:12:\"english_name\";s:17:\"Tamil (Sri Lanka)\";s:11:\"native_name\";s:15:\"தமிழ்\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/4.2.35/ta_LK.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:18:\"தொடர்க\";}}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.8.7\";s:7:\"updated\";s:19:\"2022-06-08 04:30:30\";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.8.7/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:6:\"4.8.22\";s:7:\"updated\";s:19:\"2017-09-30 09:04:29\";s:12:\"english_name\";s:7:\"Tagalog\";s:11:\"native_name\";s:7:\"Tagalog\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.8.22/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:\"6.2.2\";s:7:\"updated\";s:19:\"2023-05-22 10:14:53\";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/6.2.2/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:6:\"4.9.23\";s:7:\"updated\";s:19:\"2021-07-03 18:41:33\";s:12:\"english_name\";s:6:\"Uighur\";s:11:\"native_name\";s:16:\"ئۇيغۇرچە\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/4.9.23/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:\"6.1.3\";s:7:\"updated\";s:19:\"2023-03-04 10:46:30\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.1.3/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:6:\"5.4.13\";s:7:\"updated\";s:19:\"2020-04-09 11:17:33\";s:12:\"english_name\";s:4:\"Urdu\";s:11:\"native_name\";s:8:\"اردو\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/5.4.13/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:8:\"5.8-beta\";s:7:\"updated\";s:19:\"2021-02-28 12:02:22\";s:12:\"english_name\";s:5:\"Uzbek\";s:11:\"native_name\";s:11:\"O‘zbekcha\";s:7:\"package\";s:67:\"https://downloads.wordpress.org/translation/core/5.8-beta/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:11:\"Davom etish\";}}s:2:\"vi\";a:8:{s:8:\"language\";s:2:\"vi\";s:7:\"version\";s:5:\"6.2.2\";s:7:\"updated\";s:19:\"2023-06-05 12:20:46\";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/6.2.2/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:\"6.2.2\";s:7:\"updated\";s:19:\"2022-07-15 15:25:03\";s:12:\"english_name\";s:19:\"Chinese (Hong Kong)\";s:11:\"native_name\";s:12:\"香港中文\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.2.2/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_CN\";a:8:{s:8:\"language\";s:5:\"zh_CN\";s:7:\"version\";s:5:\"6.2.2\";s:7:\"updated\";s:19:\"2023-05-24 10:05:05\";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/6.2.2/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:\"继续\";}}s:5:\"zh_TW\";a:8:{s:8:\"language\";s:5:\"zh_TW\";s:7:\"version\";s:5:\"6.2.2\";s:7:\"updated\";s:19:\"2023-05-16 19:47:32\";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/6.2.2/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:\"繼續\";}}}','no'),(199,'recently_activated','a:0:{}','yes'),(201,'auto_update_plugins','a:11:{i:0;s:19:\"jetpack/jetpack.php\";i:1;s:23:\"loginizer/loginizer.php\";i:2;s:35:\"boldgrid-backup/boldgrid-backup.php\";i:3;s:21:\"backuply/backuply.php\";i:4;s:35:\"google-site-kit/google-site-kit.php\";i:5;s:23:\"wp-smushit/wp-smush.php\";i:6;s:27:\"svg-support/svg-support.php\";i:7;s:33:\"duplicate-post/duplicate-post.php\";i:8;s:24:\"wordpress-seo/wp-seo.php\";i:15;s:43:\"branda-white-labeling/ultimate-branding.php\";i:16;s:19:\"akismet/akismet.php\";}','no'),(202,'backuply_backup_nag','1686246388','yes'),(203,'_site_transient_timeout_poptags_40cd750bba9870f18aada2478b24840a','1686257193','no'),(204,'_site_transient_poptags_40cd750bba9870f18aada2478b24840a','O:8:\"stdClass\":100:{s:11:\"woocommerce\";a:3:{s:4:\"name\";s:11:\"woocommerce\";s:4:\"slug\";s:11:\"woocommerce\";s:5:\"count\";i:6110;}s:6:\"widget\";a:3:{s:4:\"name\";s:6:\"widget\";s:4:\"slug\";s:6:\"widget\";s:5:\"count\";i:4821;}s:4:\"post\";a:3:{s:4:\"name\";s:4:\"post\";s:4:\"slug\";s:4:\"post\";s:5:\"count\";i:2786;}s:5:\"admin\";a:3:{s:4:\"name\";s:5:\"admin\";s:4:\"slug\";s:5:\"admin\";s:5:\"count\";i:2675;}s:5:\"posts\";a:3:{s:4:\"name\";s:5:\"posts\";s:4:\"slug\";s:5:\"posts\";s:5:\"count\";i:2054;}s:9:\"shortcode\";a:3:{s:4:\"name\";s:9:\"shortcode\";s:4:\"slug\";s:9:\"shortcode\";s:5:\"count\";i:1919;}s:8:\"comments\";a:3:{s:4:\"name\";s:8:\"comments\";s:4:\"slug\";s:8:\"comments\";s:5:\"count\";i:1910;}s:3:\"seo\";a:3:{s:4:\"name\";s:3:\"seo\";s:4:\"slug\";s:3:\"seo\";s:5:\"count\";i:1645;}s:6:\"images\";a:3:{s:4:\"name\";s:6:\"images\";s:4:\"slug\";s:6:\"images\";s:5:\"count\";i:1567;}s:5:\"image\";a:3:{s:4:\"name\";s:5:\"image\";s:4:\"slug\";s:5:\"image\";s:5:\"count\";i:1557;}s:6:\"google\";a:3:{s:4:\"name\";s:6:\"google\";s:4:\"slug\";s:6:\"google\";s:5:\"count\";i:1549;}s:7:\"twitter\";a:3:{s:4:\"name\";s:7:\"twitter\";s:4:\"slug\";s:7:\"twitter\";s:5:\"count\";i:1515;}s:8:\"facebook\";a:3:{s:4:\"name\";s:8:\"facebook\";s:4:\"slug\";s:8:\"facebook\";s:5:\"count\";i:1508;}s:9:\"ecommerce\";a:3:{s:4:\"name\";s:9:\"ecommerce\";s:4:\"slug\";s:9:\"ecommerce\";s:5:\"count\";i:1489;}s:5:\"email\";a:3:{s:4:\"name\";s:5:\"email\";s:4:\"slug\";s:5:\"email\";s:5:\"count\";i:1372;}s:7:\"sidebar\";a:3:{s:4:\"name\";s:7:\"sidebar\";s:4:\"slug\";s:7:\"sidebar\";s:5:\"count\";i:1316;}s:7:\"gallery\";a:3:{s:4:\"name\";s:7:\"gallery\";s:4:\"slug\";s:7:\"gallery\";s:5:\"count\";i:1272;}s:4:\"page\";a:3:{s:4:\"name\";s:4:\"page\";s:4:\"slug\";s:4:\"page\";s:5:\"count\";i:1175;}s:6:\"social\";a:3:{s:4:\"name\";s:6:\"social\";s:4:\"slug\";s:6:\"social\";s:5:\"count\";i:1155;}s:5:\"login\";a:3:{s:4:\"name\";s:5:\"login\";s:4:\"slug\";s:5:\"login\";s:5:\"count\";i:1149;}s:8:\"security\";a:3:{s:4:\"name\";s:8:\"security\";s:4:\"slug\";s:8:\"security\";s:5:\"count\";i:1059;}s:10:\"e-commerce\";a:3:{s:4:\"name\";s:10:\"e-commerce\";s:4:\"slug\";s:10:\"e-commerce\";s:5:\"count\";i:1023;}s:5:\"video\";a:3:{s:4:\"name\";s:5:\"video\";s:4:\"slug\";s:5:\"video\";s:5:\"count\";i:1002;}s:7:\"widgets\";a:3:{s:4:\"name\";s:7:\"widgets\";s:4:\"slug\";s:7:\"widgets\";s:5:\"count\";i:965;}s:5:\"links\";a:3:{s:4:\"name\";s:5:\"links\";s:4:\"slug\";s:5:\"links\";s:5:\"count\";i:903;}s:7:\"payment\";a:3:{s:4:\"name\";s:7:\"payment\";s:4:\"slug\";s:7:\"payment\";s:5:\"count\";i:898;}s:9:\"analytics\";a:3:{s:4:\"name\";s:9:\"analytics\";s:4:\"slug\";s:9:\"analytics\";s:5:\"count\";i:881;}s:4:\"spam\";a:3:{s:4:\"name\";s:4:\"spam\";s:4:\"slug\";s:4:\"spam\";s:5:\"count\";i:880;}s:4:\"form\";a:3:{s:4:\"name\";s:4:\"form\";s:4:\"slug\";s:4:\"form\";s:5:\"count\";i:878;}s:7:\"content\";a:3:{s:4:\"name\";s:7:\"content\";s:4:\"slug\";s:7:\"content\";s:5:\"count\";i:874;}s:6:\"slider\";a:3:{s:4:\"name\";s:6:\"slider\";s:4:\"slug\";s:6:\"slider\";s:5:\"count\";i:867;}s:9:\"gutenberg\";a:3:{s:4:\"name\";s:9:\"gutenberg\";s:4:\"slug\";s:9:\"gutenberg\";s:5:\"count\";i:833;}s:5:\"block\";a:3:{s:4:\"name\";s:5:\"block\";s:4:\"slug\";s:5:\"block\";s:5:\"count\";i:801;}s:5:\"media\";a:3:{s:4:\"name\";s:5:\"media\";s:4:\"slug\";s:5:\"media\";s:5:\"count\";i:795;}s:10:\"buddypress\";a:3:{s:4:\"name\";s:10:\"buddypress\";s:4:\"slug\";s:10:\"buddypress\";s:5:\"count\";i:781;}s:6:\"search\";a:3:{s:4:\"name\";s:6:\"search\";s:4:\"slug\";s:6:\"search\";s:5:\"count\";i:779;}s:15:\"payment-gateway\";a:3:{s:4:\"name\";s:15:\"payment gateway\";s:4:\"slug\";s:15:\"payment-gateway\";s:5:\"count\";i:773;}s:6:\"editor\";a:3:{s:4:\"name\";s:6:\"editor\";s:4:\"slug\";s:6:\"editor\";s:5:\"count\";i:765;}s:9:\"elementor\";a:3:{s:4:\"name\";s:9:\"elementor\";s:4:\"slug\";s:9:\"elementor\";s:5:\"count\";i:741;}s:3:\"rss\";a:3:{s:4:\"name\";s:3:\"rss\";s:4:\"slug\";s:3:\"rss\";s:5:\"count\";i:733;}s:12:\"contact-form\";a:3:{s:4:\"name\";s:12:\"contact form\";s:4:\"slug\";s:12:\"contact-form\";s:5:\"count\";i:730;}s:5:\"pages\";a:3:{s:4:\"name\";s:5:\"pages\";s:4:\"slug\";s:5:\"pages\";s:5:\"count\";i:729;}s:4:\"menu\";a:3:{s:4:\"name\";s:4:\"menu\";s:4:\"slug\";s:4:\"menu\";s:5:\"count\";i:726;}s:5:\"embed\";a:3:{s:4:\"name\";s:5:\"embed\";s:4:\"slug\";s:5:\"embed\";s:5:\"count\";i:689;}s:8:\"category\";a:3:{s:4:\"name\";s:8:\"category\";s:4:\"slug\";s:8:\"category\";s:5:\"count\";i:685;}s:4:\"feed\";a:3:{s:4:\"name\";s:4:\"feed\";s:4:\"slug\";s:4:\"feed\";s:5:\"count\";i:685;}s:4:\"ajax\";a:3:{s:4:\"name\";s:4:\"ajax\";s:4:\"slug\";s:4:\"ajax\";s:5:\"count\";i:676;}s:6:\"jquery\";a:3:{s:4:\"name\";s:6:\"jquery\";s:4:\"slug\";s:6:\"jquery\";s:5:\"count\";i:667;}s:7:\"youtube\";a:3:{s:4:\"name\";s:7:\"youtube\";s:4:\"slug\";s:7:\"youtube\";s:5:\"count\";i:634;}s:3:\"css\";a:3:{s:4:\"name\";s:3:\"css\";s:4:\"slug\";s:3:\"css\";s:5:\"count\";i:624;}s:9:\"affiliate\";a:3:{s:4:\"name\";s:9:\"affiliate\";s:4:\"slug\";s:9:\"affiliate\";s:5:\"count\";i:617;}s:3:\"api\";a:3:{s:4:\"name\";s:3:\"api\";s:4:\"slug\";s:3:\"api\";s:5:\"count\";i:612;}s:10:\"javascript\";a:3:{s:4:\"name\";s:10:\"javascript\";s:4:\"slug\";s:10:\"javascript\";s:5:\"count\";i:609;}s:4:\"link\";a:3:{s:4:\"name\";s:4:\"link\";s:4:\"slug\";s:4:\"link\";s:5:\"count\";i:608;}s:7:\"contact\";a:3:{s:4:\"name\";s:7:\"contact\";s:4:\"slug\";s:7:\"contact\";s:5:\"count\";i:601;}s:9:\"dashboard\";a:3:{s:4:\"name\";s:9:\"dashboard\";s:4:\"slug\";s:9:\"dashboard\";s:5:\"count\";i:595;}s:5:\"share\";a:3:{s:4:\"name\";s:5:\"share\";s:4:\"slug\";s:5:\"share\";s:5:\"count\";i:592;}s:10:\"responsive\";a:3:{s:4:\"name\";s:10:\"responsive\";s:4:\"slug\";s:10:\"responsive\";s:5:\"count\";i:589;}s:5:\"theme\";a:3:{s:4:\"name\";s:5:\"theme\";s:4:\"slug\";s:5:\"theme\";s:5:\"count\";i:578;}s:8:\"shipping\";a:3:{s:4:\"name\";s:8:\"shipping\";s:4:\"slug\";s:8:\"shipping\";s:5:\"count\";i:572;}s:3:\"ads\";a:3:{s:4:\"name\";s:3:\"ads\";s:4:\"slug\";s:3:\"ads\";s:5:\"count\";i:571;}s:7:\"comment\";a:3:{s:4:\"name\";s:7:\"comment\";s:4:\"slug\";s:7:\"comment\";s:5:\"count\";i:569;}s:6:\"custom\";a:3:{s:4:\"name\";s:6:\"custom\";s:4:\"slug\";s:6:\"custom\";s:5:\"count\";i:566;}s:4:\"chat\";a:3:{s:4:\"name\";s:4:\"chat\";s:4:\"slug\";s:4:\"chat\";s:5:\"count\";i:558;}s:9:\"marketing\";a:3:{s:4:\"name\";s:9:\"marketing\";s:4:\"slug\";s:9:\"marketing\";s:5:\"count\";i:557;}s:6:\"events\";a:3:{s:4:\"name\";s:6:\"events\";s:4:\"slug\";s:6:\"events\";s:5:\"count\";i:543;}s:10:\"categories\";a:3:{s:4:\"name\";s:10:\"categories\";s:4:\"slug\";s:10:\"categories\";s:5:\"count\";i:540;}s:14:\"contact-form-7\";a:3:{s:4:\"name\";s:14:\"contact form 7\";s:4:\"slug\";s:14:\"contact-form-7\";s:5:\"count\";i:533;}s:4:\"user\";a:3:{s:4:\"name\";s:4:\"user\";s:4:\"slug\";s:4:\"user\";s:5:\"count\";i:532;}s:6:\"button\";a:3:{s:4:\"name\";s:6:\"button\";s:4:\"slug\";s:6:\"button\";s:5:\"count\";i:530;}s:5:\"forms\";a:3:{s:4:\"name\";s:5:\"forms\";s:4:\"slug\";s:5:\"forms\";s:5:\"count\";i:528;}s:5:\"popup\";a:3:{s:4:\"name\";s:5:\"popup\";s:4:\"slug\";s:5:\"popup\";s:5:\"count\";i:519;}s:5:\"users\";a:3:{s:4:\"name\";s:5:\"users\";s:4:\"slug\";s:5:\"users\";s:5:\"count\";i:512;}s:6:\"mobile\";a:3:{s:4:\"name\";s:6:\"mobile\";s:4:\"slug\";s:6:\"mobile\";s:5:\"count\";i:510;}s:4:\"tags\";a:3:{s:4:\"name\";s:4:\"tags\";s:4:\"slug\";s:4:\"tags\";s:5:\"count\";i:508;}s:8:\"calendar\";a:3:{s:4:\"name\";s:8:\"calendar\";s:4:\"slug\";s:8:\"calendar\";s:5:\"count\";i:506;}s:11:\"performance\";a:3:{s:4:\"name\";s:11:\"performance\";s:4:\"slug\";s:11:\"performance\";s:5:\"count\";i:487;}s:10:\"newsletter\";a:3:{s:4:\"name\";s:10:\"newsletter\";s:4:\"slug\";s:10:\"newsletter\";s:5:\"count\";i:479;}s:6:\"blocks\";a:3:{s:4:\"name\";s:6:\"blocks\";s:4:\"slug\";s:6:\"blocks\";s:5:\"count\";i:474;}s:10:\"navigation\";a:3:{s:4:\"name\";s:10:\"navigation\";s:4:\"slug\";s:10:\"navigation\";s:5:\"count\";i:466;}s:9:\"slideshow\";a:3:{s:4:\"name\";s:9:\"slideshow\";s:4:\"slug\";s:9:\"slideshow\";s:5:\"count\";i:449;}s:5:\"photo\";a:3:{s:4:\"name\";s:5:\"photo\";s:4:\"slug\";s:5:\"photo\";s:5:\"count\";i:448;}s:5:\"stats\";a:3:{s:4:\"name\";s:5:\"stats\";s:4:\"slug\";s:5:\"stats\";s:5:\"count\";i:448;}s:10:\"statistics\";a:3:{s:4:\"name\";s:10:\"statistics\";s:4:\"slug\";s:10:\"statistics\";s:5:\"count\";i:437;}s:12:\"social-media\";a:3:{s:4:\"name\";s:12:\"social media\";s:4:\"slug\";s:12:\"social-media\";s:5:\"count\";i:432;}s:6:\"photos\";a:3:{s:4:\"name\";s:6:\"photos\";s:4:\"slug\";s:6:\"photos\";s:5:\"count\";i:426;}s:12:\"notification\";a:3:{s:4:\"name\";s:12:\"notification\";s:4:\"slug\";s:12:\"notification\";s:5:\"count\";i:425;}s:8:\"redirect\";a:3:{s:4:\"name\";s:8:\"redirect\";s:4:\"slug\";s:8:\"redirect\";s:5:\"count\";i:424;}s:7:\"gateway\";a:3:{s:4:\"name\";s:7:\"gateway\";s:4:\"slug\";s:7:\"gateway\";s:5:\"count\";i:423;}s:6:\"import\";a:3:{s:4:\"name\";s:6:\"import\";s:4:\"slug\";s:6:\"import\";s:5:\"count\";i:422;}s:8:\"tracking\";a:3:{s:4:\"name\";s:8:\"tracking\";s:4:\"slug\";s:8:\"tracking\";s:5:\"count\";i:421;}s:4:\"news\";a:3:{s:4:\"name\";s:4:\"news\";s:4:\"slug\";s:4:\"news\";s:5:\"count\";i:420;}s:8:\"payments\";a:3:{s:4:\"name\";s:8:\"payments\";s:4:\"slug\";s:8:\"payments\";s:5:\"count\";i:419;}s:10:\"shortcodes\";a:3:{s:4:\"name\";s:10:\"shortcodes\";s:4:\"slug\";s:10:\"shortcodes\";s:5:\"count\";i:413;}s:4:\"code\";a:3:{s:4:\"name\";s:4:\"code\";s:4:\"slug\";s:4:\"code\";s:5:\"count\";i:407;}s:7:\"plugins\";a:3:{s:4:\"name\";s:7:\"plugins\";s:4:\"slug\";s:7:\"plugins\";s:5:\"count\";i:398;}s:5:\"cache\";a:3:{s:4:\"name\";s:5:\"cache\";s:4:\"slug\";s:5:\"cache\";s:5:\"count\";i:396;}s:9:\"multisite\";a:3:{s:4:\"name\";s:9:\"multisite\";s:4:\"slug\";s:9:\"multisite\";s:5:\"count\";i:396;}s:8:\"checkout\";a:3:{s:4:\"name\";s:8:\"checkout\";s:4:\"slug\";s:8:\"checkout\";s:5:\"count\";i:392;}s:4:\"meta\";a:3:{s:4:\"name\";s:4:\"meta\";s:4:\"slug\";s:4:\"meta\";s:5:\"count\";i:390;}}','no'),(238,'_site_transient_boldgrid_plugins_filtered','a:2:{s:35:\"boldgrid-backup/boldgrid-backup.php\";a:14:{s:4:\"Name\";s:12:\"Total Upkeep\";s:9:\"PluginURI\";s:41:\"https://www.boldgrid.com/boldgrid-backup/\";s:7:\"Version\";s:6:\"1.15.2\";s:11:\"Description\";s:159:\"Automated backups, remote backup to Amazon S3 and Google Drive, stop website crashes before they happen and more. Total Upkeep is the backup solution you need.\";s:6:\"Author\";s:8:\"BoldGrid\";s:9:\"AuthorURI\";s:25:\"https://www.boldgrid.com/\";s:10:\"TextDomain\";s:15:\"boldgrid-backup\";s:10:\"DomainPath\";s:10:\"/languages\";s:7:\"Network\";b:0;s:10:\"RequiresWP\";s:0:\"\";s:11:\"RequiresPHP\";s:0:\"\";s:9:\"UpdateURI\";s:0:\"\";s:5:\"Title\";s:12:\"Total Upkeep\";s:10:\"AuthorName\";s:8:\"BoldGrid\";}s:51:\"boldgrid-backup-premium/boldgrid-backup-premium.php\";a:14:{s:4:\"Name\";s:20:\"Total Upkeep Premium\";s:9:\"PluginURI\";s:41:\"https://www.boldgrid.com/boldgrid-backup/\";s:7:\"Version\";s:5:\"1.5.9\";s:11:\"Description\";s:46:\"Premium extension for the Total Upkeep plugin.\";s:6:\"Author\";s:8:\"BoldGrid\";s:9:\"AuthorURI\";s:25:\"https://www.boldgrid.com/\";s:10:\"TextDomain\";s:15:\"boldgrid-backup\";s:10:\"DomainPath\";s:10:\"/languages\";s:7:\"Network\";b:0;s:10:\"RequiresWP\";s:0:\"\";s:11:\"RequiresPHP\";s:0:\"\";s:9:\"UpdateURI\";s:0:\"\";s:5:\"Title\";s:20:\"Total Upkeep Premium\";s:10:\"AuthorName\";s:8:\"BoldGrid\";}}','no'),(239,'_site_transient_update_plugins','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1686246727;s:8:\"response\";a:3:{s:19:\"jetpack/jetpack.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:21:\"w.org/plugins/jetpack\";s:4:\"slug\";s:7:\"jetpack\";s:6:\"plugin\";s:19:\"jetpack/jetpack.php\";s:11:\"new_version\";s:4:\"12.2\";s:3:\"url\";s:38:\"https://wordpress.org/plugins/jetpack/\";s:7:\"package\";s:55:\"https://downloads.wordpress.org/plugin/jetpack.12.2.zip\";s:5:\"icons\";a:2:{s:2:\"1x\";s:52:\"https://ps.w.org/jetpack/assets/icon.svg?rev=2819237\";s:3:\"svg\";s:52:\"https://ps.w.org/jetpack/assets/icon.svg?rev=2819237\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:63:\"https://ps.w.org/jetpack/assets/banner-1544x500.png?rev=2653649\";s:2:\"1x\";s:62:\"https://ps.w.org/jetpack/assets/banner-772x250.png?rev=2653649\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"6.1\";s:6:\"tested\";s:5:\"6.2.2\";s:12:\"requires_php\";s:3:\"5.6\";}s:35:\"boldgrid-backup/boldgrid-backup.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:29:\"w.org/plugins/boldgrid-backup\";s:4:\"slug\";s:15:\"boldgrid-backup\";s:6:\"plugin\";s:35:\"boldgrid-backup/boldgrid-backup.php\";s:11:\"new_version\";s:6:\"1.15.6\";s:3:\"url\";s:46:\"https://wordpress.org/plugins/boldgrid-backup/\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/plugin/boldgrid-backup.1.15.6.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:68:\"https://ps.w.org/boldgrid-backup/assets/icon-256x256.png?rev=1880952\";s:2:\"1x\";s:68:\"https://ps.w.org/boldgrid-backup/assets/icon-128x128.png?rev=1880952\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:71:\"https://ps.w.org/boldgrid-backup/assets/banner-1544x500.png?rev=1880952\";s:2:\"1x\";s:70:\"https://ps.w.org/boldgrid-backup/assets/banner-772x250.png?rev=1880952\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.4\";s:6:\"tested\";s:5:\"6.2.2\";s:12:\"requires_php\";s:3:\"5.4\";}s:19:\"weforms/weforms.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:21:\"w.org/plugins/weforms\";s:4:\"slug\";s:7:\"weforms\";s:6:\"plugin\";s:19:\"weforms/weforms.php\";s:11:\"new_version\";s:6:\"1.6.17\";s:3:\"url\";s:38:\"https://wordpress.org/plugins/weforms/\";s:7:\"package\";s:57:\"https://downloads.wordpress.org/plugin/weforms.1.6.17.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:60:\"https://ps.w.org/weforms/assets/icon-256x256.png?rev=1978687\";s:2:\"1x\";s:60:\"https://ps.w.org/weforms/assets/icon-128x128.png?rev=1978687\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:63:\"https://ps.w.org/weforms/assets/banner-1544x500.png?rev=2243402\";s:2:\"1x\";s:62:\"https://ps.w.org/weforms/assets/banner-772x250.png?rev=2243402\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.0\";s:6:\"tested\";s:5:\"6.2.2\";s:12:\"requires_php\";s:3:\"7.2\";}}s:12:\"translations\";a:0:{}s:9:\"no_update\";a:10:{s:19:\"akismet/akismet.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:21:\"w.org/plugins/akismet\";s:4:\"slug\";s:7:\"akismet\";s:6:\"plugin\";s:19:\"akismet/akismet.php\";s:11:\"new_version\";s:3:\"5.1\";s:3:\"url\";s:38:\"https://wordpress.org/plugins/akismet/\";s:7:\"package\";s:54:\"https://downloads.wordpress.org/plugin/akismet.5.1.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:60:\"https://ps.w.org/akismet/assets/icon-256x256.png?rev=2818463\";s:2:\"1x\";s:60:\"https://ps.w.org/akismet/assets/icon-128x128.png?rev=2818463\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:63:\"https://ps.w.org/akismet/assets/banner-1544x500.png?rev=2900731\";s:2:\"1x\";s:62:\"https://ps.w.org/akismet/assets/banner-772x250.png?rev=2900731\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.0\";}s:21:\"backuply/backuply.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:22:\"w.org/plugins/backuply\";s:4:\"slug\";s:8:\"backuply\";s:6:\"plugin\";s:21:\"backuply/backuply.php\";s:11:\"new_version\";s:5:\"1.1.2\";s:3:\"url\";s:39:\"https://wordpress.org/plugins/backuply/\";s:7:\"package\";s:57:\"https://downloads.wordpress.org/plugin/backuply.1.1.2.zip\";s:5:\"icons\";a:1:{s:2:\"1x\";s:61:\"https://ps.w.org/backuply/assets/icon-128x128.png?rev=2760139\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:64:\"https://ps.w.org/backuply/assets/banner-1544x500.png?rev=2760332\";s:2:\"1x\";s:63:\"https://ps.w.org/backuply/assets/banner-772x250.png?rev=2760332\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.7\";}s:43:\"branda-white-labeling/ultimate-branding.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:35:\"w.org/plugins/branda-white-labeling\";s:4:\"slug\";s:21:\"branda-white-labeling\";s:6:\"plugin\";s:43:\"branda-white-labeling/ultimate-branding.php\";s:11:\"new_version\";s:7:\"3.4.9.3\";s:3:\"url\";s:52:\"https://wordpress.org/plugins/branda-white-labeling/\";s:7:\"package\";s:72:\"https://downloads.wordpress.org/plugin/branda-white-labeling.3.4.9.3.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:74:\"https://ps.w.org/branda-white-labeling/assets/icon-256x256.png?rev=2746495\";s:2:\"1x\";s:74:\"https://ps.w.org/branda-white-labeling/assets/icon-128x128.png?rev=2746495\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:77:\"https://ps.w.org/branda-white-labeling/assets/banner-1544x500.png?rev=2625091\";s:2:\"1x\";s:76:\"https://ps.w.org/branda-white-labeling/assets/banner-772x250.png?rev=2625091\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.2\";}s:9:\"hello.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:25:\"w.org/plugins/hello-dolly\";s:4:\"slug\";s:11:\"hello-dolly\";s:6:\"plugin\";s:9:\"hello.php\";s:11:\"new_version\";s:5:\"1.7.2\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/hello-dolly/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/plugin/hello-dolly.1.7.2.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:64:\"https://ps.w.org/hello-dolly/assets/icon-256x256.jpg?rev=2052855\";s:2:\"1x\";s:64:\"https://ps.w.org/hello-dolly/assets/icon-128x128.jpg?rev=2052855\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:67:\"https://ps.w.org/hello-dolly/assets/banner-1544x500.jpg?rev=2645582\";s:2:\"1x\";s:66:\"https://ps.w.org/hello-dolly/assets/banner-772x250.jpg?rev=2052855\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.6\";}s:23:\"loginizer/loginizer.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:23:\"w.org/plugins/loginizer\";s:4:\"slug\";s:9:\"loginizer\";s:6:\"plugin\";s:23:\"loginizer/loginizer.php\";s:11:\"new_version\";s:5:\"1.7.9\";s:3:\"url\";s:40:\"https://wordpress.org/plugins/loginizer/\";s:7:\"package\";s:52:\"https://downloads.wordpress.org/plugin/loginizer.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:62:\"https://ps.w.org/loginizer/assets/icon-256x256.png?rev=1381093\";s:2:\"1x\";s:62:\"https://ps.w.org/loginizer/assets/icon-128x128.png?rev=1381093\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:65:\"https://ps.w.org/loginizer/assets/banner-1544x500.jpg?rev=2668035\";s:2:\"1x\";s:64:\"https://ps.w.org/loginizer/assets/banner-772x250.jpg?rev=2668037\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"3.0\";}s:35:\"google-site-kit/google-site-kit.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:29:\"w.org/plugins/google-site-kit\";s:4:\"slug\";s:15:\"google-site-kit\";s:6:\"plugin\";s:35:\"google-site-kit/google-site-kit.php\";s:11:\"new_version\";s:7:\"1.102.0\";s:3:\"url\";s:46:\"https://wordpress.org/plugins/google-site-kit/\";s:7:\"package\";s:66:\"https://downloads.wordpress.org/plugin/google-site-kit.1.102.0.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:68:\"https://ps.w.org/google-site-kit/assets/icon-256x256.png?rev=2181376\";s:2:\"1x\";s:68:\"https://ps.w.org/google-site-kit/assets/icon-128x128.png?rev=2181376\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:71:\"https://ps.w.org/google-site-kit/assets/banner-1544x500.png?rev=2513620\";s:2:\"1x\";s:70:\"https://ps.w.org/google-site-kit/assets/banner-772x250.png?rev=2513620\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.2\";}s:23:\"wp-smushit/wp-smush.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:24:\"w.org/plugins/wp-smushit\";s:4:\"slug\";s:10:\"wp-smushit\";s:6:\"plugin\";s:23:\"wp-smushit/wp-smush.php\";s:11:\"new_version\";s:6:\"3.12.6\";s:3:\"url\";s:41:\"https://wordpress.org/plugins/wp-smushit/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/plugin/wp-smushit.3.12.6.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:63:\"https://ps.w.org/wp-smushit/assets/icon-256x256.png?rev=2746115\";s:2:\"1x\";s:63:\"https://ps.w.org/wp-smushit/assets/icon-128x128.png?rev=2746115\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:66:\"https://ps.w.org/wp-smushit/assets/banner-1544x500.png?rev=2624292\";s:2:\"1x\";s:65:\"https://ps.w.org/wp-smushit/assets/banner-772x250.png?rev=2624292\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.3\";}s:27:\"svg-support/svg-support.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:25:\"w.org/plugins/svg-support\";s:4:\"slug\";s:11:\"svg-support\";s:6:\"plugin\";s:27:\"svg-support/svg-support.php\";s:11:\"new_version\";s:5:\"2.5.5\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/svg-support/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/plugin/svg-support.2.5.5.zip\";s:5:\"icons\";a:2:{s:2:\"1x\";s:56:\"https://ps.w.org/svg-support/assets/icon.svg?rev=1417738\";s:3:\"svg\";s:56:\"https://ps.w.org/svg-support/assets/icon.svg?rev=1417738\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:67:\"https://ps.w.org/svg-support/assets/banner-1544x500.jpg?rev=1215377\";s:2:\"1x\";s:66:\"https://ps.w.org/svg-support/assets/banner-772x250.jpg?rev=1215377\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.8\";}s:33:\"duplicate-post/duplicate-post.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:28:\"w.org/plugins/duplicate-post\";s:4:\"slug\";s:14:\"duplicate-post\";s:6:\"plugin\";s:33:\"duplicate-post/duplicate-post.php\";s:11:\"new_version\";s:3:\"4.5\";s:3:\"url\";s:45:\"https://wordpress.org/plugins/duplicate-post/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/plugin/duplicate-post.4.5.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:67:\"https://ps.w.org/duplicate-post/assets/icon-256x256.png?rev=2336666\";s:2:\"1x\";s:67:\"https://ps.w.org/duplicate-post/assets/icon-128x128.png?rev=2336666\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:70:\"https://ps.w.org/duplicate-post/assets/banner-1544x500.png?rev=2336666\";s:2:\"1x\";s:69:\"https://ps.w.org/duplicate-post/assets/banner-772x250.png?rev=2336666\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"6.1\";}s:24:\"wordpress-seo/wp-seo.php\";O:8:\"stdClass\":10:{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:\"20.8\";s:3:\"url\";s:44:\"https://wordpress.org/plugins/wordpress-seo/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/plugin/wordpress-seo.20.8.zip\";s:5:\"icons\";a:2:{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=2643727\";s:2:\"1x\";s:68:\"https://ps.w.org/wordpress-seo/assets/banner-772x250.png?rev=2643727\";}s:11:\"banners_rtl\";a:2:{s:2:\"2x\";s:73:\"https://ps.w.org/wordpress-seo/assets/banner-1544x500-rtl.png?rev=2643727\";s:2:\"1x\";s:72:\"https://ps.w.org/wordpress-seo/assets/banner-772x250-rtl.png?rev=2643727\";}s:8:\"requires\";s:3:\"6.1\";}}s:7:\"checked\";a:23:{s:19:\"akismet/akismet.php\";s:3:\"5.1\";s:21:\"backuply/backuply.php\";s:5:\"1.1.2\";s:43:\"branda-white-labeling/ultimate-branding.php\";s:7:\"3.4.9.3\";s:9:\"hello.php\";s:5:\"1.7.2\";s:19:\"jetpack/jetpack.php\";s:8:\"11.2-a.5\";s:23:\"loginizer/loginizer.php\";s:5:\"1.7.9\";s:23:\"salient-core/plugin.php\";s:5:\"1.9.9\";s:32:\"salient-demo-importer/plugin.php\";s:3:\"1.5\";s:30:\"salient-home-slider/plugin.php\";s:5:\"1.4.1\";s:32:\"salient-nectar-slider/plugin.php\";s:5:\"1.7.3\";s:28:\"salient-portfolio/plugin.php\";s:5:\"1.7.3\";s:29:\"salient-shortcodes/plugin.php\";s:5:\"1.5.1\";s:25:\"salient-social/plugin.php\";s:5:\"1.2.2\";s:26:\"salient-widgets/plugin.php\";s:3:\"1.3\";s:35:\"js_composer_salient/js_composer.php\";s:6:\"6.13.0\";s:35:\"google-site-kit/google-site-kit.php\";s:7:\"1.102.0\";s:23:\"wp-smushit/wp-smush.php\";s:6:\"3.12.6\";s:27:\"svg-support/svg-support.php\";s:5:\"2.5.5\";s:35:\"boldgrid-backup/boldgrid-backup.php\";s:6:\"1.15.2\";s:51:\"boldgrid-backup-premium/boldgrid-backup-premium.php\";s:5:\"1.5.9\";s:19:\"weforms/weforms.php\";s:6:\"1.6.14\";s:33:\"duplicate-post/duplicate-post.php\";s:3:\"4.5\";s:24:\"wordpress-seo/wp-seo.php\";s:4:\"20.8\";}}','no'),(225,'_site_transient_update_themes','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1686246722;s:7:\"checked\";a:5:{s:13:\"salient-child\";s:3:\"1.0\";s:7:\"salient\";s:6:\"15.1.0\";s:15:\"twentytwentyone\";s:3:\"1.8\";s:17:\"twentytwentythree\";s:3:\"1.1\";s:15:\"twentytwentytwo\";s:3:\"1.4\";}s:8:\"response\";a:0:{}s:9:\"no_update\";a:3:{s:15:\"twentytwentyone\";a:6:{s:5:\"theme\";s:15:\"twentytwentyone\";s:11:\"new_version\";s:3:\"1.8\";s:3:\"url\";s:45:\"https://wordpress.org/themes/twentytwentyone/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/theme/twentytwentyone.1.8.zip\";s:8:\"requires\";s:3:\"5.3\";s:12:\"requires_php\";s:3:\"5.6\";}s:17:\"twentytwentythree\";a:6:{s:5:\"theme\";s:17:\"twentytwentythree\";s:11:\"new_version\";s:3:\"1.1\";s:3:\"url\";s:47:\"https://wordpress.org/themes/twentytwentythree/\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/theme/twentytwentythree.1.1.zip\";s:8:\"requires\";s:3:\"6.1\";s:12:\"requires_php\";s:3:\"5.6\";}s:15:\"twentytwentytwo\";a:6:{s:5:\"theme\";s:15:\"twentytwentytwo\";s:11:\"new_version\";s:3:\"1.4\";s:3:\"url\";s:45:\"https://wordpress.org/themes/twentytwentytwo/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/theme/twentytwentytwo.1.4.zip\";s:8:\"requires\";s:3:\"5.9\";s:12:\"requires_php\";s:3:\"5.6\";}}s:12:\"translations\";a:0:{}}','no'),(230,'shop_single_image_size','a:3:{s:5:\"width\";s:3:\"600\";s:6:\"height\";s:3:\"630\";s:4:\"crop\";i:1;}','yes'),(231,'shop_thumbnail_image_size','a:3:{s:5:\"width\";s:3:\"130\";s:6:\"height\";s:3:\"130\";s:4:\"crop\";i:1;}','yes'),(232,'salient_upgrading_version','15.1.0','yes'),(233,'salient_redux','a:316:{s:10:\"theme-skin\";s:8:\"material\";s:14:\"button-styling\";s:23:\"slightly_rounded_shadow\";s:24:\"button-styling-roundness\";i:4;s:14:\"column-spacing\";s:7:\"default\";s:16:\"overall-bg-color\";s:7:\"#ffffff\";s:18:\"overall-font-color\";s:0:\"\";s:23:\"animated-underline-type\";s:7:\"default\";s:28:\"animated-underline-thickness\";i:2;s:18:\"general-link-style\";s:7:\"default\";s:11:\"body-border\";s:1:\"0\";s:17:\"body-border-color\";s:7:\"#ffffff\";s:16:\"body-border-size\";s:4:\"20px\";s:18:\"one-page-scrolling\";s:1:\"1\";s:10:\"responsive\";s:1:\"1\";s:14:\"ext_responsive\";s:1:\"1\";s:13:\"meta_viewport\";s:12:\"not_scalable\";s:19:\"max_container_width\";i:1425;s:22:\"ext_responsive_padding\";i:90;s:15:\"lightbox_script\";s:8:\"fancybox\";s:16:\"default-lightbox\";s:1:\"0\";s:23:\"column_animation_mobile\";s:7:\"disable\";s:23:\"column_animation_easing\";s:12:\"easeOutCubic\";s:23:\"column_animation_timing\";s:3:\"750\";s:23:\"disable-mobile-parallax\";s:1:\"0\";s:24:\"disable-mobile-video-bgs\";s:1:\"0\";s:11:\"back-to-top\";s:1:\"1\";s:18:\"back-to-top-mobile\";s:1:\"0\";s:24:\"force-dynamic-css-inline\";s:1:\"0\";s:19:\"google-maps-api-key\";s:0:\"\";s:18:\"delay-js-execution\";s:1:\"0\";s:26:\"delay-js-execution-devices\";s:6:\"mobile\";s:23:\"global_lazy_load_images\";s:1:\"0\";s:16:\"defer-javascript\";s:1:\"0\";s:20:\"typography_font_swap\";s:1:\"0\";s:19:\"rm-block-editor-css\";s:1:\"0\";s:15:\"rm-font-awesome\";s:1:\"0\";s:18:\"rm-legacy-icon-css\";s:1:\"0\";s:12:\"rm-wp-emojis\";s:1:\"0\";s:29:\"page_header_responsive_images\";s:1:\"0\";s:12:\"accent-color\";s:7:\"#3452ff\";s:13:\"extra-color-1\";s:7:\"#ff1053\";s:13:\"extra-color-2\";s:7:\"#2AC4EA\";s:13:\"extra-color-3\";s:7:\"#333333\";s:20:\"extra-color-gradient\";a:2:{s:4:\"from\";s:7:\"#3452ff\";s:2:\"to\";s:7:\"#ff1053\";}s:22:\"extra-color-gradient-2\";a:2:{s:4:\"from\";s:7:\"#2AC4EA\";s:2:\"to\";s:7:\"#32d6ff\";}s:12:\"boxed_layout\";s:1:\"0\";s:16:\"background-color\";s:7:\"#f1f1f1\";s:16:\"background-cover\";s:1:\"0\";s:18:\"default-theme-font\";s:11:\"from_google\";s:16:\"logo_font_family\";a:0:{}s:22:\"navigation_font_family\";a:0:{}s:31:\"navigation_dropdown_font_family\";a:0:{}s:24:\"page_heading_font_family\";a:0:{}s:33:\"page_heading_subtitle_font_family\";a:0:{}s:26:\"off_canvas_nav_font_family\";a:0:{}s:34:\"off_canvas_nav_subtext_font_family\";a:0:{}s:16:\"body_font_family\";a:0:{}s:14:\"h1_font_family\";a:0:{}s:14:\"h2_font_family\";a:0:{}s:14:\"h3_font_family\";a:0:{}s:14:\"h4_font_family\";a:0:{}s:14:\"h5_font_family\";a:0:{}s:14:\"h6_font_family\";a:0:{}s:13:\"i_font_family\";a:0:{}s:16:\"bold_font_family\";a:0:{}s:17:\"label_font_family\";a:0:{}s:28:\"sidebar_footer_h_font_family\";a:0:{}s:41:\"nectar_sidebar_footer_headers_font_family\";a:0:{}s:33:\"nectar_slider_heading_font_family\";a:0:{}s:31:\"home_slider_caption_font_family\";a:0:{}s:23:\"testimonial_font_family\";a:0:{}s:29:\"portfolio_filters_font_family\";a:0:{}s:29:\"portfolio_caption_font_family\";a:0:{}s:25:\"team_member_h_font_family\";a:0:{}s:26:\"nectar_dropcap_font_family\";a:0:{}s:41:\"nectar_woo_shop_product_title_font_family\";a:0:{}s:45:\"nectar_woo_shop_product_secondary_font_family\";a:0:{}s:26:\"h1-small-desktop-font-size\";i:75;s:19:\"h1-tablet-font-size\";i:70;s:18:\"h1-phone-font-size\";i:65;s:26:\"h2-small-desktop-font-size\";i:85;s:19:\"h2-tablet-font-size\";i:80;s:18:\"h2-phone-font-size\";i:70;s:26:\"h3-small-desktop-font-size\";i:85;s:19:\"h3-tablet-font-size\";i:80;s:18:\"h3-phone-font-size\";i:70;s:26:\"h4-small-desktop-font-size\";i:100;s:19:\"h4-tablet-font-size\";i:90;s:18:\"h4-phone-font-size\";i:90;s:26:\"h5-small-desktop-font-size\";i:100;s:19:\"h5-tablet-font-size\";i:100;s:18:\"h5-phone-font-size\";i:100;s:26:\"h6-small-desktop-font-size\";i:100;s:19:\"h6-tablet-font-size\";i:100;s:18:\"h6-phone-font-size\";i:100;s:28:\"body-small-desktop-font-size\";i:100;s:21:\"body-tablet-font-size\";i:100;s:20:\"body-phone-font-size\";i:100;s:34:\"blockquote-small-desktop-font-size\";i:100;s:27:\"blockquote-tablet-font-size\";i:100;s:26:\"blockquote-phone-font-size\";i:100;s:19:\"header-remove-fixed\";s:1:\"0\";s:17:\"header-box-shadow\";s:5:\"large\";s:24:\"header-menu-item-spacing\";i:10;s:17:\"header-bg-opacity\";i:100;s:14:\"header-blur-bg\";s:1:\"0\";s:19:\"header-blur-bg-func\";s:22:\"active_non_transparent\";s:21:\"header-button-styling\";s:7:\"default\";s:13:\"header_format\";s:7:\"default\";s:25:\"left-header-dropdown-func\";s:7:\"default\";s:34:\"centered-menu-bottom-bar-separator\";s:1:\"0\";s:34:\"centered-menu-bottom-bar-alignment\";s:6:\"center\";s:16:\"header-fullwidth\";s:1:\"0\";s:21:\"header-account-button\";s:1:\"0\";s:25:\"header-account-button-url\";s:0:\"\";s:18:\"header-text-widget\";s:0:\"\";s:23:\"enable_social_in_header\";s:1:\"0\";s:13:\"header_layout\";s:8:\"standard\";s:31:\"secondary-header-mobile-display\";s:7:\"default\";s:18:\"transparent-header\";s:1:\"0\";s:21:\"header-starting-color\";s:7:\"#ffffff\";s:29:\"header-transparent-dark-color\";s:7:\"#000000\";s:23:\"header-starting-opacity\";s:4:\"0.75\";s:28:\"header-permanent-transparent\";s:1:\"0\";s:24:\"header-inherit-row-color\";s:1:\"0\";s:20:\"header-remove-border\";s:1:\"0\";s:32:\"transparent-header-shadow-helper\";s:1:\"0\";s:19:\"header-hover-effect\";s:18:\"animated_underline\";s:24:\"header-hide-until-needed\";s:0:\"\";s:23:\"header-resize-on-scroll\";s:1:\"1\";s:25:\"condense-header-on-scroll\";s:0:\"\";s:23:\"header-dropdown-opacity\";i:100;s:28:\"header-dropdown-hover-effect\";s:7:\"default\";s:22:\"header-dropdown-arrows\";s:7:\"inherit\";s:28:\"header-dropdown-display-desc\";s:1:\"0\";s:24:\"header-dropdown-position\";s:7:\"default\";s:25:\"header-dropdown-animation\";s:7:\"default\";s:29:\"header-dropdown-border-radius\";i:0;s:26:\"header-dropdown-box-shadow\";s:5:\"large\";s:21:\"header-megamenu-width\";s:9:\"contained\";s:34:\"header-megamenu-remove-transparent\";s:1:\"0\";s:21:\"header-disable-search\";s:1:\"0\";s:26:\"header-disable-ajax-search\";s:1:\"1\";s:24:\"header-ajax-search-style\";s:7:\"default\";s:19:\"header-search-limit\";s:3:\"all\";s:18:\"header-search-type\";s:7:\"default\";s:23:\"header-search-type-size\";i:48;s:23:\"header-search-remove-bt\";s:1:\"0\";s:21:\"header-search-ph-text\";s:0:\"\";s:28:\"header-slide-out-widget-area\";s:1:\"1\";s:34:\"header-slide-out-widget-area-style\";s:20:\"slide-out-from-right\";s:46:\"header-slide-out-widget-area-dropdown-behavior\";s:29:\"separate-dropdown-parent-link\";s:17:\"header-menu-label\";s:1:\"0\";s:16:\"ocm_btn_position\";s:7:\"default\";s:35:\"header-slide-out-widget-area-social\";s:1:\"0\";s:40:\"header-slide-out-widget-area-bottom-text\";s:0:\"\";s:44:\"header-slide-out-widget-area-overlay-opacity\";s:4:\"dark\";s:46:\"header-slide-out-widget-area-top-nav-in-mobile\";s:1:\"0\";s:42:\"header-slide-out-widget-area-icons-display\";s:4:\"none\";s:42:\"header-slide-out-widget-area-image-display\";s:13:\"remove_images\";s:39:\"header-slide-out-widget-area-icon-style\";s:7:\"default\";s:46:\"header-slide-out-widget-area-menu-btn-bg-color\";s:0:\"\";s:43:\"header-slide-out-widget-area-menu-btn-color\";s:0:\"\";s:45:\"header-slide-out-widget-area-custom-font-size\";s:0:\"\";s:52:\"header-slide-out-widget-area-custom-font-size-mobile\";s:0:\"\";s:18:\"mobile-menu-layout\";s:7:\"default\";s:19:\"header-mobile-fixed\";s:1:\"1\";s:29:\"header-menu-mobile-breakpoint\";i:1000;s:12:\"header-color\";s:5:\"light\";s:23:\"header-background-color\";s:7:\"#ffffff\";s:17:\"header-font-color\";s:7:\"#888888\";s:23:\"header-font-hover-color\";s:7:\"#3452ff\";s:17:\"header-icon-color\";s:7:\"#888888\";s:33:\"secondary-header-background-color\";s:7:\"#F8F8F8\";s:27:\"secondary-header-font-color\";s:7:\"#666666\";s:33:\"secondary-header-font-hover-color\";s:7:\"#222222\";s:32:\"header-dropdown-background-color\";s:7:\"#1F1F1F\";s:38:\"header-dropdown-background-hover-color\";s:7:\"#313233\";s:26:\"header-dropdown-font-color\";s:7:\"#CCCCCC\";s:32:\"header-dropdown-font-hover-color\";s:7:\"#3452ff\";s:26:\"header-dropdown-icon-color\";s:7:\"#3452ff\";s:31:\"header-dropdown-desc-font-color\";s:7:\"#CCCCCC\";s:37:\"header-dropdown-desc-font-hover-color\";s:7:\"#ffffff\";s:34:\"header-dropdown-heading-font-color\";s:7:\"#ffffff\";s:40:\"header-dropdown-heading-font-hover-color\";s:7:\"#ffffff\";s:22:\"header-separator-color\";s:7:\"#eeeeee\";s:45:\"header-slide-out-widget-area-background-color\";s:7:\"#3452ff\";s:47:\"header-slide-out-widget-area-background-color-2\";s:0:\"\";s:41:\"header-slide-out-widget-area-header-color\";s:7:\"#ffffff\";s:34:\"header-slide-out-widget-area-color\";s:7:\"#eefbfa\";s:40:\"header-slide-out-widget-area-hover-color\";s:7:\"#ffffff\";s:43:\"header-slide-out-widget-area-close-bg-color\";s:7:\"#ff1053\";s:45:\"header-slide-out-widget-area-close-icon-color\";s:7:\"#ffffff\";s:23:\"enable-main-footer-area\";s:1:\"1\";s:14:\"footer_columns\";s:1:\"4\";s:19:\"footer-custom-color\";s:1:\"0\";s:23:\"footer-background-color\";s:7:\"#313233\";s:17:\"footer-font-color\";s:7:\"#CCCCCC\";s:27:\"footer-secondary-font-color\";s:7:\"#777777\";s:33:\"footer-copyright-background-color\";s:7:\"#1F1F1F\";s:27:\"footer-copyright-font-color\";s:7:\"#777777\";s:33:\"footer-copyright-icon-hover-color\";s:7:\"#ffffff\";s:29:\"footer-copyright-border-color\";s:0:\"\";s:21:\"footer-copyright-line\";s:0:\"\";s:17:\"footer-full-width\";s:1:\"0\";s:13:\"footer-reveal\";s:1:\"0\";s:20:\"footer-reveal-shadow\";s:4:\"none\";s:17:\"footer-link-hover\";s:7:\"default\";s:23:\"footer-copyright-layout\";s:7:\"default\";s:29:\"disable-copyright-footer-area\";s:0:\"\";s:31:\"footer-background-image-overlay\";d:0.8000000000000000444089209850062616169452667236328125;s:17:\"ajax-page-loading\";s:1:\"0\";s:32:\"disable-transition-fade-on-click\";s:1:\"0\";s:28:\"disable-transition-on-mobile\";s:1:\"1\";s:17:\"transition-effect\";s:8:\"standard\";s:12:\"loading-icon\";s:8:\"material\";s:19:\"loading-icon-colors\";a:2:{s:4:\"from\";s:7:\"#3452ff\";s:2:\"to\";s:7:\"#3452ff\";}s:23:\"loading-image-animation\";s:4:\"none\";s:19:\"transition-bg-color\";s:0:\"\";s:21:\"transition-bg-color-2\";s:0:\"\";s:17:\"header-auto-title\";s:1:\"0\";s:26:\"header-auto-title-bg-color\";s:0:\"\";s:28:\"header-auto-title-text-color\";s:0:\"\";s:34:\"header-auto-title-use-featured-img\";s:1:\"0\";s:31:\"header-auto-title-overlay-color\";s:0:\"\";s:24:\"header-animate-in-effect\";s:4:\"none\";s:23:\"header-down-arrow-style\";s:7:\"default\";s:10:\"form-style\";s:7:\"default\";s:17:\"form-fancy-select\";s:1:\"0\";s:21:\"form-submit-btn-style\";s:7:\"regular\";s:19:\"form-submit-spacing\";a:3:{s:11:\"padding-top\";s:0:\"\";s:13:\"padding-right\";s:0:\"\";s:5:\"units\";s:2:\"px\";}s:20:\"form-input-font-size\";i:14;s:18:\"form-input-spacing\";a:3:{s:11:\"padding-top\";s:0:\"\";s:13:\"padding-right\";s:0:\"\";s:5:\"units\";s:2:\"px\";}s:23:\"form-input-border-width\";s:7:\"default\";s:19:\"form-input-bg-color\";s:0:\"\";s:21:\"form-input-text-color\";s:0:\"\";s:23:\"form-input-border-color\";s:0:\"\";s:29:\"form-input-border-color-hover\";s:0:\"\";s:20:\"cta-background-color\";s:7:\"#ECEBE9\";s:14:\"cta-text-color\";s:7:\"#4B4F52\";s:13:\"cta-btn-color\";s:12:\"accent-color\";s:21:\"main_portfolio_layout\";s:1:\"3\";s:28:\"main_portfolio_project_style\";s:1:\"1\";s:14:\"portfolio_date\";s:1:\"1\";s:27:\"main_portfolio_item_spacing\";s:7:\"default\";s:21:\"portfolio_use_masonry\";s:1:\"0\";s:29:\"portfolio_masonry_grid_sizing\";s:7:\"default\";s:24:\"portfolio_inline_filters\";s:1:\"0\";s:27:\"portfolio_loading_animation\";s:19:\"fade_in_from_bottom\";s:31:\"single_portfolio_project_layout\";s:5:\"basic\";s:20:\"portfolio_single_nav\";s:13:\"after_project\";s:26:\"portfolio_single_nav_order\";s:7:\"default\";s:33:\"after_project_next_only_last_link\";s:7:\"default\";s:30:\"portfolio_remove_single_header\";s:1:\"0\";s:24:\"portfolio_sidebar_follow\";s:1:\"0\";s:25:\"portfolio_remove_comments\";s:1:\"0\";s:34:\"portfolio_same_category_single_nav\";s:1:\"0\";s:20:\"portfolio_pagination\";s:1:\"0\";s:25:\"portfolio_pagination_type\";s:7:\"default\";s:26:\"portfolio_extra_pagination\";s:1:\"0\";s:9:\"blog_type\";s:20:\"masonry-blog-sidebar\";s:18:\"blog_standard_type\";s:17:\"featured_img_left\";s:17:\"blog_masonry_type\";s:25:\"auto_meta_overlaid_spaced\";s:25:\"blog_auto_masonry_spacing\";s:3:\"8px\";s:22:\"blog_loading_animation\";s:19:\"fade_in_from_bottom\";s:16:\"blog_header_type\";s:15:\"default_minimal\";s:24:\"blog_header_aspect_ratio\";s:2:\"40\";s:29:\"std_blog_header_overlay_color\";s:0:\"\";s:31:\"std_blog_header_overlay_opacity\";d:0;s:29:\"default_minimal_overlay_color\";s:7:\"#2d2d2d\";s:31:\"default_minimal_overlay_opacity\";d:0.40000000000000002220446049250313080847263336181640625;s:26:\"default_minimal_text_color\";s:7:\"#ffffff\";s:18:\"blog_header_sizing\";s:7:\"default\";s:25:\"blog_header_scroll_effect\";s:7:\"default\";s:29:\"blog_header_load_in_animation\";s:4:\"none\";s:17:\"blog_hide_sidebar\";s:1:\"1\";s:10:\"blog_width\";s:7:\"default\";s:24:\"blog_full_width_row_func\";s:7:\"default\";s:14:\"blog_enable_ss\";s:1:\"0\";s:24:\"blog_hide_featured_image\";s:1:\"0\";s:39:\"blog_post_header_inherit_featured_image\";s:1:\"1\";s:10:\"author_bio\";s:1:\"1\";s:17:\"blog_auto_excerpt\";s:1:\"1\";s:14:\"blog_lazy_load\";s:1:\"0\";s:19:\"blog_next_post_link\";s:1:\"1\";s:25:\"blog_next_post_link_style\";s:19:\"fullwidth_next_prev\";s:24:\"blog_next_post_limit_cat\";s:1:\"0\";s:25:\"blog_next_post_link_order\";s:7:\"default\";s:18:\"blog_related_posts\";s:1:\"0\";s:24:\"blog_related_posts_style\";s:8:\"material\";s:26:\"blog_related_posts_excerpt\";s:1:\"0\";s:29:\"blog_related_posts_title_text\";s:13:\"related_posts\";s:12:\"display_tags\";s:1:\"0\";s:17:\"display_full_date\";s:1:\"0\";s:23:\"post_date_functionality\";s:14:\"published_date\";s:20:\"blog_pagination_type\";s:7:\"default\";s:23:\"blog_remove_single_date\";s:0:\"\";s:25:\"blog_remove_single_author\";s:0:\"\";s:33:\"blog_remove_single_comment_number\";s:0:\"\";s:30:\"blog_remove_single_reading_dur\";s:1:\"1\";s:30:\"blog_remove_single_nectar_love\";s:0:\"\";s:21:\"blog_remove_post_date\";s:0:\"\";s:23:\"blog_remove_post_author\";s:0:\"\";s:31:\"blog_remove_post_comment_number\";s:0:\"\";s:28:\"blog_remove_post_nectar_love\";s:0:\"\";s:21:\"search-results-layout\";s:18:\"masonry-no-sidebar\";s:30:\"search-results-header-bg-color\";s:0:\"\";s:32:\"search-results-header-font-color\";s:0:\"\";s:17:\"page-404-bg-color\";s:0:\"\";s:19:\"page-404-font-color\";s:0:\"\";s:31:\"page-404-bg-image-overlay-color\";s:0:\"\";s:20:\"page-404-home-button\";s:1:\"1\";s:24:\"slider-caption-animation\";s:1:\"1\";s:23:\"slider-background-cover\";s:1:\"1\";s:15:\"slider-autoplay\";s:1:\"1\";s:15:\"slider-bg-color\";s:7:\"#000000\";}','yes'),(234,'salient_redux-transients','a:2:{s:14:\"changed_values\";a:0:{}s:9:\"last_save\";i:1686246682;}','yes'),(235,'salient_stored_version','15.1.0','yes'),(236,'salient_dynamic_css_success','true','yes'),(237,'salient_dynamic_css_version','26834','yes'),(241,'ub_version','3.4.9.3','yes'),(242,'salient_home_slider_permalinks_flushed','0','yes'),(243,'salient_nectar_slider_permalinks_flushed','1','yes'),(244,'salient_portfolio_permalinks_flushed','1','yes'),(245,'salient_shortcodes_permalinks_flushed','0','yes'),(247,'wp-smush-settings','a:25:{s:4:\"auto\";b:1;s:5:\"lossy\";b:0;s:10:\"strip_exif\";b:1;s:6:\"resize\";b:0;s:9:\"detection\";b:0;s:8:\"original\";b:0;s:6:\"backup\";b:0;s:8:\"no_scale\";b:0;s:10:\"png_to_jpg\";b:0;s:7:\"nextgen\";b:0;s:2:\"s3\";b:0;s:9:\"gutenberg\";b:0;s:10:\"js_builder\";b:0;s:5:\"gform\";b:0;s:3:\"cdn\";b:0;s:11:\"auto_resize\";b:0;s:4:\"webp\";b:1;s:5:\"usage\";b:0;s:17:\"accessible_colors\";b:0;s:9:\"keep_data\";b:1;s:9:\"lazy_load\";b:0;s:17:\"background_images\";b:1;s:16:\"rest_api_support\";b:0;s:8:\"webp_mod\";b:0;s:16:\"background_email\";b:0;}','yes'),(248,'wp-smush-install-type','existing','no'),(249,'wp-smush-version','3.12.6','no'),(250,'_transient_timeout_wp-smush-conflict_check','1686250361','no'),(251,'_transient_wp-smush-conflict_check','a:1:{i:0;s:7:\"Jetpack\";}','no'),(252,'bodhi_svgs_plugin_version','2.5.5','yes'),(253,'bodhi_svgs_settings','a:4:{s:22:\"sanitize_svg_front_end\";s:2:\"on\";s:8:\"restrict\";a:1:{i:0;s:13:\"administrator\";}s:12:\"sanitize_svg\";s:2:\"on\";s:24:\"sanitize_on_upload_roles\";a:2:{i:0;s:13:\"administrator\";i:1;s:6:\"editor\";}}','yes'),(254,'yoast_migrations_free','a:1:{s:7:\"version\";s:4:\"20.8\";}','yes'),(255,'wpseo','a:102:{s:8:\"tracking\";b:0;s:16:\"toggled_tracking\";b:0;s:22:\"license_server_version\";s:5:\"false\";s:15:\"ms_defaults_set\";b:0;s:40:\"ignore_search_engines_discouraged_notice\";b:0;s:19:\"indexing_first_time\";b:0;s:16:\"indexing_started\";b:0;s:15:\"indexing_reason\";s:0:\"\";s:29:\"indexables_indexing_completed\";b:1;s:13:\"index_now_key\";s:0:\"\";s:7:\"version\";s:4:\"20.8\";s:16:\"previous_version\";s:0:\"\";s:20:\"disableadvanced_meta\";b:1;s:30:\"enable_headless_rest_endpoints\";b:1;s:17:\"ryte_indexability\";b:0;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:34:\"inclusive_language_analysis_active\";b:0;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:16:\"enable_index_now\";b:1;s:22:\"show_onboarding_notice\";b:1;s:18:\"first_activated_on\";s:10:\"1686246761\";s:13:\"myyoast-oauth\";b:0;s:26:\"semrush_integration_active\";b:1;s:14:\"semrush_tokens\";a:0:{}s:20:\"semrush_country_code\";s:2:\"us\";s:19:\"permalink_structure\";s:12:\"/%postname%/\";s:8:\"home_url\";s:34:\"https://usaslalomskateboarding.com\";s:18:\"dynamic_permalinks\";b:0;s:17:\"category_base_url\";s:0:\"\";s:12:\"tag_base_url\";s:0:\"\";s:21:\"custom_taxonomy_slugs\";a:0:{}s:29:\"enable_enhanced_slack_sharing\";b:1;s:25:\"zapier_integration_active\";b:0;s:19:\"zapier_subscription\";a:0:{}s:14:\"zapier_api_key\";s:0:\"\";s:23:\"enable_metabox_insights\";b:1;s:23:\"enable_link_suggestions\";b:1;s:26:\"algolia_integration_active\";b:0;s:14:\"import_cursors\";a:0:{}s:13:\"workouts_data\";a:1:{s:13:\"configuration\";a:1:{s:13:\"finishedSteps\";a:0:{}}}s:28:\"configuration_finished_steps\";a:3:{i:0;s:18:\"siteRepresentation\";i:1;s:14:\"socialProfiles\";i:2;s:19:\"personalPreferences\";}s:36:\"dismiss_configuration_workout_notice\";b:0;s:34:\"dismiss_premium_deactivated_notice\";b:0;s:34:\"dismiss_old_premium_version_notice\";s:0:\"\";s:19:\"importing_completed\";a:0:{}s:26:\"wincher_integration_active\";b:1;s:14:\"wincher_tokens\";a:0:{}s:36:\"wincher_automatically_add_keyphrases\";b:0;s:18:\"wincher_website_id\";s:0:\"\";s:28:\"wordproof_integration_active\";b:0;s:29:\"wordproof_integration_changed\";b:0;s:18:\"first_time_install\";b:0;s:34:\"should_redirect_after_install_free\";b:0;s:34:\"activation_redirect_timestamp_free\";s:10:\"1686246763\";s:18:\"remove_feed_global\";b:0;s:27:\"remove_feed_global_comments\";b:0;s:25:\"remove_feed_post_comments\";b:0;s:19:\"remove_feed_authors\";b:0;s:22:\"remove_feed_categories\";b:0;s:16:\"remove_feed_tags\";b:0;s:29:\"remove_feed_custom_taxonomies\";b:0;s:22:\"remove_feed_post_types\";b:0;s:18:\"remove_feed_search\";b:0;s:21:\"remove_atom_rdf_feeds\";b:0;s:17:\"remove_shortlinks\";b:0;s:21:\"remove_rest_api_links\";b:0;s:20:\"remove_rsd_wlw_links\";b:0;s:19:\"remove_oembed_links\";b:0;s:16:\"remove_generator\";b:0;s:20:\"remove_emoji_scripts\";b:0;s:24:\"remove_powered_by_header\";b:0;s:22:\"remove_pingback_header\";b:0;s:28:\"clean_campaign_tracking_urls\";b:0;s:16:\"clean_permalinks\";b:0;s:32:\"clean_permalinks_extra_variables\";s:0:\"\";s:14:\"search_cleanup\";b:0;s:20:\"search_cleanup_emoji\";b:0;s:23:\"search_cleanup_patterns\";b:0;s:22:\"search_character_limit\";i:50;s:20:\"deny_search_crawling\";b:0;s:21:\"deny_wp_json_crawling\";b:0;s:27:\"redirect_search_pretty_urls\";b:0;s:29:\"least_readability_ignore_list\";a:0:{}s:27:\"least_seo_score_ignore_list\";a:0:{}s:23:\"most_linked_ignore_list\";a:0:{}s:24:\"least_linked_ignore_list\";a:0:{}s:28:\"indexables_page_reading_list\";a:5:{i:0;b:0;i:1;b:0;i:2;b:0;i:3;b:0;i:4;b:0;}s:25:\"indexables_overview_state\";s:21:\"dashboard-not-visited\";s:28:\"last_known_public_post_types\";a:6:{i:0;s:4:\"post\";i:1;s:4:\"page\";i:2;s:10:\"attachment\";i:3;s:18:\"salient_g_sections\";i:4;s:11:\"home_slider\";i:5;s:9:\"portfolio\";}s:28:\"last_known_public_taxonomies\";a:5:{i:0;s:8:\"category\";i:1;s:8:\"post_tag\";i:2;s:11:\"post_format\";i:3;s:12:\"project-type\";i:4;s:18:\"project-attributes\";}s:23:\"last_known_no_unindexed\";a:5:{s:40:\"wpseo_total_unindexed_post_type_archives\";i:1686246852;s:31:\"wpseo_unindexed_post_link_count\";i:1686246804;s:31:\"wpseo_unindexed_term_link_count\";i:1686246804;s:27:\"wpseo_total_unindexed_posts\";i:1686247316;s:27:\"wpseo_total_unindexed_terms\";i:1686247316;}}','yes'),(256,'wpseo_titles','a:161:{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:25:\"social-title-author-wpseo\";s:8:\"%%name%%\";s:26:\"social-title-archive-wpseo\";s:8:\"%%date%%\";s:31:\"social-description-author-wpseo\";s:0:\"\";s:32:\"social-description-archive-wpseo\";s:0:\"\";s:29:\"social-image-url-author-wpseo\";s:0:\"\";s:30:\"social-image-url-archive-wpseo\";s:0:\"\";s:28:\"social-image-id-author-wpseo\";i:0;s:29:\"social-image-id-archive-wpseo\";i:0;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: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:2:\"»\";s:12:\"website_name\";s:0:\"\";s:11:\"person_name\";s:0:\"\";s:11:\"person_logo\";s:0:\"\";s:22:\"alternate_website_name\";s:0:\"\";s:12:\"company_logo\";s:0:\"\";s:12:\"company_name\";s:0:\"\";s:22:\"company_alternate_name\";s:0:\"\";s:17:\"company_or_person\";s:7:\"company\";s:25:\"company_or_person_user_id\";i:0;s:17:\"stripcategorybase\";b:0;s:26:\"open_graph_frontpage_title\";s:12:\"%%sitename%%\";s:25:\"open_graph_frontpage_desc\";s:0:\"\";s:26:\"open_graph_frontpage_image\";s:0:\"\";s:10:\"title-post\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:13:\"metadesc-post\";s:0:\"\";s:12:\"noindex-post\";b:0;s:23:\"display-metabox-pt-post\";b:1;s:23:\"post_types-post-maintax\";i:0;s:21:\"schema-page-type-post\";s:7:\"WebPage\";s:24:\"schema-article-type-post\";s:7:\"Article\";s:17:\"social-title-post\";s:9:\"%%title%%\";s:23:\"social-description-post\";s:0:\"\";s:21:\"social-image-url-post\";s:0:\"\";s:20:\"social-image-id-post\";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:23:\"display-metabox-pt-page\";b:1;s:23:\"post_types-page-maintax\";i:0;s:21:\"schema-page-type-page\";s:7:\"WebPage\";s:24:\"schema-article-type-page\";s:4:\"None\";s:17:\"social-title-page\";s:9:\"%%title%%\";s:23:\"social-description-page\";s:0:\"\";s:21:\"social-image-url-page\";s:0:\"\";s:20:\"social-image-id-page\";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:29:\"display-metabox-pt-attachment\";b:1;s:29:\"post_types-attachment-maintax\";i:0;s:27:\"schema-page-type-attachment\";s:7:\"WebPage\";s:30:\"schema-article-type-attachment\";s:4:\"None\";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:25:\"social-title-tax-category\";s:23:\"%%term_title%% Archives\";s:31:\"social-description-tax-category\";s:0:\"\";s:29:\"social-image-url-tax-category\";s:0:\"\";s:28:\"social-image-id-tax-category\";i:0;s:26:\"taxonomy-category-ptparent\";i: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:25:\"social-title-tax-post_tag\";s:23:\"%%term_title%% Archives\";s:31:\"social-description-tax-post_tag\";s:0:\"\";s:29:\"social-image-url-tax-post_tag\";s:0:\"\";s:28:\"social-image-id-tax-post_tag\";i:0;s:26:\"taxonomy-post_tag-ptparent\";i: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;s:28:\"social-title-tax-post_format\";s:23:\"%%term_title%% Archives\";s:34:\"social-description-tax-post_format\";s:0:\"\";s:32:\"social-image-url-tax-post_format\";s:0:\"\";s:31:\"social-image-id-tax-post_format\";i:0;s:29:\"taxonomy-post_format-ptparent\";i:0;s:24:\"title-salient_g_sections\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:27:\"metadesc-salient_g_sections\";s:0:\"\";s:26:\"noindex-salient_g_sections\";b:0;s:37:\"display-metabox-pt-salient_g_sections\";b:1;s:37:\"post_types-salient_g_sections-maintax\";i:0;s:35:\"schema-page-type-salient_g_sections\";s:7:\"WebPage\";s:38:\"schema-article-type-salient_g_sections\";s:4:\"None\";s:31:\"social-title-salient_g_sections\";s:9:\"%%title%%\";s:37:\"social-description-salient_g_sections\";s:0:\"\";s:35:\"social-image-url-salient_g_sections\";s:0:\"\";s:34:\"social-image-id-salient_g_sections\";i:0;s:17:\"title-home_slider\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:20:\"metadesc-home_slider\";s:0:\"\";s:19:\"noindex-home_slider\";b:0;s:30:\"display-metabox-pt-home_slider\";b:1;s:30:\"post_types-home_slider-maintax\";i:0;s:28:\"schema-page-type-home_slider\";s:7:\"WebPage\";s:31:\"schema-article-type-home_slider\";s:4:\"None\";s:24:\"social-title-home_slider\";s:9:\"%%title%%\";s:30:\"social-description-home_slider\";s:0:\"\";s:28:\"social-image-url-home_slider\";s:0:\"\";s:27:\"social-image-id-home_slider\";i:0;s:15:\"title-portfolio\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:18:\"metadesc-portfolio\";s:0:\"\";s:17:\"noindex-portfolio\";b:0;s:28:\"display-metabox-pt-portfolio\";b:1;s:28:\"post_types-portfolio-maintax\";i:0;s:26:\"schema-page-type-portfolio\";s:7:\"WebPage\";s:29:\"schema-article-type-portfolio\";s:4:\"None\";s:22:\"social-title-portfolio\";s:9:\"%%title%%\";s:28:\"social-description-portfolio\";s:0:\"\";s:26:\"social-image-url-portfolio\";s:0:\"\";s:25:\"social-image-id-portfolio\";i:0;s:22:\"title-tax-project-type\";s:53:\"%%term_title%% Archives %%page%% %%sep%% %%sitename%%\";s:25:\"metadesc-tax-project-type\";s:0:\"\";s:32:\"display-metabox-tax-project-type\";b:1;s:24:\"noindex-tax-project-type\";b:0;s:29:\"social-title-tax-project-type\";s:23:\"%%term_title%% Archives\";s:35:\"social-description-tax-project-type\";s:0:\"\";s:33:\"social-image-url-tax-project-type\";s:0:\"\";s:32:\"social-image-id-tax-project-type\";i:0;s:30:\"taxonomy-project-type-ptparent\";i:0;s:28:\"title-tax-project-attributes\";s:53:\"%%term_title%% Archives %%page%% %%sep%% %%sitename%%\";s:31:\"metadesc-tax-project-attributes\";s:0:\"\";s:38:\"display-metabox-tax-project-attributes\";b:1;s:30:\"noindex-tax-project-attributes\";b:0;s:35:\"social-title-tax-project-attributes\";s:23:\"%%term_title%% Archives\";s:41:\"social-description-tax-project-attributes\";s:0:\"\";s:39:\"social-image-url-tax-project-attributes\";s:0:\"\";s:38:\"social-image-id-tax-project-attributes\";i:0;s:36:\"taxonomy-project-attributes-ptparent\";i:0;s:14:\"person_logo_id\";i:0;s:15:\"company_logo_id\";i:0;s:17:\"company_logo_meta\";b:0;s:16:\"person_logo_meta\";b:0;s:29:\"open_graph_frontpage_image_id\";i:0;}','yes'),(257,'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: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:17:\"other_social_urls\";a:0:{}s:12:\"mastodon_url\";s:0:\"\";}','yes'),(272,'duplicate_post_copydate','0','yes'),(273,'duplicate_post_copystatus','0','yes'),(274,'duplicate_post_copyslug','0','yes'),(275,'duplicate_post_copyexcerpt','1','yes'),(276,'duplicate_post_copycontent','1','yes'),(277,'duplicate_post_copythumbnail','1','yes'),(278,'duplicate_post_copytemplate','1','yes'),(279,'duplicate_post_copyformat','1','yes'),(280,'duplicate_post_copyauthor','0','yes'),(281,'duplicate_post_copypassword','0','yes'),(282,'duplicate_post_copyattachments','0','yes'),(283,'duplicate_post_copychildren','0','yes'),(284,'duplicate_post_copycomments','0','yes'),(285,'duplicate_post_copymenuorder','1','yes'),(286,'duplicate_post_taxonomies_blacklist','a:0:{}','yes'),(287,'duplicate_post_blacklist','','yes'),(288,'duplicate_post_types_enabled','a:2:{i:0;s:4:\"post\";i:1;s:4:\"page\";}','yes'),(289,'duplicate_post_show_original_column','0','yes'),(290,'duplicate_post_show_original_in_post_states','0','yes'),(291,'duplicate_post_show_original_meta_box','0','yes'),(292,'duplicate_post_show_link','a:3:{s:9:\"new_draft\";s:1:\"1\";s:5:\"clone\";s:1:\"1\";s:17:\"rewrite_republish\";s:1:\"1\";}','yes'),(293,'duplicate_post_show_link_in','a:4:{s:3:\"row\";s:1:\"1\";s:8:\"adminbar\";s:1:\"1\";s:9:\"submitbox\";s:1:\"1\";s:11:\"bulkactions\";s:1:\"1\";}','yes'),(294,'duplicate_post_version','4.5','yes'),(295,'wp_smush_pre_3_12_6_site','0','no'),(296,'wdev-frash','a:3:{s:7:\"plugins\";a:1:{s:23:\"wp-smushit/wp-smush.php\";i:1686246763;}s:5:\"queue\";a:1:{s:32:\"fc50097023d0d34c5a66f6cddcf77694\";a:3:{s:6:\"plugin\";s:23:\"wp-smushit/wp-smush.php\";s:4:\"type\";s:4:\"rate\";s:7:\"show_at\";i:1686851563;}}s:4:\"done\";a:1:{i:0;a:6:{s:6:\"plugin\";s:23:\"wp-smushit/wp-smush.php\";s:4:\"type\";s:5:\"email\";s:7:\"show_at\";i:1686246763;s:5:\"state\";s:6:\"ignore\";s:4:\"hash\";s:32:\"fc50097023d0d34c5a66f6cddcf77694\";s:10:\"handled_at\";i:1686247050;}}}','no'),(297,'wpmudev_recommended_plugins_registered','a:1:{s:23:\"wp-smushit/wp-smush.php\";a:1:{s:13:\"registered_at\";i:1686246763;}}','no'),(258,'widget_akismet_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(259,'widget_recent-posts-extra','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(260,'widget_recent-projects','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(261,'widget_nectar_popular_posts','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(262,'branda_first_installed_version','3.4.9.3','yes'),(263,'branda_db_version','20190205','yes'),(264,'salient_menu_dynamic_css_success','true','yes'),(265,'salient_menu_dynamic_css_version','73179','yes'),(266,'salient_core_stored_version','1.9.9','yes'),(267,'vc_version','6.13.0','yes'),(298,'googlesitekit_db_version','1.3.0','yes'),(350,'category_children','a:0:{}','yes'),(351,'_transient_googlesitekit_verification_meta_tags','a:0:{}','yes'),(332,'_transient_timeout_wpseo_unindexed_term_link_count','1686333204','no'),(305,'_transient_timeout_wpseo_total_unindexed_general_items','1686333473','no'),(306,'_transient_wpseo_total_unindexed_general_items','0','no'),(352,'_transient_timeout_wpseo-statistics-totals','1686333433','no'),(353,'_transient_wpseo-statistics-totals','a:1:{i:2;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\";i:1;s:4:\"link\";s:111:\"https://usaslalomskateboarding.com/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'),(319,'jetpack_active_modules','a:0:{}','yes'),(320,'wp-smush-dismissed-notices','a:1:{s:15:\"plugin-conflict\";b:1;}','yes'),(315,'googlesitekit_has_connected_admins','0','yes'),(269,'ub_permissions_users','a:1:{i:0;i:2;}','yes'),(270,'duplicate_post_show_notice','0','no'),(271,'duplicate_post_copytitle','1','yes'),(330,'_transient_timeout_wpseo_unindexed_post_link_count','1686333204','no'),(331,'_transient_wpseo_unindexed_post_link_count','0','no'),(333,'_transient_wpseo_unindexed_term_link_count','0','no'),(366,'_transient_timeout_yoast_beacon_session_data','1686247617','no'),(367,'_transient_yoast_beacon_session_data','a:12:{s:4:\"name\";s:9:\"Josh Byrd\";s:5:\"email\";s:27:\"Joshuabyrddesigns@gmail.com\";s:9:\"Languages\";s:38:\"Site locale: en_US, user locale: en_US\";s:9:\"Server IP\";s:14:\"74.124.203.191\";s:11:\"PHP Version\";s:6:\"7.2.34\";s:12:\"cURL Version\";s:21:\"8.0.1 (SSL Support 1)\";s:13:\"Memory limits\";s:47:\"Server memory limit: 768M, WP_MEMORY_LIMIT: 40M\";s:17:\"WordPress Version\";s:21:\"6.2.2 (multisite: no)\";s:12:\"Active theme\";s:144:\"Salient Child Theme (Version 1.0, https://themeforest.net/item/salient-responsive-multipurpose-theme/4363266), this is a child theme of: salient\";s:14:\"Active plugins\";s:1440:\"Akismet Anti-Spam: Spam Protection (Version 5.1, https://akismet.com/) | Backuply (Version 1.1.2, http://wordpress.org/plugins/backuply/) | Total Upkeep Premium (Version 1.5.9, https://www.boldgrid.com/boldgrid-backup/) | Total Upkeep (Version 1.15.2 [update available], https://www.boldgrid.com/boldgrid-backup/) | Branda (Version 3.4.9.3, https://wpmudev.com/project/ultimate-branding/) | Yoast Duplicate Post (Version 4.5, https://yoast.com/wordpress/plugins/duplicate-post/) | Site Kit by Google (Version 1.102.0, https://sitekit.withgoogle.com) | Jetpack (Version 11.2-a.5 [update available], https://jetpack.com) | Salient WPBakery Page Builder (Version 6.13.0, http://wpbakery.com) | Loginizer (Version 1.7.9, https://wordpress.org/extend/plugins/loginizer/) | Salient Core (Version 1.9.9, https://themenectar.com) | Salient Demo Importer (Version 1.5, https://themenectar.com) | Salient Home Slider (Version 1.4.1, https://themenectar.com) | Salient Nectar Slider (Version 1.7.3, https://themenectar.com) | Salient Portfolio (Version 1.7.3, https://themenectar.com) | Salient Shortcodes (Version 1.5.1, https://themenectar.com) | Salient Social (Version 1.2.2, https://themenectar.com) | Salient Widgets (Version 1.3, https://themenectar.com) | SVG Support (Version 2.5.5, http://wordpress.org/plugins/svg-support/) | Yoast SEO (Version 20.8, https://yoa.st/1uj) | Smush (Version 3.12.6, http://wordpress.org/plugins/wp-smushit/) | \";s:20:\"Must-use and dropins\";s:32:\"Must-Use plugins: 0, Drop-ins: 0\";s:17:\"Indexables status\";s:23:\"Indexing completed: yes\";}','no'),(321,'wpb_js_google_fonts_subsets','a:1:{i:0;s:5:\"latin\";}','yes'),(322,'wpb_js_gutenberg_disable','1','yes'),(323,'wpb_js_default_template_post_type','a:0:{}','yes'),(358,'_transient_timeout_wpseo_total_unindexed_posts_limited','1686248216','no'),(359,'_transient_wpseo_total_unindexed_posts_limited','0','no'),(346,'WPLANG','','yes'),(347,'new_admin_email','Michael@firstcallequtiy.com','yes'),(344,'_transient_timeout_wpseo_total_unindexed_post_type_archives','1686333252','no'),(345,'_transient_wpseo_total_unindexed_post_type_archives','0','no'),(360,'_transient_timeout_wpseo_total_unindexed_terms_limited','1686248216','no'),(361,'_transient_wpseo_total_unindexed_terms_limited','0','no'),(362,'_transient_timeout_wpseo_total_unindexed_posts','1686333716','no'),(363,'_transient_wpseo_total_unindexed_posts','0','no'),(364,'_transient_timeout_wpseo_total_unindexed_terms','1686333716','no'),(365,'_transient_wpseo_total_unindexed_terms','0','no');
/*!40000 ALTER TABLE `usass5u_options` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `usass5u_postmeta`
--

DROP TABLE IF EXISTS `usass5u_postmeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `usass5u_postmeta` (
  `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `post_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `meta_key` varchar(255) DEFAULT NULL,
  `meta_value` longtext DEFAULT NULL,
  PRIMARY KEY (`meta_id`),
  KEY `post_id` (`post_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=MyISAM AUTO_INCREMENT=52 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `usass5u_postmeta`
--

LOCK TABLES `usass5u_postmeta` WRITE;
/*!40000 ALTER TABLE `usass5u_postmeta` DISABLE KEYS */;
INSERT INTO `usass5u_postmeta` VALUES (1,2,'_wp_page_template','default'),(2,3,'_wp_page_template','default'),(8,2,'_edit_last','2'),(9,2,'nectar-metabox-portfolio-display','all'),(7,2,'_edit_lock','1686246885:2'),(10,2,'nectar-metabox-portfolio-display-sortable','off'),(11,2,'_header_nav_entrance_animation','none'),(12,2,'_header_nav_entrance_animation_delay',''),(13,2,'_nectar_full_screen_rows','off'),(14,2,'_nectar_full_screen_rows_animation','none'),(15,2,'_nectar_full_screen_rows_animation_speed','medium'),(16,2,'_nectar_full_screen_rows_overall_bg_color',''),(17,2,'_nectar_full_screen_rows_anchors','off'),(18,2,'_nectar_full_screen_rows_mobile_disable','off'),(19,2,'_nectar_full_screen_rows_row_bg_animation','none'),(20,2,'_nectar_full_screen_rows_dot_navigation','tooltip'),(21,2,'_nectar_full_screen_rows_content_overflow','scrollbar'),(22,2,'_nectar_full_screen_rows_footer','none'),(23,2,'_nectar_slider_bg_type','image_bg'),(24,2,'_nectar_canvas_shapes',''),(25,2,'_nectar_media_upload_webm',''),(26,2,'_nectar_media_upload_mp4',''),(27,2,'_nectar_media_upload_ogv',''),(28,2,'_nectar_slider_preview_image',''),(29,2,'_nectar_header_bg',''),(30,2,'_nectar_header_parallax','off'),(31,2,'_nectar_header_box_roll','off'),(32,2,'_nectar_header_bg_height',''),(33,2,'_nectar_header_fullscreen','off'),(34,2,'_nectar_header_title',''),(35,2,'_nectar_header_subtitle',''),(36,2,'_nectar_page_header_text-effect','none'),(37,2,'_nectar_particle_rotation_timing',''),(38,2,'_nectar_particle_disable_explosion','off'),(39,2,'_nectar_page_header_alignment','left'),(40,2,'_nectar_page_header_alignment_v','middle'),(41,2,'_nectar_page_header_bg_alignment','center'),(42,2,'_nectar_header_bg_color',''),(43,2,'_nectar_header_font_color',''),(44,2,'_nectar_header_bg_overlay_color',''),(45,2,'_wpb_vc_js_status','false'),(46,2,'_yoast_wpseo_content_score','90'),(47,2,'_yoast_wpseo_estimated-reading-time-minutes','1'),(48,2,'_yoast_wpseo_wordproof_timestamp',''),(49,2,'inline_featured_image','0'),(50,9,'_wp_trash_meta_status','publish'),(51,9,'_wp_trash_meta_time','1686247008');
/*!40000 ALTER TABLE `usass5u_postmeta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `usass5u_posts`
--

DROP TABLE IF EXISTS `usass5u_posts`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `usass5u_posts` (
  `ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `post_author` bigint(20) unsigned NOT NULL DEFAULT 0,
  `post_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `post_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `post_content` longtext NOT NULL,
  `post_title` text NOT NULL,
  `post_excerpt` text NOT NULL,
  `post_status` varchar(20) NOT NULL DEFAULT 'publish',
  `comment_status` varchar(20) NOT NULL DEFAULT 'open',
  `ping_status` varchar(20) NOT NULL DEFAULT 'open',
  `post_password` varchar(255) NOT NULL DEFAULT '',
  `post_name` varchar(200) NOT NULL DEFAULT '',
  `to_ping` text NOT NULL,
  `pinged` text NOT NULL,
  `post_modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `post_modified_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `post_content_filtered` longtext NOT NULL,
  `post_parent` bigint(20) unsigned NOT NULL DEFAULT 0,
  `guid` varchar(255) NOT NULL DEFAULT '',
  `menu_order` int(11) NOT NULL DEFAULT 0,
  `post_type` varchar(20) NOT NULL DEFAULT 'post',
  `post_mime_type` varchar(100) NOT NULL DEFAULT '',
  `comment_count` bigint(20) NOT NULL DEFAULT 0,
  PRIMARY KEY (`ID`),
  KEY `post_name` (`post_name`(191)),
  KEY `type_status_date` (`post_type`,`post_status`,`post_date`,`ID`),
  KEY `post_parent` (`post_parent`),
  KEY `post_author` (`post_author`)
) ENGINE=MyISAM AUTO_INCREMENT=10 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `usass5u_posts`
--

LOCK TABLES `usass5u_posts` WRITE;
/*!40000 ALTER TABLE `usass5u_posts` DISABLE KEYS */;
INSERT INTO `usass5u_posts` VALUES (1,1,'2023-06-08 16:33:35','2023-06-08 16:33:35','<!-- 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','','','2023-06-08 16:33:35','2023-06-08 16:33:35','',0,'https://usaslalomskateboarding.com/?p=1',0,'post','',1),(2,1,'2023-06-08 16:33:35','2023-06-08 16:33:35','<!-- wp:paragraph -->\r\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>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:quote -->\r\n<blockquote class=\"wp-block-quote\">\r\n<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ña coladas. (And gettin\' caught in the rain.)</p>\r\n</blockquote>\r\n<!-- /wp:quote -->\r\n\r\n<!-- wp:paragraph -->\r\n<p>...or something like this:</p>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:quote -->\r\n<blockquote class=\"wp-block-quote\">\r\n<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>\r\n</blockquote>\r\n<!-- /wp:quote -->\r\n\r\n<!-- wp:paragraph -->\r\n<p>As a new WordPress user, you should go to <a href=\"https://usaslalomskateboarding.com/wp-admin/\">your dashboard</a> to delete this page and create new pages for your content. Have fun!</p>\r\n<!-- /wp:paragraph -->','Home','','publish','closed','open','','home','','','2023-06-08 10:56:20','2023-06-08 17:56:20','',0,'https://usaslalomskateboarding.com/?page_id=2',0,'page','',0),(3,1,'2023-06-08 16:33:35','2023-06-08 16:33:35','<!-- wp:heading --><h2>Who we are</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>Our website address is: https://usaslalomskateboarding.com.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Comments</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>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 --><h2>Media</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>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 --><h2>Cookies</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>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 --><h2>Embedded content from other websites</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>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 --><h2>Who we share your data with</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you request a password reset, your IP address will be included in the reset email.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>How long we retain your data</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>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><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>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 your data is sent</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>Visitor comments may be checked through an automated spam detection service.</p><!-- /wp:paragraph -->','Privacy Policy','','draft','closed','open','','privacy-policy','','','2023-06-08 16:33:35','2023-06-08 16:33:35','',0,'https://usaslalomskateboarding.com/?page_id=3',0,'page','',0),(4,1,'2023-06-08 16:34:00','0000-00-00 00:00:00','','Auto Draft','','auto-draft','open','open','','','','','2023-06-08 16:34:00','0000-00-00 00:00:00','',0,'https://usaslalomskateboarding.com/?p=4',0,'post','',0),(5,2,'2023-06-08 17:43:06','0000-00-00 00:00:00','','Auto Draft','','auto-draft','open','open','','','','','2023-06-08 17:43:06','0000-00-00 00:00:00','',0,'https://usaslalomskateboarding.com/?p=5',0,'post','',0),(8,2,'2023-06-08 10:56:09','2023-06-08 17:56:09','<!-- wp:paragraph -->\r\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>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:quote -->\r\n<blockquote class=\"wp-block-quote\">\r\n<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ña coladas. (And gettin\' caught in the rain.)</p>\r\n</blockquote>\r\n<!-- /wp:quote -->\r\n\r\n<!-- wp:paragraph -->\r\n<p>...or something like this:</p>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:quote -->\r\n<blockquote class=\"wp-block-quote\">\r\n<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>\r\n</blockquote>\r\n<!-- /wp:quote -->\r\n\r\n<!-- wp:paragraph -->\r\n<p>As a new WordPress user, you should go to <a href=\"https://usaslalomskateboarding.com/wp-admin/\">your dashboard</a> to delete this page and create new pages for your content. Have fun!</p>\r\n<!-- /wp:paragraph -->','Home','','inherit','closed','closed','','2-revision-v1','','','2023-06-08 10:56:09','2023-06-08 17:56:09','',2,'https://usaslalomskateboarding.com/?p=8',0,'revision','',0),(9,2,'2023-06-08 10:56:48','2023-06-08 17:56:48','{\n    \"show_on_front\": {\n        \"value\": \"page\",\n        \"type\": \"option\",\n        \"user_id\": 2,\n        \"date_modified_gmt\": \"2023-06-08 17:56:48\"\n    },\n    \"page_on_front\": {\n        \"value\": \"2\",\n        \"type\": \"option\",\n        \"user_id\": 2,\n        \"date_modified_gmt\": \"2023-06-08 17:56:48\"\n    }\n}','','','trash','closed','closed','','0b5be19f-5a8d-479f-bdfc-592617488b27','','','2023-06-08 10:56:48','2023-06-08 17:56:48','',0,'https://usaslalomskateboarding.com/0b5be19f-5a8d-479f-bdfc-592617488b27/',0,'customize_changeset','',0);
/*!40000 ALTER TABLE `usass5u_posts` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `usass5u_smush_dir_images`
--

DROP TABLE IF EXISTS `usass5u_smush_dir_images`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `usass5u_smush_dir_images` (
  `id` mediumint(9) unsigned NOT NULL AUTO_INCREMENT,
  `path` text NOT NULL,
  `path_hash` char(32) DEFAULT NULL,
  `resize` varchar(55) DEFAULT NULL,
  `lossy` varchar(55) DEFAULT NULL,
  `error` varchar(55) DEFAULT NULL,
  `image_size` int(10) unsigned DEFAULT NULL,
  `orig_size` int(10) unsigned DEFAULT NULL,
  `file_time` int(10) unsigned DEFAULT NULL,
  `last_scan` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',
  `meta` text DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `path_hash` (`path_hash`),
  KEY `image_size` (`image_size`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `usass5u_smush_dir_images`
--

LOCK TABLES `usass5u_smush_dir_images` WRITE;
/*!40000 ALTER TABLE `usass5u_smush_dir_images` DISABLE KEYS */;
/*!40000 ALTER TABLE `usass5u_smush_dir_images` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `usass5u_term_relationships`
--

DROP TABLE IF EXISTS `usass5u_term_relationships`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `usass5u_term_relationships` (
  `object_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `term_taxonomy_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `term_order` int(11) NOT NULL DEFAULT 0,
  PRIMARY KEY (`object_id`,`term_taxonomy_id`),
  KEY `term_taxonomy_id` (`term_taxonomy_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `usass5u_term_relationships`
--

LOCK TABLES `usass5u_term_relationships` WRITE;
/*!40000 ALTER TABLE `usass5u_term_relationships` DISABLE KEYS */;
INSERT INTO `usass5u_term_relationships` VALUES (1,1,0);
/*!40000 ALTER TABLE `usass5u_term_relationships` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `usass5u_term_taxonomy`
--

DROP TABLE IF EXISTS `usass5u_term_taxonomy`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `usass5u_term_taxonomy` (
  `term_taxonomy_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `term_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `taxonomy` varchar(32) NOT NULL DEFAULT '',
  `description` longtext NOT NULL,
  `parent` bigint(20) unsigned NOT NULL DEFAULT 0,
  `count` bigint(20) NOT NULL DEFAULT 0,
  PRIMARY KEY (`term_taxonomy_id`),
  UNIQUE KEY `term_id_taxonomy` (`term_id`,`taxonomy`),
  KEY `taxonomy` (`taxonomy`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `usass5u_term_taxonomy`
--

LOCK TABLES `usass5u_term_taxonomy` WRITE;
/*!40000 ALTER TABLE `usass5u_term_taxonomy` DISABLE KEYS */;
INSERT INTO `usass5u_term_taxonomy` VALUES (1,1,'category','',0,1);
/*!40000 ALTER TABLE `usass5u_term_taxonomy` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `usass5u_termmeta`
--

DROP TABLE IF EXISTS `usass5u_termmeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `usass5u_termmeta` (
  `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `term_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `meta_key` varchar(255) DEFAULT NULL,
  `meta_value` longtext DEFAULT NULL,
  PRIMARY KEY (`meta_id`),
  KEY `term_id` (`term_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `usass5u_termmeta`
--

LOCK TABLES `usass5u_termmeta` WRITE;
/*!40000 ALTER TABLE `usass5u_termmeta` DISABLE KEYS */;
/*!40000 ALTER TABLE `usass5u_termmeta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `usass5u_terms`
--

DROP TABLE IF EXISTS `usass5u_terms`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `usass5u_terms` (
  `term_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(200) NOT NULL DEFAULT '',
  `slug` varchar(200) NOT NULL DEFAULT '',
  `term_group` bigint(10) NOT NULL DEFAULT 0,
  PRIMARY KEY (`term_id`),
  KEY `slug` (`slug`(191)),
  KEY `name` (`name`(191))
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `usass5u_terms`
--

LOCK TABLES `usass5u_terms` WRITE;
/*!40000 ALTER TABLE `usass5u_terms` DISABLE KEYS */;
INSERT INTO `usass5u_terms` VALUES (1,'Uncategorized','uncategorized',0);
/*!40000 ALTER TABLE `usass5u_terms` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `usass5u_usermeta`
--

DROP TABLE IF EXISTS `usass5u_usermeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `usass5u_usermeta` (
  `umeta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `user_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `meta_key` varchar(255) DEFAULT NULL,
  `meta_value` longtext DEFAULT NULL,
  PRIMARY KEY (`umeta_id`),
  KEY `user_id` (`user_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=MyISAM AUTO_INCREMENT=47 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `usass5u_usermeta`
--

LOCK TABLES `usass5u_usermeta` WRITE;
/*!40000 ALTER TABLE `usass5u_usermeta` DISABLE KEYS */;
INSERT INTO `usass5u_usermeta` VALUES (1,1,'nickname','Admin'),(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,'usass5u_capabilities','a:1:{s:13:\"administrator\";b:1;}'),(13,1,'usass5u_user_level','10'),(14,1,'dismissed_wp_pointers',''),(15,1,'show_welcome_panel','1'),(16,1,'session_tokens','a:1:{s:64:\"873b19c10c4154301888e4dd54db63ede399f383428d6becf19675f03dc16b79\";a:4:{s:10:\"expiration\";i:1686414835;s:2:\"ip\";s:11:\"71.87.144.8\";s:2:\"ua\";s:129:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Edg/114.0.1823.41\";s:5:\"login\";i:1686242035;}}'),(17,1,'bglibDashboardOrder','1'),(18,1,'jetpack_tracks_anon_id','jetpack:PIZxyI/HJOnd6pIGMPqVUSVd'),(19,1,'usass5u_dashboard_quick_press_last_post_id','4'),(20,2,'nickname','jbyrd'),(21,2,'first_name','Josh'),(22,2,'last_name','Byrd'),(23,2,'description',''),(24,2,'rich_editing','true'),(25,2,'syntax_highlighting','true'),(26,2,'comment_shortcuts','false'),(27,2,'admin_color','fresh'),(28,2,'use_ssl','0'),(29,2,'show_admin_bar_front','true'),(30,2,'locale',''),(31,2,'usass5u_capabilities','a:1:{s:13:\"administrator\";b:1;}'),(32,2,'usass5u_user_level','10'),(33,2,'dismissed_wp_pointers','vc_pointers_backend_editor'),(34,2,'session_tokens','a:1:{s:64:\"bf560cd93c5f67f03de011c18fb0ba78fee3d84fb285158ff741130aa6140ba7\";a:4:{s:10:\"expiration\";i:1686418983;s:2:\"ip\";s:14:\"136.58.113.231\";s:2:\"ua\";s:117:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/113.0.0.0 Safari/537.36\";s:5:\"login\";i:1686246183;}}'),(35,2,'bglibDashboardOrder','1'),(36,2,'usass5u_dashboard_quick_press_last_post_id','5'),(37,2,'community-events-location','a:1:{s:2:\"ip\";s:12:\"136.58.113.0\";}'),(38,2,'boldgrid_dismissed_admin_notices','a:2:{s:2:\"id\";s:13:\"bg-key-prompt\";s:9:\"timestamp\";i:1686246199;}'),(39,2,'jetpack_tracks_anon_id','jetpack:oBFBjs44LtAHUkgpaZkuStOx'),(41,1,'_yoast_wpseo_profile_updated','1686246973'),(42,2,'_yoast_wpseo_profile_updated','1686246973'),(43,2,'_yoast_alerts_dismissed','a:1:{s:26:\"webinar-promo-notification\";b:1;}'),(44,2,'meta-box-order_dashboard','a:4:{s:6:\"normal\";s:40:\"dashboard_php_nag,boldgrid-notifications\";s:4:\"side\";s:60:\"boldgrid_news_widget,dashboard_quick_press,dashboard_primary\";s:7:\"column3\";s:24:\"wpseo-dashboard-overview\";s:7:\"column4\";s:60:\"dashboard_site_health,dashboard_right_now,dashboard_activity\";}'),(45,2,'closedpostboxes_dashboard','a:3:{i:0;s:19:\"dashboard_right_now\";i:1;s:18:\"dashboard_activity\";i:2;s:17:\"dashboard_primary\";}'),(46,2,'metaboxhidden_dashboard','a:0:{}');
/*!40000 ALTER TABLE `usass5u_usermeta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `usass5u_users`
--

DROP TABLE IF EXISTS `usass5u_users`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `usass5u_users` (
  `ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `user_login` varchar(60) NOT NULL DEFAULT '',
  `user_pass` varchar(255) NOT NULL DEFAULT '',
  `user_nicename` varchar(50) NOT NULL DEFAULT '',
  `user_email` varchar(100) NOT NULL DEFAULT '',
  `user_url` varchar(100) NOT NULL DEFAULT '',
  `user_registered` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `user_activation_key` varchar(255) NOT NULL DEFAULT '',
  `user_status` int(11) NOT NULL DEFAULT 0,
  `display_name` varchar(250) NOT NULL DEFAULT '',
  PRIMARY KEY (`ID`),
  KEY `user_login_key` (`user_login`),
  KEY `user_nicename` (`user_nicename`),
  KEY `user_email` (`user_email`)
) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `usass5u_users`
--

LOCK TABLES `usass5u_users` WRITE;
/*!40000 ALTER TABLE `usass5u_users` DISABLE KEYS */;
INSERT INTO `usass5u_users` VALUES (1,'Admin','$P$BXrK1bJV6hu0I.3LQ0cxDwlVhGmZy51','Admin','Michael@firstcallequtiy.com','https://usaslalomskateboarding.com','2023-06-08 16:33:35','',0,'Admin'),(2,'jbyrd','$P$BRRFHNaorpl2tZ4Kkhz3rXTY0NfQbe0','jbyrd','Joshuabyrddesigns@gmail.com','','2023-06-08 17:30:21','1686245422:$P$BK7Nj8FPH9wtM6v38iO0Ogmxgcd5eh0',0,'Josh Byrd');
/*!40000 ALTER TABLE `usass5u_users` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `usass5u_wpforms_lite`
--

DROP TABLE IF EXISTS `usass5u_wpforms_lite`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `usass5u_wpforms_lite` (
  `rid` int(10) NOT NULL AUTO_INCREMENT,
  `start` bigint(20) NOT NULL,
  `end` bigint(20) NOT NULL,
  `status` tinyint(2) NOT NULL DEFAULT 1,
  `date` int(10) NOT NULL,
  PRIMARY KEY (`rid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `usass5u_wpforms_lite`
--

LOCK TABLES `usass5u_wpforms_lite` WRITE;
/*!40000 ALTER TABLE `usass5u_wpforms_lite` DISABLE KEYS */;
/*!40000 ALTER TABLE `usass5u_wpforms_lite` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `usass5u_yoast_indexable`
--

DROP TABLE IF EXISTS `usass5u_yoast_indexable`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `usass5u_yoast_indexable` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `permalink` longtext DEFAULT NULL,
  `permalink_hash` varchar(40) DEFAULT NULL,
  `object_id` bigint(20) DEFAULT NULL,
  `object_type` varchar(32) NOT NULL,
  `object_sub_type` varchar(32) DEFAULT NULL,
  `author_id` bigint(20) DEFAULT NULL,
  `post_parent` bigint(20) DEFAULT NULL,
  `title` text DEFAULT NULL,
  `description` mediumtext DEFAULT NULL,
  `breadcrumb_title` text DEFAULT NULL,
  `post_status` varchar(20) DEFAULT NULL,
  `is_public` tinyint(1) DEFAULT NULL,
  `is_protected` tinyint(1) DEFAULT 0,
  `has_public_posts` tinyint(1) DEFAULT NULL,
  `number_of_pages` int(11) unsigned DEFAULT NULL,
  `canonical` longtext DEFAULT NULL,
  `primary_focus_keyword` varchar(191) DEFAULT NULL,
  `primary_focus_keyword_score` int(3) DEFAULT NULL,
  `readability_score` int(3) DEFAULT NULL,
  `is_cornerstone` tinyint(1) DEFAULT 0,
  `is_robots_noindex` tinyint(1) DEFAULT 0,
  `is_robots_nofollow` tinyint(1) DEFAULT 0,
  `is_robots_noarchive` tinyint(1) DEFAULT 0,
  `is_robots_noimageindex` tinyint(1) DEFAULT 0,
  `is_robots_nosnippet` tinyint(1) DEFAULT 0,
  `twitter_title` text DEFAULT NULL,
  `twitter_image` longtext DEFAULT NULL,
  `twitter_description` longtext DEFAULT NULL,
  `twitter_image_id` varchar(191) DEFAULT NULL,
  `twitter_image_source` text DEFAULT NULL,
  `open_graph_title` text DEFAULT NULL,
  `open_graph_description` longtext DEFAULT NULL,
  `open_graph_image` longtext DEFAULT NULL,
  `open_graph_image_id` varchar(191) DEFAULT NULL,
  `open_graph_image_source` text DEFAULT NULL,
  `open_graph_image_meta` mediumtext DEFAULT NULL,
  `link_count` int(11) DEFAULT NULL,
  `incoming_link_count` int(11) DEFAULT NULL,
  `prominent_words_version` int(11) unsigned DEFAULT NULL,
  `created_at` datetime DEFAULT NULL,
  `updated_at` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  `blog_id` bigint(20) NOT NULL DEFAULT 1,
  `language` varchar(32) DEFAULT NULL,
  `region` varchar(32) DEFAULT NULL,
  `schema_page_type` varchar(64) DEFAULT NULL,
  `schema_article_type` varchar(64) DEFAULT NULL,
  `has_ancestors` tinyint(1) DEFAULT 0,
  `estimated_reading_time_minutes` int(11) DEFAULT NULL,
  `version` int(11) DEFAULT 1,
  `object_last_modified` datetime DEFAULT NULL,
  `object_published_at` datetime DEFAULT NULL,
  `inclusive_language_score` int(3) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `object_type_and_sub_type` (`object_type`,`object_sub_type`),
  KEY `object_id_and_type` (`object_id`,`object_type`),
  KEY `permalink_hash_and_object_type` (`permalink_hash`,`object_type`),
  KEY `subpages` (`post_parent`,`object_type`,`post_status`,`object_id`),
  KEY `prominent_words` (`prominent_words_version`,`object_type`,`object_sub_type`,`post_status`),
  KEY `published_sitemap_index` (`object_published_at`,`is_robots_noindex`,`object_type`,`object_sub_type`)
) ENGINE=MyISAM AUTO_INCREMENT=10 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `usass5u_yoast_indexable`
--

LOCK TABLES `usass5u_yoast_indexable` WRITE;
/*!40000 ALTER TABLE `usass5u_yoast_indexable` DISABLE KEYS */;
INSERT INTO `usass5u_yoast_indexable` VALUES (1,'https://usaslalomskateboarding.com/?page_id=3','45:02bbdd62bbfc9df79a82623e7123aebb',3,'post','page',1,0,NULL,NULL,'Privacy Policy','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2023-06-08 17:52:44','2023-06-09 00:55:51',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-06-08 16:33:35','2023-06-08 16:33:35',0),(2,'https://usaslalomskateboarding.com/author/Admin/','48:4bbb6c3ca9e03f2622c044985cb74b90',1,'user',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,'https://secure.gravatar.com/avatar/2afc590688e206e9124462ac0d58ddb7?s=500&d=mm&r=g',NULL,NULL,'gravatar-image',NULL,NULL,'https://secure.gravatar.com/avatar/2afc590688e206e9124462ac0d58ddb7?s=500&d=mm&r=g',NULL,'gravatar-image',NULL,NULL,NULL,NULL,'2023-06-08 17:52:44','2023-06-09 00:56:21',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-06-08 17:56:20','2023-06-08 16:33:35',NULL),(3,'https://usaslalomskateboarding.com/','35:6a1b3997217f87355716a0d1ba95e12a',2,'post','page',1,0,NULL,NULL,'Home','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,90,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,'2023-06-08 17:52:44','2023-06-09 00:56:48',1,NULL,NULL,NULL,NULL,0,1,2,'2023-06-08 17:56:20','2023-06-08 16:33:35',0),(4,'https://usaslalomskateboarding.com/hello-world/','47:642f734634edb1cae1468e956494b254',1,'post','post',1,0,NULL,NULL,'Hello world!','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-06-08 17:52:44','2023-06-09 00:57:51',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-06-08 16:33:35','2023-06-08 16:33:35',0),(5,'https://usaslalomskateboarding.com/category/uncategorized/','58:8724f203d750f0dbd0190a06e050a925',1,'term','category',NULL,NULL,NULL,NULL,'Uncategorized',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-06-08 17:52:44','2023-06-09 00:57:49',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-06-08 16:33:35','2023-06-08 16:33:35',NULL),(6,NULL,NULL,NULL,'system-page','404',NULL,NULL,'Page not found %%sep%% %%sitename%%',NULL,'Error 404: Page not found',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,1,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2023-06-08 17:52:44','2023-06-09 00:56:38',1,NULL,NULL,NULL,NULL,0,NULL,1,NULL,NULL,NULL),(7,NULL,NULL,NULL,'system-page','search-result',NULL,NULL,'You searched for %%searchphrase%% %%page%% %%sep%% %%sitename%%',NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,1,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2023-06-08 17:52:44','2023-06-09 00:57:53',1,NULL,NULL,NULL,NULL,0,NULL,1,NULL,NULL,NULL),(8,NULL,NULL,NULL,'date-archive',NULL,NULL,NULL,'%%date%% %%page%% %%sep%% %%sitename%%','',NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,0,1,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2023-06-08 17:52:44','2023-06-09 00:57:53',1,NULL,NULL,NULL,NULL,0,NULL,1,NULL,NULL,NULL),(9,'https://usaslalomskateboarding.com/','35:6a1b3997217f87355716a0d1ba95e12a',NULL,'home-page',NULL,NULL,NULL,'%%sitename%% %%page%% %%sep%% %%sitedesc%%','USA Slalom Skateboarding','Home',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,'%%sitename%%','','','0',NULL,NULL,NULL,NULL,NULL,'2023-06-08 17:52:44','2023-06-09 00:56:21',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-06-08 17:56:20','2023-06-08 16:33:35',NULL);
/*!40000 ALTER TABLE `usass5u_yoast_indexable` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `usass5u_yoast_indexable_hierarchy`
--

DROP TABLE IF EXISTS `usass5u_yoast_indexable_hierarchy`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `usass5u_yoast_indexable_hierarchy` (
  `indexable_id` int(11) unsigned NOT NULL,
  `ancestor_id` int(11) unsigned NOT NULL,
  `depth` int(11) unsigned DEFAULT NULL,
  `blog_id` bigint(20) NOT NULL DEFAULT 1,
  PRIMARY KEY (`indexable_id`,`ancestor_id`),
  KEY `indexable_id` (`indexable_id`),
  KEY `ancestor_id` (`ancestor_id`),
  KEY `depth` (`depth`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `usass5u_yoast_indexable_hierarchy`
--

LOCK TABLES `usass5u_yoast_indexable_hierarchy` WRITE;
/*!40000 ALTER TABLE `usass5u_yoast_indexable_hierarchy` DISABLE KEYS */;
INSERT INTO `usass5u_yoast_indexable_hierarchy` VALUES (1,0,0,1),(3,0,0,1),(4,0,0,1),(5,0,0,1),(9,0,0,1);
/*!40000 ALTER TABLE `usass5u_yoast_indexable_hierarchy` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `usass5u_yoast_migrations`
--

DROP TABLE IF EXISTS `usass5u_yoast_migrations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `usass5u_yoast_migrations` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `version` varchar(191) DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `usass5u_yoast_migrations_version` (`version`)
) ENGINE=MyISAM AUTO_INCREMENT=25 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `usass5u_yoast_migrations`
--

LOCK TABLES `usass5u_yoast_migrations` WRITE;
/*!40000 ALTER TABLE `usass5u_yoast_migrations` DISABLE KEYS */;
INSERT INTO `usass5u_yoast_migrations` VALUES (1,'20171228151840'),(2,'20171228151841'),(3,'20190529075038'),(4,'20191011111109'),(5,'20200408101900'),(6,'20200420073606'),(7,'20200428123747'),(8,'20200428194858'),(9,'20200429105310'),(10,'20200430075614'),(11,'20200430150130'),(12,'20200507054848'),(13,'20200513133401'),(14,'20200609154515'),(15,'20200616130143'),(16,'20200617122511'),(17,'20200702141921'),(18,'20200728095334'),(19,'20201202144329'),(20,'20201216124002'),(21,'20201216141134'),(22,'20210817092415'),(23,'20211020091404'),(24,'20230417083836');
/*!40000 ALTER TABLE `usass5u_yoast_migrations` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `usass5u_yoast_primary_term`
--

DROP TABLE IF EXISTS `usass5u_yoast_primary_term`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `usass5u_yoast_primary_term` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `post_id` bigint(20) DEFAULT NULL,
  `term_id` bigint(20) DEFAULT NULL,
  `taxonomy` varchar(32) NOT NULL,
  `created_at` datetime DEFAULT NULL,
  `updated_at` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  `blog_id` bigint(20) NOT NULL DEFAULT 1,
  PRIMARY KEY (`id`),
  KEY `post_taxonomy` (`post_id`,`taxonomy`),
  KEY `post_term` (`post_id`,`term_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `usass5u_yoast_primary_term`
--

LOCK TABLES `usass5u_yoast_primary_term` WRITE;
/*!40000 ALTER TABLE `usass5u_yoast_primary_term` DISABLE KEYS */;
/*!40000 ALTER TABLE `usass5u_yoast_primary_term` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `usass5u_yoast_seo_links`
--

DROP TABLE IF EXISTS `usass5u_yoast_seo_links`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `usass5u_yoast_seo_links` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `url` varchar(255) DEFAULT NULL,
  `post_id` bigint(20) unsigned DEFAULT NULL,
  `target_post_id` bigint(20) unsigned DEFAULT NULL,
  `type` varchar(8) DEFAULT NULL,
  `indexable_id` int(11) unsigned DEFAULT NULL,
  `target_indexable_id` int(11) unsigned DEFAULT NULL,
  `height` int(11) unsigned DEFAULT NULL,
  `width` int(11) unsigned DEFAULT NULL,
  `size` int(11) unsigned DEFAULT NULL,
  `language` varchar(32) DEFAULT NULL,
  `region` varchar(32) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `link_direction` (`post_id`,`type`),
  KEY `indexable_link_direction` (`indexable_id`,`type`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `usass5u_yoast_seo_links`
--

LOCK TABLES `usass5u_yoast_seo_links` WRITE;
/*!40000 ALTER TABLE `usass5u_yoast_seo_links` DISABLE KEYS */;
INSERT INTO `usass5u_yoast_seo_links` VALUES (1,'https://usaslalomskateboarding.com/wp-admin/',2,NULL,'internal',3,NULL,NULL,NULL,NULL,NULL,NULL);
/*!40000 ALTER TABLE `usass5u_yoast_seo_links` ENABLE KEYS */;
UNLOCK TABLES;
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;

/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;

-- Dump completed on 2023-06-08 11:22:46
